/*
Theme Name: BullionSMS Redesign
Author: Azeez Sodiq
Description: Custom theme for the BullionSMS landing page.
Version: 1.0
*/
/* ── WORDPRESS RESET: override any theme styles bleeding in ── */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

#page,
#content,
#main,
.site,
.site-content,
.entry-content,
.wp-block-group {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.admin-bar {
    margin-top: 0 !important;
}

:root {
    --teal: rgba(20, 156, 177, 1);
    --teal-dark: rgba(16, 130, 148, 1);
    --teal-light: rgba(20, 156, 177, 0.1);
    --teal-mid: rgba(20, 156, 177, 0.15);
    --navy: #0f2942;
    --dark: #111827;
    --dark2: #1e293b;
    --body: #374151;
    --muted: #6b7280;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --green: #22c55e;
    --green-light: #dcfce7;
    --purple-light: #ede9fe;
    --purple: #7c3aed;
    --orange-light: #fef3c7;
    --orange: #d97706;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* ══════════════════════════════════════════
TYPOGRAPHY — ALL MATCHED TO FIGMA SPECS
Font: Inter throughout
══════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: var(--body);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100% !important;
}

/* Base heading reset — all use Inter */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
    color: var(--dark);
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── FULL WIDTH SYSTEM ──
Every section stretches 100% of the viewport.
.container centers content inside with padding.
*/
html {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* ── NAV ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    width: 100%;
    left: 0;
    right: 0;
}

.nav-inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.nav-logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-logo span {
    color: rgba(20, 156, 177, 1);
}

.nav-links {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.nav-links a {
    padding: 6px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0px;
    color: var(--body);
    transition: all .2s;
}

.nav-links a:hover {
    background: var(--light);
    color: var(--dark);
}

.nav-links a.active {
    color: rgba(20, 156, 177, 1);
    font-weight: 600;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    padding: 8px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: all .2s;
}

.btn-ghost:hover {
    background: var(--light);
}

.btn-primary {
    padding: 10px 22px;
    border-radius: 8px;
    background: rgba(20, 156, 177, 1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn-primary:hover {
    background: rgba(16, 130, 148, 1);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #e8f7f7 0%, #f0f9fa 50%, #eaf4fd 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(20, 156, 177, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 156, 177, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 156, 177, 0.1);
    color: rgba(20, 156, 177, 1);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 24px;
}

/* Hero H1 — "Connect Instantly with Bullion SMS"
Inter 700 Bold 60px / line-height 75px (matches Figma 60px shown) */
.hero h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 0px;
    margin-bottom: 16px;
    color: var(--dark);
}

.hero h1 .accent {
    color: rgba(20, 156, 177, 1);
}

/* Hero body text:
"Send bulk SMS messages globally..."
Inter 400 Regular 20px / line-height: 32.5px */
.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    letter-spacing: 0px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0px;
    cursor: pointer;
    transition: all .25s;
    border: none;
}

.btn-hero-primary {
    background: rgba(20, 156, 177, 1);
    color: white;
}

.btn-hero-primary:hover {
    background: rgba(16, 130, 148, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 156, 177, 0.35);
}

.btn-hero-outline {
    background: white;
    color: var(--dark);
    border: 1.5px solid var(--border) !important;
}

.btn-hero-outline:hover {
    border-color: rgba(20, 156, 177, 1) !important;
    color: rgba(20, 156, 177, 1);
}

/* Hero stats: 98%, 50M+, 190+ */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item .stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    color: var(--dark);
}

.stat-item .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--muted);
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrap {
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-float {
    position: absolute;
    bottom: 32px;
    left: -20px;
    background: white;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 156, 177, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.float-num {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: var(--dark);
}

.float-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
}

/* ── SECTIONS ── */
.section {
    padding: 96px 0;
    width: 100%;
}

.section-sm {
    padding: 64px 0;
    width: 100%;
}

.section-dark {
    background: var(--dark);
    color: white;
    width: 100%;
}

.section-teal {
    background: linear-gradient(135deg, rgba(20, 156, 177, 1) 0%, rgba(14, 112, 128, 1) 100%);
    color: white;
    width: 100%;
}

.section-light {
    background: var(--light);
    width: 100%;
}

.section-gray {
    background: #f9fafb;
    width: 100%;
}

/* Section heading area */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

/* "Why Choose Bullion SMS?" / "SMS for Every Business Need"
Inter 700 Bold 36px / line-height: 40px */
.section-head h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 14px;
}

