/* ==========================================================================
   Design System & Custom Properties - Editorial / Typography Focus
   ========================================================================== */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Corporate Colors */
    --color-teal: #1B5E5F;
    --color-teal-hover: #134647;
    --color-teal-light: #F2F7F7;
    
    --color-terracotta: #C97064;
    --color-terracotta-hover: #B25D52;
    
    --color-mustard: #D4A373;
    --color-mustard-light: #FAF5F0;
    --color-mustard-hover: #C28F5E;
    
    --color-creme: #FCF9F5; /* Warm sand base */
    --color-creme-dark: #F5EFEB;
    --color-white: #FFFFFF;
    
    /* Text Colors */
    --color-anthracite: #2D3436;
    --color-anthracite-muted: #535A66;
    
    /* Spacing & Layout */
    --container-width: 1100px;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 14px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 12px rgba(27, 94, 95, 0.03);
    --shadow-md: 0 10px 24px rgba(27, 94, 95, 0.05);
    --shadow-lg: 0 16px 40px rgba(27, 94, 95, 0.08);
    
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-anthracite);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing (Balanced editorial spacing) */
section {
    padding: 6rem 0;
    position: relative;
}

/* Section Backgrounds */
.teal-bg {
    background-color: var(--color-teal);
    color: var(--color-creme);
}

.creme-bg {
    background-color: var(--color-creme);
}

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

/* Typography (Editorial focused) */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 900; /* Kräftige Modern Sans-Serif */
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem); /* Giant statement size */
    color: var(--color-teal);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-teal);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.15rem;
    font-weight: 800;
}

p {
    font-size: 1.05rem;
    color: var(--color-anthracite-muted);
}

strong {
    font-weight: 700;
    color: var(--color-anthracite);
}

/* Helper styles */
.text-teal { color: var(--color-teal) !important; }
.text-terracotta { color: var(--color-terracotta) !important; }
.text-mustard { color: var(--color-mustard) !important; }
.text-white { color: var(--color-white) !important; }
.text-center { text-align: center !important; }

.section-title {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-teal {
    background-color: var(--color-teal-light);
    color: var(--color-teal);
    border: 1px solid rgba(27, 94, 95, 0.12);
}

/* ==========================================================================
   Buttons (Terracotta CTA & Sparingly used)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-terracotta {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(201, 112, 100, 0.22);
}

.btn-terracotta:hover {
    background-color: var(--color-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 112, 100, 0.35);
}

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

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: var(--border-radius-md);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 94, 95, 0.08);
    transition: background-color var(--transition-fast);
}

.header-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.95;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-teal);
    letter-spacing: -0.02em;
}

.main-header .nav-cta-btn {
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 0.55rem 1.35rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(27, 94, 95, 0.1);
}

.main-header .nav-cta-btn:hover {
    background-color: var(--color-teal-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(27, 94, 95, 0.18);
}

/* ==========================================================================
   Sektion 1: Hero Section
   ========================================================================== */
.hero-section {
    background-color: var(--color-creme);
    padding: 9.5rem 0 6rem 0;
    border-bottom: 1px solid rgba(27, 94, 95, 0.06);
}

.hero-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.portrait-wrapper {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
    background-color: var(--color-teal-light);
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--color-anthracite);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-anthracite-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-container {
    width: 100%;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

/* ==========================================================================
   Sektion 2: Statement Block 1 (Teal Background)
   ========================================================================== */
.statement-block-section {
    padding: 7rem 0;
}

.statement-large-lines {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-large-lines p {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-creme);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.statement-spacer {
    height: 2rem;
}

.statement-large-lines .statement-highlight {
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-mustard);
    margin-top: 1rem;
}

/* ==========================================================================
   Sektion 3: Gegensatz-Statement
   ========================================================================== */
.contrast-section {
    background-color: var(--color-white);
}

.contrast-statement-wrapper {
    max-width: 850px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.contrast-title {
    font-size: clamp(2rem, 5.5vw, 3.75rem); /* Extremely bold & centered */
    line-height: 1.15;
    font-weight: 700;
}

.contrast-diagram {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.contrast-col {
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    height: 100%;
}

.chaos-col {
    background-color: var(--color-creme);
    border: 1px dashed rgba(201, 112, 100, 0.3);
    border-left: 5px solid var(--color-terracotta);
}

.structure-col {
    background-color: var(--color-teal-light);
    border: 1px solid rgba(27, 94, 95, 0.12);
    border-left: 5px solid var(--color-teal);
}

.contrast-header {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contrast-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contrast-list li {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-anthracite);
}

.contrast-vs {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-mustard);
    text-align: center;
}

/* ==========================================================================
   Sektion 4: Kennen Sie diese Zustände? (Quote Style)
   ========================================================================== */
.quotes-section {
    border-bottom: 1px solid rgba(27, 94, 95, 0.06);
}

.quotes-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quote-card {
    background-color: var(--color-white);
    padding: 2.25rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(27, 94, 95, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    opacity: 0.18;
}

.quote-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
    z-index: 2;
}

.quote-body {
    font-size: 1.05rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-anthracite);
    margin-bottom: 1rem;
    line-height: 1.45;
    border-left: 2px solid var(--color-mustard);
    padding-left: 0.75rem;
}

.quote-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-anthracite-muted);
}

