/* ========================================
   Voyara Marketing Website - Shared Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Primary */
    --ocean: #1B6B93;
    --ocean-light: #2A8AB4;
    --ocean-dark: #145172;
    --sunrise: #F0A500;
    --sunrise-light: #FFB82E;
    --midnight: #0D1B2A;
    --cloud: #F7F7F8;

    /* Segment colours */
    --flight-blue: #4A90D9;
    --train-green: #2ECC71;
    --hotel-purple: #9B59B6;
    --activity-orange: #E67E22;
    --food-red: #E74C3C;
    --ferry-teal: #1ABC9C;
    --car-indigo: #5C6BC0;

    /* Status */
    --confirmed-green: #27AE60;
    --delayed-orange: #E74C3C;

    /* Surfaces */
    --text-primary: #0D1B2A;
    --text-secondary: #555670;
    --bg-light: #FFFFFF;
    --bg-dark: #0D1B2A;
    --card-light: #F7F7F8;
    --card-dark: #152238;
    --border-light: #E8E8ED;
    --border-dark: #1E3350;

    /* Applied */
    --bg: var(--bg-light);
    --card-bg: var(--card-light);
    --border: var(--border-light);
    --header-bg: rgba(255, 255, 255, 0.85);
    --header-shadow: 0 1px 0 var(--border-light);
}

/* Dark mode */
[data-theme="dark"] {
    --text-primary: #F0F0F5;
    --text-secondary: #A0A0B8;
    --bg: var(--bg-dark);
    --card-bg: var(--card-dark);
    --border: var(--border-dark);
    --cloud: var(--card-dark);
    --header-bg: rgba(13, 27, 42, 0.85);
    --header-shadow: 0 1px 0 var(--border-dark);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --text-primary: #F0F0F5;
        --text-secondary: #A0A0B8;
        --bg: var(--bg-dark);
        --card-bg: var(--card-dark);
        --border: var(--border-dark);
        --cloud: var(--card-dark);
        --header-bg: rgba(13, 27, 42, 0.85);
        --header-shadow: 0 1px 0 var(--border-dark);
    }
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* ========================================
   Typography
   ======================================== */

.text-gradient {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Header / Navigation
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
    padding: 0 24px;
}

.site-header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--header-shadow);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--ocean);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ocean);
}

.nav-cta {
    background: var(--sunrise) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(240, 165, 0, 0.35);
    background: var(--sunrise-light) !important;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: border-color 0.2s;
    color: var(--text-secondary);
}

.theme-toggle:hover {
    border-color: var(--ocean);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 72px 24px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: drift 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--ocean);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--sunrise);
    bottom: -100px;
    left: -50px;
    animation-delay: -7s;
}

.gradient-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--flight-blue);
    top: 40%;
    left: 30%;
    animation-delay: -13s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(20px, 20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-text {
    flex: 1.4;
}

.hero-pre-headline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sunrise);
    margin-bottom: 16px;
}

.hero-headline {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--midnight);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .app-store-badge,
.dark-mode .app-store-badge {
    background: var(--ocean);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .app-store-badge {
        background: var(--ocean);
    }
}

.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.app-store-badge svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.app-store-badge-text small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1;
}

