/* ===================================================================
 * CITYTRIP.AI — Modern Design System
 * Premium startup landing page styles
 * =================================================================== */


/* ===================================================================
 * # Design Tokens
 * =================================================================== */
:root {
    /* Colors */
    --c-primary: #4f46e5;
    --c-primary-light: #818cf8;
    --c-primary-dark: #3730a3;
    --c-primary-50: #eef2ff;
    --c-primary-100: #e0e7ff;
    --c-accent: #f97316;
    --c-accent-light: #fb923c;
    --c-teal: #06b6d4;
    --c-emerald: #10b981;
    --c-rose: #f43f5e;

    --c-dark: #0f172a;
    --c-dark-800: #1e293b;
    --c-dark-700: #334155;
    --c-dark-600: #475569;

    --c-gray-500: #64748b;
    --c-gray-400: #94a3b8;
    --c-gray-300: #cbd5e1;
    --c-gray-200: #e2e8f0;
    --c-gray-100: #f1f5f9;
    --c-gray-50: #f8fafc;

    --c-white: #ffffff;

    /* Gradients */
    --g-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #1e1b4b 100%);
    --g-primary: linear-gradient(135deg, #4f46e5, #7c3aed);
    --g-warm: linear-gradient(135deg, #f97316, #ef4444);
    --g-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --g-section-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --g-section-purple: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
    --g-mesh: radial-gradient(at 20% 80%, rgba(79,70,229,0.15) 0%, transparent 50%),
              radial-gradient(at 80% 20%, rgba(249,115,22,0.1) 0%, transparent 50%),
              radial-gradient(at 50% 50%, rgba(6,182,212,0.08) 0%, transparent 50%);

    /* Typography */
    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py: 14rem;
    --section-py-sm: 10rem;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 60px rgba(79,70,229,0.15);
    --shadow-glow-sm: 0 0 30px rgba(79,70,229,0.1);

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ===================================================================
 * # Global Overrides
 * =================================================================== */
html, body {
    background: var(--c-white) !important;
}

body {
    font-family: var(--f-sans) !important;
    color: var(--c-dark-600) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--f-sans) !important;
    color: var(--c-dark) !important;
    letter-spacing: -0.025em;
}

p.lead {
    font-family: var(--f-sans) !important;
    font-weight: 400;
    color: var(--c-gray-500) !important;
    line-height: 1.7;
}

a {
    color: var(--c-primary);
    transition: all 0.2s var(--ease);
}

a:hover, a:focus {
    color: var(--c-primary-dark);
}

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

/* Selection */
::selection {
    background: rgba(79,70,229,0.15);
    color: var(--c-dark);
}


/* ===================================================================
 * # Section Tag
 * =================================================================== */
.section-tag {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-primary);
    margin-bottom: 1.6rem;
    padding: 0.6rem 1.6rem;
    background: var(--c-primary-50);
    border-radius: var(--r-full);
    border: 1px solid var(--c-primary-100);
}

.section-tag--light {
    color: var(--c-white);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}


/* ===================================================================
 * # Display Headings
 * =================================================================== */
.display-1 {
    font-family: var(--f-sans) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
}

.display-2 {
    font-family: var(--f-sans) !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.2 !important;
}


/* ===================================================================
 * # Pace.js
 * =================================================================== */
.pace .pace-progress {
    background: var(--g-primary) !important;
    height: 3px !important;
}


/* ===================================================================
 * # Header
 * =================================================================== */
.s-header {
    background-color: transparent !important;
    transition: all 0.35s var(--ease) !important;
}

.s-header.sticky {
    background-color: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) !important;
}

