/* ===== ProWeb Fencing - Modern Premium UI ===== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Brand */
    --primary: #014DA5;
    --primary-dark: #003a7d;
    --primary-light: #2563eb;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-900: #1e3a5f;

    /* Accent */
    --accent: #00b892;
    --accent-dark: #009e7d;
    --accent-light: #34d399;
    --accent-50: #ecfdf5;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Semantic */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-tertiary: #6b7280;
    --border-light: #e5e7eb;
    --border-default: #d1d5db;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #014DA5 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #00b892 0%, #34d399 100%);
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #ecfdf5 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* 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 40px rgba(1, 77, 165, 0.15);
    --shadow-glow-accent: 0 0 40px rgba(0, 184, 146, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

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

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(1, 77, 165, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 77, 165, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-xl);
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--gray-100);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: var(--gray-200);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION - Modern Asymmetric Layout
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Gradient orbs background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 77, 165, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 184, 146, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* Grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(1, 77, 165, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 77, 165, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Navigation */
.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.hero-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.logo-img {
    height: 90px;
    width: auto;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--text-primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--primary);
    transform: scale(1.02);
}

/* Hero container */
.hero-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
}

.hero-container-stacked {
    gap: 48px;
}

/* Hero content */
.hero-content {
    max-width: 800px;
}

.hero-content-full {
    text-align: center;
    margin: 0 auto;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Hero features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.hero-feature:hover {
    background: var(--primary-50);
    color: var(--primary);
}

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

/* Hero CTA */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-subtext {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Hero stats card */
.hero-stats-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 32px 40px;
    box-shadow: var(--shadow-card);
}

.hero-stats-card-full {
    max-width: 800px;
    margin: 0 auto;
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.stats-icon svg {
    width: 18px;
    height: 18px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonial-shorts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

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

.testimonial-short .video-embed {
    aspect-ratio: 9/16;
}

.video-embed {
    position: relative;
    width: 100%;
    background: var(--gray-900);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-embed-landscape {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
}

.video-embed-landscape iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.testimonial-label {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.testimonial-featured {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    padding: 100px 0;
    background: var(--white);
}

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

.problem-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.problem-card:hover {
    border-color: var(--border-default);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    color: #dc2626;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.problem-card p {
    color: var(--text-tertiary);
    font-size: 15px;
}

/* ============================================
   SYSTEM WORKFLOW SECTION - Vertical Timeline
   ============================================ */
.system-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.system-section .section-header {
    position: relative;
    z-index: 1;
}

.system-section .section-tag {
    background: var(--primary-50);
    color: var(--primary);
}

.system-section .section-header h2 {
    color: var(--text-primary);
}

.system-section .section-subtitle {
    color: var(--text-secondary);
}

/* Timeline Container */
.system-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vertical Timeline Track */
.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    transform: translateX(-50%);
    border-radius: 4px;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternating sides */
.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(odd) .timeline-card {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-card {
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-card-icon {
    margin-left: auto;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(1, 77, 165, 0.15);
}

.timeline-marker span {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.timeline-item:hover .timeline-marker {
    background: var(--primary);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(1, 77, 165, 0.25);
}

.timeline-item:hover .timeline-marker span {
    color: var(--white);
}

/* Highlighted Item - same as regular */
.timeline-item-highlight .timeline-marker {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(1, 77, 165, 0.15);
}

.timeline-item-highlight .timeline-marker span {
    color: var(--primary);
}

.timeline-item-highlight .timeline-card {
    background: var(--white);
    border-color: var(--gray-200);
}

/* Success Item - same as regular */
.timeline-item-success .timeline-marker {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(1, 77, 165, 0.15);
}

.timeline-item-success .timeline-marker span {
    color: var(--primary);
}

.timeline-item-success .timeline-card {
    background: var(--white);
    border-color: var(--gray-200);
}

/* Timeline Card */
.timeline-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.timeline-item:hover .timeline-card {
    border-color: var(--primary-lighter);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(1, 77, 165, 0.1);
}

.timeline-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin-bottom: 16px;
}

.timeline-card-icon svg {
    width: 24px;
    height: 24px;
}

.timeline-item-highlight .timeline-card-icon {
    background: var(--primary-50);
    color: var(--primary);
}

.timeline-item-success .timeline-card-icon {
    background: var(--primary-50);
    color: var(--primary);
}

.timeline-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-card-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Result Banner */
.system-result-banner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 900px;
    margin: 64px auto 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(1, 77, 165, 0.3);
}

.result-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.result-banner-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    flex-shrink: 0;
}

.result-banner-icon svg {
    width: 28px;
    height: 28px;
}

.result-banner-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.result-banner-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.system-result-banner .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.system-result-banner .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .system-section {
        padding: 80px 0;
    }

    .timeline-track {
        left: 28px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-card-icon {
        margin-left: 0;
    }

    .timeline-marker {
        left: 28px;
        width: 48px;
        height: 48px;
    }

    .timeline-marker span {
        font-size: 18px;
    }

    .timeline-card {
        padding: 20px 24px;
    }

    .timeline-card-content h3 {
        font-size: 1.125rem;
    }

    .timeline-card-content p {
        font-size: 14px;
    }

    .system-result-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .result-banner-content {
        flex-direction: column;
    }

    .result-banner-text h4 {
        font-size: 1.125rem;
    }

    .result-banner-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .timeline-track {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .timeline-marker span {
        font-size: 16px;
    }

    .timeline-card {
        padding: 16px 20px;
    }

    .timeline-card-icon {
        width: 40px;
        height: 40px;
    }

    .timeline-card-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   SOLUTION SECTION - Bento Grid
   ============================================ */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.solution-card {
    position: relative;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.solution-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: 0.05em;
}

.solution-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.solution-card:hover .solution-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.solution-icon svg {
    width: 28px;
    height: 28px;
}

.solution-card h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.solution-card p {
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.6;
}

/* Demo section - Authority Builder */
.demo-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 50%, var(--white) 100%);
    border-radius: var(--radius-2xl);
    position: relative;
}

/* Standalone Demo Section */
.demo-section-standalone {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 30%, var(--white) 100%);
}

.demo-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.demo-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.demo-heading {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.demo-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.demo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 28px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.demo-card-featured {
    box-shadow: var(--shadow-lg);
}

.demo-card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.demo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-4px);
}

.demo-card-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(1, 77, 165, 0.3);
}

.demo-card-icon-large svg {
    width: 40px;
    height: 40px;
}

.demo-card-content {
    flex: 1;
}

.demo-card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.demo-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.demo-card-cta svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.demo-card:hover .demo-card-cta {
    color: var(--primary-dark);
}

.demo-card:hover .demo-card-cta svg {
    transform: translateX(4px);
}

/* Keep old styles for backwards compatibility */
.demo-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    flex-shrink: 0;
}

.demo-card-icon svg {
    width: 28px;
    height: 28px;
}

.demo-card-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--text-tertiary);
    transition: all var(--transition-base);
}

