/* ================================================================
   GRUPO SAAS — Modern Landing Page Design System
   ================================================================ */

/* ── 1. Design Tokens ──────────────────────────────────── */
:root {
    /* Primary palette */
    --g-primary:       #0f172a;
    --g-primary-light: #1e293b;
    --g-primary-hover: #334155;

    /* Accent */
    --g-accent:        #f97316;
    --g-accent-light:  rgba(249,115,22,.12);
    --g-accent-dark:   #ea580c;

    /* Neutral */
    --g-text:          #334155;
    --g-text-light:    #64748b;
    --g-text-muted:    #94a3b8;
    --g-heading:       #0f172a;
    --g-white:         #ffffff;
    --g-bg:            #ffffff;
    --g-bg-alt:        #f8fafc;
    --g-bg-dark:       #0f172a;
    --g-border:        #e2e8f0;
    --g-border-light:  #f1f5f9;

    /* Semantic */
    --g-success:       #22c55e;
    --g-danger:        #ef4444;
    --g-info:          #3b82f6;
    --g-star:          #f59e0b;

    /* Shadows */
    --g-shadow-sm:     0 1px 2px rgba(0,0,0,.05);
    --g-shadow:        0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --g-shadow-md:     0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
    --g-shadow-lg:     0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.05);
    --g-shadow-xl:     0 25px 50px -12px rgba(0,0,0,.15);

    /* Radii */
    --g-radius-sm:     8px;
    --g-radius:        12px;
    --g-radius-lg:     16px;
    --g-radius-xl:     24px;
    --g-radius-full:   9999px;

    /* Transition */
    --g-ease:          cubic-bezier(.4,0,.2,1);

    /* Typography */
    --g-font:          'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --g-font-mono:     'SF Mono', 'Fira Code', monospace;
}

/* ── 2. Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body.landing-page {
    font-family: var(--g-font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--g-text);
    background: var(--g-bg);
    overflow-x: hidden;
    letter-spacing: -.01em;
}

.landing-page a:not(.g-btn) { color: inherit; text-decoration: none; transition: color .2s var(--g-ease); }
.landing-page a:not(.g-btn):hover { color: var(--g-accent) !important; text-decoration: none; }
.landing-page a.g-btn { text-decoration: none; }
.landing-page img { max-width: 100%; height: auto; }
.landing-page section { padding: 90px 0; position: relative; }
.landing-page p { margin-bottom: 0; }
.landing-page ul { padding-left: 0 !important; margin-bottom: 0; }

.landing-page h1, .landing-page h2, .landing-page h3,
.landing-page h4, .landing-page h5, .landing-page h6 {
    color: var(--g-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: .5rem;
}

::selection { background: var(--g-primary); color: #fff; }

/* ── 3. Layout ─────────────────────────────────────────── */
.landing-page .container { max-width: 1200px; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--g-accent-light);
    color: var(--g-accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--g-radius-full);
    letter-spacing: .02em;
    margin-bottom: 14px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--g-heading);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--g-text-light);
    max-width: 600px;
    line-height: 1.7;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── 4. Header / Navbar ────────────────────────────────── */
.g-header {
    background: var(--g-bg-dark);
    min-height: 64px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
    transition: background .3s var(--g-ease), box-shadow .3s var(--g-ease);
}
.g-header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(15,23,42,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
    animation: slideDown .3s var(--g-ease);
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.g-header .logo img { max-width: 130px; }

.g-header .nav-links { list-style: none; display: flex; gap: 6px; align-items: center; }
.g-header .nav-links li a {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--g-radius-sm);
    transition: all .2s var(--g-ease);
}
.g-header .nav-links li a:hover { color: #fff !important; background: rgba(255,255,255,.08); }

/* ── Services Dropdown (click-based) ───────────────────── */
.g-header .nav-links li.has-dropdown { position: relative; }
.g-header .nav-links li.has-dropdown > a { cursor: pointer; user-select: none; }
.g-header .nav-links .dropdown-submenu,
#mobile-nav .dropdown-submenu {
    display: none !important;
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg,#0d1a30 0%,#0a1628 100%);
    min-width: 270px; border-radius: 10px; padding: 10px 0;
    box-shadow: 0 14px 40px rgba(0,0,0,.4); z-index: 9999;
    list-style: none !important; margin: 8px 0 0 0;
    border: 1px solid rgba(255,255,255,.1);
}
.g-header .nav-links li.has-dropdown.open > .dropdown-submenu,
#mobile-nav li.has-dropdown.open > .dropdown-submenu {
    display: block !important;
}
.g-header .nav-links .dropdown-submenu li,
#mobile-nav .dropdown-submenu li { display: block !important; width: 100%; }
.g-header .nav-links .dropdown-submenu li a,
#mobile-nav .dropdown-submenu li a {
    display: flex !important; align-items: center; gap: 10px;
    padding: 10px 20px; color: rgba(255,255,255,.75);
    font-size: 13.5px; font-weight: 500; white-space: nowrap;
    border-radius: 0; transition: all .15s ease;
    text-decoration: none;
}
.g-header .nav-links .dropdown-submenu li a:hover,
#mobile-nav .dropdown-submenu li a:hover {
    background: rgba(67,97,238,.2); color: #fff !important;
    padding-left: 24px;
}
.g-header .nav-links .dropdown-submenu li a i,
#mobile-nav .dropdown-submenu li a i {
    width: 18px; text-align: center; font-size: 14px; opacity: .65; flex-shrink: 0;
}

