@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,800;1,9..144,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --deep-navy: #04263E;
    --teal-dark: #053552;
    --teal-mid: #0770A8;
    --teal-bright: #0883C4;
    --teal-light: #2E96D0;
    --coral: #E8614D;
    --coral-hover: #D44E3A;
    --mint-bg: #EAF3FA;
    --mint-light: #F2F8FC;
    --ice: #D0E6F5;
    --white: #FFFFFF;
    --gray-50: #F7F9FA;
    --gray-100: #E8EDEF;
    --gray-200: #CDD5DA;
    --gray-400: #8A9BA8;
    --gray-600: #4A5E6D;
    --gray-800: #1E3142;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(5, 45, 69, 0.06);
    --shadow-md: 0 8px 30px rgba(5, 45, 69, 0.08);
    --shadow-lg: 0 16px 50px rgba(5, 45, 69, 0.12);
    --shadow-glow: 0 0 40px rgba(8, 131, 196, 0.15);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 45, 69, 0.06);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.navbar.scrolled .navbar-brand {
    color: var(--deep-navy);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-bright);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar.scrolled .navbar-nav a {
    color: var(--gray-600);
}

.navbar.scrolled .navbar-nav a:hover {
    color: var(--teal-mid);
}

.navbar-nav a:hover {
    color: var(--white);
}

.navbar-cta {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    background: var(--coral);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: background 0.3s, transform 0.2s !important;
}

.navbar-cta::after {
    display: none !important;
}

.navbar-cta:hover {
    background: var(--coral-hover);
    transform: translateY(-1px);
}

.navbar.scrolled .navbar-cta {
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
    background: var(--deep-navy);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--teal-dark) 45%, var(--teal-mid) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(8, 131, 196, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseOrb 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 97, 77, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseOrb 10s ease-in-out infinite reverse;
}

@keyframes pulseOrb {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black, transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 131, 196, 0.12);
    border: 1px solid rgba(8, 131, 196, 0.25);
    color: var(--teal-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--teal-bright);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal-light);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 97, 77, 0.35);
}

.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 97, 77, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-primary-dark {
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(12, 53, 71, 0.35);
}

.btn-primary-dark:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(12, 53, 71, 0.4);
}

.hero-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    list-style: none;
}

.hero-checks li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--teal-bright);
}

.hero-badges-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    flex: 1;
    min-width: 200px;
}

.hero-info-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(8, 131, 196, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-info-badge-icon svg {
    width: 20px;
    height: 20px;
    color: var(--teal-bright);
}

.hero-info-badge strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-info-badge span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.visual-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.visual-header-text h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.visual-header-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.visual-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.schedule-day {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 50px;
}

.schedule-time {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.schedule-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.badge-confirmed {
    background: rgba(8, 131, 196, 0.15);
    color: var(--teal-light);
}

.badge-pending {
    background: rgba(232, 97, 77, 0.15);
    color: #F7A08C;
}

.badge-swap {
    background: rgba(255, 200, 50, 0.15);
    color: #F5D76E;
}

.visual-floating-card {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E8F8F7, #D0F0EE);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 20px;
    height: 20px;
    color: var(--teal-mid);
}

.floating-text strong {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-800);
}

.floating-text span {
    font-size: 0.72rem;
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */

.section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-bright);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PROBLEMS SECTION (Slide 2)
   ═══════════════════════════════════════════ */

.problems {
    background: var(--mint-bg);
    position: relative;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-bright), transparent);
    opacity: 0.3;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.problem-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.problem-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.problem-tag-coral {
    background: rgba(232, 97, 77, 0.1);
    color: var(--coral);
}

.problem-tag-amber {
    background: rgba(212, 134, 10, 0.1);
    color: #D4860A;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   FINANCIAL IMPACT SECTION (Slide 3)
   ═══════════════════════════════════════════ */

.financial-impact {
    background: var(--white);
}

.impact-subtitle {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-bright);
    margin-bottom: 40px;
}

.impact-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-item:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.impact-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.impact-accent-coral { background: var(--coral); }
.impact-accent-amber { background: #D4860A; }
.impact-accent-teal { background: var(--teal-bright); }
.impact-accent-navy { background: var(--deep-navy); }

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon svg {
    width: 24px;
    height: 24px;
}

.impact-icon-coral {
    background: rgba(232, 97, 77, 0.1);
    color: var(--coral);
}

.impact-icon-amber {
    background: rgba(212, 134, 10, 0.1);
    color: #D4860A;
}

.impact-icon-teal {
    background: rgba(8, 131, 196, 0.1);
    color: var(--teal-bright);
}

.impact-icon-navy {
    background: rgba(5, 45, 69, 0.1);
    color: var(--deep-navy);
}

.impact-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 6px;
}

.impact-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SOLUTION SECTION (Slide 4)
   ═══════════════════════════════════════════ */

.solution {
    background: var(--mint-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.solution-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-bright), var(--teal-mid));
    opacity: 0;
    transition: opacity 0.4s;
}

