:root {
    --brand: #05ad8f;
    --brand-light: rgba(5, 173, 143, 0.08);
    --brand-dark: #049478;
    --brand-dim: #037a62;
    --brand-deep: #025e4b;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-cyan-light: #e0f7fb;
    --accent-purple-light: #ede9fe;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-soft-alt: #e2e8f0;
    --border: #e2e8f0;
    --nav-h: 64px;
    --max-w: 1400px;
    --sidebar-w: 280px;
    --font-heading: "Lexend", sans-serif;
    --font-ui: "Google Sans", sans-serif;
    --shadow: 0 4px 24px rgba(5, 173, 143, 0.08);
    --shadow-lg: 0 8px 40px rgba(5, 173, 143, 0.14);

    --globe-size: 420px;
    --ring1-inset: -80px;
    --ring2-inset: -160px;
}

@font-face {
    font-family: "Lexend";
    src: url(../16740061ad8290aae214.otf) format("opentype");
    font-weight: bold;
}

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

body {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Lexend", sans-serif;
}

.title-highlight {
    color: var(--brand);
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    transition: none;
    padding: 12px 24px;
}

.nav-wrapper.nav-scrolled {
    box-shadow: none;
}

.nav-wrapper.nav-scrolled {
    box-shadow: none;
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s;
}

.nav-wrapper.nav-scrolled .nav-container {
    box-shadow: var(--shadow);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    width: auto;
    height: 50px;
}

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 600;
    transition:
        color 0.2s,
        background 0.2s;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    background: none;
}

.nav-link i {
    font-size: 12px;
}

.nav-link:hover,
.nav-link.nav-active {
    color: var(--brand);
    background: rgba(5, 173, 143, 0.07);
}

.nav-link .nav-chevron {
    font-size: 10px;
    transition: transform 0.25s;
    margin-left: 2px;
}

.nav-link.nav-open .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s,
        transform 0.2s;
    z-index: 200;
}

.nav-dropdown.nav-visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 9px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    transition:
        background 0.18s,
        color 0.18s;
}

.nav-dropdown-item:hover {
    background: rgba(5, 173, 143, 0.07);
    color: var(--brand);
}

.nav-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.nav-dropdown-icon.green {
    background: rgba(5, 173, 143, 0.12);
    color: var(--brand);
}

.nav-dropdown-icon.purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-purple);
}

.nav-dropdown-icon.cyan {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
}

.nav-dropdown-label {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-dropdown-title {
    font-size: 13px;
    color: var(--text-dark);
    font-family: var(--font-ui);
    font-weight: 700;
}

.nav-dropdown-sub {
    font-size: 11px;
    color: var(--text-light);
    font-family: var(--font-ui);
    font-weight: 400;
}

/* CTA buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-btn-ghost {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: none;
    color: var(--text-dark);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.nav-btn-primary {
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 15px;
    transition:
        border-color 0.2s,
        color 0.2s;
    flex-shrink: 0;
}

.nav-toggle:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* ===== MOBILE DRAWER ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.nav-show {
    opacity: 1;
}

.nav-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100vw;
    height: calc(100dvh - var(--nav-h));
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nav-drawer.nav-open {
    transform: translateX(0);
}

.nav-drawer-body {
    padding: 16px 0 24px;
    flex: 1;
}

.nav-drawer-section {
    padding: 0 16px;
}

.nav-drawer-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 0;
}

.nav-drawer-ctas .nav-btn-ghost,
.nav-drawer-ctas .nav-btn-primary {
    justify-content: center;
    padding: 13px;
    font-size: 14px;
    border-radius: 12px;
}

.nav-drawer-ctas .nav-btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--accent-cyan));
}

.nav-drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.18s,
        color 0.18s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.nav-drawer-item:hover {
    background: rgba(5, 173, 143, 0.07);
    color: var(--brand);
}

.nav-drawer-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-drawer-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav-drawer-chevron {
    font-size: 11px;
    color: var(--text-light);
    transition: transform 0.25s;
}

.nav-drawer-item.nav-sub-open .nav-drawer-chevron {
    transform: rotate(180deg);
}

.nav-drawer-sub {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 16px;
}

.nav-drawer-sub.nav-sub-visible {
    max-height: 400px;
}

.nav-drawer-sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13.5px;
    font-family: var(--font-ui);
    font-weight: 600;
    transition:
        background 0.18s,
        color 0.18s;
    margin-bottom: 2px;
}

.nav-drawer-sub-item:hover {
    background: rgba(5, 173, 143, 0.07);
    color: var(--brand);
}

.nav-drawer-sub-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.nav-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 20px;
}

@media (max-width: 1090px) {
    .nav-wrapper {
        padding: 0;
        background: rgba(255, 255, 255, 0.96);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .nav-container {
        border-radius: 0;
        border: none;
        box-shadow: none;
        max-width: 100%;
        padding: 0 16px;
    }

    .nav-wrapper.nav-scrolled .nav-container {
        box-shadow: none;
    }

    .nav-wrapper.nav-scrolled {
        box-shadow: var(--shadow);
    }
    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-overlay {
        display: block;
        pointer-events: none;
    }

    .nav-overlay.nav-show {
        pointer-events: all;
    }
}

@media (max-width: 500px) {
    .nav-container {
        padding: 0 16px;
    }
}

.hero-section {
    width: 100%;
    padding: 120px 20px;
    /* background: var(--hero-bg); */
    background: linear-gradient(135deg, #f0fdf9 0%, #e0f2fe 50%, #ede9fe 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section.has-panels {
    height: 90vh;
    max-height: 90vh;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-bg-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(5, 173, 143, 0.08);
    top: -200px;
    left: -150px;
}

.hero-bg-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.06);
    top: 100px;
    right: -100px;
}