/* "The most reliable SMS platform..." / "From marketing to transactional..."
Inter 400 Regular 20px / line-height: 28px */
.section-head p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--muted);
}

/* ── FEATURE CARDS ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .25s;
}

.feat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: rgba(20, 156, 177, 0.3);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feat-icon.teal {
    background: rgba(20, 156, 177, 0.1);
    color: rgba(20, 156, 177, 1);
}

.feat-icon.purple {
    background: var(--purple-light);
    color: var(--purple);
}

.feat-icon.green {
    background: var(--green-light);
    color: var(--green);
}

.feat-icon.orange {
    background: var(--orange-light);
    color: var(--orange);
}

/* "Global Reach" — Inter 700 Bold 20px / line-height: 28px */
.feat-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* "Send SMS to over 190 countries..."
Inter 400 Regular 16px / line-height: 24px */
.feat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--muted);
}

/* ── BUSINESS TYPES (SMS for Every Business Need) ── */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.biz-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .25s;
}

.biz-card:hover {
    box-shadow: var(--shadow);
}

.biz-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

/* "Marketing SMS" — same as feat-card h3: Inter 700 20px / 28px */
.biz-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    margin-bottom: 14px;
    color: var(--dark);
}

.biz-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--body);
}

.biz-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(20, 156, 177, 0.1);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23149CB1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ── INDUSTRIES ── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .25s;
}

.industry-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.industry-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.industry-body {
    padding: 24px 28px;
}

.industry-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: all .25s;
}

.price-card:hover {
    box-shadow: var(--shadow);
}

.price-card.featured {
    background: rgba(20, 156, 177, 1);
    border-color: rgba(20, 156, 177, 1);
    color: white;
    transform: scale(1.04);
}

.price-card.featured h3,
.price-card.featured .price-amount,
.price-card.featured .price-period,
.price-card.featured .price-feat {
    color: white;
}

.price-card.featured .price-feat::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-color: rgba(255, 255, 255, 0.2);
}

.popular-badge {
    display: inline-block;
    background: white;
    color: rgba(20, 156, 177, 1);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.price-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--muted);
    margin-bottom: 6px;
}

.price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1px;
    color: var(--dark);
}

.price-period {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 24px;
}

.price-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.price-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.price-feat::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(20, 156, 177, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23149CB1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.btn-price {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    transition: all .2s;
    color: var(--dark);
}

.btn-price:hover {
    border-color: rgba(20, 156, 177, 1);
    color: rgba(20, 156, 177, 1);
}

.btn-price-teal {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: white;
    color: rgba(20, 156, 177, 1);
    cursor: pointer;
    transition: all .2s;
}

.btn-price-teal:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ── CTA BANNER ── */
/* "Start Messaging Your Customers Today"
Inter 700 Bold 48px / line-height: 48px */
.cta-banner {
    text-align: center;
    padding: 96px 24px;
}

.cta-banner h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.cta-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    padding: 14px 32px;
    border-radius: 10px;
    background: white;
    color: rgba(20, 156, 177, 1);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
    padding: 14px 32px;
    border-radius: 10px;
    background: transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all .2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ── LOGO CAROUSEL ── */
.carousel-wrap {
    background: #f8fafc url('https://res.cloudinary.com/dsdpdnxf0/image/upload/v1774026202/190f86f8ecb9ac8608e9a61b72b1436795b501d4_1_zp3gbi.png') center center no-repeat;
    background-size: cover;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 0;
    overflow: hidden;
    width: 100%;
    height: 120px;
    box-sizing: content-box;
}

.carousel-inner {
    display: none;
}

.carousel-inner:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.logo-slot {
    width: 170px;
    height: 76px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 0 10px;
    padding: 12px 20px;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.logo-slot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ── FOOTER ── */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand .footer-logo span {
    color: rgba(20, 156, 177, 1);
}

/* "Bulk SMS Messaging made easy..."
Inter 400 Regular 12px / line-height: 20px */
.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    max-width: 240px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all .2s;
}

.social-icon:hover {
    background: rgba(20, 156, 177, 1);
    color: white;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    transition: color .2s;
}

.footer-col ul a:hover {
    color: rgba(20, 156, 177, 1);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: rgba(20, 156, 177, 1);
    margin-top: 2px;
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: rgba(20, 156, 177, 1);
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

/* ── FORM SECTION ── */
.form-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0f2942 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(20, 156, 177, 0.08) 0%, transparent 60%);
}