/* Mobile dropdown overrides */
@media (max-width: 991px) {
    .g-header .nav-links .dropdown-submenu,
    #mobile-nav .dropdown-submenu {
        position: static !important; min-width: 100%; box-shadow: none;
        background: rgba(255,255,255,.06); border: none; margin: 0;
        border-radius: 0; padding: 0; transform: none;
    }
    #mobile-nav .dropdown-submenu li a { padding: 8px 32px; font-size: 14px; }
}

.g-header .nav-right { display: flex; align-items: center; gap: 8px; }
.g-header .social-link {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--g-radius-sm);
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: all .2s var(--g-ease);
}
.g-header .social-link:hover { color: #fff !important; background: rgba(255,255,255,.1); }

/* ── 5. Buttons ────────────────────────────────────────── */
.g-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--g-font);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--g-radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .25s var(--g-ease);
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}
.g-btn:hover { transform: translateY(-1px); }

.g-btn-primary {
    background: var(--g-accent);
    color: #fff;
    border-color: var(--g-accent);
}
.g-btn-primary:hover { background: var(--g-accent-dark); border-color: var(--g-accent-dark); color: #fff !important; box-shadow: var(--g-shadow-md); }

.g-btn-outline {
    background: transparent;
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.3);
}
.g-btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff !important; }

.g-btn-outline-dark {
    background: transparent;
    color: var(--g-primary);
    border-color: var(--g-border);
}
.g-btn-outline-dark:hover { background: var(--g-bg-alt); border-color: var(--g-text-muted); color: var(--g-primary) !important; }

.g-btn-dark {
    background: var(--g-primary);
    color: #fff;
    border-color: var(--g-primary);
}
.g-btn-dark:hover { background: var(--g-primary-light); color: #fff !important; box-shadow: var(--g-shadow-md); }

.g-btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: transparent;
}
.g-btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff !important; }

/* Trial button — high visibility outline on dark bg */
.g-btn-trial {
    background: transparent;
    color: #fff !important;
    border-color: var(--g-accent);
    border-width: 2px;
}
.g-btn-trial:hover {
    background: var(--g-accent);
    color: #fff !important;
    box-shadow: 0 0 20px rgba(249,115,22,.3);
}

.g-btn-sm { padding: 7px 14px; font-size: 13px; }
.g-btn-lg { padding: 12px 28px; font-size: 15px; }
.g-btn-block { width: 100%; }
.g-btn i { font-size: 14px; }

/* Custom social icons (FA4 doesn't have these) */
.fa.fa-tiktok-custom,
.fa.fa-telegram-custom {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}
.fa.fa-tiktok-custom::before,
.fa.fa-telegram-custom::before { content: ''; }

/* Light context (default) — dark icons */
.fa.fa-tiktok-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23333' d='M448 209.9a210.1 210.1 0 01-122.8-39.3v178.8A162.6 162.6 0 11185 188.3v89.9a74.6 74.6 0 1052.2 71.2V0h88a121 121 0 00122.8 121z'/%3E%3C/svg%3E");
}
.fa.fa-telegram-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath fill='%23333' d='M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm115 168.6l-40.8 192.2c-3.1 13.7-11.1 17-22.5 10.6l-62.1-45.8-30 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.5-63.2L330 177.5c5.6-5-1.2-7.7-8.7-2.8l-143 90-61.7-19.3c-13.4-4.2-13.7-13.4 2.8-19.8l241-93c11.1-4.1 20.9 2.7 17.2 19.8z'/%3E%3C/svg%3E");
}

/* Dark context — white icons (header, footer, hero all have dark bg) */
.g-header .fa.fa-tiktok-custom,
.g-footer .fa.fa-tiktok-custom,
.g-hero .fa.fa-tiktok-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M448 209.9a210.1 210.1 0 01-122.8-39.3v178.8A162.6 162.6 0 11185 188.3v89.9a74.6 74.6 0 1052.2 71.2V0h88a121 121 0 00122.8 121z'/%3E%3C/svg%3E");
    opacity: .5;
}
.g-header .fa.fa-telegram-custom,
.g-footer .fa.fa-telegram-custom,
.g-hero .fa.fa-telegram-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath fill='%23ffffff' d='M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm115 168.6l-40.8 192.2c-3.1 13.7-11.1 17-22.5 10.6l-62.1-45.8-30 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.5-63.2L330 177.5c5.6-5-1.2-7.7-8.7-2.8l-143 90-61.7-19.3c-13.4-4.2-13.7-13.4 2.8-19.8l241-93c11.1-4.1 20.9 2.7 17.2 19.8z'/%3E%3C/svg%3E");
    opacity: .5;
}
.g-header .social-link:hover .fa.fa-tiktok-custom,
.g-header .social-link:hover .fa.fa-telegram-custom,
.g-footer .footer-links li a:hover .fa.fa-tiktok-custom,
.g-footer .footer-links li a:hover .fa.fa-telegram-custom {
    opacity: 1;
}

