/* ========================================
   CSS VARIABLES - SHEQhub Brand System
   ======================================== */
:root {
    --teal-darkest: #051E26;
    --teal-dark: #0A2E3A;
    --teal-mid: #0D3B47;
    --teal-base: #134E5E;
    --teal-light: #1A6B7A;
    --cyan-bright: #00D4FF;
    --cyan-glow: #00E5FF;
    --cyan-muted: #5EC4D4;
    --white: #FFFFFF;
    --off-white: #F4F7F8;
    --gray-light: #E8EDEF;
    --gray-mid: #94A3AB;
    --gray-dark: #4A5C64;
    --text-dark: #1A2A30;
    --text-body: #3A4E58;
    --accent-warning: #F5A623;
    --accent-success: #2ECC71;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan-glow); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.3; }

/* ========================================
   ANIMATIONS (placed early — lower specificity)
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan-bright);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
    background: var(--teal-darkest);
    color: var(--gray-mid);
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar a { color: var(--cyan-muted); }
.topbar a:hover { color: var(--cyan-bright); }
.topbar-contact { display: flex; gap: 20px; align-items: center; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-icon { font-size: 22px; line-height: 1; }

/* ========================================
   INFO SESSION NOTICE BAR
   ======================================== */
.info-session-bar {
    background: linear-gradient(90deg, var(--teal-base), var(--teal-light));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 50;
}
.info-session-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.info-session-bar span {
    color: rgba(255,255,255,0.85);
}
.info-session-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--cyan-bright);
    color: var(--teal-darkest);
    padding: 5px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s, transform 0.15s;
}
.info-session-link:hover {
    background: var(--cyan-glow);
    color: var(--teal-darkest);
    transform: translateY(-1px);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
    background: var(--teal-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,212,255,0.1);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.logo span { color: var(--white); }
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan-bright); }
.nav-links .btn-nav {
    background: transparent;
    color: var(--cyan-bright);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(0,212,255,0.3);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.nav-links .btn-nav:hover {
    border-color: var(--cyan-bright);
    color: var(--cyan-glow);
    transform: translateY(-1px);
}
.nav-links .btn-login {
    background: linear-gradient(135deg, var(--teal-light), #2a8a9a);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: background 0.2s, transform 0.15s;
}
.nav-links .btn-login:hover {
    background: linear-gradient(135deg, #2a8a9a, var(--teal-light));
    color: var(--white);
    transform: translateY(-1px);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ========================================
   HERO
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 50%, var(--teal-dark) 100%);
    color: var(--white);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero badge (unused but kept for reference) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.12);
    border: 1px solid rgba(0,212,255,0.25);
    color: var(--cyan-bright);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--cyan-bright);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero headings */
.hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.15;
}
.hero h1 .highlight {
    color: var(--cyan-bright);
}
.hero .hero-subtitle {
    font-family: var(--font-body); 
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}
.hero-text {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.65;
}
.hero .hero-text .highlight {
    color: var(--cyan-bright);
}
.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--cyan-bright);
    color: var(--teal-darkest);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--cyan-glow);
    color: var(--teal-darkest);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,255,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--cyan-bright);
    color: var(--cyan-bright);
}

/* Hero stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.hero-stats-heading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 18px);
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero-stats-heading::before,
.hero-stats-heading::after {
    content: '';
    flex: 1;
    height: 1px;
}
.hero-stats-heading::before {
    background: linear-gradient(to right, transparent, rgba(0,212,255,0.35));
}
.hero-stats-heading::after {
    background: linear-gradient(to left, transparent, rgba(0,212,255,0.35));
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}
.hero-stats > * {
    min-height: 200px;
}
a.stat-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.3);
    box-shadow: 0 8px 24px rgba(0,212,255,0.1);
}
.stat-card .stat-icon {
    width: 38px; height: 38px;
    background: rgba(0,212,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}
.stat-card h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.5;
    flex-grow: 1;
}
.stat-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan-bright);
    opacity: 0.55;
    transition: opacity 0.25s ease;
}
.stat-card:hover .stat-read-more {
    opacity: 1;
}

/* ========================================
   SAHPRA MANDATE BANNER
   ======================================== */
.mandate-banner {
    background: linear-gradient(90deg, var(--teal-base), var(--teal-light));
    color: var(--white);
    padding: 28px 0;
}
.mandate-banner .container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mandate-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(245,166,35,0.2);
    border: 2px solid var(--accent-warning);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.mandate-text { font-size: 15px; line-height: 1.6; }
