:root {
    /* Brand Colors — Warm Earth Tones (matching Akasi Main Site) */
    --primary-color: #1a1a1a;
    --primary-hover: #2a2a2a;
    --primary-light: rgba(26, 26, 26, 0.06);
    --primary-glow: rgba(26, 26, 26, 0.08);
    --primary-dark: #1a1a1a;
    --primary-dark-light: #2a2a2a;
    --secondary-teal: #e8836b;
    --success-green: #7aab6d;

    /* Accent Trio */
    --color-sage: #7aab6d;
    --color-sky: #6ba3c4;
    --color-coral: #e8836b;

    /* Warm Background Tints */
    --bg-gradient-start: #f5f0e8;
    --bg-gradient-mid: #efe9df;
    --bg-cool-slate: #efe9df;
    --bg-soft-blue: #eef5f0;
    --bg-dark-section: #1a1a1a;
    --bg-dark-card: #2a2a2a;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #f5f0e8;
    --light-gray: #d9d3c7;
    --mid-gray: #c5bfb3;
    --gray: #8a8a82;
    --dark-gray: #555550;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #555550;
    --text-muted: #8a8a82;

    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 80px;

    /* Layout */
    --container-width: 1200px;
    --container-narrow: 960px;
    --container-padding: 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 28px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.10);
    --shadow-primary: 0 4px 20px rgba(232, 131, 107, 0.2);
    --shadow-image: 0 8px 40px rgba(26, 26, 26, 0.12), 0 2px 8px rgba(26, 26, 26, 0.06);

    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

h1 { font-size: 48px; }
h2 { font-size: 38px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }

p {
    margin-bottom: 16px;
    line-height: 1.7;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.bg-light { background: var(--bg-cool-slate); }
.bg-warm { background: var(--bg-soft-blue); }

.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in:nth-child(1) { transition-delay: 0.05s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.15s; }
.fade-in:nth-child(4) { transition-delay: 0.2s; }
.fade-in:nth-child(5) { transition-delay: 0.25s; }

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

/* Button ripple effect — disabled for warm theme
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}
*/

.btn-primary {
    background: var(--color-coral);
    color: #fff;
    border: 1.5px solid var(--color-coral);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: #d4725c;
    border-color: #d4725c;
    box-shadow: 0 6px 28px rgba(232, 131, 107, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--light-gray);
}

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

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 17px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--light-gray);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-image {
    height: 56px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8836b;
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 130px 0 80px;
    background:
        linear-gradient(135deg,
            #f5f0e8 0%,
            #efe9df 20%,
            #f5f0e8 60%,
            #f5f0e8 85%,
            #FFFFFF 100%
        ),
        radial-gradient(ellipse 800px 600px at top right, rgba(232, 131, 107, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at bottom left, rgba(122, 171, 109, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 131, 107, 0.15) 0%, rgba(232, 131, 107, 0.08) 30%, transparent 60%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 171, 109, 0.12) 0%, rgba(122, 171, 109, 0.06) 30%, transparent 60%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(232, 131, 107, 0.1);
    color: var(--color-coral);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(232, 131, 107, 0.12);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s backwards;
}

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

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.6;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.25s backwards;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s backwards;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.45s backwards;
}

.hero-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.55s backwards;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 56px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(122, 171, 109, 0.6), transparent);
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 131, 107, 0.3), transparent);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 16px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-size: 36px;
    font-weight: 500;
    color: var(--secondary-teal);
    margin-bottom: 6px;
    display: block;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ========================================
   SECTIONS BASE
   ======================================== */

.section {
    padding: 80px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-coral);
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
    max-width: 700px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.text-center .section-title {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ========================================
   TWO COLUMN LAYOUTS
   ======================================== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.two-col.reverse {
    grid-template-columns: 1fr 1fr;
}

.two-col.reverse .col-content {
    order: 1;
}

.two-col.reverse .col-image {
    order: 2;
}

.col-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.col-image {
    position: relative;
    display: flex;
    align-items: center;
}

.col-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-image);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-slow);
}

.col-image img:hover {
    box-shadow: 0 12px 48px rgba(42, 42, 42, 0.18), 0 4px 12px rgba(42, 42, 42, 0.1);
    transform: translateY(-4px);
}

/* ========================================
   CHECK LISTS
   ======================================== */

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-list li::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 2px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
}

.check-list.problems li::before {
    background: #FEE2E2;
}

.check-list.problems li::after {
    content: "×";
    color: #EF4444;
    font-size: 14px;
    font-weight: 700;
    left: 5px;
    top: 1px;
}

/* ========================================
   HIGHLIGHT BOX
   ======================================== */

