:root {
    --hero-bg: #0b1412;
    --accent: #4ecdc4;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.65);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
    --container-bg: #faf9f6;
    --section-bg-alt: #f3f2ee;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--container-bg);
    font-family: var(--font-sans);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

.page-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Nav --- */
nav {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1040px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(11, 20, 18, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 18px;
    height: 18px;
    background-color: var(--accent);
    border-radius: 4px;
}

.logo-text {
    color: white;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
}

.btn-nav-book {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-book:hover {
    background: white;
    color: var(--hero-bg);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 16px;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: white;
    display: block;
}

/* --- Hero Background Objects --- */
.hero-section {
    position: relative;
    min-height: 96vh;
    background-color: var(--hero-bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.05;
    z-index: 1;
}

.horizon-wrapper {
    position: absolute;
    bottom: -1500px;
    left: 50%;
    transform: translateX(-50%);
    width: 2600px;
    height: 2200px;
    pointer-events: none;
    z-index: 1;
}

.horizon-mass {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at top, #245a50 0%, #0d2b26 40%, transparent 80%);
    box-shadow: 0 -2px 16px 2px rgba(255, 255, 255, 0.4),
                0 -10px 80px 20px rgba(188, 253, 246, 0.3),
                0 -30px 150px 60px rgba(78, 205, 196, 0.4),
                0 -150px 400px 120px rgba(78, 205, 196, 0.2),
                inset 0 12px 30px rgba(13, 43, 38, 0.3);
    filter: blur(2px);
}

.horizon-light-container {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform: rotate(15deg);
    will-change: transform;
}

.horizon-light {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.95) 0%, rgba(188, 253, 246, 0.8) 40%, transparent 70%);
    opacity: 0;
    will-change: opacity;
    filter: blur(12px);
    mix-blend-mode: screen;
}

.hero-mist {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(to top, rgba(250, 249, 246, 1) 0%, rgba(250, 249, 246, 0.8) 30%, rgba(250, 249, 246, 0.4) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-mist::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 800px;
    background: radial-gradient(ellipse at bottom, rgba(250, 249, 246, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Hero Content --- */
.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px max(24px, calc((100vw - 1280px) / 2)) 100px;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.headline {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6.5vw, 84px);
    color: white;
    max-width: 860px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.subheadline {
    font-family: var(--font-sans);
    font-size: 19px;
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 56px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.cta-group {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.btn-primary {
    background: white;
    color: black;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1), 0 0 12px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: scale(1.03) translateY(-2px);
    background: #f4f4f4;
    box-shadow: 0 12px 32px rgba(255,255,255,0.2), 0 0 24px rgba(78, 205, 196, 0.5);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(188, 253, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.15);
}

.hero-scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 100%);
    margin-top: 80px;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

/* --- Scroll Animations --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-heading {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(12px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}
.reveal-heading.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

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

/* --- Shared Structure --- */
.section-padding { padding: 96px max(64px, calc((100vw - 1280px) / 2)); }
.section-heading {
    font-family: var(--font-serif);
    font-size: 44px;
    color: #1a1e1d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
}

/* --- Marquee Bar --- */
.marquee-container {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    background: var(--container-bg);
}
.marquee-label {
    font-size: 13px;
    color: #6b7270;
    font-weight: 400;
    padding-left: max(48px, calc((100vw - 1280px) / 2));
    padding-right: 48px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, var(--container-bg) 80%, transparent);
}
.marquee-track {
    display: flex;
    gap: 40px;
    padding-left: 20px;
    animation: marquee 30s linear infinite;
}
.marquee-item {
    font-size: 17px;
    font-weight: 500;
    color: #8b9290;
    opacity: 0.6;
    white-space: nowrap;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Stats Row --- */
.stats-section {
    padding: 80px max(48px, calc((100vw - 1280px) / 2)) 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--container-bg);
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 48px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 56px;
    color: #1a1e1d;
    margin-bottom: 12px;
    line-height: 1;
}
.stat-label {
    font-size: 14px;
    color: #5b6260;
    max-width: 140px;
    line-height: 1.5;
}
.stats-paragraph {
    max-width: 640px;
    font-size: 18px;
    color: #5b6260;
    line-height: 1.8;
    text-align: center;
    font-weight: 300;
}

/* --- Services --- */
.services-section {
    padding: 80px max(64px, calc((100vw - 1280px) / 2)) 96px;
    background: var(--container-bg);
}
.services-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}
.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}
.services-heading {
    font-family: var(--font-serif);
    font-size: 48px;
    color: #1a1e1d;
    line-height: 1.1;
    max-width: 600px;
    letter-spacing: -0.01em;
}
.services-descriptor {
    font-size: 16px;
    color: #5b6260;
    margin-bottom: 12px;
    font-weight: 300;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
.offer-card {
    background: linear-gradient(135deg, rgba(20, 42, 39, 0.08) 0%, rgba(13, 28, 26, 0.14) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(13, 39, 36, 0.05),
                inset 0 10px 40px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(78, 205, 196, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: inherit;
}
.offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 16px 48px rgba(13, 39, 36, 0.1), 
                inset 0 12px 50px rgba(255, 255, 255, 0.3);
}
.offer-card:hover::after {
    opacity: 1;
}

.offer-card.pro-card {
    background: linear-gradient(135deg, rgba(20, 42, 39, 0.12) 0%, rgba(13, 28, 26, 0.2) 100%);
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 12px 40px rgba(78, 205, 196, 0.1),
                inset 0 10px 40px rgba(255, 255, 255, 0.3);
}
.offer-card.pro-card:hover {
    border-color: rgba(188, 253, 246, 0.8);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.2), 
                inset 0 12px 50px rgba(255, 255, 255, 0.5);
}

.offer-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4ecdc4, #bcfdf6);
    color: #0b1412;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.offer-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.offer-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: #1a1e1d;
    margin-bottom: 4px;
}
.offer-subtitle {
    font-size: 14px;
    color: #6b7270;
    margin-bottom: 16px;
    font-weight: 500;
}
.offer-price {
    font-size: 17px;
    font-weight: 600;
    color: #1a1e1d;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.5);
    padding: 12px 16px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.offer-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.offer-desc {
    font-size: 15px;
    color: #5b6260;
    line-height: 1.6;
    margin-bottom: 12px;
}
.offer-info {
    font-size: 14px;
    color: #4a5553;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.4);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.offer-label {
    display: block;
    font-weight: 600;
    color: #1a1e1d;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-disclaimer {
    margin-top: 48px;
    text-align: center;
    font-size: 13px;
    color: #8b9290;
    font-style: italic;
    width: 100%;
}

/* --- Process Section --- */
.process-section {
    background-color: var(--section-bg-alt);
    padding: 96px max(64px, calc((100vw - 1280px) / 2));
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-heading {
    font-family: var(--font-serif);
    font-size: 48px;
    color: #1a1e1d;
    text-align: center;
    margin-bottom: 64px;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 32px;
}
.process-line {
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(0,0,0,0.08);
    z-index: 1;
}
.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}
.step-number-container {
    background: var(--section-bg-alt);
    display: inline-block;
    padding-right: 24px;
    margin-bottom: 24px;
    align-self: flex-start;
}
.step-number {
    font-family: var(--font-serif);
    font-size: 72px;
    color: #1a1e1d;
    opacity: 0.1;
    line-height: 1;
}
.step-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1e1d;
    margin-bottom: 16px;
}
.step-desc {
    font-size: 15px;
    color: #5b6260;
    line-height: 1.7;
}

/* --- Why/Results Layout --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.minimal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}
.minimal-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.minimal-card.accent {
    border-left: 4px solid var(--accent);
}

/* --- About --- */
.about-text {
    font-size: 18px;
    color: #4a5553;
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

/* --- Contact Redesigned --- */
.contact-section {
    background-color: var(--container-bg);
    padding: 96px max(64px, calc((100vw - 1280px) / 2));
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-heading {
    font-family: var(--font-serif);
    font-size: 48px;
    color: #1a1e1d;
    margin-bottom: 16px;
}
.contact-subtext {
    font-size: 17px;
    color: #6b7270;
    margin-bottom: 40px;
}
.contact-form {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px 24px;
    color: #1a1e1d;
    font-family: var(--font-sans);
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.form-input::placeholder, .form-textarea::placeholder {
    color: #9ba3a1;
}
.form-select {
    appearance: none;
    color: #1a1e1d;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ecdc4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 16px;
    padding-right: 56px;
}
.form-select:invalid {
    color: #9ba3a1;
}
.form-select option {
    color: #1a1e1d;
    background: #ffffff;
    padding: 12px;
}
.form-textarea {
    resize: vertical;
    min-height: 160px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: rgba(78, 205, 196, 0.6);
    background: #fafafa;
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.1), inset 0 2px 4px rgba(0,0,0,0.01);
}
.btn-submit {
    background: linear-gradient(135deg, #1a1e1d 0%, #2d3532 100%);
    color: white;
    padding: 22px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btn-submit:hover {
    background: linear-gradient(135deg, #2d3532 0%, #3e4844 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2), 0 0 16px rgba(78, 205, 196, 0.2);
}

/* --- Contrast Section --- */
.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}
.contrast-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.problem-box {
    background: #faf9f6;
    border: 1px dashed rgba(0,0,0,0.1);
}
.solution-box {
    background: linear-gradient(135deg, rgba(20, 42, 39, 0.04) 0%, rgba(13, 28, 26, 0.08) 100%);
    border: 1px solid rgba(78, 205, 196, 0.3);
}
.contrast-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: #1a1e1d;
    margin-bottom: 32px;
}
.contrast-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contrast-list li {
    font-size: 16px;
    color: #5b6260;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.solution-box .contrast-list li {
    color: #1a1e1d;
    font-weight: 500;
}
.cross, .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}
.cross {
    background: rgba(0,0,0,0.05);
    color: #8b9290;
}
.check {
    background: var(--accent);
    color: #0b1412;
    font-weight: bold;
}

/* --- FAQ --- */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
details.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
summary.faq-summary {
    padding: 24px 0;
    font-size: 18px;
    font-weight: 500;
    color: #1a1e1d;
    cursor: pointer;
    list-style: none;
    position: relative;
}
summary.faq-summary::-webkit-details-marker { display: none; }
summary.faq-summary::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #8b9290;
    transition: transform 0.3s ease;
}
details[open] summary.faq-summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #5b6260;
    animation: fadeInDown 0.4s ease-out;
}

/* --- Footer --- */
.footer-section {
    background-color: var(--hero-bg);
    padding: 48px max(64px, calc((100vw - 1280px) / 2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-logo { font-size: 20px; font-weight: 500; }
.footer-location { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-nav a:hover { color: white; }

/* --- Logo Image --- */
.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}
.logo-img:hover { opacity: 1; }
.footer-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.75;
    transition: opacity 0.25s ease;
}
.footer-logo-img:hover { opacity: 1; }

/* --- Trust Strip --- */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 20px max(48px, calc((100vw - 1280px) / 2));
    background: var(--section-bg-alt);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-strip-label {
    font-size: 12px;
    color: #8b9290;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}
.trust-pill {
    font-size: 13px;
    font-weight: 500;
    color: #4a5553;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.07);
}
.trust-divider {
    color: #c5cac9;
    font-size: 18px;
}

/* --- Hero Bullets --- */
.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}
.hero-bullet-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.2);
    color: var(--accent);
    font-size: 11px;
    flex-shrink: 0;
}

/* --- Hero Reassurance Line --- */
.hero-reassurance {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    margin-top: 12px;
    letter-spacing: 0.01em;
}

/* --- Outcome Arrows --- */
.outcome-arrow {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #1a1e1d;
    line-height: 1.3;
}

@media screen and (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media screen and (max-width: 768px) {
    body { min-height: 100%; }
    .nav-links, .btn-nav-book { display: none; }
    .hamburger { display: flex; }
    .cta-group { flex-direction: column; width: 100%; gap: 16px; }
    .process-steps { flex-direction: column; gap: 48px; }
    .process-line { left: 40px; top: 0; bottom: 0; width: 1px; height: auto; }
    .process-step { padding-left: 72px; padding-right: 0;}
    .step-number-container { position: absolute; left: 0; top: -16px; background: var(--section-bg-alt); padding-bottom: 24px;}
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .contrast-grid { grid-template-columns: 1fr; }
    .contrast-box { padding: 32px; }
    nav, .section-padding, .footer-section, .contact-section, .process-section, .services-section { padding-left: 24px; padding-right: 24px;}
    .headline { font-size: 44px; }
    .section-heading { font-size: 36px; }
    .marquee-label { display: none; }
    .stats-grid { flex-direction: column; align-items: center; gap: 40px;}
    .logo-img { height: 26px; }
    .footer-logo-img { height: 22px; }
}
