/* ── gigPe Landing — Design System ── */

:root {
    /* Brand */
    --primary: #FF7A3D;
    --primary-hover: #ff601a;
    --primary-soft: rgba(255, 122, 61, 0.12);
    --primary-border: rgba(255, 122, 61, 0.28);
    --accent-coin: #F5B642;

    /* Motion */
    --ease: cubic-bezier(0.32, 0.72, 0, 1);
    --transition: all 0.32s var(--ease);
    --transition-fast: all 0.2s var(--ease);

    /* Radius scale */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 100px;

    /* Layout */
    --container: 1200px;
    --container-wide: 1320px;
}

/* ── Dark theme (default) ── */
[data-theme="dark"] {
    --bg: #0B0B0F;
    --bg-elev: #14141B;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-strong: rgba(255, 255, 255, 0.06);
    --surface: #1A1A22;
    --text-main: #F6F6F8;
    --text-muted: #9B9BA8;
    --text-faint: #6E6E7C;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --glass-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6), 0 8px 24px -12px rgba(0, 0, 0, 0.5);
    --inner-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --nav-bg: rgba(11, 11, 15, 0.72);
    --footer-bg: #07070A;
    --orb-1: rgba(255, 122, 61, 0.35);
    --orb-2: rgba(74, 144, 226, 0.22);
    --grain-opacity: 0.04;
    --badge-bg: rgba(255, 255, 255, 0.06);
    --store-track: rgba(255, 255, 255, 0.04);
    --store-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 12px 40px -16px rgba(0, 0, 0, 0.7);
}

/* ── Light theme ── */
[data-theme="light"] {
    --bg: #FBF8F4;
    --bg-elev: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-strong: #FFFFFF;
    --surface: #FFFFFF;
    --text-main: #1B1B22;
    --text-muted: #5A5A66;
    --text-faint: #8A8A95;
    --border: rgba(17, 17, 22, 0.08);
    --border-strong: rgba(17, 17, 22, 0.14);
    --glass-shadow: 0 24px 60px -28px rgba(20, 20, 30, 0.18), 0 8px 24px -16px rgba(20, 20, 30, 0.12);
    --inner-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --nav-bg: rgba(251, 248, 244, 0.78);
    --footer-bg: #F4EFE8;
    --orb-1: rgba(255, 122, 61, 0.22);
    --orb-2: rgba(74, 144, 226, 0.14);
    --grain-opacity: 0.025;
    --badge-bg: rgba(17, 17, 22, 0.04);
    --store-track: rgba(17, 17, 22, 0.03);
    --store-border: rgba(17, 17, 22, 0.08);
    --shadow-soft: 0 12px 40px -20px rgba(20, 20, 30, 0.22);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--r-sm);
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
}

/* Backgrounds */
.bg-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    transition: background 0.4s var(--ease);
}
.orb-1 {
    top: -12%;
    left: -8%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--orb-1), transparent 70%);
}
.orb-2 {
    top: 35%;
    right: -15%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, var(--orb-2), transparent 70%);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
}
.highlight {
    color: #190901 !important;
}
.highlight1 {
    color: var(--primary);
}
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 1px solid var(--primary-border);
    margin-bottom: 20px;
}
.eyebrow-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px -10px rgba(255, 122, 61, 0.6);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(255, 122, 61, 0.7);
}
.btn-primary:active {
    transform: translateY(0) scale(0.98);
}
.btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: var(--border-strong);
}
.btn-outline:hover {
    background: var(--bg-card-strong);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn:focus-visible,
.store-badge:focus-visible img,
.theme-toggle:focus-visible,
.mobile-link:focus-visible,
.nav-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

/* Theme toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}
.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}
.theme-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Navigation */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: var(--container-wide);
    z-index: 100;
    border-radius: var(--r-pill);
    padding: 10px 14px 10px 18px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.navbar.scrolled {
    top: 10px;
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.25);
}
.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
}
.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 10px;
    background: #000;
    padding: 4px;
}
.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: auto;
    margin-right: 8px;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
}
.nav-links a:hover {
    color: var(--text-main);
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-cta-btn {
    padding: 10px 18px;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    z-index: 99;
}
.mobile-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}
.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    transition: var(--transition-fast);
}
.mobile-link:hover {
    background: var(--bg-card);
    color: var(--primary);
}
.mobile-cta {
    margin-top: 8px;
    width: 100%;
}