.solution-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card:hover .solution-icon {
    transform: scale(1.08);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.si-teal { background: linear-gradient(135deg, #E0F4F4, #C5EBF0); color: var(--teal-mid); }
.si-coral { background: linear-gradient(135deg, #FDEEEB, #FBD9D2); color: var(--coral); }
.si-navy { background: linear-gradient(135deg, #E0E8EE, #C5D3DE); color: var(--deep-navy); }
.si-green { background: linear-gradient(135deg, #E0F5E5, #C5EBCE); color: #28a745; }
.si-amber { background: linear-gradient(135deg, #FFF3DC, #FFE8B8); color: #D4860A; }
.si-purple { background: linear-gradient(135deg, #EDE0F5, #DBC5EB); color: #7C3AED; }

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    flex: 1;
}

.solution-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 18px;
}

.solution-tag-green { color: #28a745; }
.solution-tag-amber { color: #D4860A; }
.solution-tag-navy { color: var(--deep-navy); }
.solution-tag-purple { color: #7C3AED; }
.solution-tag-coral { color: var(--coral); }
.solution-tag-teal { color: var(--teal-mid); }

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--teal-dark), var(--deep-navy));
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: transform 0.3s ease;
}

.solution-highlight:hover {
    transform: translateY(-2px);
}

.solution-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-highlight-icon svg {
    width: 20px;
    height: 20px;
    color: var(--teal-light);
}

.solution-highlight strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.solution-highlight span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   SWAP ENGINE SECTION
   ═══════════════════════════════════════════ */

.swap-engine {
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.swap-engine::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 131, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.swap-engine .section-label {
    color: var(--teal-light);
}

.swap-engine .section-title {
    color: var(--white);
}

.swap-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.swap-flow-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.swap-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.swap-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.swap-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.swap-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.swap-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-bright);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.swap-step-header svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.3);
}

.swap-step h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.swap-step p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.swap-step-full {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(8, 131, 196, 0.1);
    border: 1px solid rgba(8, 131, 196, 0.2);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}

.swap-step-full h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.swap-step-full p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.swap-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(8, 131, 196, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.swap-metric-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: rgba(8, 131, 196, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap-metric-icon svg {
    width: 24px;
    height: 24px;
    color: var(--teal-bright);
}

.swap-metric-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--teal-bright);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.swap-metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.swap-metric-detail {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.swap-metric-detail p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.swap-metric-detail strong {
    color: var(--white);
}

.swap-metric-detail span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal-bright);
}

.swap-metric-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin-bottom: 20px;
}

.swap-metric-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.swap-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-bright);
    border: 1px solid rgba(8, 131, 196, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION (legacy)
   ═══════════════════════════════════════════ */

.about {
    background: var(--mint-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-bright), transparent);
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-visual {
    position: relative;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--mint-light);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-icon-teal {
    background: linear-gradient(135deg, rgba(8, 131, 196, 0.12), rgba(8, 131, 196, 0.06));
    color: var(--teal-bright);
}

.stat-icon-coral {
    background: linear-gradient(135deg, rgba(232, 97, 77, 0.12), rgba(232, 97, 77, 0.06));
    color: var(--coral);
}

.stat-icon-navy {
    background: linear-gradient(135deg, rgba(5, 45, 69, 0.1), rgba(5, 45, 69, 0.05));
    color: var(--deep-navy);
}

.stat-icon-green {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(40, 167, 69, 0.06));
    color: #28a745;
}

.stat-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 500;
}

.about-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-mid));
    border-radius: var(--radius-md);
    opacity: 0.15;
    z-index: -1;
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════ */

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-bright), var(--teal-mid));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.fi-teal {
    background: linear-gradient(135deg, #E0F4F4, #C5EBF0);
    color: var(--teal-mid);
}

.fi-coral {
    background: linear-gradient(135deg, #FDEEEB, #FBD9D2);
    color: var(--coral);
}

.fi-navy {
    background: linear-gradient(135deg, #E0E8EE, #C5D3DE);
    color: var(--deep-navy);
}

.fi-green {
    background: linear-gradient(135deg, #E0F5E5, #C5EBCE);
    color: #28a745;
}

.fi-amber {
    background: linear-gradient(135deg, #FFF3DC, #FFE8B8);
    color: #D4860A;
}

.fi-purple {
    background: linear-gradient(135deg, #EDE0F5, #DBC5EB);
    color: #7C3AED;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   MOBILE APP SECTION
   ═══════════════════════════════════════════ */

.mobile-app {
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 131, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mobile-content {
    position: relative;
    z-index: 2;
}

.mobile-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mobile-content > p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.mobile-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mobile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 12px 22px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    flex: 1;
    max-width: 220px;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.store-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.store-btn div {
    display: flex;
    flex-direction: column;
}

.store-btn span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    line-height: 1.2;
}

.store-btn strong {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.mobile-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--teal-bright);
}

.mobile-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--gray-800);
    border-radius: 40px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 12px;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--gray-800);
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-dark) 0%, var(--deep-navy) 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px 8px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.phone-app-header {
    padding: 12px 20px;
    text-align: center;
}

.phone-app-header h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.phone-app-header p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
}

.phone-schedule-list {
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.phone-schedule-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-schedule-item .psi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.phone-schedule-item .psi-day {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.phone-schedule-item .psi-badge {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.phone-schedule-item .psi-time {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.4);
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.phone-nav-item.active {
    color: var(--teal-bright);
}

.phone-nav-item svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════ */

.benefits {
    background: var(--mint-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice), var(--mint-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    color: var(--teal-mid);
}

.benefit-item h4 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════
   TARGET AUDIENCE SECTION
   ═══════════════════════════════════════════ */

.audience {
    background: var(--white);
}

.audience .benefit-item {
    background: var(--gray-50);
}

/* ═══════════════════════════════════════════
   COUNTERS SECTION
   ═══════════════════════════════════════════ */

.counters {
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.counters::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(8, 131, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(8, 131, 196, 0.08) 0%, transparent 50%);
}

.counters .container {
    position: relative;
    z-index: 2;
}

.counters .section-label {
    color: var(--teal-light);
}

.counters .section-title {
    color: var(--white);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.counter-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.counter-number {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.counter-number::after {
    content: '+';
    font-size: 0.7em;
    color: var(--teal-light);
}

.counter-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */

.pricing {
    background: var(--mint-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border-color: var(--teal-bright);
    border-width: 2px;
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-bright);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
    align-self: flex-start;
    margin-top: 8px;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 500;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--teal-bright);
}

.btn-pricing {
    width: 100%;
    justify-content: center;
}

.pricing-card .btn-outline {
    color: var(--deep-navy);
    border-color: var(--gray-200);
}

.pricing-card .btn-outline:hover {
    background: var(--mint-bg);
    border-color: var(--teal-bright);
    color: var(--teal-mid);
}

/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */

.faq {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--teal-bright);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--teal-mid);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--teal-bright);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA FINAL SECTION
   ═══════════════════════════════════════════ */

.cta-final {
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(8, 131, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 97, 77, 0.06) 0%, transparent 50%);
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.cta-final p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-final-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
    background: var(--deep-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 380px;
}

.footer-links h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--teal-bright);
}

.footer-store-buttons {
    margin-top: 20px;
}

.footer-store-buttons .store-btn {
    padding: 8px 16px;
    max-width: 180px;
}

.footer-store-buttons .store-btn svg {
    width: 22px;
    height: 22px;
}

.footer-store-buttons .store-btn span {
    font-size: 0.6rem;
}

.footer-store-buttons .store-btn strong {
    font-size: 0.82rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-highlights {
        grid-template-columns: 1fr;
    }

    .swap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .navbar-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--deep-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .navbar-nav.open {
        display: flex;
    }

    .navbar-nav a {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .navbar-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-checks {
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mobile-content {
        text-align: center;
    }

    .mobile-features {
        align-items: center;
    }

    .mobile-label {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .swap-grid {
        grid-template-columns: 1fr;
    }

    .swap-steps {
        grid-template-columns: 1fr;
    }

    .impact-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .impact-accent {
        left: 0;
        top: 0;
        bottom: auto;
        width: 100%;
        height: 4px;
    }

    .hero-badges-row {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .visual-floating-card {
        right: -10px;
        bottom: -10px;
    }
}

/* ═══════════════════════════════════════════
   ERROR PAGE
   ═══════════════════════════════════════════ */

.error-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--teal-dark) 45%, var(--teal-mid) 100%);
    overflow: hidden;
}

.error-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.error-orb {
    position: absolute;
    border-radius: 50%;
    animation: pulseOrb 8s ease-in-out infinite;
}

.error-orb-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 131, 196, 0.12) 0%, transparent 70%);
}

.error-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 97, 77, 0.08) 0%, transparent 70%);
    animation-direction: reverse;
    animation-duration: 10s;
}

.error-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: -20px;
    user-select: none;
}

.error-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.error-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
}

.error-content .btn {
    box-shadow: 0 4px 20px rgba(232, 97, 77, 0.35);
}

.error-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 97, 77, 0.4);
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ═══════════════════════════════════════════
   LEGAL PAGE
   ═══════════════════════════════════════════ */

.legal-page {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 420px);
    min-height: 100vh;
}

.legal-header {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.legal-header .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal-mid);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-navy);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.legal-updated {
    font-size: 0.92rem;
    color: var(--gray-400);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    box-shadow: var(--shadow-md);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 18px;
    text-align: justify;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin: 44px 0 18px;
    letter-spacing: -0.01em;
}

.legal-content ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.legal-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    text-align: justify;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 0 4px rgba(8, 131, 196, 0.12);
}

.legal-content strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.legal-back {
    text-align: center;
    margin-top: 48px;
}

.footer-bottom-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: var(--teal-bright);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 72px;
    }

    .legal-content {
        padding: 36px 28px;
    }

    .legal-content h2 {
        font-size: 1.3rem;
        margin-top: 32px;
    }
}