/* ==========================================================================
   Sektion 5: Wer ich bin
   ========================================================================== */
.about-section {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(27, 94, 95, 0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 350px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-creme);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-bio-text {
    margin-bottom: 2rem;
}

.about-bio-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-bio-text p:last-child {
    margin-bottom: 0;
}

.case-study-box {
    background-color: var(--color-creme);
    border: 1px solid rgba(212, 163, 115, 0.22);
    border-left: 4px solid var(--color-mustard);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    width: 100%;
}

.case-study-title {
    margin-bottom: 0.5rem;
    font-weight: 850;
}

.case-study-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-anthracite);
    font-style: italic;
}

/* ==========================================================================
   Sektion 6: Split Comparison (Bekommen / Nicht bekommen)
   ========================================================================== */
.split-comparison-section {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.split-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.split-card {
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(27, 94, 95, 0.08);
}

.no-get-card {
    border-top: 5px solid var(--color-terracotta);
}

.get-card {
    border-top: 5px solid var(--color-white);
}

.split-header {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.split-list li {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-anthracite);
}

.list-white li {
    color: var(--color-creme);
}

.cross-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.tick-icon {
    color: var(--color-white);
    font-size: 1rem;
    flex-shrink: 0;
    background-color: var(--color-mustard);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* ==========================================================================
   Sektion 7: Drei Fragen
   ========================================================================== */
.questions-container-box {
    background-color: var(--color-white);
    border: 2px solid var(--color-mustard);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
}

.questions-container-box h2 {
    margin-bottom: 3rem;
}

.questions-list-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.question-row-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.question-marker {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    background-color: var(--color-mustard-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-text-content {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-anthracite);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.questions-action-callout {
    border-top: 1px solid rgba(212, 163, 115, 0.25);
    padding-top: 2.25rem;
}

.callout-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--color-teal);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Sektion 8: Prozess-Timeline
   ========================================================================== */
.timeline-section {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(27, 94, 95, 0.06);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background-color: var(--color-teal-light);
    z-index: 1;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num-icon {
    position: relative;
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-teal);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.timeline-step:hover .step-num-icon {
    transform: scale(1.1);
    background-color: var(--color-teal);
    border-color: var(--color-teal);
}

.timeline-step:hover .step-svg-icon {
    color: var(--color-white);
}

.step-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-svg-icon {
    width: 20px;
    height: 20px;
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.step-svg-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.timeline-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--color-teal);
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--color-anthracite-muted);
    line-height: 1.45;
    padding: 0 0.5rem;
}

/* ==========================================================================
   Sektion 9: Ergebnis-Statement (Teal Block)
   ========================================================================== */
.result-statement-section {
    padding: 6.5rem 0;
}

.result-statement-lines {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.result-statement-lines p {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 3.2vw, 2.1rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--color-creme);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Sektion 10: Für wen ist dieser Check?
   ========================================================================== */
.audience-section {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(27, 94, 95, 0.06);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.audience-column {
    background: var(--color-white);
    padding: 2.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(27, 94, 95, 0.08);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal);
}

.audience-column:hover {
    transform: translateY(-2px);
}

.fit-column {
    border-top: 4px solid var(--color-teal);
    background-color: var(--color-teal-light);
}

.nofit-column {
    border-top: 4px solid var(--color-terracotta);
    background-color: var(--color-terracotta-light);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.header-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-white);
}

.header-icon.green { background-color: var(--color-teal); }
.header-icon.red { background-color: var(--color-terracotta); }

.column-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-teal);
}

.nofit-column .column-header h3 {
    color: var(--color-terracotta);
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.audience-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-anthracite);
    display: flex;
    align-items: flex-start;
}

.fit-column .audience-list li::before {
    content: '✓';
    color: var(--color-teal);
    font-weight: 900;
    margin-right: 0.6rem;
}

.nofit-column .audience-list li::before {
    content: '✗';
    color: var(--color-terracotta);
    font-weight: 900;
    margin-right: 0.6rem;
}

/* ==========================================================================
   Sektion 11: FAQ Accordion
   ========================================================================== */