.header-logo a,
.header-logo a.site-logo {
    font-family: var(--f-sans) !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    color: var(--c-white) !important;
    letter-spacing: -0.03em;
    display: flex !important;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.header-nav-wrap .header-main-nav {
    font-family: var(--f-sans) !important;
    font-weight: 500 !important;
    font-size: 1.35rem !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
}

.header-nav-wrap .header-main-nav li a {
    color: rgba(255,255,255,0.65) !important;
    transition: color 0.2s var(--ease) !important;
}

.header-nav-wrap .header-main-nav li a:hover,
.header-nav-wrap .header-main-nav li a:focus,
.header-nav-wrap .header-main-nav li.current a {
    color: var(--c-white) !important;
}

.header-cta__btn,
.header-nav-wrap .header-cta__btn {
    background: var(--c-primary) !important;
    border-color: var(--c-primary) !important;
    border-radius: var(--r-full) !important;
    font-family: var(--f-sans) !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    transition: all 0.25s var(--ease) !important;
}

.header-cta__btn:hover {
    background: var(--c-primary-dark) !important;
    border-color: var(--c-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.4);
}

/* Mobile header */
@media only screen and (max-width: 800px) {
    .s-header {
        background-color: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .header-nav-wrap {
        background-color: rgba(15, 23, 42, 0.98) !important;
    }

    .header-nav-wrap .header-main-nav li {
        border-bottom-color: rgba(255,255,255,0.05) !important;
    }
}


/* ===================================================================
 * # Hero Section
 * =================================================================== */
.s-home {
    min-height: 100vh !important;
    background-color: var(--c-dark) !important;
}

.s-home::before {
    background: var(--g-hero) !important;
    opacity: 1 !important;
}

.s-home .shadow-overlay {
    background: linear-gradient(180deg,
        rgba(15,23,42,0.3) 0%,
        rgba(15,23,42,0.0) 30%,
        rgba(15,23,42,0.0) 60%,
        rgba(15,23,42,0.6) 100%
    ) !important;
    opacity: 1 !important;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-sans);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--c-primary-light);
    background: rgba(79,70,229,0.1);
    border: 1px solid rgba(79,70,229,0.2);
    border-radius: var(--r-full);
    padding: 0.5rem 1.6rem;
    margin-bottom: 2.4rem;
}

.hero-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-emerald);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero heading */
.home-content h1 {
    font-family: var(--f-sans) !important;
    font-weight: 800 !important;
    font-size: 6.4rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    color: var(--c-white) !important;
    margin-bottom: 2rem !important;
    padding-top: 0 !important;
}

.home-content h1::before {
    display: none !important;
}

/* Hero tagline */
.home-content .home-content__tagline {
    font-family: var(--f-sans) !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.55) !important;
    margin-bottom: 3.6rem;
    max-width: 540px;
}

/* Hero content layout */
.home-content__main {
    padding-bottom: 6rem !important;
    display: flex !important;
    align-items: center !important;
}

.home-content__left {
    flex: 1 !important;
    width: auto !important;
}

.home-content__right {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 480px !important;
    flex-shrink: 0;
}

/* Hero phone */
.hero-phone {
    position: relative;
}

.hero-phone::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-phone img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    margin-top: 0 !important;
}

/* Store buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 2.2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-md);
    color: var(--c-white) !important;
    text-decoration: none;
    font-family: var(--f-sans);
    transition: all 0.25s var(--ease);
    line-height: 1;
}

.store-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--c-white) !important;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-weight: 600;
    font-size: 1.6rem;
}

.store-btn span small {
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.store-btn svg {
    flex-shrink: 0;
}

.home-content__btn-wrap {
    display: flex !important;
    gap: 1.2rem;
    margin-top: 0 !important;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 3.6rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-family: var(--f-sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-white);
    letter-spacing: -0.02em;
}

.hero-stat span {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

/* Hero scroll indicator */
.home-scroll__text {
    color: var(--c-primary-light) !important;
    font-family: var(--f-sans) !important;
    font-weight: 500 !important;
}

.home-scroll__icon {
    background-color: rgba(79,70,229,0.15) !important;
    border: 1px solid rgba(79,70,229,0.25);
}

/* Hero social */
.home-content__social a {
    color: rgba(255,255,255,0.35) !important;
    font-family: var(--f-sans) !important;
}