.form-wrap {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.form-wrap h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0px;
    color: white;
    margin-bottom: 12px;
}

.form-wrap h2 .accent {
    color: rgba(20, 156, 177, 1);
}

.form-wrap p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: all .2s;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    border-color: rgba(20, 156, 177, 1);
    background: rgba(255, 255, 255, 0.1);
}

.btn-form {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: var(--green);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: all .25s;
}

.btn-form:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

/* ── FAQ ── */
.faq-section {
    background: var(--dark2);
    padding: 72px 0;
}

.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: white;
    transition: all .2s;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-q i {
    color: rgba(20, 156, 177, 1);
    transition: transform .3s;
    font-size: 14px;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.faq-actions a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(20, 156, 177, 1);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 96px 0;
}

.testi-head {
    text-align: center;
    margin-bottom: 52px;
}

.testi-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 10px;
}

.testi-head h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--dark);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .25s;
}

.testi-card:hover {
    box-shadow: var(--shadow);
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.testi-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--body);
    margin-bottom: 18px;
}

.testi-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.testi-role {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    font-style: italic;
}

/* ── ABOUT PAGE ── */
.about-hero {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0fdfc 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 16px;
}

.about-hero h1 span {
    color: rgba(20, 156, 177, 1);
}

.about-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-box .num {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: rgba(20, 156, 177, 1);
}

.stat-box .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 6px;
}

.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-body p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--body);
    margin-bottom: 18px;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--green);
    color: white;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.btn-green:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .25s;
}

.value-card:hover {
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(20, 156, 177, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
}

.value-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 8px;
}

.value-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--muted);
}

/* ── CONTACT PAGE ── */
.contact-hero {
    background: linear-gradient(135deg, #f0fdfc 0%, #f8fafc 100%);
    padding: 72px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 14px;
}

.contact-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--muted);
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 8px;
}

.contact-info>p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--muted);
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(20, 156, 177, 0.1);
    color: rgba(20, 156, 177, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 3px;
}

.contact-detail p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--muted);
    margin: 0;
}

.hours-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
}

.hours-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}

.hours-box p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--muted);
    margin: 0 0 4px;
}

.contact-form-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 6px;
}

.contact-form-card h3 span {
    color: rgba(20, 156, 177, 1);
}

.contact-form-card>p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: all .2s;
    outline: none;
    resize: vertical;
    min-height: 100px;
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-textarea:focus {
    border-color: rgba(20, 156, 177, 1);
}

.btn-send {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: rgba(20, 156, 177, 1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
}

.btn-send:hover {
    background: rgba(16, 130, 148, 1);
    transform: translateY(-2px);
}

/* ── AUTH PAGES ── */
.auth-wrap {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0fdfc 100%);
    padding: 40px 24px;
}

.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(20, 156, 177, 1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.auth-logo-icon i {
    color: white;
    font-size: 24px;
}

.auth-card h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    margin-bottom: 6px;
}