.hero-bg-glow-3 {
    width: 300px;
    height: 300px;
    background: rgba(5, 173, 143, 0.05);
    bottom: 0;
    left: 40%;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(0, 1000px) 1fr;
    align-items: center;
    gap: 0;
    padding: 0;
}

.hero-section.has-panels .hero-layout {
    height: 90vh;
    max-height: 90vh;
}

.hero-slides-panel {
    display: flex;
    gap: 12px;
    height: 90vh;
    overflow: hidden;
    position: relative;
    padding: 0 12px;
}

.hero-slides-panel::before,
.hero-slides-panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 2;
    pointer-events: none;
}

.hero-slides-panel::before {
    top: 0;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
}

.hero-slides-panel::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.slide-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.slide-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.slide-track-down {
    animation-name: slideDown;
    animation-duration: 28s;
}

.slide-track-up {
    animation-name: slideUp;
    animation-duration: 32s;
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.slide-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 4/4;
    background: #e8ecf0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.slide-img:hover img {
    transform: scale(1.05);
}

.hero-center {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 40px 40px;
    justify-content: center;
    overflow: visible;
}

.hero-section.has-panels .hero-center {
    height: 90vh;
    /* overflow: hidden; */
    padding: clamp(60px, 8vh, 120px) 40px clamp(20px, 3vh, 40px);
}


.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 48px);
    font-weight: 800;
    color: #0d1f1a;
    line-height: 1.1;
    margin-bottom: clamp(6px, 1vh, 14px);
    letter-spacing: clamp(-0.5px, -0.15vw, -1.5px);
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.25s;
}

.hero-title .hero-highlight {
    color: var(--brand);
    position: relative;
}

.cursor {
    display: inline-block;
    color: var(--brand);
    font-weight: 800;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    font-size: clamp(12px, 1.6vh, 15px);
    color: #4a5568;
    max-width: 460px;
    margin-bottom: clamp(12px, 2vh, 24px);
    line-height: clamp(1.4, 2vh, 1.6);
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.4s;
}

.hero-actions {
    display: flex;
    gap: clamp(8px, 1vh, 14px);
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.55s;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 1.2vh, 14px) clamp(16px, 2vw, 28px);
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: clamp(12px, 1.4vh, 14px);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.18s,
        box-shadow 0.2s;
    white-space: nowrap;
}

.hero-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(5, 173, 143, 0.4);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 1.2vh, 14px) clamp(16px, 2vw, 28px);
    background: transparent;
    color: #2d3748;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: clamp(12px, 1.4vh, 14px);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s;
    white-space: nowrap;
}

.hero-btn-ghost:hover {
    border-color: rgba(0, 0, 0, 0.4);
    color: #111;
    background: rgba(0, 0, 0, 0.04);
}

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: clamp(8px, 1.5vh, 20px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
    flex-shrink: 0;
}