/* ── 6. Hero (Modern Animated) ──────────────────────────── */
.g-hero {
    background: var(--g-bg-dark);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Wave shape divider */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}
.hero-wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}
.hero-wave-divider .wave-back {
    opacity: .15;
    animation: waveShift 8s ease-in-out infinite alternate;
}
.hero-wave-divider .wave-mid {
    opacity: .3;
    animation: waveShift 6s ease-in-out infinite alternate-reverse;
}
.hero-wave-divider .wave-front {
    opacity: 1;
}
@keyframes waveShift {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-12px); }
}

/* Subtle glow line at hero bottom */
.hero-glow-line {
    position: absolute;
    bottom: 60px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,.4) 30%, rgba(59,130,246,.3) 70%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    filter: blur(1px);
}

/* Animated grid background */
.g-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPan 20s linear infinite;
    pointer-events: none;
}
@keyframes gridPan {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 60px); }
}

/* Animated gradient orbs */
.g-hero .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform;
}
.g-hero .hero-orb--orange {
    width: 400px; height: 400px;
    top: -15%; right: -5%;
    background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 70%);
    animation: orbFloat1 8s ease-in-out infinite;
}
.g-hero .hero-orb--blue {
    width: 320px; height: 320px;
    bottom: -20%; left: -8%;
    background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%);
    animation: orbFloat2 10s ease-in-out infinite;
}
.g-hero .hero-orb--purple {
    width: 240px; height: 240px;
    top: 40%; left: 50%;
    background: radial-gradient(circle, rgba(139,92,246,.08) 0%, transparent 70%);
    animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 25px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -20px) scale(1.08); }
}

/* Hero content */
.g-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Staggered entrance animations */
.g-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--g-radius-full);
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: heroSlideUp .7s var(--g-ease) .1s both;
}
.g-hero .hero-badge .badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--g-success);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.g-hero h1 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -.02em;
    animation: heroSlideUp .7s var(--g-ease) .2s both;
}

/* Gradient text highlight */
.g-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--g-accent) 0%, #fb923c 40%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g-hero .hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin-bottom: 4px;
    max-width: 460px;
    animation: heroSlideUp .7s var(--g-ease) .35s both;
}

.g-hero .hero-highlight {
    color: var(--g-success);
    font-weight: 600;
    font-size: 14px;
    animation: heroSlideUp .7s var(--g-ease) .45s both;
}

.g-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    animation: heroSlideUp .7s var(--g-ease) .55s both;
}

/* Glowing CTA button */
.g-hero .g-btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.g-hero .g-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(249,115,22,.5);
}

/* Trusted-by strip */
.g-hero .hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    animation: heroSlideUp .7s var(--g-ease) .7s both;
}
.g-hero .trust-avatars {
    display: flex;
}
.g-hero .trust-avatars .t-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--g-bg-dark);
    background: linear-gradient(135deg, var(--g-primary-light), var(--g-primary-hover));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    margin-left: -8px;
}
.g-hero .trust-avatars .t-avatar:first-child { margin-left: 0; }
.g-hero .trust-text {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.4;
}
.g-hero .trust-text strong {
    color: rgba(255,255,255,.8);
}

/* Hero visual / dashboard mockup */
.g-hero .hero-visual {
    position: relative;
    z-index: 2;
    animation: heroSlideUp .8s var(--g-ease) .4s both;
}

.g-hero .hero-mockup {
    position: relative;
}
.g-hero .hero-mockup-inner {
    background: linear-gradient(145deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--g-radius-lg);
    padding: 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .6s var(--g-ease);
    animation: mockupFloat 6s ease-in-out infinite;
    box-shadow:
        0 20px 40px rgba(0,0,0,.4),
        0 0 60px rgba(249,115,22,.08),
        inset 0 1px 0 rgba(255,255,255,.1);
}
.g-hero .hero-mockup:hover .hero-mockup-inner {
    transform: translateY(-4px);
}
@keyframes mockupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.g-hero .hero-mockup-inner img {
    border-radius: var(--g-radius-lg);
    width: 100%;
    display: block;
}

/* Floating stat badges on mockup */
.g-hero .float-badge {
    position: absolute;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--g-radius);
    padding: 10px 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.g-hero .float-badge i {
    margin-right: 6px;
    font-size: 14px;
}
.g-hero .float-badge--tl {
    top: 12%; left: -20px;
    animation: floatBadge1 5s ease-in-out infinite;
}
.g-hero .float-badge--br {
    bottom: 12%; right: -15px;
    animation: floatBadge2 6s ease-in-out infinite;
}
.g-hero .float-badge--tr {
    top: 5%; right: -10px;
    animation: floatBadge3 7s ease-in-out infinite;
}
@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@keyframes floatBadge3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}

