/* ============================================
   ROBOTAX — STYLES
   Inspired by Instead.com's clean premium aesthetic
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0F1B2D;
    --navy-light: #162840;
    --navy-mid: #1E3654;
    --white: #FFFFFF;
    --cream: #F4F7FA;
    --cream-dark: #E8EDF3;
    --gold: #4A90D9;
    --gold-light: #6BAAE8;
    --accent: #4A90D9;
    --accent-dark: #3A7BC8;
    --accent-light: #E8F1FB;
    --brand-blue: #6B9FD4;
    --brand-navy: #0F1B2D;
    --text-dark: #0F1B2D;
    --text-body: #3D4F63;
    --text-muted: #6B7D91;
    --green: #22c55e;
    --red: #C0392B;
    --blue: #4A90D9;
    --border: #D8E1EB;
    --shadow-sm: 0 1px 3px rgba(15,27,45,0.06);
    --shadow-md: 0 4px 16px rgba(15,27,45,0.08);
    --shadow-lg: 0 12px 40px rgba(15,27,45,0.12);
    --shadow-xl: 0 20px 60px rgba(15,27,45,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
}

/* ---- ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
    outline: none;
    border: none;
}

.nav-logo .logo-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 24px;
}

.nav-logo .logo-bar {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #2E6BB5, #6BB8E8);
}

.nav-logo .logo-bar:nth-child(1) { height: 10px; }
.nav-logo .logo-bar:nth-child(2) { height: 16px; }
.nav-logo .logo-bar:nth-child(3) { height: 22px; }
.nav-logo .logo-bar:nth-child(4) { height: 14px; }

.nav-logo .logo-text-tax {
    color: inherit;
}

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

.nav-link-item a {
    font-size: 14.5px;
    font-weight: 450;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition);
}

.nav-link-item a:hover {
    color: var(--brand-blue);
}

.nav-link-item a svg {
    width: 10px;
    height: 10px;
    transition: transform var(--transition);
}

.nav-link-item:hover a svg {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    white-space: nowrap;
}

.nav-btn-ghost {
    color: var(--text-dark);
    background: none;
    border: 1.5px solid var(--text-dark);
}

.nav-btn-ghost:hover {
    background: var(--text-dark);
    color: var(--white);
}

.nav-btn-login {
    color: var(--text-dark);
    background: none;
}

.nav-btn-login:hover {
    color: var(--brand-blue);
}

.nav-btn-primary {
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    border: 1.5px solid var(--accent);
}

.nav-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS — GLOBAL
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 20px rgba(74, 144, 217, 0.35);
}

.btn-outline {
    background: none;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.btn-dark:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.btn-outline-light {
    background: none;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 80px;
    background: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.08;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto 36px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 960px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--cream);
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
}

.hero-play-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-play-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.hero-play-btn svg {
    color: var(--text-dark);
    margin-left: 3px;
}

/* ============================================
   SECTIONS — GENERAL
   ============================================ */
.section {
    padding: 100px 0;
}

.section-warm {
    background: var(--cream);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.12;
}

.section-title-center {
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-center {
    text-align: center;
    color: var(--text-body);
    font-size: 16px;
    margin-bottom: 40px;
    font-style: italic;
}

.section-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 460px;
    margin-bottom: 28px;
}

/* ============================================
   SPLIT SECTIONS (Value Props)
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-section-reverse {
    direction: rtl;
}

.split-section-reverse > * {
    direction: ltr;
}

.split-text {
    padding-right: 20px;
}

.split-section-reverse .split-text {
    padding-right: 0;
    padding-left: 20px;
}

/* ---- Visual Collage ---- */
.visual-collage {
    position: relative;
    padding: 40px;
}

.collage-main-img {
    width: 300px;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 12px;
    animation: float 6s ease-in-out infinite;
}

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

.floating-card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20px;
    right: 0;
    animation-delay: 2s;
}

.floating-card-3 {
    top: 50%;
    left: 0;
    animation-delay: 4s;
}