.home-content__social a:hover {
    color: var(--c-white) !important;
}


/* Hero responsive */
@media only screen and (max-width: 1200px) {
    .home-content__main {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 4rem !important;
    }

    .home-content__left {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-content .home-content__tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-content__btn-wrap {
        justify-content: center;
    }

    .home-content__right {
        width: 380px !important;
        margin-top: 4rem;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media only screen and (max-width: 700px) {
    .home-content h1 {
        font-size: 4.4rem !important;
    }

    .home-content .home-content__tagline {
        font-size: 1.7rem !important;
    }

    .home-content__right {
        width: 300px !important;
    }

    .hero-stats {
        gap: 2.4rem;
    }

    .hero-stat strong {
        font-size: 1.8rem;
    }

    .store-btn {
        padding: 1rem 1.8rem;
    }

    .store-btn span {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 500px) {
    .home-content h1 {
        font-size: 3.6rem !important;
    }

    .hero-badge {
        font-size: 1.15rem;
    }

    .home-content__btn-wrap {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 280px;
    }

    .store-btn {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
}


/* ===================================================================
 * # How It Works Section
 * =================================================================== */
.s-how-it-works {
    padding: var(--section-py) 0;
    background: var(--c-gray-50);
    position: relative;
}

.s-how-it-works .section-header {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0 !important;
}

.s-how-it-works .section-header::before {
    display: none !important;
}

.s-how-it-works .display-1 {
    color: var(--c-dark) !important;
    margin-bottom: 1.6rem;
}

.s-how-it-works .lead {
    color: var(--c-gray-500) !important;
}

.steps-row {
    display: flex !important;
    gap: 2.4rem;
    margin-top: 6rem;
    max-width: 1200px;
}

.step-card {
    flex: 1;
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-xl);
    padding: 3.6rem 3rem;
    position: relative;
    transition: all 0.35s var(--ease);
}

.step-card:hover {
    border-color: var(--c-primary-100);
    box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
    transform: translateY(-4px);
}

.step-card__number {
    font-family: var(--f-sans);
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--c-gray-200), var(--c-gray-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 2rem;
    right: 2.4rem;
}

.step-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: var(--r-lg);
    background: var(--c-primary-50);
    color: var(--c-primary);
    margin-bottom: 2.4rem;
}

.step-card h3 {
    font-family: var(--f-sans) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--c-dark) !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
}

.step-card p {
    font-size: 1.6rem;
    line-height: 1.65;
    color: var(--c-gray-500);
    margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
    .s-how-it-works {
        padding: var(--section-py-sm) 0;
    }

    .steps-row {
        flex-direction: column;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===================================================================
 * # Features Section
 * =================================================================== */
.s-features {
    padding: var(--section-py) 0 !important;
    background: var(--c-white) !important;
    overflow: visible !important;
}

.s-features .section-header {
    max-width: 700px !important;
    margin: 0 auto;
    padding-bottom: 0 !important;
    text-align: center;
}

.s-features .section-header::before {
    display: none !important;
}

.s-features .section-header.has-bottom-sep::before {
    display: none !important;
}

.s-features .display-1 {
    color: var(--c-dark) !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    max-width: 1200px;
}

.feature-card {
    background: var(--c-gray-50);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-xl);
    padding: 3.2rem 2.8rem;
    transition: all 0.35s var(--ease);
}

.feature-card:hover {
    background: var(--c-white);
    border-color: var(--c-primary-100);
    box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
    transform: translateY(-4px);
}

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: var(--r-md);
    background: var(--c-primary-50);
    color: var(--c-primary);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-family: var(--f-sans) !important;
    font-size: 1.9rem !important;
    font-weight: 700 !important;
    color: var(--c-dark) !important;
    margin-top: 0 !important;
    margin-bottom: 0.8rem !important;
}

.feature-card p {
    font-size: 1.5rem;
    line-height: 1.65;
    color: var(--c-gray-500);
    margin-bottom: 0;
}

@media only screen and (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .s-features {
        padding: var(--section-py-sm) 0 !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===================================================================
 * # Example Itinerary Section
 * =================================================================== */
.s-itinerary {
    padding: var(--section-py) 0;
    background: var(--c-gray-50);
    overflow: hidden;
}

.s-itinerary .section-header {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0 !important;
}

.s-itinerary .section-header::before {
    display: none !important;
}

.s-itinerary .display-1 {
    color: var(--c-dark) !important;
}

.s-itinerary .lead {
    color: var(--c-gray-500) !important;
}

.itinerary-row {
    display: flex !important;
    gap: 2.4rem;
    margin-top: 5rem;
    max-width: 1100px;
}

.itinerary-day {
    flex: 1;
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-2xl);
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.itinerary-day:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.itinerary-day__header {
    padding: 2.8rem 3rem 2rem;
    background: var(--c-gray-50);
    border-bottom: 1px solid var(--c-gray-200);
}

.itinerary-day__badge {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-primary);
    background: var(--c-primary-50);
    border: 1px solid var(--c-primary-100);
    padding: 0.3rem 1rem;
    border-radius: var(--r-full);
    margin-bottom: 0.8rem;
}

.itinerary-day__header h3 {
    font-family: var(--f-sans) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--c-dark) !important;
    margin: 0 !important;
}

.itinerary-day__items {
    padding: 0.8rem 0;
}

.itinerary-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.6rem 3rem;
    transition: background 0.2s var(--ease);
}

.itinerary-item:hover {
    background: var(--c-gray-50);
}

.itinerary-item__time {
    font-family: var(--f-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-gray-400);
    white-space: nowrap;
    padding-top: 2px;
    min-width: 6.5rem;
}

.itinerary-item__content {
    flex: 1;
    min-width: 0;
}

.itinerary-item__content strong {
    display: block;
    font-family: var(--f-sans);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 2px;
}

.itinerary-item__content p {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--c-gray-500);
    margin: 0;
}