/* Hero entrance keyframe */
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── 7. Features ───────────────────────────────────────── */
.g-features { background: var(--g-bg); padding-top: 40px; }

/* Modern 3-column grid */
.feature-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card-modern {
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .3s var(--g-ease);
    position: relative;
}
.feature-card-modern:hover {
    border-color: var(--g-accent);
    box-shadow: var(--g-shadow-md);
    transform: translateY(-3px);
}

.feature-card-modern .fc-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--g-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g-primary) 0%, var(--g-primary-light) 100%);
    color: #fff;
    font-size: 18px;
    transition: all .3s var(--g-ease);
}
.feature-card-modern:hover .fc-icon-wrap {
    background: linear-gradient(135deg, var(--g-accent) 0%, var(--g-accent-dark) 100%);
    transform: scale(1.08);
}

.feature-card-modern .fc-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--g-heading);
    margin-bottom: 4px;
    line-height: 1.3;
}
.feature-card-modern .fc-body p {
    font-size: 13px;
    color: var(--g-text-light);
    line-height: 1.6;
}

/* Feature showcase (optional section image) */
.feature-showcase {
    text-align: center;
}
.feature-showcase-inner {
    background: var(--g-bg-alt);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    padding: 10px;
    box-shadow: var(--g-shadow);
    display: inline-block;
    max-width: 800px;
}
.feature-showcase-inner img {
    border-radius: var(--g-radius);
    width: 100%;
}

/* ── 8. FAQ ────────────────────────────────────────────── */
.g-faq { background: var(--g-bg); }

.g-faq .accordion-item {
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow .2s var(--g-ease);
}
.g-faq .accordion-item:hover { box-shadow: var(--g-shadow-sm); }

.g-faq .accordion-button {
    font-size: 15px;
    font-weight: 600;
    color: var(--g-heading);
    padding: 18px 20px;
    background: var(--g-bg);
    border: none;
}
.g-faq .accordion-button:not(.collapsed) {
    color: var(--g-accent);
    background: var(--g-bg);
    box-shadow: inset 0 -1px 0 var(--g-border);
}
.g-faq .accordion-button:focus { border-color: transparent; box-shadow: none; }
.g-faq .accordion-button::after { filter: none; }

.g-faq .accordion-body {
    font-size: 14px;
    color: var(--g-text-light);
    line-height: 1.8;
    padding: 16px 20px;
}

/* ── 9. Pricing ────────────────────────────────────────── */
.g-pricing { background: var(--g-bg-alt); }

.g-pricing .toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 4px;
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-full);
}
.g-pricing .toggle-label { font-size: 14px; font-weight: 500; color: var(--g-text-light); padding: 0 10px; }

/* Custom toggle switch */
.g-switch { position: relative; width: 48px; height: 26px; }
.g-switch input { opacity: 0; width: 0; height: 0; }
.g-switch .slider {
    position: absolute; inset: 0;
    background: var(--g-border);
    border-radius: var(--g-radius-full);
    cursor: pointer;
    transition: background .3s var(--g-ease);
}
.g-switch .slider::before {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--g-shadow-sm);
    transition: transform .3s var(--g-ease);
}
.g-switch input:checked + .slider { background: var(--g-accent); }
.g-switch input:checked + .slider::before { transform: translateX(22px); }

.pricing-type-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--g-heading);
    margin-bottom: 6px;
}
.pricing-type-desc {
    font-size: 14px;
    color: var(--g-text-light);
    margin-bottom: 20px;
}

.plan-card {
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    box-shadow: var(--g-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: all .3s var(--g-ease);
}
.plan-card:hover { box-shadow: var(--g-shadow-lg); transform: translateY(-4px); }
.plan-card.is-popular { border-color: var(--g-accent); box-shadow: var(--g-shadow-md), 0 0 0 1px var(--g-accent); }

.plan-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 12px;
}
.plan-name { font-size: 18px; font-weight: 700; color: var(--g-heading); }
.plan-type { font-size: 12px; color: var(--g-text-muted); margin-top: 2px; }
.plan-popular-badge {
    background: linear-gradient(135deg, var(--g-accent) 0%, #fb923c 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--g-radius-full);
    letter-spacing: .03em;
    text-transform: uppercase;
}

.plan-price {
    padding: 0 20px 16px;
    display: grid; gap: 6px;
}
.plan-price .price-row { display: flex; align-items: baseline; gap: 6px; }
.plan-price .price-label { font-size: 12px; color: var(--g-text-muted); min-width: 55px; }
.plan-price .price-currency { font-size: 12px; color: var(--g-text-muted); }
.plan-price .price-amount { font-size: 26px; font-weight: 800; color: var(--g-heading); letter-spacing: -.02em; }
.plan-price .price-period { font-size: 13px; color: var(--g-text-muted); }

.plan-features { padding: 0 20px; flex: 1; }
.plan-features ul { list-style: none; padding: 0 !important; }
.plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--g-text);
    border-bottom: 1px solid var(--g-border-light);
}
.plan-features li:last-child { border: none; }
.plan-features .ti-check { color: var(--g-success); font-weight: 700; }
.plan-features .ti-close { color: var(--g-danger); }