.highlight-box {
    background: var(--bg-soft-blue);
    border-left: 4px solid var(--color-coral);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.highlight-box p {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.text-lg {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    background: var(--white);
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.problem-section > .container::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 40px;
    width: 90px;
    height: 90px;
    border: 2.5px solid rgba(232, 131, 107, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.problem-section > .container::after {
    content: '';
    position: absolute;
    bottom: 120px;
    right: 80px;
    width: 12px;
    height: 12px;
    background: rgba(122, 171, 109, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.problem-section .two-col {
    align-items: flex-start;
    gap: 60px;
    grid-template-columns: 45fr 55fr;
}

.problem-section .col-image {
    margin-bottom: 0;
    padding-bottom: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.problem-section .col-image img {
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution-section {
    background: var(--bg-dark-section);
    color: var(--white);
    padding: 80px 0;
}

.solution-section .section-label {
    color: var(--color-coral);
}

.solution-section .section-title {
    color: var(--white);
}

.solution-section .section-intro {
    color: rgba(255, 255, 255, 0.75);
}

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

.result-item {
    padding: 28px 24px;
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    text-align: center;
}

.result-item:hover {
    border-color: rgba(232, 131, 107, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.result-before {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    margin-bottom: 10px;
    line-height: 1.5;
}

.result-after {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-coral);
    line-height: 1.4;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.decor-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    pointer-events: none;
    z-index: 0;
}

.decor-ring--indigo {
    border-color: rgba(232, 131, 107, 0.15);
}

.decor-ring--teal {
    border-color: rgba(122, 171, 109, 0.15);
}

.decor-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.decor-dot--indigo {
    background: rgba(232, 131, 107, 0.12);
}

.decor-dot--teal {
    background: rgba(122, 171, 109, 0.12);
}

.decor-dots-grid {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(232, 131, 107, 0.18) 2px, transparent 2px);
    background-size: 16px 16px;
}

.decor-dots-grid--teal {
    background-image: radial-gradient(rgba(122, 171, 109, 0.18) 2px, transparent 2px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background: var(--bg-gradient-start);
    position: relative;
    overflow: hidden;
}

.feature-row {
    margin-bottom: 80px;
    padding-bottom: 0;
    border-bottom: none;
    min-height: 480px;
    position: relative;
}

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

/* Feature 1 decorations */
.feature-row:nth-child(1) .col-image {
    position: relative;
}

.feature-row:nth-child(1) .col-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2.5px solid rgba(122, 171, 109, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.feature-row:nth-child(1) .col-image::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -30px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgba(232, 131, 107, 0.2) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 0;
}

/* Feature 2 decorations */
.feature-row:nth-child(2) .col-image {
    position: relative;
}

.feature-row:nth-child(2) .col-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -25px;
    width: 60px;
    height: 60px;
    border: 2.5px solid rgba(232, 131, 107, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.feature-row:nth-child(2) .col-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(rgba(122, 171, 109, 0.2) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 0;
}

/* Feature 3 decorations */
.feature-row:nth-child(3) .col-image {
    position: relative;
}

.feature-row:nth-child(3) .col-image::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -20px;
    width: 80px;
    height: 80px;
    border: 2.5px solid rgba(122, 171, 109, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.feature-row:nth-child(3) .col-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(232, 131, 107, 0.2) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 0;
}

/* Feature content decorative accents */
.feature-row:nth-child(1) .col-content::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -15px;
    width: 14px;
    height: 14px;
    background: rgba(122, 171, 109, 0.25);
    border-radius: 50%;
}

.feature-row:nth-child(2) .col-content::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -20px;
    width: 10px;
    height: 10px;
    background: rgba(232, 131, 107, 0.25);
    border-radius: 50%;
}

.feature-row:nth-child(3) .col-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -20px;
    width: 12px;
    height: 12px;
    background: rgba(122, 171, 109, 0.25);
    border-radius: 50%;
}

.feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-coral);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.feature-num::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(232, 131, 107, 0.2);
    border-radius: 50%;
}

.feature-title {
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

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

.feature-stat {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: 16px;
    color: var(--text-primary);
    font-size: 15px;
    border-left: 3px solid var(--color-coral);
    box-shadow: var(--shadow-xs);
}

.feature-stat strong {
    color: var(--color-coral);
}

/* Feature images */
.feature-row .col-image {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-row .col-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-image);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    background: var(--bg-cool-slate);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(232, 131, 107, 0.12) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -25px;
    width: 70px;
    height: 70px;
    border: 2.5px solid rgba(122, 171, 109, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

/* Pricing Tiers - Text-based layout */
.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-tier {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: var(--transition);
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: center;
}

.pricing-tier:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 131, 107, 0.2);
}

.pricing-tier.featured {
    border: 2px solid var(--color-coral);
    background: linear-gradient(90deg, var(--bg-soft-blue) 0%, var(--white) 30%);
}

.pricing-tier-badge {
    position: absolute;
    top: -11px;
    left: 32px;
    background: var(--color-coral);
    color: #fff;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-tier-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-tier-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-coral);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier-size {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-tier-body h4 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pricing-tier-body p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--light-gray);
}

.pricing-disclaimer h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.pricing-disclaimer p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-disclaimer ul {
    list-style: none;
    margin: 16px 0;
}

.pricing-disclaimer ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-disclaimer ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-coral);
    font-weight: 600;
}

.pricing-disclaimer ul li strong {
    color: var(--text-primary);
}

.disclaimer-note {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    border-top: 1px solid var(--light-gray);
    padding-top: 16px;
    margin-top: 8px;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -40px;
    width: 140px;
    height: 140px;
    border: 2.5px solid rgba(232, 131, 107, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(122, 171, 109, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
}

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

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

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sage), var(--color-coral));
    opacity: 0;
    transition: opacity 0.3s;
}

.trust-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

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

.trust-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    font-size: 26px;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.3;
}

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

.trust-card .check-list {
    margin: 16px 0;
}

.trust-highlight {
    background: var(--bg-soft-blue);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-top: 16px;
    color: var(--text-primary);
    font-size: 14px;
    border-left: 3px solid var(--color-coral);
}

.trust-highlight strong {
    color: var(--color-coral);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    background: var(--bg-gradient-start);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 2.5px solid rgba(232, 131, 107, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgba(122, 171, 109, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--mid-gray);
    border-right: 2px solid var(--mid-gray);
    transform: translateY(-50%) rotate(45deg);
}

.step-card:last-child::after {
    display: none;
}

.step-card:hover {
    border-color: var(--color-coral);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    font-size: 32px;
    font-weight: 500;
    color: var(--color-coral);
    opacity: 0.2;
    margin-bottom: 12px;
    transition: var(--transition);
    line-height: 1;
}

.step-card:hover .step-number {
    opacity: 1;
}

.step-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Two Column Split */
.two-col-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.split-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.split-card:hover {
    border-color: var(--color-coral);
    box-shadow: var(--shadow-md);
}

.split-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.simple-list {
    list-style: none;
}

.simple-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.simple-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.4;
}

.simple-list.primary li::before {
    content: "→";
    color: var(--color-coral);
    font-weight: 700;
    font-size: 14px;
}

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

.faq-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: -30px;
    width: 80px;
    height: 80px;
    border: 2.5px solid rgba(122, 171, 109, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: 30px;
    width: 14px;
    height: 14px;
    background: rgba(232, 131, 107, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

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

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

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

.faq-item.active {
    border-color: var(--color-coral);
    box-shadow: 0 2px 12px rgba(232, 131, 107, 0.08);
}

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

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

.faq-toggle {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-coral);
    transition: var(--transition);
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark-section) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 131, 107, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 171, 109, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 36px;
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

.benefit-check {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 24px;
    position: relative;
}

.benefit-check::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 700;
}

.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 48px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-large {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-container,
    .two-col,
    .two-col.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .two-col.reverse .col-content,
    .two-col.reverse .col-image {
        order: 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-note {
        justify-content: center;
    }

    .badge {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

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

    .pricing-tier {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .step-card:nth-child(3)::after {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .col-image img {
        max-width: 560px;
        margin: 0 auto;
    }

    .feature-row {
        min-height: auto;
    }

    .problem-section .col-image img {
        height: auto;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }

    .section {
        padding: 56px 0;
    }

    .hero {
        padding: 110px 0 0;
    }

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

    .nav-container .btn-sm {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 12px;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-note {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .stats-bar {
        padding: 40px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-num {
        font-size: 28px;
    }

    .pricing-tier {
        padding: 20px;
    }

    .pricing-tier-badge {
        left: 20px;
    }

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

    .cta-benefits {
        grid-template-columns: 1fr;
    }

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

    .btn-xl {
        white-space: normal;
        padding: 16px 28px;
    }

    .two-col-split {
        grid-template-columns: 1fr;
    }

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

    .step-card::after {
        display: none;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .cta-section {
        padding: 64px 0;
    }

    .mb-60 {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

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

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

/* ========================================
   ACCESSIBILITY
   ======================================== */

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-coral);
    outline-offset: 2px;
}

/* Ripple Effect — disabled for warm theme
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.5s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
*/

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    padding: 130px 0 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding: 20px 24px;
    background: var(--bg-soft-blue);
    border-left: 4px solid var(--color-coral);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 16px 0 16px 20px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-primary);
}

.contact-info {
    background: var(--off-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 0;
}

.legal-acknowledgment {
    margin-top: 40px;
    padding: 20px 24px;
    background: rgba(232, 131, 107, 0.06);
    border-left: 4px solid var(--color-coral);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .legal-page { padding: 100px 0 60px; }
    .legal-header h1 { font-size: 32px; }
    .legal-content h2 { font-size: 22px; }
}

/* ========================================
   BOOKING MODAL
   ======================================== */

.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.booking-modal {
    position: relative;
    width: 94%;
    max-width: 660px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2rem 1.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

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

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.booking-modal-close:hover {
    background: rgba(232, 131, 107, 0.12);
    color: var(--color-coral);
}

.booking-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    padding-right: 2rem;
}

.booking-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.booking-modal-calendar {
    border-radius: 14px;
    overflow: hidden;
}

.booking-modal-calendar iframe {
    width: 100%;
    min-height: 1000px;
    border: none;
    border-radius: 14px;
}

@media (max-width: 640px) {
    .booking-modal {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 16px 16px 0 0;
        padding: 1.75rem 1.25rem 1rem;
        align-self: flex-end;
    }

    .booking-modal-title {
        font-size: 1.15rem;
    }

    .booking-modal-calendar iframe {
        min-height: 500px;
    }
}