.itinerary-item__tag {
    font-family: var(--f-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-primary);
    background: var(--c-primary-50);
    padding: 0.25rem 0.8rem;
    border-radius: var(--r-full);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.itinerary-item__tag.tag--food {
    color: var(--c-accent);
    background: #fff7ed;
}

.itinerary-item__tag.tag--gem {
    color: var(--c-emerald);
    background: #ecfdf5;
}

.itinerary-item__tag.tag--nightlife {
    color: var(--c-rose);
    background: #fff1f2;
}

@media only screen and (max-width: 900px) {
    .s-itinerary {
        padding: var(--section-py-sm) 0;
    }

    .itinerary-row {
        flex-direction: column;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 500px) {
    .itinerary-item {
        flex-wrap: wrap;
        padding: 1.4rem 2rem;
        gap: 0.6rem;
    }

    .itinerary-item__time {
        min-width: auto;
    }

    .itinerary-item__content {
        flex-basis: 100%;
        order: 3;
    }

    .itinerary-day__header {
        padding: 2rem 2rem 1.4rem;
    }
}


/* ===================================================================
 * # Social Proof Section
 * =================================================================== */
.s-social-proof {
    padding: var(--section-py) 0;
    background: var(--c-white);
}

.s-social-proof .section-header {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0 !important;
}

.s-social-proof .section-header::before {
    display: none !important;
}

.s-social-proof .display-1 {
    color: var(--c-dark) !important;
}

.testimonials-row {
    display: flex !important;
    gap: 2rem;
    margin-top: 5rem;
    max-width: 1200px;
}

.testimonial-card {
    flex: 1;
    background: var(--c-gray-50);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-xl);
    padding: 3.2rem;
    transition: all 0.35s var(--ease);
}

.testimonial-card:hover {
    border-color: var(--c-primary-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-card__stars {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-family: var(--f-sans);
    font-size: 1.55rem;
    line-height: 1.7;
    color: var(--c-dark-600);
    margin-bottom: 2.4rem;
    font-style: normal;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-card__avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--g-primary);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-sans);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-family: var(--f-sans);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--c-dark);
}