/* Module pills */
.plan-modules { padding: 12px 20px 0; }
.plan-modules .modules-label { font-size: 12px; font-weight: 700; color: var(--g-text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; display: block; }
.modules-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.module-pill {
    background: var(--g-bg-alt);
    color: var(--g-text);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--g-radius-full);
    border: 1px solid var(--g-border);
    line-height: 1.3;
}
.module-pill.more-toggle { background: var(--g-bg); cursor: pointer; color: var(--g-accent); border-color: var(--g-accent); font-weight: 600; }
.module-pill.more-toggle:hover { background: var(--g-accent); color: #fff; }
.module-pill.view-less { background: var(--g-bg); cursor: pointer; color: var(--g-danger); border-color: var(--g-danger); }
.module-pill.view-less:hover { background: var(--g-danger); color: #fff; }

.plan-cta {
    padding: 16px 20px 20px;
    margin-top: auto;
    display: flex; gap: 8px;
}
.plan-cta .g-btn { flex: 1; justify-content: center; }

/* ── 10. Testimonials ──────────────────────────────────── */
.g-testimonials { background: var(--g-bg-alt); }

.testimonial-card {
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s var(--g-ease);
}
.testimonial-card:hover { box-shadow: var(--g-shadow-md); transform: translateY(-3px); }

.testimonial-stars { margin-bottom: 16px; font-size: 14px; }
.testimonial-stars i { margin-right: 2px; }

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--g-text-light);
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--g-accent);
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--g-border);
}
.avatar-placeholder {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g-primary) 0%, var(--g-primary-light) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.testimonial-info strong { font-size: 14px; color: var(--g-heading); display: block; }
.testimonial-info span { font-size: 13px; color: var(--g-text-muted); }

/* ── 11. Blog ──────────────────────────────────────────── */
.g-blog { background: var(--g-bg); }

.blog-card {
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s var(--g-ease);
}
.blog-card:hover { box-shadow: var(--g-shadow-lg); transform: translateY(-4px); }

.blog-img-wrap { position: relative; height: 200px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--g-ease); }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--g-bg-alt) 0%, var(--g-border) 100%);
    display: flex; align-items: center; justify-content: center;
}
.blog-img-placeholder i { font-size: 40px; color: var(--g-text-muted); }