.faq-section {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(27, 94, 95, 0.06);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-details {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 94, 95, 0.08);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    overflow: hidden;
}

.faq-details[open] {
    border-color: rgba(27, 94, 95, 0.25);
    box-shadow: var(--shadow-md);
}

.faq-summary {
    padding: 1.25rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-teal);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color var(--transition-fast);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary:hover {
    background-color: var(--color-teal-light);
}

.faq-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-teal);
    transition: transform 0.25s ease-out;
}

.faq-icon::before {
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 2px;
    left: 8px;
    width: 2px;
    height: 14px;
}

.faq-details[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-details[open] .faq-icon::before {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.75rem 1.25rem 1.75rem;
    font-size: 0.95rem;
    color: var(--color-anthracite-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(27, 94, 95, 0.05);
    background-color: var(--color-creme);
    animation: slideDown 0.25s ease-out;
}

.faq-content p {
    margin-bottom: 0.75rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content ul {
    list-style: none;
    padding-left: 1.25rem;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.faq-content ul li {
    position: relative;
    margin-bottom: 0.4rem;
}

.faq-content ul li::before {
    content: '•';
    color: var(--color-teal);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Sektion 12: Finaler CTA-Block & Footer
   ========================================================================== */
.booking-section {
    background-color: var(--color-creme);
    padding: 5rem 0;
}

.booking-card {
    background-color: var(--color-white);
    max-width: 750px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--color-terracotta);
    padding: 3.5rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid rgba(27, 94, 95, 0.05);
    border-right: 1px solid rgba(27, 94, 95, 0.05);
    border-bottom: 1px solid rgba(27, 94, 95, 0.05);
}

.booking-title {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    margin-bottom: 0.75rem;
    font-weight: 900;
    color: var(--color-teal);
}

.booking-description {
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2.25rem auto;
}

.booking-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.booking-cta-container .hero-cta-row {
    justify-content: center;
    margin-bottom: 1rem;
}

.booking-cta-container .hero-cta-subtext {
    font-size: 0.85rem;
    color: var(--color-anthracite-muted);
    max-width: 520px;
    text-align: center;
    line-height: 1.45;
}

.side-note {
    margin: 15px auto !important;
    padding: 8px 14px !important;
    max-width: 900px !important;
    border-left: 2px solid #D4A373 !important;
    background: #faf8f4 !important;
}

.side-note .side-note-title {
    margin: 0 0 3px 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.side-note .side-note-text {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* Footer styling */
.main-footer {
    background-color: var(--color-white);
    padding: 3rem 0;
    border-top: 1px solid rgba(27, 94, 95, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--color-anthracite-muted);
}

.footer-bottom a {
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* ==========================================================================
   Animations & Scroll Reveal
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-visual.fade-in {
    animation-delay: 0.1s;
}

.hero-content.fade-in {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.cookie-banner-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 560px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(27, 94, 95, 0.12);
    border-radius: var(--border-radius-md);
    box-shadow: 0 12px 36px rgba(18, 24, 36, 0.1);
    z-index: 9999;
    padding: 1.5rem 1.75rem;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    animation: slideUpBanner 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpBanner {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner-container.hidden {
    display: none !important;
    pointer-events: none;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-anthracite-muted);
}

.cookie-banner-text a {
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.55rem 1.15rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-cookie-teal {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.btn-cookie-teal:hover {
    background-color: var(--color-teal-hover);
    transform: translateY(-1px);
}

.btn-cookie-gray {
    background-color: #E2E8F0;
    color: #4A5568;
}

.btn-cookie-gray:hover {
    background-color: #CBD5E0;
    transform: translateY(-1px);
}

.cookie-settings-link {
    font-size: 0.85rem;
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: none;
    margin-left: auto;
}

.cookie-settings-link:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Breakpoints - Mobile-First Overrides
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 4.5rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-cta-container {
        align-items: center;
    }

    .hero-cta-row {
        justify-content: center;
    }
    
    .hero-visual {
        margin: 0 auto;
        order: -1; /* Keep portrait on top in mobile stacked layout */
    }

    .contrast-diagram {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contrast-vs {
        padding: 0.5rem 0;
    }
    
    .quotes-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-content {
        align-items: center;
    }

    .about-visual {
        order: -1;
    }

    .split-comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none; /* remove horizontal timeline line */
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .step-num-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .booking-card {
        padding: 2.5rem 1.5rem;
    }
    
    .questions-container-box {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .btn {
        width: 100%;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .main-header .nav-cta-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .cookie-banner-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1.15rem 1.25rem;
    }
    .cookie-banner-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .cookie-settings-link {
        text-align: center;
        margin-left: 0;
        margin-top: 0.15rem;
    }
    .btn-cookie {
        width: 100%;
    }
}