/* Sections */
.section {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}
.section-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 14px;
}
.section-header p {
    font-size: 17px;
    color: var(--text-muted);
}

/* Hero */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
}
.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.65;
}
.store-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    align-items: center;
}
.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 34px -18px rgba(0, 0, 0, 0.55);
    min-height: 62px;
    padding: 0;
}
.store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.4);
}
.store-badge img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
}
.app-store-badge img {
    width: 210px;
}
.play-store-badge img {
    width: 176px;
}
.trust-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: var(--badge-bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 12.5px;
    font-weight: 500;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: var(--r-xl);
    padding: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.hero-image {
    width: 100%;
    height: auto;
    border-radius: calc(var(--r-xl) - 10px);
    display: block;
}
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}
.floating-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}
.floating-card span {
    font-size: 11.5px;
    color: var(--text-muted);
}
.floating-card .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
    flex-shrink: 0;
}
.floating-card-1 {
    top: 22px;
    left: -22px;
    animation-delay: 0s;
}
.floating-card-2 {
    bottom: 24px;
    right: -22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    animation-delay: 2s;
}
.floating-card-2 strong {
    font-size: 20px;
    color: var(--primary);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Supported stores */
.stores {
    padding: 64px 0;
}
.stores-eyebrow {
    text-align: center;
    color: var(--text-faint);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 28px;
}
.store-rail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.store-logo {
    width: 96px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--store-track);
    border: 1px solid var(--store-border);
    border-radius: var(--r-md);
    padding: 10px;
    transition: var(--transition);
}
.store-logo:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-soft);
}
.store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(1);
}

/* Value prop */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.value-card {
    padding: 36px 32px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--inner-highlight), var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.value-card:hover::before {
    opacity: 1;
}
.value-card-alt::before {
    background: linear-gradient(90deg, var(--accent-coin), transparent);
}
.card-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 5px 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.card-tag-alt {
    background: rgba(245, 182, 66, 0.14);
    color: var(--accent-coin);
}
.value-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}
.card-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 15.5px;
}
.feature-list {
    list-style: none;
    margin-bottom: 28px;
}
.feature-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.list-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    margin-top: 1px;
}
.list-icon-alt {
    background: rgba(245, 182, 66, 0.16);
    color: var(--accent-coin);
}
.feature-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    color: var(--text-main);
}
.feature-list span {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}
.card-cta {
    margin-top: auto;
    align-self: flex-start;
}

/* How it works */
.how-it-works {
    overflow: hidden;
}
.flow-tabs {
    width: min(420px, 100%);
    margin: -18px auto 44px;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--inner-highlight), var(--shadow-soft);
}
.flow-tab {
    border: 0;
    border-radius: 18px;
    min-height: 58px;
    padding: 0 18px;
    color: var(--text-main);
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.flow-tab:hover {
    color: var(--primary);
    background: var(--primary-soft);
}
.flow-tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    box-shadow: 0 14px 28px -16px rgba(255, 122, 61, 0.9);
}
.flow-tab:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
.flow-panels {
    position: relative;
}
.flow-panel {
    list-style: none;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.flow-panel.active {
    display: grid;
}
.step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(145deg, var(--bg-card), transparent);
    border: 1px solid var(--border);
    box-shadow: var(--inner-highlight), var(--shadow-soft);
    transition: var(--transition);
}
.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--border-strong), transparent);
}
.step:last-child::after {
    display: none;
}
.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-border);
}
.step-art {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background:
        radial-gradient(circle at 30% 15%, rgba(255, 122, 61, 0.22), transparent 34%),
        radial-gradient(circle at 75% 75%, rgba(245, 182, 66, 0.16), transparent 36%),
        var(--bg-elev);
    border: 1px solid var(--border);
    overflow: hidden;
}
.step-art svg {
    width: 124px;
    height: 124px;
    overflow: visible;
}
.step-art svg * {
    fill: none;
    stroke: var(--primary);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.step:nth-child(2) .step-art svg * {
    stroke: #7C5CFF;
}
.step:nth-child(3) .step-art svg * {
    stroke: var(--accent-coin);
}
.step-content {
    padding: 24px 16px 18px;
    width: 100%;
    flex: 1;
}
.step-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.step-content h4 {
    margin-bottom: 8px;
    font-size: 22px;
    letter-spacing: -0.03em;
}
.step-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.58;
}

