@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=PT+Sans:wght@400;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #245968;
    --color-primary-soft: #c8d8e4;
    --color-accent: #52ab98;
    --color-white: #ffffff;
    --color-background: #f2f2f2;
    --color-dark: #1a1a1a;
    --color-text-main: #2b3c4d;
    --color-text-muted: #6b7280;
    --color-border-subtle: #e5e7eb;

    /* Layout */
    --max-width: 1120px;
    --radius-sm: 0.4rem;
    --radius-md: 0.6rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);

    /* Spacing */
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;

    /* Typography */
    --font-base: 'PT Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: 'Raleway', system-ui, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
}

/* ===================
   BASE STYLES
   =================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--color-text-main);
    background-color: var(--color-white);
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, p {
    margin: 0;
}

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

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* ===================
   LAYOUT UTILITIES
   =================== */

.container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.section {
    padding-block: var(--space-4xl);
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-primary);
    color: var(--color-white);
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===================
   BUTTONS
   =================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 150ms ease-out, color 150ms ease-out,
        border-color 150ms ease-out, box-shadow 150ms ease-out;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: #439283;
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-border-subtle);
}

.btn-light:hover {
    background-color: var(--color-primary-soft);
}

.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--font-size-base);
}

/* ===================
   BADGES
   =================== */

.coming-soon-badge {
    display: inline-block;
    font-size: 0.65em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.25em 0.75em;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: var(--space-sm);
}

/* ===================
   HEADER
   =================== */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: var(--space-md);
    background: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin-inline: auto;
}

.header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    background-color: var(--color-background);
    opacity: 95%;
    border-radius: 999px;
    padding: var(--space-xs) var(--space-sm) var(--space-xs) var(--space-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.logo-img {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* Navigation */
.nav {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    position: relative;
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-sm);
    position: relative;
    transition: color 200ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
    color: var(--color-text-main);
}

.nav-indicator {
    position: absolute;
    bottom: 4px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: left 300ms cubic-bezier(0.4, 0, 0.2, 1), width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Header App Link */
.header-app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text-main);
    border-radius: 50%;
    transition: opacity 200ms ease;
    flex-shrink: 0;
}

.header-app-link:hover {
    opacity: 0.7;
}

.header-app-link svg {
    width: 22px;
    height: 22px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    border: none;
    background-color: transparent;
    padding: var(--space-xs);
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: 999px;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before { top: -5px; }
.hamburger::after { top: 5px; }

/* ===================
   HERO SECTION
   =================== */

.hero {
    background: linear-gradient(180deg,
        var(--color-white) 0%,
        var(--color-primary-soft) 40%,
        #e8d5e0 70%,
        #f5e6e8 100%
    );
    padding-top: var(--space-3xl);
    padding-bottom: 0;
    overflow: hidden;
}

.hero .container {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text-main);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-download-cta {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-lg);
}

/* App Store Button */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: 10px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-store-btn svg {
    width: 24px;
    height: 24px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-label {
    font-size: 10px;
    opacity: 0.9;
}

.app-store-name {
    font-size: 16px;
    font-weight: 600;
}

/* Hero Trust & Disclaimer */
.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-bottom: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.trust-rating {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-main);
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars .star {
    width: 20px;
    height: 20px;
    background-color: #00b67a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-stars .star svg {
    width: 12px;
    height: 12px;
    color: white;
}

.hero-disclaimer {
    font-size: 11px;
    color: var(--color-text-muted);
    opacity: 0.7;
    max-width: 400px;
    margin: var(--space-md) auto 0;
    line-height: 1.4;
}

.hero-disclaimer a {
    color: var(--color-primary);
    text-decoration: underline;
}

.hero-disclaimer a:hover {
    opacity: 0.8;
}

/* Hero Phone */
.hero-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
    margin-bottom: -60px;
}

.hero-phone-wrapper .iphone-frame {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.hero-phone-wrapper .iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 12px;
    z-index: 10;
}

.hero-phone-wrapper .iphone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 36px;
    overflow: hidden;
}

/* ===================
   INTEGRATIONS SECTION
   =================== */

.integrations-section {
    background-color: var(--color-text-main);
    padding-block: var(--space-2xl);
    overflow: hidden;
}

.integrations-section .container {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.integrations-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.integrations-title {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.integrations-description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
}

/* Marquee */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: var(--space-xl);
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-text-main), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-text-main), transparent);
}

.marquee-track {
    display: flex;
    gap: var(--space-2xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bank-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 120px;
    flex-shrink: 0;
}

.bank-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 var(--space-md);
    transition: opacity 200ms ease;
}