.demo-card:hover .demo-card-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

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

/* ============================================
   PRICING SECTION - Glassmorphism Card
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient blobs */
.pricing-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 77, 165, 0.06) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.pricing-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 184, 146, 0.05) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.pricing-card-main {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--primary);
}

.pricing-header {
    padding: 48px 40px 32px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
    position: relative;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-top: 8px;
}

.pricing-amount .price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-amount .decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-top: 8px;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

.pricing-tagline {
    color: var(--text-tertiary);
    font-size: 15px;
}

.pricing-setup-fee {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-features {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    border-radius: var(--radius-full);
    color: var(--accent);
    flex-shrink: 0;
}

.feature-check svg {
    width: 14px;
    height: 14px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-content strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-content span {
    font-size: 13px;
    color: var(--text-tertiary);
}

.pricing-cta {
    padding: 24px 40px 40px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.pricing-guarantee svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* ============================================
   UPSELL SECTION
   ============================================ */
.upsell-section {
    padding: 100px 0;
    background: var(--white);
}

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

.upsell-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.upsell-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.upsell-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-xl);
    margin: 0 auto 20px;
    color: var(--primary);
}

.upsell-icon svg {
    width: 32px;
    height: 32px;
}

.upsell-card h3 {
    margin-bottom: 12px;
}

.upsell-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.upsell-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.upsell-card > p {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 8px;
}

.upsell-note {
    font-size: 12px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Bundle card */
.bundle-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 32px;
}

.bundle-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bundle-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.bundle-info h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.bundle-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.bundle-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bundle-original {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.bundle-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.bundle-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.bundle-card .btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.bundle-card .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Territory notice */
.territory-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--accent-50);
    border: 1px solid rgba(0, 184, 146, 0.2);
    border-radius: var(--radius-xl);
}

.territory-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--accent);
    flex-shrink: 0;
}

.territory-icon svg {
    width: 24px;
    height: 24px;
}

.territory-content strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.territory-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   BOOKING SECTION - Split Layout
   ============================================ */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 50%, var(--accent-50) 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 77, 165, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.booking-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

.booking-content {
    max-width: 480px;
}

.booking-content .section-tag {
    margin-bottom: 24px;
}

.booking-content h2 {
    margin-bottom: 20px;
}