.testimonial-card__author span {
    font-family: var(--f-sans);
    font-size: 1.25rem;
    color: var(--c-gray-400);
}

/* Trust bar */
.trust-bar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 3.6rem;
    margin-top: 6rem;
    padding: 3.6rem 4rem;
    background: var(--c-gray-50);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.trust-bar__item strong {
    display: block;
    font-family: var(--f-sans);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--c-dark);
    letter-spacing: -0.02em;
}

.trust-bar__item span {
    font-family: var(--f-sans);
    font-size: 1.3rem;
    color: var(--c-gray-400);
    font-weight: 400;
}

.trust-bar__divider {
    width: 1px;
    height: 4rem;
    background: var(--c-gray-200);
    flex-shrink: 0;
}

@media only screen and (max-width: 900px) {
    .testimonials-row {
        flex-direction: column;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 700px) {
    .s-social-proof {
        padding: var(--section-py-sm) 0;
    }

    .trust-bar {
        flex-wrap: wrap;
        gap: 2.4rem;
        padding: 2.8rem 2rem;
    }

    .trust-bar__divider {
        display: none;
    }

    .trust-bar__item {
        flex: 1;
        min-width: 100px;
    }
}


/* ===================================================================
 * # Download / CTA Section
 * =================================================================== */
.s-download {
    padding: var(--section-py) 0 !important;
    background: var(--c-dark) !important;
    overflow: hidden !important;
    position: relative;
}

.s-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--g-mesh);
    pointer-events: none;
}

.cta-row {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-2xl);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card__content {
    position: relative;
    z-index: 1;
}

.cta-card .display-1 {
    color: var(--c-white) !important;
    margin-bottom: 1.6rem;
}

.cta-card .lead {
    color: rgba(255,255,255,0.5) !important;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    margin-top: 3.2rem;
    flex-wrap: wrap;
}

.store-btn--large {
    padding: 1.4rem 2.8rem;
}

.store-btn--large span {
    font-size: 1.7rem;
}

@media only screen and (max-width: 600px) {
    .s-download {
        padding: var(--section-py-sm) 0 !important;
    }

    .cta-card {
        padding: 4rem 2.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn--large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}


/* ===================================================================
 * # Footer
 * =================================================================== */
.s-footer {
    padding-top: 8rem !important;
    padding-bottom: 4rem !important;
    background: var(--c-dark) !important;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    width: 100%;
}

.footer-col h4 {
    font-family: var(--f-sans) !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--c-white) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.6rem !important;
    margin-top: 0 !important;
}

.footer-col p {
    font-size: 1.5rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
}

.footer-logo {
    font-family: var(--f-sans);
    font-weight: 800;
    font-size: 2rem;
    color: var(--c-white) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.6rem;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-logo:hover {
    color: var(--c-white) !important;
}

.footer-col--brand p {
    font-size: 1.5rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
    max-width: 280px;
}

.footer__social {
    list-style: none !important;
    margin: 0 !important;
    padding: 0;
    display: flex;
    gap: 0.8rem;
}

.footer__social li {
    padding: 0 !important;
    margin: 0 !important;
}

.footer__social li a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 3.6rem !important;
    height: 3.6rem !important;
    border-radius: var(--r-sm) !important;
    background: rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.25s var(--ease) !important;
    line-height: 1 !important;
}

.footer__social li a:hover {
    background: rgba(79,70,229,0.15) !important;
    color: var(--c-primary-light) !important;
    transform: translateY(-2px);
}

.footer__social li a svg {
    fill: currentColor;
}

.footer__site-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0;
}

.footer__site-links li {
    padding: 0 !important;
    margin-bottom: 0.8rem;
}

.footer__site-links li a,
.footer__site-links li a:visited {
    font-family: var(--f-sans);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.4) !important;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