.auth-card>p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 28px;
}

.btn-google {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 20px;
}

.btn-google:hover {
    border-color: rgba(20, 156, 177, 1);
    color: rgba(20, 156, 177, 1);
}

.divider {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 20px;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.divider span {
    background: white;
    padding: 0 12px;
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: all .2s;
    margin-bottom: 14px;
}

.auth-input:focus {
    border-color: rgba(20, 156, 177, 1);
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-row {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.auth-row a {
    color: rgba(20, 156, 177, 1);
    font-weight: 500;
}

.btn-auth {
    width: 100%;
    padding: 13px;
    background: rgba(20, 156, 177, 1);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
}

.btn-auth:hover {
    background: rgba(16, 130, 148, 1);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

.auth-footer a {
    color: rgba(20, 156, 177, 1);
    font-weight: 500;
}

.auth-secure {
    text-align: center;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.auth-secure i {
    color: rgba(20, 156, 177, 1);
}

/* ── REGISTER PAGE ── */
.register-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: calc(100vh - 72px);
}

.register-left {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0fdfc 100%);
    padding: 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-left h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 14px;
}

.register-left h2 span {
    color: rgba(20, 156, 177, 1);
}

.register-left>p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--muted);
    margin-bottom: 36px;
}

.register-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.reg-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(20, 156, 177, 1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.register-benefit h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 3px;
}

.register-benefit p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--muted);
    margin: 0;
}

.register-right {
    padding: 48px 52px;
    display: flex;
    align-items: center;
}

.register-form {
    width: 100%;
    max-width: 440px;
}

.register-form h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 28px;
}

/* ── WHATSAPP HERO ── */
#page-whatsapp {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

#page-whatsapp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/dsdpdnxf0/image/upload/v1774026101/8c98994518b575bfd8c949e91d20548b_in5qms.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.1;
    /* Making it faint */
    z-index: 0;
    pointer-events: none;
}

#page-whatsapp>* {
    position: relative;
    z-index: 1;
}

.wa-hero {
    background: transparent;
    padding: 72px 0;
}

.wa-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.wa-hero h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 16px;
}

.wa-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--muted);
    margin-bottom: 32px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #22c55e;
    color: white;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn-wa:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.how-steps {
    max-width: 920px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 88px;
}

.step-item.reverse {
    direction: rtl;
}

.step-item.reverse>* {
    direction: ltr;
}

.step-num {
    font-family: 'Inter', sans-serif;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 10px;
}

.step-item h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 14px;
}

.step-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--muted);
}

.step-mockup {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: var(--dark);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s;
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: rgba(20, 156, 177, 1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1400px) {

    .container,
    .nav-inner,
    .hero-inner {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (max-width: 900px) {

    .container,
    .nav-inner,
    .hero-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-inner,
    .about-body,
    .contact-body,
    .register-wrap,
    .wa-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .hero p {
        font-size: 16px;
        line-height: 26px;
    }

    .features-grid,
    .biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-card.featured {
        transform: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .cta-banner h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .step-item {
        grid-template-columns: 1fr;
    }

    .step-item.reverse {
        direction: ltr;
    }
}

@media (max-width: 600px) {

    .container,
    .nav-inner,
    .hero-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .features-grid,
    .biz-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .register-left,
    .register-right {
        padding: 32px 24px;
    }
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.nav-logo span {
    color: rgba(20, 156, 177, 1);
}

.nav-links {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.nav-links a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    transition: all .2s;
}

.nav-links a:hover {
    background: var(--light);
    color: var(--dark);
}

.nav-links a.active {
    color: rgba(20, 156, 177, 1);
    font-weight: 600;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.btn-ghost:hover {
    background: var(--light);
}

.btn-primary {
    padding: 10px 22px;
    border-radius: 8px;
    background: rgba(20, 156, 177, 1);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: rgba(16, 130, 148, 1);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
}

.page.active {
    display: block;
}