.booking-content > p {
    font-size: 17px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.booking-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.checklist-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Booking form card */
.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.form-header {
    padding: 24px 28px 20px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border-light);
}

.form-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-tertiary);
}

.booking-form {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 77, 165, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Date Picker - Compact 5-day view */
.date-picker {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 12px;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.date-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.date-card:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.date-card.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.date-card-day {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.date-card.selected .date-card-day {
    color: rgba(255, 255, 255, 0.8);
}

.date-card-date {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.date-card.selected .date-card-date {
    color: var(--white);
}

.date-card-month {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.date-card.selected .date-card-month {
    color: rgba(255, 255, 255, 0.8);
}

/* Time slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover:not(.selected) {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary);
}

.time-slot.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Booking success */
.booking-success {
    padding: 48px 32px;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    border-radius: var(--radius-full);
    margin: 0 auto 24px;
    color: var(--accent);
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

.booking-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-tertiary);
}

/* ============================================
   PROCESS SECTION - Horizontal Timeline
   ============================================ */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-200) 0%, var(--primary) 50%, var(--primary-200) 100%);
    align-self: center;
    margin-top: -100px;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transform: rotate(45deg);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-default);
}

.faq-item.active {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-tertiary);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   FOOTER - Modern Minimal
   ============================================ */
.footer {
    padding: 48px 0;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
}

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

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ============================================
   OWNER SECTION
   ============================================ */
.owner-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.owner-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .owner-card {
        grid-template-columns: 300px 1fr;
    }
}

.owner-image {
    position: relative;
}

.owner-image img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    display: block;
}

.owner-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: calc(var(--radius-2xl) + 8px);
    z-index: -1;
    opacity: 0.2;
}

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

@media (min-width: 768px) {
    .owner-content {
        text-align: left;
    }
}