/* Trust */
.trust-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--inner-highlight), var(--shadow-soft);
}
.trust-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 14px;
}
.trust-text p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 460px;
}
.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.trust-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.trust-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    border-radius: var(--r-sm);
    font-size: 18px;
    flex-shrink: 0;
}
.trust-list strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}
.trust-list span {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* CTA */
.cta {
    padding: 64px 0 96px;
}
.cta-card {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff601a 60%, #e8501a 100%);
    border-radius: var(--r-xl);
    color: #fff;
    box-shadow: 0 30px 70px -30px rgba(255, 122, 61, 0.6);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}
.cta-card h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 14px;
}
.cta-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.cta-card .store-badges {
    justify-content: center;
    margin-bottom: 0;
}
.cta-card .store-badge {
    border-color: rgba(255, 255, 255, 0.18);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 72px 0 28px;
    background: var(--footer-bg);
    position: relative;
    z-index: 1;
}
.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 56px;
    margin-bottom: 48px;
}
.footer-brand .logo {
    margin-bottom: 14px;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 6px;
}
.company {
    color: var(--text-faint);
    font-size: 13px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.link-group h4 {
    margin-bottom: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
}
.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 11px;
    font-size: 14px;
    transition: var(--transition-fast);
}
.link-group a:hover {
    color: var(--primary);
    transform: translateX(2px);
}
.footer-bottom {
    text-align: center;
    color: var(--text-faint);
    font-size: 13px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-in-left {
    transform: translateX(-30px);
}
.slide-in-right {
    transform: translateX(30px);
}
.slide-in-left.is-visible,
.slide-in-right.is-visible {
    transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Active nav link (scrollspy) */
.nav-links a.active {
    color: var(--text-main);
}
.nav-links a.active::after {
    width: 100%;
}

/* Hero social proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--text-muted);
    font-size: 13.5px;
    flex-wrap: wrap;
}
.proof-stars {
    color: var(--accent-coin);
    letter-spacing: 2px;
    font-size: 15px;
    flex-shrink: 0;
}
.proof-text {
    font-weight: 500;
}

/* Stats band */
.stats-band {
    padding: 8px 0 32px;
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--inner-highlight), var(--shadow-soft);
}
.stat-item {
    position: relative;
    text-align: center;
    padding: 4px 8px;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background: var(--border);
}
.stat-num {
    display: block;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--primary), var(--accent-coin));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Savings calculator */