.hero-lady {
    position: relative;
    width: clamp(180px, 22vh, 400px);
    height: clamp(220px, 30vh, 500px);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-lady img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.hero-cards {
    position: absolute;
    top: clamp(8px, 1.5vh, 20px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(240px, 36vh, 480px);
    height: clamp(100px, 14vh, 180px);
    z-index: 2;
}

.hero-card {
    width: clamp(140px, 20vh, 260px);
    height: clamp(86px, 12vh, 158px);
    padding: clamp(10px, 1.5vh, 18px);
    border-radius: 16px;
    position: absolute;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.hero-card-gold {
    background: linear-gradient(
        135deg,
        #c8922a 0%,
        #e8c14a 40%,
        #b07d20 70%,
        #d4a832 100%
    );
    right: 0;
    top: 10px;
    transform: rotate(12deg) translateX(20px) translateY(8px);
}

.hero-card-gold.hero-card-open {
    transform: rotate(18deg) translateX(120px) translateY(-20px);
}

.hero-card-navy {
    background: linear-gradient(
        135deg,
        #0d1b3e 0%,
        #1a2f5e 40%,
        #0a1628 70%,
        #162448 100%
    );
    left: 0;
    top: 10px;
    transform: rotate(-10deg) translateX(-10px) translateY(8px);
}

.hero-card-navy.hero-card-open {
    transform: rotate(-16deg) translateX(-120px) translateY(-20px);
}

.card-chip {
    position: absolute;
    top: clamp(8px, 1.2vh, 18px);
    left: clamp(8px, 1.2vh, 18px);
    width: clamp(24px, 3.5vh, 44px);
    height: clamp(16px, 2.5vh, 32px);
    border-radius: 6px;
    overflow: hidden;
}

.card-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-chip-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #f0cc60);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.card-chip-placeholder::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
}

.card-chip-placeholder::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

.card-navy-chip {
    background: linear-gradient(135deg, #8a9bb5, #c0cfe0);
}

.card-bank-logo {
    position: absolute;
    top: clamp(8px, 1.2vh, 18px);
    right: clamp(8px, 1.2vh, 18px);
    width: clamp(40px, 6vh, 70px);
    height: clamp(16px, 2.5vh, 30px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bank-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-bank-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.card-bank-placeholder .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.dot-green {
    background: #05ad8f;
}
.dot-blue {
    background: #06b6d4;
}

.card-number {
    position: absolute;
    top: clamp(40px, 6vh, 76px);
    left: clamp(8px, 1.2vh, 18px);
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    font-size: clamp(8px, 1.1vh, 13px);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-ui);
    font-weight: 600;
}

.card-footer {
    position: absolute;
    bottom: clamp(8px, 1.2vh, 16px);
    left: clamp(8px, 1.2vh, 18px);
    font-family: var(--font-ui);
    font-size: clamp(8px, 1vh, 11px);
    color: rgba(255, 255, 255, 0.75);
}

.card-footer .card-label {
    font-size: clamp(5px, 0.7vh, 8px);
    margin-bottom: clamp(1px, 0.3vh, 3px);
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-brand {
    position: absolute;
    bottom: clamp(8px, 1.2vh, 16px);
    right: clamp(8px, 1.2vh, 18px);
    width: clamp(30px, 4.5vh, 56px);
    height: clamp(16px, 2.2vh, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visa-placeholder {
    font-family: "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    color: #1a1f71;
    background: rgba(255, 255, 255, 0.85);
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 1px;
}

.mastercard-placeholder {
    display: flex;
    align-items: center;
}

.mc-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.mc-red {
    background: #eb001b;
}
.mc-orange {
    background: #f79e1b;
    margin-left: -8px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1601px) and (max-width: 1800px) {
    .hero-layout {
        grid-template-columns: 1fr minmax(0, 560px) 1fr;
    }
}

@media (min-width: 1101px) and (max-width: 1600px) {
    .hero-layout {
        grid-template-columns: 1fr minmax(0, 500px) 1fr;
    }
}

/* @media (min-width: 769px) and (max-width: 1100px) {
            .hero-layout {
                grid-template-columns: 1fr 420px 1fr;
            }

            .hero-center {
                padding: 0 24px;
            }

            .slide-img {
                border-radius: 10px;
            }
        } */

@media (max-width: 1100px) {
    .hero-section {
        height: auto;
        max-height: none;
    }

    .hero-section.has-panels {
        height: auto;
        max-height: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        height: auto;
        max-height: none;
    }

    .hero-section.has-panels .hero-layout {
        height: auto;
        max-height: none;
    }

    .hero-slides-panel {
        display: none;
    }

    .hero-center {
        padding: 0;
        height: auto;
        overflow: visible;
    }

    .hero-section.has-panels .hero-center {
        height: auto;
        overflow: visible;
    }

    .hero-visual {
        margin-top: 16px;
        flex-shrink: 1;
    }

    .hero-lady {
        width: 240px;
        height: 300px;
    }

    .hero-cards {
        width: 300px;
        height: 140px;
        top: 10px;
    }

    .hero-card {
        width: 160px;
        height: 98px;
        border-radius: 10px;
        padding: 10px;
    }

    .hero-card-gold.hero-card-open {
        transform: rotate(18deg) translateX(70px) translateY(-14px);
    }

    .hero-card-navy.hero-card-open {
        transform: rotate(-16deg) translateX(-70px) translateY(-14px);
    }

    .card-chip {
        top: 10px;
        left: 10px;
        width: 28px;
        height: 20px;
    }

    .card-bank-logo {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 20px;
    }

    .card-number {
        top: 46px;
        left: 10px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .card-footer {
        bottom: 10px;
        left: 10px;
        font-size: 8px;
    }

    .card-footer .card-label {
        font-size: 6px;
    }

    .card-brand {
        bottom: 10px;
        right: 10px;
        width: 36px;
        height: 18px;
    }

    .mc-circle {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-layout {
        padding: 90px 16px 50px;
    }

    .hero-lady {
        width: 200px;
        height: 260px;
    }

    .hero-cards {
        width: 260px;
        height: 120px;
    }

    .hero-card {
        width: 140px;
        height: 86px;
        border-radius: 8px;
        padding: 8px;
    }

    .hero-card-gold.hero-card-open {
        transform: rotate(18deg) translateX(58px) translateY(-12px);
    }

    .hero-card-navy.hero-card-open {
        transform: rotate(-16deg) translateX(-58px) translateY(-12px);
    }

    .card-number {
        top: 38px;
        font-size: 7px;
        letter-spacing: 1px;
    }
}

.stat-section {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 32px;
}

.stat-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(5, 173, 143, 0.04) 0%, transparent 65%),
        radial-gradient(ellipse 40% 70% at 0% 50%, rgba(5, 173, 143, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 70% at 100% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139, 92, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.stat-inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-header {
    text-align: center;
    margin-bottom: 64px;
}

.stat-heading {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.stat-subtext {
    font-size: clamp(13px, 1.3vw, 15px);
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.stat-body {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    width: 100%;
    justify-content: center;
}

.stat-globe-col {
    flex-shrink: 0;
}

.stat-globe-container {
    position: relative;
    width: var(--globe-size, 420px);
    height: var(--globe-size, 420px);
}

.stat-globe {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(5, 173, 143, 0.1),
        0 8px 40px rgba(5, 173, 143, 0.15),
        0 24px 80px rgba(15, 23, 42, 0.1);
}

.stat-globe img {
    width: 200%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.stat-ring-1 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    inset: var(--ring1-inset, -80px);
    background: transparent;
    box-shadow:
        0 0 0 1px rgba(5, 173, 143, 0.08),
        0 0 20px 8px rgba(5, 173, 143, 0.07),
        0 0 40px 16px rgba(5, 173, 143, 0.04),
        inset 0 0 20px 8px rgba(5, 173, 143, 0.04);
}

.stat-ring-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    inset: var(--ring2-inset, -160px);
    background: transparent;
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.05),
        0 0 28px 10px rgba(15, 23, 42, 0.04),
        0 0 56px 22px rgba(15, 23, 42, 0.02),
        inset 0 0 28px 10px rgba(15, 23, 42, 0.03);
}

.stat-list-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 48px;
    flex-shrink: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: default;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 52px);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 4px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-item:hover .stat-num {
    transform: scale(1.06);
    color: var(--brand);
}

.stat-label {
    font-size: clamp(12px, 1vw, 14px);
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

.stat-num[data-target] {
    opacity: 0;
    transform: translateY(8px);
}

.stat-num.stat-counted {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.stat-reveal.stat-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-reveal-delay-1 { transition-delay: 0.1s; }
.stat-reveal-delay-2 { transition-delay: 0.2s; }
.stat-reveal-delay-3 { transition-delay: 0.3s; }
.stat-reveal-delay-4 { transition-delay: 0.45s; }
.stat-reveal-delay-5 { transition-delay: 0.6s; }
.stat-reveal-delay-6 { transition-delay: 0.75s; }

@media (max-width: 900px) {
    :root {
        --globe-size: 300px;
        --ring1-inset: -60px;
        --ring2-inset: -120px;
    }

    .stat-list-col {
        gap: 28px 36px;
    }
}

@media (max-width: 680px) {
    .stat-section {
        padding: 64px 24px 72px;
        min-height: auto;
    }

    .stat-body {
        flex-direction: column;
        gap: 40px;
    }

    :root {
        --globe-size: 240px;
        --ring1-inset: -48px;
        --ring2-inset: -96px;
    }

    .stat-list-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 28px;
        width: 100%;
    }
}

@media (max-width: 400px) {
    :root {
        --globe-size: 200px;
    }

    .stat-list-col {
        gap: 20px 20px;
    }
}
.partners-section {
    width: 100%;
    background: var(--bg);
    padding: 96px 48px 80px;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(5, 173, 143, 0.04) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.partners-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partners-header {
    max-width: 560px;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(28px);
}

.partners-header.is-visible {
    animation: fadeUp 0.65s ease forwards;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.partners-title .accent {
    color: var(--brand);
}

.partners-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0;
}

.partners-grid-row {
    display: contents;
}

.partner-cell {
    border: 1px solid var(--border);
    margin: -1px 0 0 -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    min-height: 110px;
    cursor: default;
    transition:
        background 0.22s,
        box-shadow 0.22s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
}

.partner-cell.is-visible {
    animation: cellIn 0.5s ease forwards;
}

.partner-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 173, 143, 0.05);
    opacity: 0;
    transition: opacity 0.22s;
}

.partner-cell:hover::before {
    opacity: 1;
}

.partner-cell:hover {
    z-index: 2;
    box-shadow: 0 0 0 1.5px var(--brand);
}

.partner-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition:
        filter 0.25s,
        transform 0.25s;
    display: block;
    max-width: 140px;
}

.partner-cell:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.07);
}

.partners-cta {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.partners-cta.is-visible {
    animation: fadeUp 0.65s ease forwards;
}

.partners-cta-text {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--font-ui);
}

.partners-cta-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.partners-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand);
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.18s,
        box-shadow 0.2s;
    white-space: nowrap;
}

.partners-cta-link:hover {
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.partners-cta-link svg {
    width: 14px;
    height: 14px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cellIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 900px) {
    .partners-section {
        padding: 72px 32px 64px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-header {
        margin-bottom: 48px;
    }

    .partner-cell {
        padding: 24px 16px;
        min-height: 90px;
    }

    .partner-logo {
        height: 28px;
    }
}

@media (max-width: 640px) {
    .partners-section {
        padding: 56px 20px 48px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-header {
        margin-bottom: 36px;
    }

    .partner-cell {
        padding: 20px 12px;
        min-height: 76px;
    }

    .partner-logo {
        height: 22px;
        max-width: 80px;
    }

    .partners-cta {
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 400px) {
    .partner-cell {
        padding: 16px 8px;
        min-height: 66px;
    }

    .partner-logo {
        height: 18px;
        max-width: 68px;
    }
}

.faq-section {
    width: 100%;
    padding: 100px 32px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(5, 173, 143, 0.06) 0%,
        transparent 70%
    );
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.05) 0%,
        transparent 70%
    );
    bottom: -150px;
    right: -150px;
    pointer-events: none;
}

.faq-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 1;
}

/* ---- LEFT PANEL ---- */
.faq-left {
    display: flex;
    flex-direction: column;
}

/* Scroll-in animations */
.faq-animate {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.faq-animate.faq-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-animate-delay-1 {
    transition-delay: 0.1s;
}

.faq-animate-delay-2 {
    transition-delay: 0.2s;
}

.faq-animate-delay-3 {
    transition-delay: 0.3s;
}

.faq-animate-delay-4 {
    transition-delay: 0.4s;
}

.faq-animate-delay-5 {
    transition-delay: 0.5s;
}

.faq-animate-delay-6 {
    transition-delay: 0.6s;
}

.faq-animate-delay-7 {
    transition-delay: 0.7s;
}

.faq-animate-delay-8 {
    transition-delay: 0.8s;
}

.faq-animate-delay-9 {
    transition-delay: 0.9s;
}

.faq-animate-delay-10 {
    transition-delay: 1s;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.faq-heading span {
    color: var(--brand);
}

.faq-subtext {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 300px;
}

.faq-contact-card {
    background: linear-gradient(
        135deg,
        var(--brand-light) 0%,
        rgba(6, 182, 212, 0.06) 100%
    );
    border: 1px solid rgba(5, 173, 143, 0.15);
    border-radius: 18px;
    padding: 28px;
    margin-top: auto;
}

.faq-contact-card--desktop {
    display: block;
}

.faq-contact-card--mobile {
    display: none;
}

.faq-contact-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-contact-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.18s;
}

.faq-contact-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.faq-question:hover .faq-q-text {
    color: var(--brand);
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.faq-q-num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    min-width: 24px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.faq-item.faq-open .faq-q-num {
    color: var(--brand);
}

.faq-q-text {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
    line-height: 1.3;
}

.faq-item.faq-open .faq-q-text {
    color: var(--brand);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.faq-open .faq-icon {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease,
        padding 0.3s ease;
    padding: 0 4px 0 38px;
}

.faq-item.faq-open .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding: 0 4px 22px 38px;
}

.faq-answer-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer-text a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer-text a:hover {
    text-decoration: underline;
}

/* Tags */
.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 10px;
}

.faq-tag.green {
    background: rgba(5, 173, 143, 0.1);
    color: var(--brand);
}

.faq-tag.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.faq-tag.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}

@media (max-width: 1024px) {
    .faq-inner {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 72px 20px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faq-contact-card--desktop {
        display: none;
    }

    .faq-contact-card--mobile {
        display: block;
        margin-top: 32px;
    }

    .faq-subtext {
        max-width: 100%;
    }

    .faq-answer {
        padding-left: 4px;
    }

    .faq-item.faq-open .faq-answer {
        padding-left: 4px;
    }

    .faq-q-num {
        display: none;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 56px 16px;
    }

    .faq-heading {
        letter-spacing: -1px;
    }
}

.why-section {
    width: 100%;
    background: var(--bg);
    padding: 100px 32px 112px;
}

.why-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 56px;
}

.why-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.why-heading em {
    font-style: normal;
    color: var(--brand);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-row {
    display: grid;
    gap: 20px;
    align-items: stretch;
}

.why-row-1 {
    grid-template-columns: 3fr 2fr;
}

.why-row-2 {
    grid-template-columns: 2fr 3fr;
}

.why-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}

.why-card--main {
    background: var(--brand-light);
}

.why-card--r1b {
    background: var(--accent-cyan-light);
}

.why-card--r2a {
    background: var(--accent-purple-light);
}

.why-card--r2b {
    background: var(--brand);
    justify-content: center;
}

.why-card--r2b .why-cta-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.why-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.why-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.why-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 32px;
}

.why-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.why-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #fff;
    color: var(--brand);
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.why-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.why-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: gap 0.2s;
}

.why-cta-btn-ghost:hover {
    gap: 11px;
}

.why-card-image {
    width: 100%;
    flex-shrink: 0;
    padding: 20px 20px 0;
}

.why-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s ease;
}

.why-card:hover .why-card-image img {
    transform: scale(1.03);
}

.why-card-body {
    padding: 24px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-card--main .why-icon-wrap {
    background: rgba(5, 173, 143, 0.14);
    color: var(--brand);
}

.why-card--r1b .why-icon-wrap {
    background: rgba(6, 182, 212, 0.18);
    color: var(--accent-cyan);
}

.why-card--r2a .why-icon-wrap {
    background: rgba(139, 92, 246, 0.14);
    color: var(--accent-purple);
}

.why-card--r2b .why-icon-wrap {
    background: rgba(244, 63, 94, 0.12);
    color: var(--accent-rose);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: var(--text-dark);
}

.why-card--main .why-card-title {
    font-size: clamp(18px, 1.8vw, 24px);
}

.why-card-desc {
    font-size: 13.5px;
    line-height: 1.75;
    flex: 1;
    color: var(--text-muted);
}

.why-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.2s;
    width: fit-content;
}

.why-card-link:hover {
    gap: 10px;
}

.why-card--main .why-card-link {
    color: var(--brand);
}
.why-card--r1b .why-card-link {
    color: var(--accent-cyan);
}
.why-card--r2a .why-card-link {
    color: var(--accent-purple);
}

.why-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.why-reveal.why-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-reveal-d1 {
    transition-delay: 0s;
}
.why-reveal-d2 {
    transition-delay: 0.1s;
}
.why-reveal-d3 {
    transition-delay: 0.2s;
}
.why-reveal-d4 {
    transition-delay: 0.12s;
}
.why-reveal-d5 {
    transition-delay: 0.22s;
}

@media (max-width: 768px) {
    .why-section {
        padding: 72px 20px 80px;
    }

    .why-row-1,
    .why-row-2 {
        grid-template-columns: 1fr;
    }

    .why-card-image img {
        height: 220px;
    }

    .why-heading {
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 56px 16px 64px;
    }

    .why-card-body {
        padding: 20px 20px 28px;
    }

    .why-card-image {
        padding: 16px 16px 0;
    }

    .why-card-image img {
        height: 180px;
    }

    .why-icon-wrap {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

:root {
    --brand-dark: #049478;
    --font-mono: "JetBrains Mono", monospace;

    --code-bg: #0d2b23;
    --code-border: rgba(5, 173, 143, 0.2);
    --code-line: rgba(255, 255, 255, 0.04);
    --token-key: #a7f3d0;
    --token-str: #6ee7b7;
    --token-num: #86efac;
    --token-bool: #5eead4;
    --token-cmd: #ffffff;
    --token-flag: #94a3b8;
    --token-url: #67e8f9;
    --token-muted: rgba(255, 255, 255, 0.35);
}

.dev-section {
    width: 100%;
    background: var(--brand-dim);
    position: relative;
    overflow: hidden;
    padding: 100px 40px 110px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.dev-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dev-top {
    margin-bottom: 72px;
}

.dev-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.dev-heading-accent {
    display: block;
    color: var(--brand);
    font-size: clamp(28px, 4vw, 54px);
}

.dev-heading-accent .dev-angle {
    color: rgba(5, 173, 143, 0.5);
}

.dev-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 52px;
}

.dev-link-item {
    padding: 32px 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
    margin-right: 40px;
}

.dev-link-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.dev-link-icon {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    display: block;
}

.dev-link-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.dev-link-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.dev-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: gap 0.2s;
}

.dev-link-cta:hover {
    gap: 10px;
}

.dev-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
}

.dev-try-label {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.dev-try-label .dev-arrow {
    display: inline-block;
    color: var(--brand);
    font-size: 0.75em;
    margin-left: 8px;
    transform: rotate(45deg);
    font-style: normal;
}

.dev-try-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 14px;
    line-height: 1.7;
    max-width: 260px;
}

.dev-try-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 11px 22px;
    border: 1.5px solid rgba(5, 173, 143, 0.45);
    border-radius: 9px;
    color: var(--brand);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.dev-try-cta:hover {
    background: var(--brand-light);
    border-color: var(--brand);
}

.dev-code-panel {
    background: var(--code-bg);
    border-radius: 16px;
    border: 1px solid var(--code-border);
    overflow: hidden;
}

.dev-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.15);
}