.app-store-badge-text span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.watch-demo {
    color: var(--ocean);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.watch-demo:hover {
    color: var(--ocean-light);
}

.watch-demo svg {
    width: 20px;
    height: 20px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-social-proof .stars {
    color: var(--sunrise);
    font-size: 16px;
    letter-spacing: 2px;
}

.hero-mockup-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* iPhone mockup */
.phone-mockup {
    width: 280px;
    height: 570px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #333,
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(0, 0, 0, 0.05);
    position: relative;
    flex-shrink: 0;
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: var(--bg-light);
}

.phone-mockup .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic Island notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 2;
}

/* Placeholder timeline inside mockup */
.placeholder-timeline {
    padding: 52px 14px 14px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.placeholder-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #333;
}

.placeholder-day-header {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    padding: 8px 0 10px;
    border-bottom: 1px solid #e8e8ed;
    margin-bottom: 10px;
}

.placeholder-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.placeholder-card.flight {
    border-left: 3px solid var(--flight-blue);
}
.placeholder-card.hotel {
    border-left: 3px solid var(--hotel-purple);
}
.placeholder-card.activity {
    border-left: 3px solid var(--activity-orange);
}
.placeholder-card.food {
    border-left: 3px solid var(--food-red);
}
.placeholder-card.train {
    border-left: 3px solid var(--train-green);
}

.card-icon {
    font-size: 20px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-time {
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}

.card-badge {
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.card-badge.confirmed {
    background: rgba(39, 174, 96, 0.12);
    color: var(--confirmed-green);
}

.card-badge.delayed {
    background: rgba(231, 76, 60, 0.12);
    color: var(--delayed-orange);
}

.placeholder-connector {
    text-align: center;
    font-size: 10px;
    color: #aaa;
    padding: 4px 0;
    position: relative;
}

.placeholder-connector::before,
.placeholder-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20%;
    height: 1px;
    background: #ddd;
}

.placeholder-connector::before { left: 10%; }
.placeholder-connector::after { right: 10%; }

/* ========================================
   Social Proof Bar
   ======================================== */

.social-proof-bar {
    padding: 48px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.social-proof-bar .container {
    max-width: 1200px;
    margin: 0 auto;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

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

.proof-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--ocean);
    display: block;
}

.proof-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========================================
   Section Shared Styles
   ======================================== */

.section {
    padding: 120px 24px;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 12px;
    text-align: center;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.15;
}

.section-subheading {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

/* ========================================
   Feature Showcase
   ======================================== */

.feature-section {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 120px;
}

.feature-section:last-child {
    margin-bottom: 0;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-accent {
    display: inline-block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-image .phone-mockup {
    width: 260px;
    height: 530px;
}

/* Feature placeholder screens */
.feature-screen {
    padding: 52px 14px 14px;
    font-family: 'Inter', -apple-system, sans-serif;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.feature-screen-header {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    padding: 8px 4px 12px;
}

.feature-screen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Email import animation placeholder */
.import-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
}

.email-icon {
    font-size: 40px;
    animation: emailBounce 2s ease-in-out infinite;
}

@keyframes emailBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.import-arrow {
    font-size: 24px;
    color: var(--sunrise);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

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

.import-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 0 8px;
}

/* ========================================
   How It Works
   ======================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
}

.step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--ocean);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Dashed connector between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -20px;
    width: 40px;
    height: 2px;
    border-top: 2px dashed var(--border);
}

/* ========================================
   Comparison Table
   ======================================== */

.comparison-section {
    background: var(--card-bg);
}

.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table th {
    font-weight: 700;
    font-size: 16px;
    padding: 20px;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .voyara-col {
    background: rgba(27, 107, 147, 0.06);
    position: relative;
}

[data-theme="dark"] .comparison-table .voyara-col {
    background: rgba(27, 107, 147, 0.12);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .comparison-table .voyara-col {
        background: rgba(27, 107, 147, 0.12);
    }
}

.comparison-table th.voyara-col {
    color: var(--ocean);
}

.check {
    color: var(--confirmed-green);
    font-size: 20px;
    font-weight: 700;
}

.cross {
    color: #ccc;
    font-size: 20px;
}

[data-theme="dark"] .cross {
    color: #555;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .cross {
        color: #555;
    }
}

.partial {
    color: var(--sunrise);
    font-size: 13px;
    font-weight: 500;
}

.price-row td {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
}

/* ========================================
   Pricing
   ======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: var(--ocean);
    box-shadow: 0 0 0 1px var(--ocean);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 0 0 1px var(--ocean), 0 12px 40px rgba(27, 107, 147, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ocean);
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-badge.deal {
    background: var(--sunrise);
}

.pricing-price {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 16px 0 4px;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-detail {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--ocean);
    color: #fff;
}

.pricing-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 107, 147, 0.3);
}

.pricing-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--ocean);
}

.faq-question:focus {
    outline: 2px solid var(--ocean);
    outline-offset: 2px;
    border-radius: 4px;
}

.faq-icon {
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ========================================
   Final CTA
   ======================================== */

.final-cta {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
    padding: 120px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta .gradient-orb {
    opacity: 0.08;
}

.final-cta h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    position: relative;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 36px;
    position: relative;
}

.final-cta .app-store-badge {
    background: #fff;
    color: var(--midnight);
    position: relative;
}

.final-cta .app-store-badge svg {
    fill: var(--midnight);
}

.final-cta .app-store-badge:hover {
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand .logo {
    margin-bottom: 8px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links-group {
    display: flex;
    gap: 32px;
}

.footer-links-group a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links-group a:hover {
    color: var(--ocean);
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   Sub-page Styles (privacy, terms, support)
   ======================================== */

.page-header-section {
    text-align: center;
    padding: 120px 24px 48px;
    border-bottom: 1px solid var(--border);
}

.page-header-section h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.page-header-section .effective {
    font-size: 15px;
    color: var(--text-secondary);
}

.page-header-section .page-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

.page-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 650;
    letter-spacing: -0.3px;
    margin: 40px 0 12px;
    color: var(--ocean);
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.75;
}

.page-content ul,
.page-content ol {
    margin: 0 0 16px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.page-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.page-content a {
    color: var(--ocean);
    transition: color 0.2s;
}

.page-content a:hover {
    text-decoration: underline;
}

.callout {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0;
}

.callout p {
    margin-bottom: 0;
}

/* Contact card (support page) */
.contact-card {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 24px;
    padding: 48px 36px;
    color: white;
    text-align: center;
    margin-bottom: 48px;
}

.contact-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.contact-card p {
    font-size: 16px;
    opacity: 0.88;
    margin-bottom: 20px;
    color: #fff;
}

.contact-card a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.contact-card a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Support FAQ items */
.support-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 12px;
}

.support-faq-item h3 {
    font-size: 17px;
    font-weight: 620;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.support-faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.support-faq-item a {
    color: var(--ocean);
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    color: var(--ocean);
    font-size: 16px;
    font-weight: 500;
}

.back-link a:hover {
    text-decoration: underline;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-mockup-wrapper {
        margin-top: 40px;
    }

    .feature-section,
    .feature-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .comparison-wrapper {
        margin: 0 -24px;
        padding: 0 24px;
    }

    .section {
        padding: 80px 24px;
    }

    .section-heading {
        font-size: 32px;
    }

    .feature-text h3 {
        font-size: 28px;
    }

    .feature-section {
        margin-bottom: 80px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-headline {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-cta-row {
        flex-direction: column;
        gap: 16px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-subheading {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .phone-mockup {
        width: 220px;
        height: 450px;
        border-radius: 36px;
    }

    .phone-mockup .screen {
        border-radius: 28px;
    }

    .phone-mockup::before {
        width: 96px;
        height: 26px;
        top: 14px;
    }

    .feature-image .phone-mockup {
        width: 220px;
        height: 450px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .proof-stats {
        gap: 32px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .page-header-section {
        padding: 100px 24px 32px;
    }

    .page-header-section h1 {
        font-size: 28px;
    }
}

/* Focus indicators */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--ocean);
    outline-offset: 2px;
    border-radius: 4px;
}

/* DuttLabs Branding */
.duttlabs-strip {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.duttlabs-strip a.duttlabs-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
    transition: opacity 0.2s;
}

.duttlabs-strip a.duttlabs-logo:hover {
    opacity: 0.7;
}

.duttlabs-strip .duttlabs-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.duttlabs-strip .duttlabs-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
}

.duttlabs-strip .duttlabs-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.duttlabs-strip .duttlabs-links a:hover {
    color: var(--ocean);
}

.duttlabs-strip .duttlabs-copyright {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    opacity: 0.7;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
