/* Landing Page Styles - Simplified Structure */

/* CSS Variables - Light Mode (Default) */
:root {
    --primary: #eb5436;
    --primary-foreground: #ffffff;
    --accent: #00004d;
    --accent-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #111827;
    --card: #ffffff;
    --card-foreground: #111827;
    --secondary: #f3f4f6;
    --secondary-foreground: #111827;
    --muted: #f3f4f6;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #eb5436;
    --destructive: #e30b21;
    --destructive-foreground: #ffffff;
    --radius: 0.5rem;
    --font-sans: 'Montserrat', 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --accent-blue: #60a5fa;
    --warning: #f59e0b;
}

/* CSS Variables - Dark Mode */
.dark {
    --primary: #eb5436;
    --primary-foreground: #ffffff;
    --accent: #475569;
    --accent-foreground: #f1f5f9;
    --background: #0f172a;
    --foreground: #f1f5f9;
    --card: #1e293b;
    --card-foreground: #f1f5f9;
    --secondary: #334155;
    --secondary-foreground: #f1f5f9;
    --muted: #334155;
    --muted-foreground: #cbd5e1;
    --border: #334155;
    --input: #334155;
    --ring: #eb5436;
    --destructive: #e30b21;
    --destructive-foreground: #ffffff;
    --accent-blue: #60a5fa;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    background-color: var(--muted);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark body {
    background-color: var(--background);
}

body:not(.css-ready) {
    opacity: 0 !important;
    visibility: hidden !important;
}

body.css-ready {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Typography */
.heading-hero {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
    color: var(--accent-foreground);
}

.heading-3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
    color: var(--foreground);
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 1.5rem 0 2rem 0;
    font-weight: 400;
    color: var(--accent-foreground);
    max-width: 560px;
    opacity: 0.9;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
    width: 100%;
}

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

.navbar-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.navbar-brand .logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .logo-icon {
        width: 28px;
        height: 28px;
    }
}

.logo-text {
    font-weight: 700;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1rem;
}

.navbar-actions {
    display: none;
}

.nav-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--foreground);
}

.nav-login {
    opacity: 0.7;
    font-weight: 400;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s ease, color 0.3s ease;
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
}

.nav-login:hover {
    opacity: 1;
    border-color: var(--foreground);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--foreground);
    color: var(--background);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle - In Navigation */
.theme-toggle-nav {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    color: var(--muted-foreground);
}

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

.theme-toggle-nav .theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-nav .sun-icon {
    display: flex;
}

.theme-toggle-nav .moon-icon {
    display: none;
}

.dark .theme-toggle-nav .sun-icon {
    display: none;
}

.dark .theme-toggle-nav .moon-icon {
    display: flex;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.primary-button {
    color: var(--primary-foreground);
    background-color: var(--foreground);
    border-radius: var(--radius);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.hero-section .primary-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.hero-section .primary-button:hover {
    background-color: var(--background);
    color: var(--foreground);
}

.hero-section .secondary-button.hero-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background-color: transparent;
}

.hero-section .secondary-button.hero-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.primary-button:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 84, 54, 0.3);
}

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

.primary-button.large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.secondary-button {
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    background-color: var(--background);
}

.secondary-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--muted);
}

/* Pricing buttons - ensure visibility in dark mode */
.pricing-card .secondary-button {
    background-color: var(--secondary);
    border-color: var(--border);
}

.pricing-card .secondary-button:hover {
    background-color: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
}

.pricing-card .primary-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.pricing-card .primary-button:hover {
    background-color: var(--foreground);
    color: var(--background);
}

.button-text {
    position: relative;
    z-index: 2;
}

/* ========================================
   SECTION 1: HERO
   ======================================== */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    background-color: var(--accent);
    color: var(--accent-foreground);
    position: relative;
    overflow: hidden;
}

.dark .hero-section {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(96, 165, 250, 0.2) 100%);
}

.hero-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 3rem;
}

.hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Screenshot Container */
.hero-screenshot-container {
    width: 100%;
    max-width: 900px;
}