.dev-code-tabs {
    display: flex;
    gap: 4px;
}

.dev-code-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 7px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.18s;
}

.dev-code-tab.dev-tab-active {
    background: rgba(5, 173, 143, 0.12);
    border-color: rgba(5, 173, 143, 0.25);
    color: var(--brand);
}

.dev-code-tab:hover:not(.dev-tab-active) {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.dev-code-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dev-code-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition:
        background 0.18s,
        color 0.18s;
}

.dev-code-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.dev-code-btn.dev-btn-close {
    background: rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 0.7);
}

.dev-code-btn.dev-btn-close:hover {
    background: rgba(239, 68, 68, 0.35);
    color: #ef4444;
}

.dev-code-body {
    padding: 0;
    overflow-x: auto;
}

.dev-snippet {
    display: none;
    padding: 24px 0 28px;
}

.dev-snippet.dev-snippet-active {
    display: block;
}

.dev-code-line {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 2px 24px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.8;
    transition: background 0.15s;
    white-space: nowrap;
}

.dev-code-line:hover {
    background: var(--code-line);
}

.dev-ln {
    color: var(--token-muted);
    min-width: 32px;
    -webkit-user-select: none;
    user-select: none;
    font-size: 11px;
    margin-right: 20px;
    text-align: right;
    flex-shrink: 0;
}