.floating-card-savings {
    bottom: -10px;
    right: 10px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    min-width: 200px;
    animation-delay: 1s;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon-gold {
    background: #FEF3C7;
    color: var(--gold);
}

.floating-icon-blue {
    background: #DBEAFE;
    color: var(--blue);
}

.floating-label {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-lines span {
    display: block;
    height: 6px;
    background: #F0F0F0;
    border-radius: 3px;
    margin-top: 6px;
}

.floating-lines span:first-child { width: 100px; }
.floating-lines span:nth-child(2) { width: 70px; }

.savings-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.savings-amount {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.savings-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

.change-sub {
    font-weight: 400;
    color: var(--text-muted);
}

/* ---- Step Cards ---- */
.step-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    min-width: 240px;
}

.step-card-1 {
    top: 10px;
    right: -10px;
    animation-delay: 0s;
}

.step-card-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.step-card-3 {
    bottom: 20px;
    right: 0;
    animation-delay: 2s;
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    flex-shrink: 0;
}

.step-icon-red {
    background: #FEE2E2;
    color: var(--red);
}

.step-icon-gold {
    background: #FEF3C7;
    color: var(--gold);
}

.step-check {
    margin-left: auto;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-check.checked {
    background: #DCFCE7;
    border-radius: 6px;
}

.step-toggle {
    width: 36px;
    height: 20px;
    background: #E5E5E5;
    border-radius: 10px;
    position: relative;
}

.step-toggle::after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   GRADIENT DIVIDER
   ============================================ */
.section-gradient-divider {
    height: 120px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
}

/* ============================================
   STRATEGY CAROUSEL
   ============================================ */
.section-strategies {
    background: var(--cream-dark);
    padding: 100px 0 80px;
    overflow: hidden;
}

.strat-carousel-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.strat-sidebar {
    position: sticky;
    top: 140px;
    padding-top: 20px;
}

.strat-sidebar .section-title {
    font-size: clamp(26px, 3.2vw, 38px);
}

.strat-sidebar .section-body {
    max-width: 320px;
}

.strat-cta-btn {
    margin-bottom: 32px;
}

.strat-nav {
    display: flex;
    gap: 12px;
}

.strat-nav-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--text-dark);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition);
}

.strat-nav-btn:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ---- Scroll Container ---- */
.strat-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.strat-scroll-container::-webkit-scrollbar {
    display: none;
}

/* ---- Strategy Card ---- */
.strat-card {
    flex: 0 0 380px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.strat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.strat-card-visual {
    position: relative;
    padding: 28px 24px 20px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
}

.strat-diagram {
    position: relative;
    z-index: 1;
}

.strat-card-title {
    padding: 20px 24px 8px;
    font-size: 20px;
    line-height: 1.2;
}

.strat-card-desc {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-body);
}

/* ---- Badges (floating on cards) ---- */
.strat-badge {
    position: absolute;
    background: var(--white);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 11.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.strat-badge-savings {
    bottom: 16px;
    left: 16px;
    color: var(--green);
    border: 1px solid #dcfce7;
}

.strat-badge-form {
    top: 16px;
    right: 16px;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid var(--border);
    font-size: 10.5px;
    letter-spacing: 0.3px;
}

/* ============================================
   CARD: Photo + Floating UI Elements
   ============================================ */
.strat-photo-wrapper {
    position: relative;
    padding: 28px 24px 24px;
}

.strat-photo {
    width: 72%;
    max-width: 240px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 16px auto 10px;
    box-shadow: var(--shadow-md);
}

/* ---- Floating elements ---- */
.strat-float {
    position: absolute;
    z-index: 2;
}

.strat-float-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.strat-float-tl {
    top: 16px;
    left: 18px;
}

.strat-float-tr {
    top: 16px;
    right: 18px;
}

.strat-float-bl {
    bottom: 56px;
    left: 18px;
}

.strat-float-br {
    bottom: 10px;
    right: 18px;
}

/* Form document badge */
.strat-float-form {
    background: var(--white);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-width: 100px;
}

.strat-float-form-id {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

.strat-float-form-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.strat-float-form-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.strat-float-form-lines span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--cream-dark);
}

.strat-float-form-lines span:nth-child(1) { width: 100%; }
.strat-float-form-lines span:nth-child(2) { width: 80%; }
.strat-float-form-lines span:nth-child(3) { width: 60%; }

/* Context label */
.strat-float-label {
    background: var(--white);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    white-space: nowrap;
}

/* Savings badge */
.strat-float-savings {
    background: var(--white);
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.strat-float-savings-text {
    display: flex;
    flex-direction: column;
}

.strat-float-savings-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1;
}