.owner-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.owner-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.owner-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.owner-bio:last-of-type {
    margin-bottom: 32px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 24px;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

.modal-header {
    padding: 40px 32px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
}

.modal-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    margin: 0 auto 20px;
    color: var(--white);
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.modal-header p {
    color: var(--text-tertiary);
    font-size: 15px;
}

.modal-body {
    padding: 24px 32px 32px;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.value-prop {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.value-prop svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-prop strong {
    color: var(--text-primary);
}

.voice-demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-demo-success {
    text-align: center;
    padding: 24px 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .demo-grid-3 .demo-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .upsell-grid .upsell-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .bundle-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .bundle-content {
        flex-direction: column;
        gap: 16px;
    }

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

    .booking-content {
        text-align: center;
        margin: 0 auto;
    }

    .booking-checklist {
        align-items: center;
    }

    /* Logo */
    .logo-img {
        height: 70px;
    }
}

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

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Hero */
    .hero-container {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

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

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

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-stats-card {
        padding: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial-shorts-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    /* Problem */
    .problem-grid {
        grid-template-columns: 1fr;
    }

    /* Solution Timeline Section - Mobile: No line, card-based layout */
    .system-section {
        padding: 60px 0;
    }

    .system-timeline {
        padding: 0;
    }

    /* Hide the timeline track line on mobile */
    .timeline-track {
        display: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 16px;
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        text-align: left !important;
    }

    .timeline-item:nth-child(odd) .timeline-card-icon {
        margin-left: 0 !important;
    }

    /* Style the marker as an inline step number on mobile */
    .timeline-marker {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        border-width: 2px;
    }

    .timeline-marker span {
        font-size: 16px;
    }

    .timeline-item:hover .timeline-marker {
        transform: none !important;
    }

    .timeline-card {
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .timeline-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .timeline-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .timeline-card-content {
        flex: 1;
    }

    .timeline-card-content h3 {
        font-size: 1.0625rem;
    }

    .timeline-card-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .system-result-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin-top: 32px;
    }

    .result-banner-content {
        flex-direction: column;
    }

    .result-banner-icon {
        width: 48px;
        height: 48px;
    }

    .result-banner-icon svg {
        width: 24px;
        height: 24px;
    }

    .result-banner-text h4 {
        font-size: 1.0625rem;
    }

    .result-banner-text p {
        font-size: 14px;
    }

    /* Hero Stats Card - Mobile improvements */
    .hero-stats-card {
        padding: 24px 20px;
    }

    .stats-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 13px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 16px;
        background: var(--gray-50);
        border-radius: var(--radius-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Date picker - 4 days on mobile */
    .date-picker-days {
        grid-template-columns: repeat(4, 1fr);
    }

    .date-card {
        padding: 10px 6px;
    }

    .date-card-day {
        font-size: 10px;
    }

    .date-card-date {
        font-size: 18px;
    }

    .date-card-month {
        font-size: 10px;
    }

    /* Solution Grid (if used) */
    .solution-grid {
        grid-template-columns: 1fr;
    }

    /* Demo Section */
    .demo-grid,
    .demo-grid-3 {
        grid-template-columns: 1fr;
    }

    .demo-section {
        margin-top: 48px;
        padding: 40px 20px;
    }

    .demo-section-standalone {
        padding: 60px 0;
    }

    .demo-grid-3 .demo-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .demo-card {
        padding: 24px 20px;
    }

    .demo-card-icon-large {
        width: 64px;
        height: 64px;
    }

    .demo-card-icon-large svg {
        width: 32px;
        height: 32px;
    }

    .demo-card-content h4 {
        font-size: 1.125rem;
    }

    .demo-card-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .demo-heading {
        font-size: 1.5rem;
    }

    .demo-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .demo-card-cta {
        font-size: 15px;
    }

    /* Pricing */
    .pricing-header,
    .pricing-features,
    .pricing-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pricing-amount .price {
        font-size: 3rem;
    }

    /* Upsell */
    .upsell-grid {
        grid-template-columns: 1fr;
    }

    .upsell-grid .upsell-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .territory-notice {
        flex-direction: column;
        text-align: center;
    }

    /* Booking */
    .form-row {
        grid-template-columns: 1fr;
    }

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

    /* Process */
    .process-grid {
        flex-direction: column;
        gap: 0;
    }

    .process-step {
        max-width: none;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-200) 100%);
        margin: -16px auto;
    }

    .process-connector::after {
        right: -4px;
        top: auto;
        bottom: -4px;
        transform: rotate(135deg);
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Modal */
    .modal-header,
    .modal-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Logo */
    .logo-img {
        height: 60px;
    }

    /* Demo Section Standalone */
    .demo-section-standalone {
        padding: 60px 0;
    }

    .demo-grid-3 .demo-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .demo-card {
        padding: 24px 20px;
    }

    .demo-card-icon-large {
        width: 64px;
        height: 64px;
    }

    .demo-card-icon-large svg {
        width: 32px;
        height: 32px;
    }

    .demo-card-content h4 {
        font-size: 1.125rem;
    }

    /* Pricing Enhancements */
    .pricing-header h3 {
        font-size: 1.375rem;
    }

    .pricing-subtitle {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }

    .btn-xl {
        padding: 16px 24px;
        font-size: 15px;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }

    .bundle-price {
        font-size: 2rem;
    }

    .time-slots {
        grid-template-columns: 1fr;
    }

    /* Logo */
    .logo-img {
        height: 50px;
    }

    /* Navigation */
    .nav-cta {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Solution Timeline - Extra Small (inherits no-line from 768px) */
    .system-section {
        padding: 48px 0;
    }

    .timeline-item {
        margin-bottom: 12px;
    }

    .timeline-marker {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .timeline-marker span {
        font-size: 14px;
    }

    .timeline-card {
        padding: 16px;
        gap: 12px;
    }

    .timeline-card-icon {
        width: 38px;
        height: 38px;
    }

    .timeline-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .timeline-card-content h3 {
        font-size: 1rem;
    }

    .timeline-card-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .system-result-banner {
        padding: 20px 16px;
        margin-top: 32px;
    }

    .result-banner-icon {
        width: 40px;
        height: 40px;
    }

    .result-banner-icon svg {
        width: 20px;
        height: 20px;
    }

    .result-banner-text h4 {
        font-size: 1rem;
    }

    .result-banner-text p {
        font-size: 13px;
    }

    .system-result-banner .btn-xl {
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Hero Stats - Extra Small */
    .stat-item {
        padding: 14px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Demo Cards */
    .demo-card {
        padding: 20px 16px;
    }

    .demo-card-icon-large {
        width: 56px;
        height: 56px;
    }

    .demo-card-icon-large svg {
        width: 28px;
        height: 28px;
    }

    .demo-card-content h4 {
        font-size: 1.0625rem;
    }

    .demo-card-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .demo-heading {
        font-size: 1.375rem;
    }

    .demo-subtitle {
        font-size: 0.9375rem;
    }

    /* Date picker - still 4 days */
    .date-picker-days {
        grid-template-columns: repeat(4, 1fr);
    }

    .date-card {
        padding: 8px 4px;
    }

    .date-card-date {
        font-size: 16px;
    }

    /* Pricing */
    .pricing-header {
        padding: 32px 20px 24px;
    }

    .pricing-features {
        padding: 24px 20px;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .pricing-feature {
        gap: 12px;
    }

    .pricing-feature-icon {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 600ms; opacity: 1; transform: translateY(0); }