.calc-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--inner-highlight), var(--shadow-soft);
    overflow: hidden;
}
.calc-controls {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.calc-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-faint);
    margin-bottom: 14px;
}
.calc-amount {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 18px;
    font-variant-numeric: tabular-nums;
}
#calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--primary) var(--fill, 12%), var(--border-strong) var(--fill, 12%));
    outline: none;
    cursor: pointer;
}
#calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    margin-top: -9px;
    transition: transform 0.15s var(--ease);
}
#calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.12);
}
#calc-range::-moz-range-track {
    height: 8px;
    border-radius: var(--r-pill);
    background: var(--border-strong);
}
#calc-range::-moz-range-progress {
    height: 8px;
    border-radius: var(--r-pill);
    background: var(--primary);
}
#calc-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid var(--primary);
    cursor: pointer;
}
#calc-range:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 6px;
}
.calc-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-faint);
}
.calc-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.calc-offer {
    border: 1px solid var(--border-strong);
    background: var(--bg-elev);
    color: var(--text-muted);
    border-radius: var(--r-pill);
    padding: 10px 16px;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-variant-numeric: tabular-nums;
}
.calc-offer:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.calc-offer.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px -10px rgba(255, 122, 61, 0.8);
}
.calc-offer:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
.calc-result {
    padding: 40px;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-hover) 70%, #e8501a 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.calc-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.22), transparent 55%);
    pointer-events: none;
}
.calc-result-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
}
.calc-save {
    font-size: clamp(40px, 6.5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 8px 0 14px;
    font-variant-numeric: tabular-nums;
}
.calc-pay {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.92);
}
.calc-pay strong {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.calc-note {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px;
    margin: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--inner-highlight), var(--shadow-soft);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.testimonial-stars {
    color: var(--accent-coin);
    letter-spacing: 2px;
    font-size: 15px;
}
.testimonial-quote {
    flex: 1;
    margin: 0;
    font-size: 15.5px;
    line-height: 1.62;
    color: var(--text-main);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent-coin));
}
.testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, #7C5CFF, var(--primary));
}
.testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, #2BB673, var(--accent-coin));
}
.testimonial-meta strong {
    display: block;
    font-size: 14.5px;
    color: var(--text-main);
}
.testimonial-meta span {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
    align-items: start;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2px 24px;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item[open] {
    border-color: var(--primary-border);
    background: var(--bg-card-strong);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--text-main);
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--r-sm);
}
.faq-chevron {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}
.faq-item p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.62;
}

/* New-section responsive */
@media (max-width: 900px) {
    .calc-card {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
        padding: 30px 20px;
    }
    .stat-item:nth-child(3)::before {
        display: none;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .calc-controls,
    .calc-result {
        padding: 30px 24px;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-item + .stat-item::before {
        display: none;
    }
    .stat-item + .stat-item {
        border-top: 1px solid var(--border);
        padding-top: 20px;
    }
    .calc-offer {
        flex: 1 1 100%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .store-badges,
    .trust-chips {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-image-frame {
        max-width: 380px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .trust-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px;
    }
    .flow-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }
    .section-container,
    .footer-container,
    .hero-container {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-cta-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .navbar {
        width: calc(100% - 16px);
        padding: 8px 10px 8px 14px;
    }
    .logo-img {
        width: 32px;
        height: 32px;
    }
    .logo-text {
        font-size: 18px;
    }
    .hero {
        padding: 120px 0 64px;
        min-height: auto;
    }
    .store-badge {
        min-height: 54px;
        border-radius: 16px;
    }
    .store-badge img {
        height: 54px;
    }
    .app-store-badge img {
        width: 183px;
    }
    .play-store-badge img {
        width: 153px;
    }
    .store-logo {
        width: 76px;
        height: 56px;
    }
    .value-card,
    .trust-card {
        padding: 28px 22px;
    }
    .cta-card {
        padding: 48px 24px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-card-1 {
        left: 0;
    }
    .floating-card-2 {
        right: 0;
    }
}

@media (max-width: 480px) {
    .flow-tabs {
        margin-bottom: 32px;
        padding: 6px;
    }
    .flow-tab {
        min-height: 50px;
        font-size: 14px;
    }
    .flow-panel {
        grid-template-columns: 1fr;
    }
    .store-badges {
        flex-direction: column;
        align-items: center;
    }
    .store-badge {
        min-height: 50px;
    }
    .store-badge img {
        height: 50px;
    }
    .app-store-badge img {
        width: 170px;
    }
    .play-store-badge img {
        width: 142px;
    }
    .trust-chips {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}