.t-cmd {
    color: var(--token-cmd);
}

.t-flag {
    color: var(--token-flag);
}

.t-url {
    color: var(--token-url);
}

.t-key {
    color: var(--token-key);
}

.t-str {
    color: var(--token-str);
}

.t-num {
    color: var(--token-num);
}

.t-bool {
    color: var(--token-bool);
}

.t-dim {
    color: var(--token-muted);
}

.t-kw {
    color: #c084fc;
}

.t-fn {
    color: #67e8f9;
}

.t-var {
    color: #fdba74;
}

.t-com {
    color: rgba(255, 255, 255, 0.28);
    font-style: italic;
}

.dev-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.dev-reveal.dev-visible {
    opacity: 1;
    transform: translateY(0);
}

.dev-reveal-d1 {
    transition-delay: 0.05s;
}

.dev-reveal-d2 {
    transition-delay: 0.15s;
}

.dev-reveal-d3 {
    transition-delay: 0.25s;
}

.dev-reveal-d4 {
    transition-delay: 0.35s;
}

.dev-copy-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--brand);
    color: #fff;
    padding: 10px 18px;
    border-radius: 9px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.2s,
        transform 0.2s;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 7px;
}

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

@media (max-width: 1024px) {
    .dev-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dev-try-sub {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .dev-section {
        padding: 72px 20px 80px;
    }

    .dev-links {
        grid-template-columns: 1fr;
        border-top: none;
        gap: 0;
    }

    .dev-link-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .dev-link-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .dev-code-tab span.dev-tab-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .dev-section {
        padding: 56px 16px 64px;
    }

    .dev-heading {
        letter-spacing: -1.2px;
    }
}

.dev-langs-strip {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 0 0;
}

.dev-langs-slider {
    position: relative;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dev-langs-slider::before,
.dev-langs-slider::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 10rem;
    z-index: 1;
}

.dev-langs-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--brand-dim) 0%,
        transparent 100%
    );
}