.blog-category {
    position: absolute; top: 12px; left: 12px;
    background: var(--g-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--g-radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.blog-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--g-heading); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 14px; color: var(--g-text-light); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-meta {
    display: flex; gap: 16px;
    font-size: 12px; color: var(--g-text-muted);
    border-top: 1px solid var(--g-border-light);
    padding-top: 12px;
}
.blog-meta i { margin-right: 4px; color: var(--g-accent); }

/* ── 12. Contact ───────────────────────────────────────── */
.g-contact { background: var(--g-bg-alt); }

.contact-info-card {
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    padding: 28px;
    box-shadow: var(--g-shadow);
    height: 100%;
}
.contact-info-card .info-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--g-border-light);
}
.contact-info-card .info-item:last-of-type { border: none; }
.contact-info-card .info-icon {
    width: 40px; height: 40px;
    border-radius: var(--g-radius-sm);
    background: var(--g-accent-light);
    color: var(--g-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info-card .info-text { font-size: 14px; color: var(--g-text); }
.contact-info-card .info-label { font-size: 12px; color: var(--g-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }

.contact-form-card {
    background: var(--g-bg);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    padding: 28px;
    box-shadow: var(--g-shadow);
}
.contact-form-card .card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.contact-form-card .card-head h4 { font-size: 20px; font-weight: 700; margin: 0; }

.g-input {
    width: 100%;
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--g-font);
    color: var(--g-text);
    background: var(--g-bg);
    transition: all .2s var(--g-ease);
    margin-top: 12px;
}
.g-input:focus {
    outline: none;
    border-color: var(--g-accent);
    box-shadow: 0 0 0 3px var(--g-accent-light);
}
.g-input::placeholder { color: var(--g-text-muted); }

.g-label { font-size: 13px; font-weight: 600; color: var(--g-heading); }

.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border-radius: var(--g-radius-full);
    font-size: 12px; font-weight: 600;
    background: var(--g-accent-light);
    color: var(--g-accent);
    border: 1px solid transparent;
}
.chip i { font-size: 12px; }

/* Human verification */
.verify-row {
    display: flex; align-items: center; gap: 10px;
    margin-top: 10px;
}
.verify-box {
    width: 56px; text-align: center;
    font-weight: 700; font-size: 18px;
    padding: 8px;
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    background: var(--g-bg-alt);
    color: var(--g-heading);
}
.verify-box-answer {
    width: 80px; text-align: center;
    font-weight: 700; font-size: 18px;
    padding: 8px;
    border: 2px solid var(--g-accent);
    border-radius: var(--g-radius-sm);
    background: var(--g-bg);
    color: var(--g-heading);
}
.verify-op { font-size: 18px; font-weight: 700; color: var(--g-text-muted); }

/* ── 13. CTA ───────────────────────────────────────────── */
.g-cta {
    background: var(--g-bg);
    padding: 80px 0;
}
.g-cta-inner {
    background: linear-gradient(135deg, var(--g-primary) 0%, #1e3a5f 100%);
    border-radius: var(--g-radius-xl);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.g-cta-inner::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,.2) 0%, transparent 70%);
    pointer-events: none;
}
.g-cta-inner h3 { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.g-cta-inner p { color: rgba(255,255,255,.7); font-size: 16px; position: relative; z-index: 1; margin-bottom: 24px; }

/* ── 14. Signup CTA ────────────────────────────────────── */
.g-signup-cta {
    background: var(--g-bg-alt);
    padding: 70px 0;
    text-align: center;
}
.g-signup-cta h3 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.g-signup-cta p { font-size: 16px; color: var(--g-text-light); margin-bottom: 24px; }
.g-signup-cta .help-text { font-size: 13px; color: var(--g-text-muted); margin-top: 12px; }

/* ── 15. Footer ────────────────────────────────────────── */
.g-footer {
    background: var(--g-bg-dark);
    padding: 40px 0 24px;
}
.g-footer .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.g-footer .footer-links { display: flex; gap: 6px; list-style: none; }
.g-footer .footer-links li a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--g-radius-sm);
    color: rgba(255,255,255,.4);
    font-size: 15px;
    transition: all .2s var(--g-ease);
}
.g-footer .footer-links li a:hover { color: #fff !important; background: rgba(255,255,255,.1); }
.g-footer .copyright { font-size: 13px; color: rgba(255,255,255,.4); }
.g-footer .footer-logo img { max-width: 110px; opacity: .7; transition: opacity .2s; }
.g-footer .footer-logo:hover img { opacity: 1; }

/* ── 16. Modal (Signup) ────────────────────────────────── */
#signupModal { z-index: 1060000 !important; }
#signupModal ~ .modal-backdrop,
.modal-backdrop { z-index: 1059999 !important; }

#signupModal .modal-dialog { max-width: 720px; }
#signupModal .modal-content {
    border-radius: var(--g-radius-lg);
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 60px -12px rgba(0,0,0,.3);
}
#signupModal .modal-header {
    background: linear-gradient(135deg, var(--g-primary) 0%, #1e3a5f 60%, var(--g-accent-dark) 100%);
    color: white;
    border-bottom: none;
    padding: 20px 28px;
    position: relative;
    overflow: hidden;
}
#signupModal .modal-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(249,115,22,.12);
    pointer-events: none;
}
#signupModal .modal-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 2px; letter-spacing: -.01em; }
#signupModal .chip {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: var(--g-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}
#signupModal .btn-close { filter: brightness(0) invert(1); opacity: .7; }
#signupModal .btn-close:hover { opacity: 1; }

#signupModal .modal-body {
    padding: 24px 28px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    background: var(--g-bg);
}
#signupModal .modal-footer {
    border-top: 1px solid var(--g-border);
    padding: 14px 28px;
    background: var(--g-bg-alt);
    gap: 10px;
}

/* Form fields */
#signupModal .form-control {
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    background: var(--g-bg);
    transition: all .2s var(--g-ease);
}
#signupModal .form-control:focus {
    border-color: var(--g-accent);
    box-shadow: 0 0 0 3px var(--g-accent-light);
    background: #fff;
}
#signupModal label,
#signupModal .g-label {
    font-weight: 600;
    color: var(--g-heading);
    font-size: 13px;
    margin-bottom: 4px;
}

/* Section dividers */
#signupModal .form-section-title {
    color: var(--g-heading);
    font-weight: 700;
    font-size: 14px;
    margin: 20px 0 12px;
    padding: 10px 14px;
    background: var(--g-bg-alt);
    border-radius: var(--g-radius-sm);
    border-left: 3px solid var(--g-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}
#signupModal .form-section-title i { color: var(--g-accent); font-size: 14px; }

#signupModal h6 {
    color: var(--g-heading);
    font-weight: 700;
    font-size: 14px;
    margin: 20px 0 12px;
    padding: 10px 14px;
    background: var(--g-bg-alt);
    border-radius: var(--g-radius-sm);
    border-left: 3px solid var(--g-accent);
    border-bottom: none;
}

#signupModal .alert { border-radius: var(--g-radius-sm); font-size: 13px; }
#signupModal .invalid-feedback { display: block; color: var(--g-danger); font-size: 12px; margin-top: 3px; }
#signupModal .form-control.is-invalid { border-color: var(--g-danger); }
.spinner-border-sm { width: 1rem; height: 1rem; border-width: .15em; }

/* Scrollbar */
#signupModal .modal-body::-webkit-scrollbar { width: 5px; }
#signupModal .modal-body::-webkit-scrollbar-track { background: transparent; }
#signupModal .modal-body::-webkit-scrollbar-thumb { background: var(--g-border); border-radius: 10px; }
#signupModal .modal-body::-webkit-scrollbar-thumb:hover { background: var(--g-text-muted); }