.mandate-text strong { color: var(--cyan-bright); }

/* ========================================
   OFFERS SECTION
   ======================================== */
.offers-section {
    background: var(--white);
}

/* --- Offer Tab Cards (collapsed) --- */
.offer-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.offer-tab {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
/* Teal top line */
.offer-tab::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--teal-base);
    transition: background 0.35s ease;
}
/* Hover on collapsed */
.offer-tab:hover {
    border-color: var(--cyan-bright);
    box-shadow: var(--shadow-sm);
}
.offer-tab:hover::before {
    background: var(--cyan-bright);
}

/* Tab inner elements */
.offer-tab-icon {
    font-size: 24px;
    margin-bottom: 12px;
    width: 44px;
    height: 44px;
    background: rgba(0,212,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}
.offer-tab h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.4s ease;
}
.offer-tab p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0 0 12px;
    flex-grow: 1;
    transition: color 0.4s ease;
}

/* "Read more" / "Close" label */
.offer-tab-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan-bright);
    margin-top: auto;
    transition: color 0.4s ease;
}
.offer-tab-more svg {
    transition: transform 0.35s ease;
}
/* Toggle text: show "Read more", hide "Close" by default */
.offer-close-text { display: none; }

/* ---- Active tab state (dark gradient, like old offer 4) ---- */
.offer-tab.active {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.offer-tab.active::before {
    background: var(--cyan-bright);
}
.offer-tab.active .offer-tab-icon {
    background: rgba(0,212,255,0.15);
}
.offer-tab.active h3 {
    color: var(--white);
}
.offer-tab.active p {
    color: rgba(255,255,255,0.6);
}
.offer-tab.active .offer-tab-more {
    color: var(--cyan-bright);
}
.offer-tab.active .offer-tab-more svg {
    transform: rotate(180deg);
}
/* When active: show "Close", hide "Read more" */
.offer-tab.active .offer-more-text { display: none; }
.offer-tab.active .offer-close-text { display: inline; }

/* --- Offer Panels (expanded content below tabs) --- */
.offer-panels {
    position: relative;
}
.offer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-panel-wrap {
    padding-top: 20px;
}
.offer-panel-inner {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border-top: 4px solid var(--cyan-bright);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}
.offer-panel.active .offer-panel-inner {
    opacity: 1;
    transform: translateY(0);
}
.offer-panel-header {
    margin-bottom: 20px;
}
.offer-panel-header h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-top: 10px;
}
.offer-panel-body p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.75;
}
.offer-panel-body p:last-child { margin-bottom: 0; }

/* Offer tags inside panels */
.offer-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(0,212,255,0.15);
    color: var(--cyan-bright);
}
.offer-tag.recommended {
    background: rgba(0,212,255,0.2);
    color: var(--cyan-bright);
}
.offer-tag.best-value {
    background: rgba(0,212,255,0.2);
    color: var(--cyan-bright);
}

/* Expanded grid (offer 4 sub-details) */
.expanded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}
.expanded-detail {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 24px;
}
.expanded-detail h4 {
    color: var(--cyan-bright);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
.expanded-detail p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}
.expanded-detail ul { list-style: none; padding: 0; }
.expanded-detail ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.expanded-detail ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--cyan-bright);
    font-weight: 700;
}

/* ========================================
   ISO KNOWLEDGE BASE
   ======================================== */
.knowledge-section { background: var(--off-white); }
.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.knowledge-intro h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 16px; }
.knowledge-intro p { margin-bottom: 24px; color: var(--text-body); }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--teal-base); }
.accordion-trigger .chevron {
    width: 20px; height: 20px;
    transition: transform 0.3s;
    color: var(--cyan-bright);
}
.accordion-item.active .accordion-trigger .chevron { transform: rotate(180deg); }
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.accordion-panel-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
}
.accordion-panel-inner p { margin-bottom: 12px; }
.accordion-panel-inner p:last-child { margin-bottom: 0; }

/* Process Steps */
.process-steps { counter-reset: step; padding-left: 0; list-style: none; }
.process-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    font-size: 15px;
}
.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 32px; height: 32px;
    background: var(--teal-base);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.process-steps li strong { color: var(--text-dark); }

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section { background: var(--off-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--gray-light);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--teal-base), var(--teal-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
}
.feature-card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.65;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    background: var(--white);
}