.strat-float-savings-val {
    font-size: 12px;
    font-weight: 700;
    color: #15803d;
    line-height: 1.4;
}

/* Dashed connector line */
.strat-connector {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.strat-connector-1 {
    bottom: 40px;
    left: 50%;
    transform: translateX(-30%);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.section-features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

/* ============================================
   PRICING
   ============================================ */
.section-pricing {
    padding-bottom: 120px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-label-active {
    color: var(--text-dark);
    font-weight: 600;
}

.toggle-badge {
    background: var(--accent);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--cream-dark);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
    border: 1px solid var(--border);
}

.toggle-knob {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.toggle-switch.monthly .toggle-knob {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--text-dark);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-card-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.client-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.pricing-card-featured .client-card-icon {
    background: var(--accent);
    border-color: var(--accent-dark);
    color: var(--white);
}

.pricing-card-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    color: var(--text-dark);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
    padding: 8px 0;
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   ADVISORS
   ============================================ */
.section-advisors {
    background: var(--white);
    text-align: center;
}

.advisors-content .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.advisors-content .section-body {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.advisor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.advisor-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}

.advisor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.advisor-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.advisor-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.advisor-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

.advisor-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section-cta {
    padding: 0;
}

.cta-bg {
    background: linear-gradient(135deg, var(--navy) 0%, #1A2D4A 40%, var(--navy-light) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, var(--white), transparent);
    pointer-events: none;
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.12), transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 22px;
}

.footer-logo .logo-bar {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #2E6BB5, #6BB8E8);
}

.footer-logo .logo-bar:nth-child(1) { height: 9px; }
.footer-logo .logo-bar:nth-child(2) { height: 14px; }
.footer-logo .logo-bar:nth-child(3) { height: 20px; }
.footer-logo .logo-bar:nth-child(4) { height: 12px; }

.footer-logo .logo-text-tax {
    color: var(--text-dark);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-body);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--text-dark);
}

.badge-soon {
    background: var(--cream-dark);
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--text-dark);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-btn-ghost, .nav-btn-login {
        display: none;
    }

    .split-section {
        gap: 50px;
    }

    .features-grid,
    .pricing-grid,
    .advisor-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links, .nav-actions { 
        display: none;
    }

    .nav-links.active, .nav-actions.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav-links.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.active .nav-link-item a {
        font-size: 22px;
        font-weight: 500;
    }

    .nav-actions.active {
        position: fixed;
        bottom: 40px;
        left: 24px;
        right: 24px;
        flex-direction: column;
        z-index: 999;
        gap: 10px;
    }

    .nav-actions.active .nav-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .nav-actions.active .nav-btn-login,
    .nav-actions.active .nav-btn-ghost {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .section {
        padding: 64px 0;
    }

    .split-section,
    .split-section.split-section-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .split-text {
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .split-text .section-body {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .split-text .btn {
        margin: 0 auto;
    }

    .visual-collage {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .collage-main-img {
        width: 100%;
        max-width: 320px;
        height: 220px;
    }

    .floating-card {
        display: none;
    }

    .floating-card-savings {
        display: block;
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        text-align: center;
    }

    .step-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 12px;
        width: 100%;
        max-width: 320px;
        animation: none;
    }

    /* Strategy Carousel */
    .strat-carousel-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .strat-sidebar {
        position: static;
        text-align: center;
        padding: 0 16px;
    }

    .strat-sidebar .section-body {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .strat-cta-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .strat-nav {
        justify-content: center;
    }

    .strat-card {
        flex: 0 0 300px;
    }

    .strat-card-visual {
        min-height: 280px;
        padding: 20px 16px 16px;
    }

    .strat-photo {
        width: 65%;
        max-width: 200px;
    }

    .strat-float-form {
        min-width: 80px;
        padding: 8px 10px;
    }

    .strat-float-form-id {
        font-size: 15px;
    }

    .strat-float-savings {
        padding: 6px 10px;
    }

    .strat-float-savings-val {
        font-size: 11px;
    }

    .strat-float-bl {
        bottom: 50px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 24px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        order: -1;
    }

    /* Advisors */
    .advisor-cards {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto 40px;
    }

    .advisor-cta {
        flex-direction: column;
    }

    .advisor-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* CTA */
    .cta-bg {
        padding: 64px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .price {
        font-size: 32px;
    }

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