/* Package selection input group */
#signupModal .input-group.modern {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    overflow: hidden;
    transition: border-color .2s var(--g-ease);
}
#signupModal .input-group.modern:focus-within { border-color: var(--g-accent); }
#signupModal .input-group.modern .form-control {
    border: none;
    border-radius: 0;
    background: var(--g-bg-alt);
    font-weight: 600;
    color: var(--g-heading);
    padding: 10px 14px;
    box-shadow: none !important;
}
#signupModal .input-group.modern .input-group-btn {
    display: flex; align-items: center;
    padding: 0 18px;
    margin: 0;
    border: none;
    border-left: 1.5px solid var(--g-border);
    border-radius: 0;
    background: var(--g-accent);
    color: #fff;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s var(--g-ease);
}
#signupModal .input-group.modern .input-group-btn:hover { background: var(--g-accent-dark); color: #fff !important; }

/* Module selection – clean checkbox cards */
#signupModal .module-select-card { display: block; cursor: pointer; margin-bottom: 0; }
#signupModal .module-select-card input[type="checkbox"] { display: none; }
#signupModal .module-card-inner {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px;
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    background: var(--g-bg);
    transition: all .2s var(--g-ease);
}
#signupModal .module-card-inner:hover {
    border-color: var(--g-text-muted);
    box-shadow: var(--g-shadow-sm);
}
#signupModal .module-select-card input:checked + .module-card-inner {
    border-color: var(--g-accent);
    background: rgba(249,115,22,.05);
}
#signupModal .module-check-box {
    width: 18px; height: 18px; flex-shrink: 0;
    border: 2px solid var(--g-border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s var(--g-ease);
    font-size: 10px; color: transparent;
}
#signupModal .module-select-card input:checked + .module-card-inner .module-check-box {
    background: var(--g-accent);
    border-color: var(--g-accent);
    color: #fff;
}
#signupModal .module-name { font-size: 12px; font-weight: 500; color: var(--g-text); flex: 1; line-height: 1.3; }

/* Footer buttons */
#signupModal .modal-footer .btn-secondary {
    background: transparent;
    border: 1.5px solid var(--g-border);
    color: var(--g-text-light);
    border-radius: var(--g-radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s var(--g-ease);
}
#signupModal .modal-footer .btn-secondary:hover {
    background: var(--g-bg-alt);
    color: var(--g-text);
    border-color: var(--g-text-muted);
}
#signupModal .modal-footer .g-btn-primary {
    border-radius: var(--g-radius-sm);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
}

/* Terms & links section */
#signupModal .terms-section {
    background: var(--g-bg-alt);
    border-radius: var(--g-radius-sm);
    padding: 14px 16px;
    border: 1px solid var(--g-border);
}
#signupModal .terms-section a {
    color: var(--g-accent);
    font-weight: 500;
    text-decoration: none;
}
#signupModal .terms-section a:hover { text-decoration: underline; }

/* Payment step improvements */
#signupModal #payment-step .badge { font-size: 13px; letter-spacing: .01em; }
#signupModal #payment-step .alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    color: #1e40af;
}
#signupModal .gateway-select-btn { border-radius: var(--g-radius-sm); padding: 8px 16px; font-size: 13px; font-weight: 600; }
#signupModal .pay-method-btn { border-radius: var(--g-radius-sm); font-size: 13px; padding: 8px 14px; }

/* Phone country picker */
#signupModal .phone-input-group {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    overflow: visible;
    transition: border-color .2s var(--g-ease);
    position: relative;
}
#signupModal .phone-input-group:focus-within { border-color: var(--g-accent); box-shadow: 0 0 0 3px var(--g-accent-light); }
#signupModal .phone-country-btn {
    display: flex; align-items: center; gap: 2px;
    padding: 0 12px;
    border: none;
    border-right: 1.5px solid var(--g-border);
    background: var(--g-bg-alt);
    color: var(--g-heading);
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 6px 0 0 6px;
    transition: background .15s;
    min-width: 76px;
}
#signupModal .phone-country-btn:hover { background: var(--g-border-light); }
#signupModal .phone-country-btn .fa-caret-down { font-size: 11px; color: var(--g-text-muted); }
#signupModal .country-flag { font-size: 18px; line-height: 1; }
#signupModal .phone-country-dropdown .country-flag { font-size: 16px; }
#signupModal .phone-input-group .form-control {
    border: none; border-radius: 0 6px 6px 0;
    box-shadow: none !important;
    padding: 10px 14px; font-size: 14px;
    letter-spacing: .5px;
}
#signupModal .phone-country-dropdown {
    max-height: 240px;
    overflow-y: auto;
    min-width: 260px;
    border-radius: var(--g-radius-sm);
    box-shadow: var(--g-shadow-lg);
    border: 1px solid var(--g-border);
    padding: 6px;
    z-index: 1060001;
}
#signupModal .phone-country-dropdown .phone-search-wrap {
    padding: 4px 6px 8px;
    position: sticky; top: 0; background: #fff; z-index: 1;
}
#signupModal .phone-country-dropdown .phone-search-input {
    width: 100%; padding: 7px 10px; font-size: 13px;
    border: 1.5px solid var(--g-border); border-radius: 6px;
    outline: none;
}
#signupModal .phone-country-dropdown .phone-search-input:focus { border-color: var(--g-accent); }
#signupModal .phone-country-dropdown li { list-style: none; }
#signupModal .phone-country-dropdown .dropdown-item {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 10px; font-size: 13px; border-radius: 6px;
    cursor: pointer; color: var(--g-text);
}
#signupModal .phone-country-dropdown .dropdown-item:hover { background: var(--g-bg-alt); }
#signupModal .phone-country-dropdown .dropdown-item.active { background: var(--g-accent-light); color: var(--g-accent-dark); font-weight: 600; }
#signupModal .phone-country-dropdown .country-dial { color: var(--g-text-muted); font-size: 12px; margin-left: auto; font-weight: 500; }
#signupModal .phone-input-group .phone-error { color: var(--g-danger); font-size: 12px; margin-top: 3px; display: none; }