/* Included features */
.pricing-features {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-bottom: 48px;
}
.pricing-features-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}
.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 24px;
    list-style: none;
    padding: 0;
}
.pricing-features-grid li {
    font-size: 14px;
    color: var(--text-body);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}
.pricing-features-grid li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-success);
    font-weight: 700;
    font-size: 15px;
}

/* Pricing tiers */
.pricing-tiers-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pricing-tiers-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Sliding scale step-down chart */
.pricing-scale {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}
.scale-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 180px;
    position: relative;
}
/* Y-axis */
.scale-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 12px;
    width: 54px;
    flex-shrink: 0;
    position: relative;
}
.y-label {
    position: absolute;
    right: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.y-row1 { top: 0; }
.y-row2 { top: 50%; transform: translateY(-50%); }
.y-row3 { bottom: 0; }
.scale-area {
    flex: 1;
    position: relative;
    border-left: 2px solid var(--gray-light);
    border-bottom: 2px solid var(--gray-light);
}
/* Dashed connector lines from y-axis to bars 2 & 3 */
.scale-connector {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px dashed var(--gray-mid);
    opacity: 0.4;
}
.conn-1 { top: 16px; }
.conn-2 { top: 50%; }
.conn-3 { bottom: 16px; }
/* Horizontal bars */
.scale-hbar {
    position: absolute;
    height: 32px;
    border-radius: 0 6px 6px 0;
    transition: width 0.6s ease;
}
.hbar-1 {
    top: 16px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--teal-darkest), var(--teal-dark));
}
.hbar-2 {
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-mid));
}
.hbar-3 {
    bottom: 16px;
    transform: translateY(50%);
    background: linear-gradient(90deg, var(--teal-mid), var(--cyan-bright));
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hbar-arrow {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-right: 6px;
}
/* X-axis */
.scale-x-axis {
    position: relative;
    margin-left: 56px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-dark);
    height: 20px;
}
.x-label {
    position: absolute;
    font-weight: 600;
}
.x-title {
    position: absolute;
    right: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-mid);
}
.scale-caption {
    text-align: center;
    font-size: 13px;
    color: var(--gray-dark);
    margin-top: 20px;
    line-height: 1.5;
}

/* Sliding scale section */
.scale-section {
    margin-top: 48px;
}
.scale-section-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.scale-section-subtitle {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}
.scale-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}
.scale-block h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Tier rows */
.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}
.tier-row:nth-child(odd) {
    background: var(--off-white);
}
.tier-range {
    font-weight: 600;
    color: var(--text-dark);
}
.tier-price {
    font-weight: 700;
    color: var(--teal-base);
}

/* Calculator */
.pricing-calculator {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-top: 48px;
    text-align: center;
}
.pricing-calculator h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pricing-calculator > p {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 28px;
    line-height: 1.5;
}
.calc-inputs {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.calc-input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
}
.calc-input-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.calc-input-group input {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    outline: none;
    width: 200px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-input-group input:focus {
    border-color: var(--cyan-bright);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.calc-results {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}
.calc-breakdown {
    margin-bottom: 12px;
}
.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid var(--gray-light);
}
.calc-row.total {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--teal-base);
}
.calc-row small {
    font-weight: 400;
    color: var(--gray-mid);
}
.calc-amount {
    font-weight: 600;
}
.calc-totals {
    margin-top: 8px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    color: var(--white);
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-contact {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.cta-contact a { color: var(--cyan-bright); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--teal-darkest);
    color: var(--gray-mid);
    padding: 40px 0 24px;
    text-align: center;
    font-size: 14px;
}
.footer-brand {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand span { color: var(--cyan-bright); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 16px 0;
}
.footer-links a {
    color: var(--gray-mid);
    font-size: 14px;
    display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--cyan-bright); }
.footer-copy { margin-top: 20px; font-size: 13px; color: rgba(148,163,171,0.6); }

/* ========================================
   CONTACT FORM MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,30,38,0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.open {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
}
.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}
.modal-overlay.open .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-mid);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.modal-close:hover {
    color: var(--text-dark);
    background: var(--gray-light);
}
.modal-header {
    margin-bottom: 28px;
}
.modal-header .section-label {
    margin-bottom: 8px;
}
.modal-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.modal-header p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
}

/* Form fields */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group label .required {
    color: #e74c3c;
}
.form-group label .optional {
    color: var(--gray-mid);
    font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan-bright);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-mid);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%234A5C64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-actions {
    margin-top: 8px;
}
.form-actions .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
}
.form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 32px 0 16px;
}
.success-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, #22b573, var(--accent-success));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(46,204,113,0.25);
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.form-success p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 12px;
}
.form-success .success-subtext {
    font-size: 13px;
    color: var(--gray-mid);
    margin-top: 8px;
}
.form-success .success-subtext a {
    color: var(--teal-base);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 36px; }
    .hero-stats { max-width: 520px; }
    .knowledge-grid { grid-template-columns: 1fr; }
    .offer-tabs { grid-template-columns: 1fr; }
    .expanded-grid { grid-template-columns: 1fr; }
    .offer-panel-inner { padding: 32px 28px; }
}