.hero-placeholder {
    aspect-ratio: 16/10;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECTION 2: PROBLEM STATEMENT
   ======================================== */
.problem-section {
    padding: 5rem 0;
    background-color: var(--background);
    border-radius: 2rem;
    margin: 2rem 1rem;
}

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

.problem-section .heading-3 {
    margin-bottom: 1.5rem;
}

.problem-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   SECTION 3: PILLARS (How It Works)
   ======================================== */
.pillars-section {
    padding: 5rem 0;
    background-color: var(--secondary);
    border-radius: 2rem;
    margin: 2rem 1rem;
    border: 1px solid var(--border);
}

.dark .pillars-section {
    background-color: var(--card);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin: 1rem 0 0 0;
}

/* Pillars Stack - Sticky Stacking Effect */
.pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.3s ease;
    /* Sticky stacking effect */
    position: sticky;
    top: 100px; /* Account for navbar */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

/* Offset each card slightly so they stack visually */
.pillar-card:nth-child(1) { top: 100px; z-index: 1; }
.pillar-card:nth-child(2) { top: 120px; z-index: 2; }
.pillar-card:nth-child(3) { top: 140px; z-index: 3; }
.pillar-card:nth-child(4) { top: 160px; z-index: 4; }

.dark .pillar-card {
    background: var(--card);
}

.pillar-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Alternate layout for even cards (2nd, 4th) */
.pillar-card:nth-child(even) {
    direction: rtl;
}

.pillar-card:nth-child(even) > * {
    direction: ltr;
}

.pillar-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar-label {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.pillar-description {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pillar-visual {
    width: 100%;
}

.pillar-visual .placeholder-box {
    aspect-ratio: 4/3;
    min-height: auto;
}

/* Section Eyebrow */
.section-eyebrow {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 0.75rem 0;
}

/* ========================================
   SECTION 4: PRICING
   ======================================== */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--background);
    border-radius: 2rem;
    margin: 2rem 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


.pricing-header {
    margin-bottom: 1rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.price-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-description {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

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

.pricing-note {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--foreground);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
    font-size: 1.125rem;
}

.pricing-features li a {
    color: var(--primary);
    text-decoration: none;
}

.pricing-features li a:hover {
    text-decoration: underline;
}

/* ========================================
   SECTION 5: TRUST
   ======================================== */
.trust-section {
    padding: 4rem 0;
    background-color: var(--secondary);
    border-radius: 2rem;
    margin: 2rem 1rem;
}

.dark .trust-section {
    background-color: var(--muted);
}

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

.trust-icon {
    width: 64px;
    height: 64px;
    background: var(--background);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--border);
}

.dark .trust-icon {
    background: var(--card);
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.trust-description {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.trust-link {
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.trust-link:hover {
    text-decoration: underline;
}

/* ========================================
   MANAGED SERVICE SECTION
   ======================================== */
.managed-service-section {
    padding: 5rem 0;
    background-color: var(--secondary);
    border-radius: 2rem;
    margin: 2rem 1rem;
}

.dark .managed-service-section {
    background-color: var(--muted);
}

.managed-service-content {
    max-width: 900px;
    margin: 0 auto;
}

.managed-service-content .heading-3 {
    margin-bottom: 1rem;
}

.managed-service-content .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.managed-service-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.managed-service-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.managed-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--foreground);
}

.managed-step p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

.managed-service-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin: 2rem 0 0 0;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.founder-content {
    max-width: 1100px;
    margin: 0 auto;
}

.founder-content .heading-3 {
    margin-bottom: 2.5rem;
}

.founder-layout {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 3rem;
    align-items: start;
}

.founder-photo {
    position: relative;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-photo:not(:has(img)), 
.founder-image[src*="ivan-seifert.png"]:not([src*="http"]) {
    background: var(--accent);
    color: var(--accent-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 12px;
    font-size: 3rem;
    font-weight: 600;
}

.founder-photo:not(:has(img))::after,
.founder-image[src*="ivan-seifert.png"]:not([src*="http"])::after {
    content: "IS";
}

.founder-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
}

.founder-text p {
    margin: 0 0 1.5rem 0;
}

.founder-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.founder-meta p {
    margin: 0 0 0.5rem 0;
}

.founder-name {
    font-size: 1.125rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-linkedin-icon {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    transition: opacity 0.3s ease;
}

.founder-linkedin-icon:hover {
    opacity: 0.8;
}

.founder-linkedin-icon svg {
    width: 20px;
    height: 20px;
}

.founder-title {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.founder-credentials {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ========================================
   SECTION 6: FINAL CTA
   ======================================== */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(235, 84, 54, 0.08) 0%, rgba(0, 0, 77, 0.08) 100%);
    border-radius: 2rem;
    margin: 2rem 1rem;
    border: 1px solid var(--border);
}

.dark .final-cta-section {
    background: linear-gradient(135deg, rgba(235, 84, 54, 0.15) 0%, rgba(71, 85, 105, 0.15) 100%);
}

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

.final-cta-content .heading-3 {
    margin-bottom: 0.75rem;
}

.final-cta-content .section-subtitle {
    margin-bottom: 2rem;
}

/* Lead generation form */
.lead-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    text-align: left;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.form-group .optional {
    font-weight: 400;
    opacity: 0.6;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--background);
    color: var(--foreground);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--muted-foreground);
    opacity: 0.5;
}

.form-submit-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    cursor: pointer;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success h3 {
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-success p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

.form-error {
    text-align: center;
    padding: 0.75rem;
    color: var(--destructive);
    font-size: 0.875rem;
}

.form-error a {
    color: var(--destructive);
    text-decoration: underline;
}

.form-fallback {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.form-fallback a {
    color: var(--primary);
    text-decoration: underline;
}

/* Final CTA button - ensure visibility */
.final-cta-section .primary-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.final-cta-section .primary-button:hover {
    background-color: var(--foreground);
    color: var(--background);
}

/* Booking Embed Container */
.booking-embed-container {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.booking-iframe {
    width: 100%;
    height: 700px;
    border: 0;
    display: block;
}

/* Soft CTA - Newsletter below booking */
.soft-cta {
    margin-top: 2.5rem;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.soft-cta-text {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin: 0 0 1rem 0;
}

.soft-cta-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.soft-cta-form input[type="email"] {
    flex: 1;
    max-width: 280px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.3s ease;
}

.soft-cta-form input[type="email"]::placeholder {
    color: var(--muted-foreground);
}

.soft-cta-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.soft-cta-form button[type="submit"] {
    background-color: var(--secondary);
    color: var(--foreground);
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.soft-cta-form button[type="submit"]:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.soft-cta-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-success {
    color: var(--primary);
    font-size: 0.9375rem;
    margin: 0;
}

/* ========================================
   POLICY PAGE STYLES
   ======================================== */
.policy-page {
    padding: 4rem 0;
    border-radius: 2rem;
    margin: 2rem 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-content h1 {
    margin-bottom: 1rem;
}

.policy-meta {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.policy-body {
    color: var(--foreground);
    line-height: 1.7;
}

.policy-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.policy-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.policy-body p {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.policy-body ul,
.policy-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-body li {
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.policy-body strong {
    font-weight: 600;
    color: var(--foreground);
}

.policy-body a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-body a:hover {
    text-decoration: underline;
}

.policy-version {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
    padding: 5rem 0;
    border-radius: 2rem;
    margin: 2rem 1rem;
}

.section .padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Placeholders */
.placeholder-box {
    background-color: var(--muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.placeholder-box:hover {
    border-color: var(--primary);
}

.placeholder-box.small {
    padding: 1.5rem 1rem;
    min-height: 120px;
}

.placeholder-box p {
    margin: 0;
    opacity: 0.7;
    line-height: 1.5;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--secondary);
    padding: 3.75rem 0 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground);
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    font-style: italic;
    margin: 0;
}

.footer-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-section a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--muted);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media screen and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    .heading-hero {
        font-size: 2.75rem;
    }

    .heading-3 {
        font-size: 2rem;
    }

    .pillar-card {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

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

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

@media screen and (max-width: 767px) {
    .padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .heading-hero {
        font-size: 2.25rem;
        letter-spacing: -1px;
        line-height: 1.15;
    }

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

    .subheadline {
        font-size: 1rem;
        margin: 1rem 0 1.5rem 0;
    }

    /* HERO SECTION - Mobile Optimizations */
    .hero-section {
        padding: 2.5rem 0 3rem 0;
        min-height: auto;
    }

    .hero-component {
        gap: 2rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .cta-section {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .cta-section .primary-button,
    .cta-section .secondary-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Fix secondary button visibility on mobile */
    .hero-section .secondary-button.hero-secondary {
        border-color: rgba(255, 255, 255, 0.6);
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-weight: 500;
    }

    /* Hero screenshot on mobile */
    .hero-screenshot-container {
        padding: 0 0.5rem;
    }

    /* PROBLEM SECTION - Mobile */
    .problem-section {
        padding: 3rem 0;
        margin: 0 0.5rem 0.5rem 0.5rem;
        border-radius: 1rem;
    }

    .problem-content {
        padding: 0 0.5rem;
    }

    .problem-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* PILLARS/HOW IT WORKS SECTION - Mobile */
    .pillars-section {
        padding: 3rem 0;
        margin: 0.5rem 0.5rem;
        border-radius: 1rem;
    }

    .section-intro {
        margin-bottom: 2rem;
    }

    .section-eyebrow {
        font-size: 0.75rem;
    }

    .pillars-stack {
        gap: 1rem;
    }

    .pillar-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem;
        text-align: center;
        /* Disable sticky stacking on mobile */
        position: relative;
        top: auto;
        box-shadow: none;
        border-radius: 1rem;
    }

    .pillar-card:nth-child(1),
    .pillar-card:nth-child(2),
    .pillar-card:nth-child(3),
    .pillar-card:nth-child(4) {
        top: auto;
        z-index: auto;
    }

    /* Reset direction for mobile - stack vertically */
    .pillar-card:nth-child(even) {
        direction: ltr;
    }

    .pillar-content {
        order: 1;
    }

    .pillar-visual {
        order: 2;
    }

    .pillar-label {
        font-size: 0.6875rem;
    }

    .pillar-title {
        font-size: 1.25rem;
    }

    .pillar-description {
        font-size: 0.9375rem;
    }

    .pillar-visual .placeholder-box {
        aspect-ratio: 16/10;
        min-height: 150px;
    }

    /* PRICING SECTION - Mobile */
    .pricing-section {
        padding: 3rem 0;
        margin: 0.5rem 0.5rem;
        border-radius: 1rem;
    }

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

    .pricing-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .pricing-name {
        font-size: 1.125rem;
    }

    .price-amount {
        font-size: 1.375rem;
    }

    .pricing-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .pricing-cta {
        padding: 0.75rem 1.25rem;
    }

    .pricing-note {
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    /* TRUST SECTION - Mobile */
    .trust-section {
        padding: 2.5rem 0;
        margin: 0.5rem 0.5rem;
        border-radius: 1rem;
    }

    .trust-icon {
        width: 56px;
        height: 56px;
    }

    .trust-title {
        font-size: 1.25rem;
    }

    .trust-description {
        font-size: 0.9375rem;
    }

    /* MANAGED SERVICE SECTION - Mobile */
    .managed-service-section {
        padding: 3rem 0;
        margin: 0.5rem 0.5rem;
        border-radius: 1rem;
    }

    .managed-service-content {
        padding: 0 1rem;
    }

    .managed-service-content .heading-3 {
        font-size: 1.5rem;
    }

    .managed-service-content .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .managed-service-body {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .managed-service-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .managed-step {
        text-align: left;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .managed-step h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .managed-step p {
        font-size: 0.875rem;
    }

    .managed-service-note {
        font-size: 0.75rem;
    }

    /* FOUNDER SECTION - Mobile */
    .founder-section {
        padding: 3rem 0;
    }

    .founder-content {
        padding: 0 1rem;
    }

    .founder-content .heading-3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .founder-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-text {
        font-size: 0.9375rem;
    }

    .founder-text p {
        margin-bottom: 1rem;
    }

    .founder-meta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .founder-name {
        font-size: 1rem;
    }

    .founder-title {
        font-size: 0.9375rem;
    }

    .founder-credentials {
        font-size: 0.875rem;
    }

    /* FINAL CTA SECTION - Mobile */
    .final-cta-section {
        padding: 2rem 0;
        margin: 0.5rem 0.5rem;
        border-radius: 1rem;
    }

    .final-cta-content .heading-3 {
        font-size: 1.5rem;
    }

    .final-cta-content .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

    .form-group label {
        font-size: 0.8125rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9375rem;
        padding: 0.625rem 0.875rem;
    }

    .form-submit-btn {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .form-fallback {
        font-size: 0.8125rem;
    }

    /* Booking Embed - Mobile */
    .booking-embed-container {
        margin-top: 1.5rem;
        border-radius: 0.75rem;
    }

    .booking-iframe {
        height: 600px;
    }

    /* Soft CTA - Mobile */
    .soft-cta {
        margin-top: 2rem;
    }

    .soft-cta-text {
        font-size: 0.875rem;
    }

    .soft-cta-form {
        flex-direction: column;
    }

    .soft-cta-form input[type="email"] {
        max-width: none;
    }

    /* General section spacing */
    .section {
        padding: 3rem 0;
        border-radius: 1rem;
        margin: 0.5rem 0.5rem;
    }

    .section .padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Navigation */
    .navbar-content {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .navbar-menu {
        display: none;
    }

    .navbar-menu.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        z-index: 999;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .navbar-right {
        display: none;
    }

    .navbar-menu.active + .navbar-right {
        display: flex;
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        background-color: var(--background);
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        z-index: 998;
        border-top: 1px solid var(--border);
    }

    .navbar-actions {
        display: flex;
    }

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

    /* FOOTER - Mobile */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

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

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

    .social-icons {
        justify-content: center;
    }

    .footer-newsletter-form {
        justify-content: center;
    }
}

@media screen and (max-width: 479px) {
    .heading-hero {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .heading-3 {
        font-size: 1.25rem;
    }

    .subheadline {
        font-size: 0.9375rem;
    }

    .hero-section {
        padding: 2rem 0 2.5rem 0;
    }

    .primary-button.large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Pricing cards - extra small screens */
    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-name {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.25rem;
    }

    /* Pillar cards - extra small screens */
    .pillar-card {
        padding: 1.25rem;
    }

    .pillar-title {
        font-size: 1.125rem;
    }

    .pillar-description {
        font-size: 0.875rem;
    }

    /* Section headers */
    .section-eyebrow {
        font-size: 0.6875rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.primary-button:focus-visible,
.secondary-button:focus-visible,
.theme-toggle-nav:focus-visible,
.form-input:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* ========================================
   INSIGHTS PAGE
   ======================================== */
.insights-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

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

.insights-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insights-content .heading-1 {
    margin-bottom: 1rem;
}

.insights-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.insights-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}

.insights-form input[type="email"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.insights-form input[type="email"]::placeholder {
    color: var(--muted-foreground);
}

.insights-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(235, 84, 54, 0.1);
}

.insights-form button[type="submit"] {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.insights-form button[type="submit"]:hover {
    background-color: var(--foreground);
    color: var(--background);
    transform: translateY(-2px);
}

.insights-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.insights-success {
    text-align: center;
    padding: 2rem;
}

.insights-success svg {
    color: var(--primary);
    margin-bottom: 1rem;
}

.insights-success p {
    font-size: 1.125rem;
    color: var(--foreground);
}

.insights-success strong {
    color: var(--primary);
}

.insights-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.insights-back-link:hover {
    color: var(--primary);
}

.insights-back-link svg {
    transition: transform 0.3s ease;
}

.insights-back-link:hover svg {
    transform: translateX(-4px);
}

/* Nav active state */
.nav-links a.active {
    color: var(--primary);
}

/* Footer Newsletter */
.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    min-width: 0;
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: var(--muted-foreground);
}

.footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-newsletter-form button[type="submit"] {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-form button[type="submit"]:hover {
    background-color: var(--foreground);
    color: var(--background);
}

.footer-newsletter-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer-newsletter-success {
    font-size: 0.875rem;
    color: var(--primary);
    margin: 0;
}

@media screen and (max-width: 767px) {
    .insights-form {
        flex-direction: column;
    }

    .insights-form button[type="submit"] {
        width: 100%;
    }

    .insights-description {
        font-size: 1rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    margin: 0;
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--primary);
    color: var(--primary-foreground);
}

.cookie-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-decline {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.cookie-decline:hover {
    background: var(--muted);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .footer,
    .theme-toggle-nav,
    .cookie-banner {
        display: none;
    }

    .hero-section,
    .section {
        page-break-inside: avoid;
    }
}