/* ── 17. Scroll to Top ─────────────────────────────────── */
#scrolltotop {
    width: 42px; height: 42px;
    border: 1.5px solid var(--g-border);
    border-radius: 50%;
    background: var(--g-bg);
    color: var(--g-primary);
    display: none;
    position: fixed; bottom: 32px; right: 32px;
    z-index: 999;
    font-size: 14px;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    box-shadow: var(--g-shadow);
    transition: all .25s var(--g-ease);
}
#scrolltotop:hover {
    background: var(--g-primary);
    color: #fff;
    border-color: var(--g-primary);
}

/* ── 18. Mobile Nav ────────────────────────────────────── */
.mobile-menu-icon {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    float: left;
    margin-right: 15px;
}

#mobile-nav {
    background: var(--g-bg);
    height: 100%;
    left: -300px;
    opacity: 0;
    overflow-y: auto;
    padding: 24px;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 300px;
    z-index: 999999;
    transition: all .3s var(--g-ease);
}
#mobile-nav.show { left: 0; opacity: 1; visibility: visible; }
#mobile-nav ul { padding-left: 0 !important; list-style: none; }
#mobile-nav ul li { line-height: 2.2; }
#mobile-nav ul li a { color: var(--g-heading); font-size: 18px; font-weight: 500; }

.body__overlay {
    background: rgba(0,0,0,.5);
    position: fixed; inset: 0;
    opacity: 0; visibility: hidden;
    z-index: 99999;
    transition: all .3s var(--g-ease);
}
.body__overlay.is-visible { opacity: 1; visibility: visible; }

/* ── 19. Responsive ────────────────────────────────────── */
@media (max-width: 1023px) {
    .g-header .nav-links,
    .g-header .social-link { display: none !important; }
    .g-hero h1 { font-size: clamp(22px, 3vw, 30px); }
    .g-hero { padding: 50px 0 70px; }
    .section-title { font-size: 26px; }
    .feature-grid-modern { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1199px) {
    .g-hero h1 { font-size: clamp(22px, 3vw, 30px); }
    .g-hero { padding: 56px 0 70px; }
}

@media (max-width: 991px) {
    .landing-page section { padding: 60px 0; }
    .g-hero { padding: 50px 0 70px; }
    .g-hero h1 { font-size: clamp(20px, 2.8vw, 26px); }
    .g-hero .hero-content { text-align: center; }
    .g-hero .hero-sub { margin-left: auto; margin-right: auto; }
    .g-hero .hero-actions { justify-content: center; }
    .g-hero .hero-trust { justify-content: center; }
    .g-hero .hero-mockup-inner { transform: none; animation: none; }
    .g-hero .float-badge { display: none; }
    .hero-wave-divider svg { height: 50px; }
    .hero-glow-line { display: none; }
    .feature-grid-modern { grid-template-columns: 1fr; }
    .g-cta-inner { padding: 40px 24px; text-align: center; }
    .g-footer .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 767px) {
    .g-hero h1 { font-size: clamp(20px, 5vw, 24px); }
    .g-hero .hero-sub { font-size: 13px; }
    .g-hero .hero-trust { flex-direction: column; text-align: center; }
    .g-cta-inner h3 { font-size: 22px; }
    .plan-card { margin-bottom: 16px; }
    .g-footer .footer-inner { flex-direction: column; gap: 16px; }
}

/* ── 20. Animations ────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .5s var(--g-ease) both; }

/* Stagger children */
.stagger > *:nth-child(1) { animation-delay: .05s; }
.stagger > *:nth-child(2) { animation-delay: .1s; }
.stagger > *:nth-child(3) { animation-delay: .15s; }
.stagger > *:nth-child(4) { animation-delay: .2s; }
.stagger > *:nth-child(5) { animation-delay: .25s; }
.stagger > *:nth-child(6) { animation-delay: .3s; }

/* Map container */
.map-container iframe {
    border-radius: var(--g-radius);
    box-shadow: var(--g-shadow);
    width: 100%;
    border: none;
}