.dev-langs-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--brand-dim) 0%, transparent 100%);
}

.dev-langs-logos {
    list-style: none;
    display: flex;
    width: calc(10rem * 8 * 2);
    animation: dev-slide-left 40s linear infinite;
}

.dev-langs-logos li {
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-langs-logos img {
    height: 44px;
    width: 120px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) invert(1);
}

@keyframes dev-slide-left {
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

@media (max-width: 768px) {
    .dev-langs-slider {
        height: 4rem;
    }

    .dev-langs-slider::before,
    .dev-langs-slider::after {
        width: 6rem;
    }

    .dev-langs-logos img {
        height: 34px;
        width: 90px;
    }
}

.tes-section {
    width: 100%;
    background: var(--bg-soft);
    padding: 5rem 0 6rem;
    overflow: hidden;
}
.tes-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}
.tes-header {
    margin-bottom: 3.5rem;
}
.tes-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}
.tes-header .title-highlight {
    color: var(--brand);
}
.tes-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}
.tes-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 6%,
        black 94%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        black 6%,
        black 94%,
        transparent
    );
    padding: 1.8rem 0 5rem;
}
.tes-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: tes-slide-right-to-left 50s linear infinite;
    will-change: transform;
    align-items: flex-start;
    padding-bottom: 20px;
}
.tes-slider:hover .tes-track {
    animation-play-state: paused;
}
.tes-card {
    width: 400px;
    height: 500px;
    perspective: 2800px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
}
.tes-track .tes-card:nth-child(even) {
    transform: translateY(50px);
}
.tes-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    border-radius: 2rem;
}
.tes-card:hover .tes-flipper {
    transform: rotateY(180deg);
}
.tes-front,
.tes-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 2rem;
    overflow: hidden;
}
.tes-front {
    background: white;
}
.tes-front-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tes-front-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    padding: 2rem 1.5rem 1.8rem 1.5rem;
    color: white;
    text-align: left;
}
.tes-front-name {
    font-family: "Lexend", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.tes-front-role {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.tes-back {
    background: white;
    transform: rotateY(180deg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.tes-quote-large {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.8rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tes-back-footer {
    border-top: 1px dashed var(--border);
    padding-top: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tes-back-avatar-sm {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand-dark);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    object-fit: cover;
    flex-shrink: 0;
}
.tes-back-avatar-sm img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.tes-back-details h5 {
    font-family: "Lexend", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
.tes-back-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
}
@keyframes tes-slide-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 900px) {
    .tes-card {
        width: 320px;
        height: 440px;
    }
    .tes-header h2 {
        font-size: 2rem;
    }
}

.ins-section {
    width: 100%;
    background: var(--bg);
    padding: 96px 24px;
}

.ins-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

/* ── LEFT COL ─────────────────────────────────────────────── */
.ins-left {
    position: sticky;
    top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.ins-left.ins-visible {
    opacity: 1;
    transform: translateY(0);
}

.ins-heading {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 28px;
}

.ins-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition:
        color 0.2s,
        gap 0.2s;
}

.ins-view-all i {
    font-size: 14px;
}

.ins-view-all:hover {
    color: var(--brand-dim);
    gap: 11px;
}

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

/* ── CARD ─────────────────────────────────────────────────── */
.ins-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.ins-card.ins-visible {
    opacity: 1;
    transform: translateY(0);
}

.ins-card:nth-child(1) {
    transition-delay: 0.05s;
}
.ins-card:nth-child(2) {
    transition-delay: 0.15s;
}
.ins-card:nth-child(3) {
    transition-delay: 0.25s;
}

.ins-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--bg-soft);
}

.ins-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ins-card-title {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.015em;
    line-height: 1.38;
    margin-bottom: 14px;
    flex: 1;
}

.ins-card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ins-tag {
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 400;
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ins-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ins-left {
        position: static;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 24px;
    }

    .ins-heading {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .ins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .ins-section {
        padding: 64px 20px;
    }
    .ins-grid {
        grid-template-columns: 1fr;
    }
    .ins-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