.footer__site-links li a:hover {
    color: var(--c-white) !important;
}

.s-footer .footer__mail-link {
    color: var(--c-primary-light) !important;
    font-weight: 600 !important;
    text-decoration: none;
}

.s-footer .footer__mail-link:hover {
    color: var(--c-white) !important;
}

.ss-copyright {
    margin-top: 4rem !important;
    padding-top: 2.4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: left !important;
}

.ss-copyright span {
    font-family: var(--f-sans) !important;
    font-size: 1.35rem !important;
    color: rgba(255,255,255,0.25) !important;
}

.ss-copyright span::after {
    display: none !important;
}

.footer__bottom {
    border-top: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Back to top */
.go-top a,
.go-top a:visited {
    background-color: var(--c-primary) !important;
    border-radius: var(--r-md) !important;
    box-shadow: 0 4px 12px rgba(79,70,229,0.3) !important;
    transition: all 0.3s var(--ease) !important;
}

.go-top a:hover {
    background-color: var(--c-primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79,70,229,0.4) !important;
}

@media only screen and (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media only screen and (max-width: 600px) {
    .s-footer {
        padding-top: 6rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .ss-copyright {
        text-align: center !important;
    }
}


/* ===================================================================
 * # Hidden/unused sections from old template
 * =================================================================== */

/* Hide old template sections no longer in use */
.s-about-how,
.s-pricing {
    display: none !important;
}

/* Override old testimonial styles from main.css that might leak */
.testimonials-wrap,
.testimonials-header,
.testimonials,
.testimonials__slider,
.testimonials__slide {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* ===================================================================
 * # Animations
 * =================================================================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Subtle float animation for phone mockup */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-phone img {
    animation: float 6s ease-in-out infinite;
}


/* ===================================================================
 * # Utility overrides for row widths
 * =================================================================== */
.s-how-it-works .row,
.s-social-proof .row,
.s-itinerary .row,
.s-faq .row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}


/* ===================================================================
 * # FAQ Section
 * =================================================================== */
.s-faq {
    padding-top: var(--sp-section-y);
    padding-bottom: var(--sp-section-y);
    background-color: var(--c-gray-50);
}

.faq-row {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2.4rem 2.8rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--c-dark);
    text-align: left;
    line-height: 1.5;
}

.faq-item__question:hover {
    color: var(--c-primary);
}

.faq-item__icon {
    flex-shrink: 0;
    margin-left: 1.6rem;
    transition: transform 0.3s ease;
    color: var(--c-gray-400);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    padding: 0 2.8rem 2.4rem;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.75;
    color: var(--c-gray-500);
}


/* ===================================================================
 * # Testimonial Enhancements
 * =================================================================== */
.testimonial-card__avatar-img {
    flex-shrink: 0;
    border-radius: 50%;
}

.testimonial-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #059669;
}

.review-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--c-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.review-link:hover {
    color: var(--c-primary-dark);
}


/* ===================================================================
 * # App Store Reviews Section
 * =================================================================== */
.s-app-reviews {
    padding: var(--sp-section-y-sm) 0;
    background: var(--c-white);
}

.app-reviews-row {
    display: flex;
    gap: 2.4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.app-review-card {
    flex: 1;
    background: var(--c-gray-50);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--radius-xl);
    padding: 2.8rem;
}

.app-review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.app-review-card__stars {
    color: #fbbf24;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}

.app-review-card__date {
    font-size: 1.2rem;
    color: var(--c-gray-400);
}

.app-review-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 0.8rem;
}

.app-review-card__text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--c-gray-500);
    margin-bottom: 1.6rem;
}

.app-review-card__author {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--c-dark-700);
}

.app-review-card__source {
    font-size: 1.15rem;
    color: var(--c-gray-400);
    margin-top: 0.2rem;
}

@media screen and (max-width: 900px) {
    .app-reviews-row {
        flex-direction: column;
    }
}