.bank-logo:hover {
    opacity: 0.8;
}

.bank-logo img {
    max-height: 32px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bank-category {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: capitalize;
}

/* ===================
   FEATURES SHOWCASE
   =================== */

.features-showcase-section {
    background-color: var(--color-white);
    padding-block: var(--space-4xl);
}

.features-showcase-section.alt-bg {
    background-color: var(--color-background);
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.features-headline {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-sm);
}

.features-subheadline {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.features-card-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.feature-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-phone-mockup {
    margin-bottom: var(--space-lg);
}

.feature-card-content {
    text-align: center;
    max-width: 200px;
}

.feature-card-title {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-xs);
}

.feature-card-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.features-cta {
    display: flex;
    justify-content: center;
}

/* ===================
   PHONE FRAMES
   =================== */

/* Feature Phone Frame */
.phone-frame {
    width: 220px;
    height: 390px;
    background: linear-gradient(145deg, #fafafa, #f0f0f0);
    border-radius: 28px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 16px;
    background: #1a1a1a;
    border-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-background);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
}

.phone-screen::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.03), transparent);
    pointer-events: none;
}

/* iPhone Frame (Hero & CTA) */
.iphone-frame {
    position: relative;
    width: 240px;
    height: 480px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d4d4d4 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.iphone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 36px;
    overflow: hidden;
}

.iphone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

/* ===================
   SPLIT SECTION
   =================== */

.split-section {
    background-color: var(--color-white);
    padding-block: var(--space-3xl);
}

.split-section.alt-bg {
    background-color: var(--color-background);
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
    padding-block: var(--space-lg);
    border-bottom: 1px solid var(--color-border-subtle);
}

.split-row:last-child {
    border-bottom: none;
}

.split-row.large {
    padding-block: var(--space-xl);
    border-bottom: none;
}

.split-heading {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.3;
}

.split-heading-large {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.3;
    margin-bottom: var(--space-xs);
}

.split-tagline {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    font-style: italic;
}

.split-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===================
   SECURITY SECTION
   =================== */

.security-section {
    background-color: var(--color-white);
}

.security-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.security-card {
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid var(--color-border-subtle);
    text-align: center;
}

.security-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    line-height: 1.6;
}

.security-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

/* ===================
   MISSION SECTION
   =================== */

.mission-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.mission-section .section-title {
    color: var(--color-white);
}

.mission-description {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.mission-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===================
   VALUES SECTION
   =================== */

.values-section {
    background-color: var(--color-white);
}

.values-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-muted);
}

.values-cta {
    margin-bottom: var(--space-xl);
}

.values-grid {
    display: grid;
    gap: var(--space-md);
}

.value-item {
    display: grid;
    grid-template-columns: minmax(120px, 170px) 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-subtle);
    background-color: var(--color-background);
}

.value-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.value-content h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ===================
   FINAL CTA SECTION
   =================== */

.final-cta-section {
    background-color: var(--color-background);
    padding-top: var(--space-4xl);
    padding-bottom: 0;
    overflow: hidden;
}

.final-cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-content {
    text-align: center;
    max-width: 500px;
    margin-bottom: var(--space-2xl);
}

.final-cta-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-2xs);
    line-height: 1.3;
}

.final-cta-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xs);
    line-height: 1.5;
}

.final-cta-download {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--color-text-main);
    margin-bottom: var(--space-lg);
}

.final-cta-phone {
    position: relative;
    width: 340px;
    height: 500px;
    display: flex;
    justify-content: center;
}

.hand-image {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.hand-img {
    width: 100%;
    height: auto;
}

/* ===================
   SECTION TITLE
   =================== */

.section-title {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* ===================
   FOOTER
   =================== */

.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-block: var(--space-3xl) var(--space-xl);
}

.footer-container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 var(--space-xs) 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-column-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color 200ms ease;
}

.footer-column-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 200ms ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================
   RESPONSIVE STYLES
   =================== */

@media (max-width: 1024px) {
    .features-card-grid,
    .features-card-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-pill {
        padding: var(--space-xs) var(--space-sm);
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + var(--space-sm));
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - var(--space-xl));
        max-width: 400px;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .nav.is-open {
        display: flex;
    }

    .header-app-link {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .footer-legal {
        order: 2;
    }

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

@media (max-width: 600px) {
    .features-card-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding-block: var(--space-2xl);
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

    .btn {
        width: 100%;
    }

    .final-cta-phone {
        width: 280px;
        height: 420px;
    }

    .iphone-frame {
        width: 200px;
        height: 355px;
    }

    .hand-image {
        right: -30px;
        width: 160px;
    }

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