/* ---------- Tablet / Small desktop ---------- */
@media (max-width: 768px) {
    /* Global spacing */
    .container { padding: 0 20px; }
    .section-pad { padding: 48px 0; }
    .section-subtitle { font-size: 15px; margin-bottom: 28px; }
    .section-title { margin-bottom: 14px; }
    .section-label { font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }

    /* Topbar */
    .topbar { font-size: 12px; padding: 6px 0; }
    .topbar .container { justify-content: center; text-align: center; }
    .topbar-contact { gap: 16px; }
    .topbar-icon { font-size: 23px; }

    /* Header / Nav */
    .header { padding: 12px 0; }
    .logo { font-size: 24px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--teal-dark);
        padding: 16px 24px;
        gap: 14px;
        border-bottom: 2px solid rgba(0,212,255,0.15);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; padding: 4px 0; }
    .nav-toggle { display: block; }

    /* Buttons (global) */
    .btn-primary, .btn-outline { padding: 10px 22px; font-size: 14px; }

    /* Hero */
    .hero { padding: 36px 0 32px; }
    .hero-content { text-align: center; }
    .hero h1 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 6px; }
    .hero .hero-subtitle { font-size: clamp(14px, 3vw, 17px); margin-bottom: 14px; }
    .hero-text { font-size: 14px; margin-left: auto; margin-right: auto; margin-bottom: 22px; line-height: 1.6; }
    .hero-cta-group { justify-content: center; gap: 10px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-stats-heading { font-size: 12px; gap: 10px; letter-spacing: 1.2px; margin-bottom: 2px; }
    .stat-card { padding: 14px 12px; }
    .stat-card .stat-icon { width: 32px; height: 32px; font-size: 16px; margin-bottom: 8px; border-radius: 8px; }
    .stat-card h3 { font-size: 12px; margin-bottom: 3px; }
    .stat-card p { font-size: 11px; line-height: 1.4; }
    .stat-read-more { font-size: 10px; margin-top: 6px; }

    /* Mandate banner */
    .mandate-banner { padding: 18px 0; }
    .mandate-banner .container { flex-direction: column; text-align: center; gap: 12px; }
    .mandate-icon { width: 38px; height: 38px; font-size: 20px; }
    .mandate-text { font-size: 13px; line-height: 1.55; }

    /* Offers */
    .offer-tabs { grid-template-columns: 1fr; gap: 10px; }
    .offer-tab { padding: 18px 16px; }
    .offer-tab-icon { width: 36px; height: 36px; font-size: 20px; margin-bottom: 8px; }
    .offer-tab h3 { font-size: 15px; margin-bottom: 4px; }
    .offer-tab p { font-size: 12px; margin-bottom: 8px; }
    .offer-tab-more { font-size: 11px; }
    .offer-panel-wrap { padding-top: 4px; }
    .offer-panel-inner { padding: 22px 18px; border-radius: var(--radius-md); }
    .offer-panel-header h3 { font-size: 17px; }
    .offer-panel-body p { font-size: 13px; line-height: 1.65; margin-bottom: 10px; }

    /* Knowledge / ISO */
    .knowledge-grid { grid-template-columns: 1fr; gap: 28px; }
    .accordion-trigger { padding: 16px 18px; font-size: 15px; }
    .accordion-panel-inner { padding: 0 18px 16px; font-size: 14px; }
    .process-steps li { font-size: 14px; padding-left: 40px; margin-bottom: 16px; }
    .process-steps li::before { width: 28px; height: 28px; font-size: 13px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; gap: 14px; }
    .feature-card { padding: 22px 18px; }
    .feature-icon { width: 44px; height: 44px; font-size: 22px; margin-bottom: 14px; border-radius: 10px; }
    .feature-card h3 { font-size: 15px; margin-bottom: 6px; }
    .feature-card p { font-size: 13px; }

    /* Pricing */
    .pricing-features { padding: 24px 20px; margin-bottom: 32px; }
    .pricing-features-title { font-size: 16px; margin-bottom: 16px; }
    .pricing-features-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 16px; }
    .pricing-features-grid li { font-size: 13px; padding: 5px 0 5px 22px; }
    .pricing-tiers-title { font-size: 17px; }
    .pricing-tiers-subtitle { font-size: 14px; margin-bottom: 24px; }
    .scale-row { grid-template-columns: 1fr; gap: 32px; }
    .pricing-scale { padding: 24px 20px; }
    .y-label { font-size: 12px; }
    .scale-caption { font-size: 13px; margin-top: 16px; }
    .tier-row { padding: 10px 14px; font-size: 13px; }
    .pricing-calculator { padding: 28px 20px; }
    .pricing-calculator h3 { font-size: 18px; }
    .pricing-calculator > p { font-size: 13px; }
    .calc-inputs { flex-direction: column; align-items: center; }
    .calc-input-group input { font-size: 16px; padding: 12px 14px; }

    /* CTA */
    .cta-section p { font-size: 15px; margin-bottom: 28px; }
    .cta-contact { font-size: 13px; margin-top: 24px; }

    /* Footer */
    .footer { padding: 32px 0 18px; }
    .footer-brand { font-size: 20px; margin-bottom: 8px; }
    .footer p { font-size: 13px; }
    .footer-links { gap: 16px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; }
    .footer-copy { font-size: 11px; margin-top: 14px; }

    /* Modal / Form */
    .modal-overlay { padding: 16px 12px; }
    .modal-content { padding: 28px 20px; border-radius: var(--radius-md); }
    .modal-header { margin-bottom: 20px; }
    .modal-header h3 { font-size: 20px; }
    .modal-header p { font-size: 13px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { font-size: 12px; }
    .form-group input, .form-group select, .form-group textarea { padding: 10px 14px; font-size: 14px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-actions .btn-primary { padding: 12px 24px; font-size: 15px; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
    /* Global spacing */
    .container { padding: 0 16px; }
    .section-pad { padding: 36px 0; }
    .section-label { font-size: 11px; letter-spacing: 1.8px; margin-bottom: 8px; }
    .section-title { font-size: clamp(22px, 6vw, 28px); margin-bottom: 10px; }
    .section-subtitle { font-size: 13px; margin-bottom: 20px; }

    /* Topbar */
    .topbar { font-size: 11px; padding: 5px 0; }
    .topbar-contact { gap: 12px; }

    /* Header */
    .header { padding: 10px 0; }
    .logo { font-size: 22px; }

    /* Buttons (global) */
    .btn-primary, .btn-outline { padding: 10px 20px; font-size: 13px; }

    /* Hero */
    .hero { padding: 28px 0 24px; }
    .hero h1 { font-size: clamp(21px, 6.5vw, 26px); line-height: 1.2; }
    .hero .hero-subtitle { font-size: 13px; margin-bottom: 12px; }
    .hero-text { font-size: 13px; margin-bottom: 18px; line-height: 1.55; }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 8px; }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-outline { width: auto; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-stats-heading { font-size: 10px; gap: 6px; letter-spacing: 1px; margin-bottom: 0; }
    .stat-card { padding: 10px 10px; border-radius: var(--radius-sm); }
    .stat-card .stat-icon { width: 28px; height: 28px; font-size: 14px; margin-bottom: 6px; border-radius: 7px; }
    .stat-card h3 { font-size: 11px; }
    .stat-card p { font-size: 10px; line-height: 1.35; }
    .stat-read-more { font-size: 9px; margin-top: 4px; }

    /* Mandate banner */
    .mandate-banner { padding: 14px 0; }
    .mandate-icon { width: 34px; height: 34px; font-size: 18px; border-width: 1.5px; }
    .mandate-text { font-size: 12px; line-height: 1.5; }

    /* Offers */
    .offer-tab { padding: 16px 14px; }
    .offer-tab-icon { width: 32px; height: 32px; font-size: 18px; margin-bottom: 6px; border-radius: 8px; }
    .offer-tab h3 { font-size: 14px; }
    .offer-tab p { font-size: 11px; margin-bottom: 6px; }
    .offer-panel-inner { padding: 18px 14px; }
    .offer-panel-header h3 { font-size: 16px; }
    .offer-panel-body p { font-size: 12px; line-height: 1.6; margin-bottom: 8px; }
    .expanded-grid { gap: 10px; margin-top: 16px; }
    .expanded-detail { padding: 14px; }
    .expanded-detail h4 { font-size: 13px; margin-bottom: 6px; }
    .expanded-detail p { font-size: 12px; }
    .expanded-detail ul li { font-size: 12px; margin-bottom: 4px; }

    /* Knowledge / ISO */
    .accordion-trigger { padding: 14px 14px; font-size: 14px; }
    .accordion-trigger .chevron { width: 16px; height: 16px; }
    .accordion-panel-inner { padding: 0 14px 14px; font-size: 13px; line-height: 1.6; }
    .process-steps li { font-size: 13px; padding-left: 36px; margin-bottom: 14px; line-height: 1.55; }
    .process-steps li::before { width: 26px; height: 26px; font-size: 12px; }

    /* Features */
    .feature-card { padding: 18px 16px; }
    .feature-icon { width: 40px; height: 40px; font-size: 20px; margin-bottom: 12px; }
    .feature-card h3 { font-size: 14px; margin-bottom: 6px; }
    .feature-card p { font-size: 12px; line-height: 1.55; }

    /* Pricing */
    .pricing-features { padding: 20px 16px; margin-bottom: 24px; }
    .pricing-features-title { font-size: 14px; margin-bottom: 12px; }
    .pricing-features-grid { grid-template-columns: 1fr; gap: 0; }
    .pricing-features-grid li { font-size: 12px; padding: 4px 0 4px 20px; }
    .pricing-tiers-title { font-size: 15px; }
    .pricing-tiers-subtitle { font-size: 12px; margin-bottom: 18px; line-height: 1.5; }
    .pricing-scale { padding: 20px 14px; }
    .scale-wrapper { height: 140px; }
    .y-label { font-size: 11px; }
    .scale-caption { font-size: 12px; margin-top: 14px; }
    .tier-row { padding: 8px 10px; font-size: 12px; }
    .pricing-calculator { padding: 22px 16px; }
    .pricing-calculator h3 { font-size: 16px; }
    .pricing-calculator > p { font-size: 12px; margin-bottom: 18px; }
    .calc-input-group input { font-size: 16px; padding: 11px 12px; }
    .calc-row { font-size: 13px; padding: 8px 0; }
    .calc-row.total { font-size: 15px; padding-top: 12px; }

    /* CTA */
    .cta-section h2 { font-size: clamp(22px, 6vw, 28px); }
    .cta-section p { font-size: 13px; margin-bottom: 22px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 8px; }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline { width: auto; justify-content: center; }
    .cta-contact { font-size: 11px; margin-top: 20px; }

    /* Footer */
    .footer { padding: 24px 0 14px; }
    .footer-brand { font-size: 18px; margin-bottom: 6px; }
    .footer p { font-size: 12px; }
    .footer-links { gap: 12px; }
    .footer-links a { font-size: 12px; }
    .footer-copy { font-size: 10px; margin-top: 12px; }

    /* Modal / Form */
    .modal-overlay { padding: 10px 8px; }
    .modal-content { padding: 22px 16px; }
    .modal-close { top: 10px; right: 12px; font-size: 24px; }
    .modal-header { margin-bottom: 16px; }
    .modal-header .section-label { font-size: 11px; }
    .modal-header h3 { font-size: 18px; }
    .modal-header p { font-size: 12px; }
    .form-group { margin-bottom: 12px; }
    .form-group label { font-size: 11px; margin-bottom: 4px; }
    .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 14px; }
    .form-group textarea { min-height: 70px; }
    .form-actions .btn-primary { padding: 12px 20px; font-size: 14px; }
    .success-icon { width: 56px; height: 56px; font-size: 26px; margin-bottom: 16px; }
    .form-success { padding: 20px 0 10px; }
    .form-success h3 { font-size: 22px; margin-bottom: 10px; }
    .form-success p { font-size: 13px; }
}
