/**
 * MENPLUS Telehealth - Custom Styles
 * Phase 1 MVP - Premium iOS-inspired Design
 */

:root {
    --primary-navy: #0F1F2E;
    --accent-gold: #C9A24D;
    --base-white: #FFFFFF;
    --text-gray: #6B7280;
    --light-gray: #F9FAFB;
    --border-gray: #E5E7EB;
    /* Hero background: set to your image URL, or leave default */
    --hero-bg-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80');
    /* About page hero: different image */
    --about-hero-bg-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1920&q=80');
    /* Services page hero: different image */
    --services-hero-bg-image: url('https://images.unsplash.com/photo-1581595220892-b0739db3ba8c?w=1920&q=80');
    /* Contact page hero: different image */
    --contact-hero-bg-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
    /* Consultation page hero: different image */
    --consultation-hero-bg-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80');
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-navy);
    background-color: var(--base-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 76px;
}

/* ===== Scroll progress bar (progress-based animation) ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #d4b05a);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9999;
    will-change: transform;
}

/* ===== Custom cursor (desktop only) ===== */
.cursor-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    left: 0;
    top: 0;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-dot--active {
    opacity: 1;
}

.cursor-dot--hover {
    width: 36px;
    height: 36px;
    margin-left: -18px;
    margin-top: -18px;
    border-color: rgba(201, 162, 77, 0.6);
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot { display: none !important; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Navigation - glass & fixed */
.navbar-glass {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar {
    padding: 0.875rem 0;
    box-shadow: none;
}

.navbar-glass.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar-nav {
    gap: 0.25rem;
    align-items: center;
}

.navbar-nav .nav-item {
    margin-left: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary-navy) !important;
    text-decoration: none;
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 0.875rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-navy) !important;
}

.btn-primary-cta {
    background-color: var(--primary-navy) !important;
    color: var(--base-white) !important;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border-radius: 8px;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem;
    transition: opacity 0.2s ease;
}

.btn-primary-cta:hover {
    opacity: 0.9;
    color: var(--base-white) !important;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--base-white);
}

.btn-primary:hover {
    background-color: #0a1620;
    color: var(--base-white);
}

.btn-secondary {
    background-color: var(--light-gray);
    color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--border-gray);
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--base-white);
}

.btn-accent:hover {
    background-color: #b8923f;
    color: var(--base-white);
}

/* Forms */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(15, 31, 46, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
    margin-bottom: 2rem;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 2rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--light-gray);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--base-white), var(--light-gray));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Spacing */
.mt-large {
    margin-top: 5rem;
}

.mb-large {
    margin-bottom: 5rem;
}

.py-large {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Footer Premium – dark navy + gold orbs, animated */
.footer-premium {
    background: linear-gradient(145deg, #0a141c 0%, #0F1F2E 40%, #152535 70%, #0d1926 100%);
    background-size: 300% 300%;
    animation: footer-bg-drift 8s ease-in-out infinite;
    color: var(--base-white);
    padding: 4rem 0 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

@keyframes footer-bg-drift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-premium::before {
    content: '';
    position: absolute;
    width:  min(90vw, 550px);
    height: min(90vw, 550px);
    top: -25%;
    left: -15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 77, 0.22) 0%, rgba(201, 162, 77, 0.08) 40%, transparent 70%);
    animation: footer-orb-1 6s ease-in-out infinite;
    pointer-events: none;
}

.footer-premium::after {
    content: '';
    position: absolute;
    width:  min(85vw, 500px);
    height: min(85vw, 500px);
    bottom: -30%;
    right: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 45, 66, 0.6) 0%, rgba(15, 31, 46, 0.2) 45%, transparent 75%);
    animation: footer-orb-2 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footer-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    25%      { transform: translate(8%, 10%) scale(1.08); opacity: 0.9; }
    50%      { transform: translate(14%, 18%) scale(1.18); opacity: 1; }
    75%      { transform: translate(5%, 12%) scale(1.05); opacity: 0.95; }
}

@keyframes footer-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33%      { transform: translate(-8%, -8%) scale(1.1) rotate(2deg); }
    66%      { transform: translate(-12%, -14%) scale(1.15) rotate(-1deg); }
}

.footer-premium .container {
    position: relative;
    z-index: 1;
}

.footer-premium .footer-col,
.footer-premium .footer-anim-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-premium .footer-col:hover {
    transform: translateY(-2px);
}

.footer-premium.in-view .footer-col:nth-child(1) { transition-delay: 0.05s; }
.footer-premium.in-view .footer-col:nth-child(2) { transition-delay: 0.15s; }
.footer-premium.in-view .footer-col:nth-child(3) { transition-delay: 0.25s; }
.footer-premium.in-view .footer-col:nth-child(4) { transition-delay: 0.35s; }
.footer-premium.in-view .footer-col:nth-child(5) { transition-delay: 0.45s; }
.footer-premium.in-view .footer-anim-item { transition-delay: 0.55s; }

.footer-premium.in-view .footer-col,
.footer-premium.in-view .footer-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.footer-brand h4 {
    color: var(--base-white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    transition: letter-spacing 0.4s ease, transform 0.3s ease;
}

.footer-premium .footer-brand:hover h4 {
    letter-spacing: 0.02em;
    transform: translateX(2px);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    color: var(--base-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-col:hover .footer-heading {
    color: rgba(201, 162, 77, 0.95);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    transform: translateX(4px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 18px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-contact a:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.footer-contact li:hover i {
    transform: scale(1.15) translateY(-2px);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.75);
}

.footer-support-link {
    color: var(--accent-gold) !important;
    font-weight: 500;
}

.footer-support-link:hover {
    color: #d4b05a !important;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-tagline-small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-premium {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-heading {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
}

.alert-danger {
    background-color: #FEE2E2;
    color: #991B1B;
}

.alert-info {
    background-color: #DBEAFE;
    color: #1E40AF;
}

/* Admin Styles */
.admin-header {
    background-color: var(--primary-navy);
    color: var(--base-white);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: var(--base-white);
    margin: 0;
}

.table {
    background-color: var(--base-white);
}

.table thead {
    background-color: var(--light-gray);
}

.table th {
    border-bottom: 2px solid var(--border-gray);
    font-weight: 600;
    color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* Utility Classes */
.text-primary-navy {
    color: var(--primary-navy);
}

.text-accent-gold {
    color: var(--accent-gold);
}

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

.rounded-custom {
    border-radius: 10px;
}

.shadow-soft {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ============================================
   PREMIUM HOME PAGE STYLES
   Using Deep Navy #0F1F2E and Soft Gold #C9A24D
   ============================================ */

/* Premium Hero Section - spacing/arrangement aligned with ED section */
.hero-premium {
    color: var(--base-white);
    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;
    background-color: #0F1F2E;
    background-image: linear-gradient(135deg, rgba(15, 31, 46, 0.94) 0%, rgba(15, 31, 46, 0.88) 50%, rgba(26, 45, 66, 0.9) 100%),
                      var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero parallax background layer */
.hero-parallax-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 70% 40%, rgba(201, 162, 77, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero title text reveal (masked lines for GSAP) */
.hero-title-reveal {
    display: block;
}

.hero-title-reveal .hero-title-line {
    display: block;
    overflow: hidden;
    line-height: 1.15;
}

.hero-title-reveal .hero-title-inner {
    display: inline-block;
    will-change: transform;
}

.hero-premium .hero-anim-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-premium.in-view .hero-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.hero-premium.in-view .hero-badge.hero-anim-item { transition-delay: 0.05s; }
.hero-premium.in-view .hero-title.hero-anim-item { transition-delay: 0.15s; }
.hero-premium.in-view .hero-subtitle.hero-anim-item { transition-delay: 0.25s; }
.hero-premium.in-view .hero-question.hero-anim-item { transition-delay: 0.28s; }
.hero-premium.in-view .hero-cta.hero-anim-item { transition-delay: 0.35s; }
.hero-premium.in-view .hero-trust.hero-anim-item { transition-delay: 0.45s; }

.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-premium .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-badge {
    margin-bottom: 6px;
    margin-top: 0;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(201, 162, 77, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: 50px;
    font-size: clamp(13px, 1.8vw + 10px, 16px);
    font-weight: 500;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw + 1.75rem, 3.5rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.1;
    color: var(--base-white);
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.9rem, 1.25rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}

.hero-question {
    font-size: clamp(0.95rem, 1vw + 0.85rem, 1.1rem);
    font-weight: 500;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    margin-top: 0;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.btn-hero-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.2vw + 0.8rem, 1.1rem);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.02em;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
}

.btn-hero-primary:hover {
    background-color: #d4b05a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
    color: var(--primary-navy);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--base-white);
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.2vw + 0.8rem, 1.1rem);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.02em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--base-white);
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-number {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Magnetic buttons: smooth transform for cursor-follow */
.btn-magnetic {
    will-change: transform;
}

/* ===== About page (redesign) ===== */
.about-page {
    padding-bottom: 0;
}

/* About hero: navy gradient header */
.about-hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--about-hero-bg-image) center / cover no-repeat;
    z-index: 0;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 31, 46, 0.88) 0%, rgba(10, 22, 32, 0.92) 50%, rgba(21, 37, 53, 0.9) 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.about-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
    color: var(--accent-gold);
}

.about-breadcrumb span:not(.about-breadcrumb-sep) {
    color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.about-hero-title {
    font-size: clamp(2.25rem, 4vw + 1.5rem, 3rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--base-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-hero-lead {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.about-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-about-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    background-color: #d4b05a;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-about-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--base-white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.about-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

.about-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-trust-pill i {
    color: var(--accent-gold);
}

/* About hero – scroll reveal */
.about-hero .about-hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-hero.in-view .about-hero-anim {
    opacity: 1;
    transform: translateY(0);
}

.about-hero.in-view .about-hero-title { transition-delay: 0.05s; }
.about-hero.in-view .about-hero-lead { transition-delay: 0.12s; }
.about-hero.in-view .about-hero-cta { transition-delay: 0.2s; }
.about-hero.in-view .about-hero-trust { transition-delay: 0.28s; }

/* About inner (wide container) */
.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Our story: two-column */
.about-story {
    padding: 5rem 0;
    background: var(--base-white);
}

.about-section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.about-story-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr 380px;
    }
}

.about-story-title {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.25rem);
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-story-p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-story-p:last-of-type {
    margin-bottom: 0;
}

.about-stat-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #152535 100%);
    color: var(--base-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.about-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.about-quote-card {
    margin-top: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--accent-gold);
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
}

.about-quote-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-navy);
    line-height: 1.6;
    margin: 0;
}

.about-story .about-story-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-story.in-view .about-story-anim {
    opacity: 1;
    transform: translateY(0);
}

.about-story.in-view .about-story-content.about-story-anim { transition-delay: 0.05s; }
.about-story.in-view .about-story-aside.about-story-anim { transition-delay: 0.18s; }

/* Mission & values */
.about-values {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--base-white));
}

.about-values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-values-title {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.25rem);
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
}

.about-values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-value-card {
    background: var(--base-white);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.about-value-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 32px rgba(15, 31, 46, 0.1);
    transform: translateY(-4px);
}

.about-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.18) 0%, rgba(201, 162, 77, 0.08) 100%);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.about-value-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.about-value-text {
    font-size: 0.98rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.about-values .about-values-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-values.in-view .about-values-anim {
    opacity: 1;
    transform: translateY(0);
}

.about-values.in-view .about-values-header.about-values-anim { transition-delay: 0.05s; }
.about-values.in-view .about-value-card.about-values-anim:nth-child(1) { transition-delay: 0.12s; }
.about-values.in-view .about-value-card.about-values-anim:nth-child(2) { transition-delay: 0.2s; }
.about-values.in-view .about-value-card.about-values-anim:nth-child(3) { transition-delay: 0.28s; }

/* How we work (process) */
.about-process {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.about-process-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-navy);
    z-index: 0;
}

.about-process-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
}

.about-process .about-inner {
    position: relative;
    z-index: 1;
}

.about-process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-process .about-section-label {
    color: var(--accent-gold);
}

.about-process-title {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.25rem);
    font-weight: 600;
    color: var(--base-white);
    margin-bottom: 0.5rem;
}

.about-process-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.about-process-steps {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .about-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .about-process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.about-step:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 162, 77, 0.3);
}

.about-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 10px;
}

.about-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--base-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-step-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin: 0;
}

.about-process-cta {
    text-align: center;
}

.about-process-cta .btn-about-primary {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.about-process .about-process-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-process.in-view .about-process-anim {
    opacity: 1;
    transform: translateY(0);
}

.about-process.in-view .about-process-header.about-process-anim { transition-delay: 0.05s; }
.about-process.in-view .about-step.about-process-anim:nth-child(1) { transition-delay: 0.1s; }
.about-process.in-view .about-step.about-process-anim:nth-child(2) { transition-delay: 0.18s; }
.about-process.in-view .about-step.about-process-anim:nth-child(3) { transition-delay: 0.26s; }
.about-process.in-view .about-step.about-process-anim:nth-child(4) { transition-delay: 0.34s; }
.about-process.in-view .about-process-cta.about-process-anim { transition-delay: 0.42s; }

/* Trust strip */
.about-trust-strip {
    padding: 2.5rem 0;
    background: var(--light-gray);
    border-top: 1px solid var(--border-gray);
}

.about-trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-navy);
}

.about-trust-strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-trust-strip-inner i {
    color: var(--accent-gold);
}

.about-trust-strip .about-trust-anim {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-trust-strip.in-view .about-trust-anim {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Services page (hero + list + CTA) ===== */
.services-page {
    padding-bottom: 0;
}

.services-hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--services-hero-bg-image) center / cover no-repeat;
    z-index: 0;
}

.services-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 31, 46, 0.88) 0%, rgba(10, 22, 32, 0.92) 50%, rgba(21, 37, 53, 0.9) 100%);
}

.services-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.services-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.services-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.services-breadcrumb a:hover {
    color: var(--accent-gold);
}

.services-breadcrumb span:not(.services-breadcrumb-sep) {
    color: rgba(255, 255, 255, 0.5);
}

.services-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.services-hero-title {
    font-size: clamp(2.25rem, 4vw + 1.5rem, 3rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--base-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.services-hero-lead {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.services-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-services-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-services-primary:hover {
    background-color: #d4b05a;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-services-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--base-white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-services-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.services-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

.services-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-trust-pill i {
    color: var(--accent-gold);
}

.services-hero .services-hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-hero.in-view .services-hero-anim {
    opacity: 1;
    transform: translateY(0);
}

.services-hero.in-view .services-hero-title { transition-delay: 0.05s; }
.services-hero.in-view .services-hero-lead { transition-delay: 0.12s; }
.services-hero.in-view .services-hero-cta { transition-delay: 0.2s; }
.services-hero.in-view .services-hero-trust { transition-delay: 0.28s; }

/* Services list section */
.services-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-list-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--base-white), var(--light-gray));
}

.services-section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.services-list-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-list-title {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.25rem);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.services-list-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--base-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 32px rgba(15, 31, 46, 0.1);
    transform: translateY(-4px);
}

.service-card:hover .service-card-link {
    color: var(--accent-gold);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.18) 0%, rgba(201, 162, 77, 0.08) 100%);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.service-card-desc {
    font-size: 0.98rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.service-card-link i {
    margin-left: 0.35rem;
    font-size: 0.8em;
}

.services-cta-block {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.services-cta-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.services-list-section .services-list-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-list-section.in-view .services-list-anim {
    opacity: 1;
    transform: translateY(0);
}

.services-list-section.in-view .services-list-header.services-list-anim { transition-delay: 0.05s; }
.services-list-section.in-view .service-card.services-list-anim:nth-child(1) { transition-delay: 0.1s; }
.services-list-section.in-view .service-card.services-list-anim:nth-child(2) { transition-delay: 0.16s; }
.services-list-section.in-view .service-card.services-list-anim:nth-child(3) { transition-delay: 0.22s; }
.services-list-section.in-view .service-card.services-list-anim:nth-child(4) { transition-delay: 0.28s; }
.services-list-section.in-view .service-card.services-list-anim:nth-child(5) { transition-delay: 0.34s; }
.services-list-section.in-view .service-card.services-list-anim:nth-child(6) { transition-delay: 0.4s; }
.services-list-section.in-view .services-cta-block.services-list-anim { transition-delay: 0.48s; }

@media (max-width: 767px) {
    .services-hero { padding: 2.5rem 0 3rem; }
    .services-list-section { padding: 3.5rem 0; }
    .services-inner { padding: 0 1.25rem; }
}

/* ===== Contact page (hero + info + form) ===== */
.contact-page {
    padding-bottom: 0;
}

.contact-hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--contact-hero-bg-image) center / cover no-repeat;
    z-index: 0;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 31, 46, 0.88) 0%, rgba(10, 22, 32, 0.92) 50%, rgba(21, 37, 53, 0.9) 100%);
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.contact-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-breadcrumb a:hover {
    color: var(--accent-gold);
}

.contact-breadcrumb span:not(.contact-breadcrumb-sep) {
    color: rgba(255, 255, 255, 0.5);
}

.contact-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.contact-hero-title {
    font-size: clamp(2.25rem, 4vw + 1.5rem, 3rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--base-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.contact-hero-lead {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 0;
}

.contact-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-trust-pill i {
    color: var(--accent-gold);
}

.contact-hero .contact-hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-hero.in-view .contact-hero-anim {
    opacity: 1;
    transform: translateY(0);
}

.contact-hero.in-view .contact-hero-title { transition-delay: 0.05s; }
.contact-hero.in-view .contact-hero-lead { transition-delay: 0.12s; }
.contact-hero.in-view .contact-hero-trust { transition-delay: 0.2s; }

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--base-white), var(--light-gray));
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.contact-info-card {
    background: var(--primary-navy);
    color: var(--base-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--base-white);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 162, 77, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-list strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-bottom: 0.25rem;
}

.contact-info-list a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: #d4b05a;
}

.contact-info-list span {
    font-size: 0.98rem;
    line-height: 1.5;
    opacity: 0.95;
}

.btn-contact-primary {
    display: inline-block;
    padding: 1rem 1.75rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-primary:hover {
    background-color: #d4b05a;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.contact-form-wrap {
    background: var(--base-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.contact-form .contact-field {
    margin-bottom: 1.25rem;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary-navy);
    background: var(--base-white);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.15);
}

.contact-input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-contact-submit {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background-color: #d4b05a;
    transform: translateY(-2px);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-content .contact-content-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-content.in-view .contact-content-anim {
    opacity: 1;
    transform: translateY(0);
}

.contact-content.in-view .contact-info-card.contact-content-anim { transition-delay: 0.05s; }
.contact-content.in-view .contact-form-wrap.contact-content-anim { transition-delay: 0.15s; }

@media (max-width: 767px) {
    .contact-hero { padding: 2.5rem 0 3rem; }
    .contact-content { padding: 3.5rem 0; }
    .contact-inner { padding: 0 1.25rem; }
}

/* ===== Consultation page (hero + form) ===== */
.consultation-page {
    padding-bottom: 0;
}

.consultation-hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.consultation-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--consultation-hero-bg-image) center / cover no-repeat;
    z-index: 0;
}

.consultation-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 31, 46, 0.88) 0%, rgba(10, 22, 32, 0.92) 50%, rgba(21, 37, 53, 0.9) 100%);
}

.consultation-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.consultation-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.consultation-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.consultation-breadcrumb a:hover {
    color: var(--accent-gold);
}

.consultation-breadcrumb span:not(.consultation-breadcrumb-sep) {
    color: rgba(255, 255, 255, 0.5);
}

.consultation-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.consultation-hero-title {
    font-size: clamp(2.25rem, 4vw + 1.5rem, 3rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--base-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.consultation-hero-lead {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 0;
}

.consultation-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.consultation-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.consultation-trust-pill i {
    color: var(--accent-gold);
}

.consultation-hero .consultation-hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.consultation-hero.in-view .consultation-hero-anim {
    opacity: 1;
    transform: translateY(0);
}

.consultation-hero.in-view .consultation-hero-title { transition-delay: 0.05s; }
.consultation-hero.in-view .consultation-hero-lead { transition-delay: 0.12s; }
.consultation-hero.in-view .consultation-hero-trust { transition-delay: 0.2s; }

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

.consultation-content {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--base-white), var(--light-gray));
}

.consultation-form-wrap {
    background: var(--base-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.consultation-section {
    margin-bottom: 2.5rem;
}

.consultation-section:last-of-type {
    margin-bottom: 0;
}

.consultation-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.consultation-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .consultation-row {
        grid-template-columns: 1fr 1fr;
    }
}

.consultation-row-three {
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .consultation-row-three {
        grid-template-columns: repeat(3, 1fr);
    }
}

.consultation-field {
    margin-bottom: 1.25rem;
}

.consultation-row .consultation-field,
.consultation-row-three .consultation-field {
    margin-bottom: 0;
}

.consultation-row + .consultation-row,
.consultation-row-three + .consultation-field {
    margin-top: 1.25rem;
}

.consultation-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.consultation-required {
    color: #dc2626;
}

.consultation-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary-navy);
    background: var(--base-white);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.15);
}

.consultation-input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.consultation-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.consultation-textarea {
    min-height: 80px;
    resize: vertical;
}

.consultation-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.consultation-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-navy);
    cursor: pointer;
}

.consultation-radio-label input {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--accent-gold);
}

.consultation-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    cursor: pointer;
}

.consultation-checkbox {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.2rem;
    accent-color: var(--accent-gold);
}

.consultation-consent {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.consultation-submit-wrap {
    margin-top: 2rem;
}

.btn-consultation-submit {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-consultation-submit:hover {
    background-color: #d4b05a;
    transform: translateY(-2px);
}

.btn-consultation-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.consultation-content .consultation-content-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.consultation-content.in-view .consultation-content-anim {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .consultation-hero { padding: 2.5rem 0 3rem; }
    .consultation-content { padding: 3.5rem 0; }
    .consultation-inner { padding: 0 1.25rem; }
    .consultation-form-wrap { padding: 1.5rem 1.25rem; }
    .consultation-row-three { grid-template-columns: 1fr; }
}

/* ===== Consultation Journey (multi-step, ClickUp-style) ===== */
.consultation-journey .journey-content {
    padding: 2.5rem 0 5rem;
}

.journey-inner {
    max-width: 800px;
    width: 100%;
}

.journey-progress-wrap {
    display: none;
    background: var(--base-white);
    border-bottom: 1px solid var(--border-gray);
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 76px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(15, 31, 46, 0.04);
}

.consultation-journey.journey-started .journey-progress-wrap {
    display: block;
    animation: journeyProgressIn 0.4s ease;
}

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

.journey-progress-inner {
    max-width: 800px;
    margin: 0 auto;
}

.journey-progress-bar {
    height: 6px;
    background: var(--border-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.journey-progress-bar::before {
    content: '';
    display: block;
    height: 100%;
    width: var(--journey-progress, 0%);
    background: linear-gradient(90deg, var(--accent-gold), #d4b05a);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-progress-text {
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin: 0;
}

.journey-steps {
    position: relative;
    min-height: 420px;
}

.journey-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
    pointer-events: none;
}

.journey-step.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    animation: journeyStepIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step.active.journey-step-prev {
    transform: translateX(-24px);
    animation: journeyStepOutBack 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes journeyStepOutBack {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-20px); }
}

.journey-step-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0.25rem;
    box-shadow: none;
}

.journey-step-card-intro {
    text-align: center;
    padding: 0 0.25rem;
}

.journey-intro-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.journey-intro-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.journey-intro-lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.journey-intro-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.journey-intro-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.journey-intro-list li i {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.journey-privacy-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-privacy-note i {
    color: var(--accent-gold);
}

.journey-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.journey-step-sub {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 1rem;
}

.journey-question {
    font-size: 1.05rem;
    color: var(--primary-navy);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.journey-scale-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.journey-scale-wrap {
    max-width: 120px;
}

.journey-scale-input {
    font-size: 1.25rem;
    text-align: center;
}

/* Option cards (radio/checkbox) – ClickUp-style clickable cards */
.journey-options {
    margin-bottom: 1.5rem;
}

.journey-option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.journey-option-group-inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.journey-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary-navy);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.journey-option:hover {
    background: #f0f1f3;
    border-color: rgba(201, 162, 77, 0.3);
}

.journey-option:active {
    transform: scale(0.99);
}

.journey-option input:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.journey-option input:checked + span,
.journey-option:has(input:checked) {
    border-color: var(--accent-gold);
    background: rgba(201, 162, 77, 0.08);
}

.journey-option input {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--accent-gold);
}

.journey-option-single {
    max-width: 320px;
}

.journey-option.journey-option-cb input {
    width: 1.125rem;
    height: 1.125rem;
}

.journey-step-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.journey-step-actions-submit {
    flex-wrap: wrap;
}

.btn-journey {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
    font-family: inherit;
}

/* Click/press feedback */
.btn-journey:active {
    transform: scale(0.97);
}

.btn-journey-back {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-gray);
}

.btn-journey-back:hover {
    background: var(--light-gray);
    color: var(--primary-navy);
}

.btn-journey-back:active {
    transform: scale(0.97);
    background: var(--border-gray);
}

.btn-journey-next,
.btn-journey-primary {
    background: var(--primary-navy);
    color: var(--base-white);
}

.btn-journey-next:hover,
.btn-journey-primary:hover {
    background: #0a1620;
    color: var(--base-white);
    transform: translateY(-1px);
}

.btn-journey-next:active,
.btn-journey-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-journey-submit {
    background: linear-gradient(135deg, var(--accent-gold), #d4b05a);
    color: var(--primary-navy);
    padding: 1rem 1.5rem;
}

.btn-journey-submit:hover {
    background: linear-gradient(135deg, #d4b05a, #c9a24d);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 162, 77, 0.35);
}

.btn-journey-submit:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(201, 162, 77, 0.25);
}

/* Step 8 – Review */
.journey-step-card-review {
    padding: 0 0.25rem;
}

.journey-review-lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.journey-review-h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 1.5rem 0 0.5rem;
}

.journey-review-h3:first-of-type {
    margin-top: 0;
}

.journey-review-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.journey-review-what ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--text-gray);
}

.journey-review-what li {
    margin-bottom: 0.35rem;
}

.journey-details-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.consultation-field-full {
    grid-column: 1 / -1;
}

.journey-time-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.journey-fee-box {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}

.journey-fee-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0 0 0.35rem;
}

.journey-fee-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.journey-fee-includes {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.journey-payment-method {
    margin: 1rem 0;
}

.journey-optional {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.journey-consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

@media (max-width: 767px) {
    .consultation-journey .journey-content { padding: 2rem 0 4rem; }
    .journey-step-card,
    .journey-step-card-intro,
    .journey-step-card-review {
        padding: 0 0.25rem;
    }
    .journey-details-grid {
        grid-template-columns: 1fr;
    }
    .journey-progress-wrap { top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
    .journey-step {
        transition: none;
    }
    .journey-step.active { animation: none; }
    .journey-progress-bar::before { transition: none; }
}

@media (max-width: 767px) {
    .about-hero { padding: 2.5rem 0 3rem; }
    .about-story { padding: 3.5rem 0; }
    .about-values { padding: 3.5rem 0; }
    .about-process { padding: 3.5rem 0; }
    .about-inner { padding: 0 1.25rem; }
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.1) 0%, rgba(201, 162, 77, 0.05) 100%);
    border: 1px solid rgba(201, 162, 77, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.visual-card.card-1 {
    width: 280px;
    height: 200px;
    top: 0;
    right: 0;
    transform: rotate(-5deg);
    animation: hero-card-float-1 16s ease-in-out infinite;
}

.visual-card.card-2 {
    width: 240px;
    height: 180px;
    top: 150px;
    right: 100px;
    transform: rotate(3deg);
    animation: hero-card-float-2 20s ease-in-out infinite;
}

.visual-card.card-3 {
    width: 200px;
    height: 160px;
    top: 280px;
    right: 50px;
    transform: rotate(-2deg);
    animation: hero-card-float-3 18s ease-in-out infinite;
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
    opacity: 0.9;
}

@keyframes hero-card-float-1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-14px) rotate(-3deg); }
}

@keyframes hero-card-float-2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

@keyframes hero-card-float-3 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}

/* Premium Features Section - typography, spacing & arrangement aligned with ED section */
.features-premium {
    padding: 70px 0 100px;
    background-color: var(--base-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: clamp(13px, 1.8vw + 10px, 16px);
    font-weight: 500;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A202C;
    margin-bottom: 6px;
    margin-top: 0;
}

.section-title {
    font-size: clamp(2.25rem, 5vw + 1.75rem, 3.625rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #121212;
    margin-bottom: 8px;
    margin-top: 0;
}

.section-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.9rem, 1.125rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card-premium {
    padding: 2rem 1.75rem;
    background-color: var(--base-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-premium:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(15, 31, 46, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 12px;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.12) 0%, rgba(201, 162, 77, 0.06) 100%);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.2) 0%, rgba(201, 162, 77, 0.12) 100%);
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.feature-card-premium h3 {
    font-size: clamp(1.125rem, 1.5vw + 1rem, 1.5rem);
    font-weight: 600;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-card-premium p {
    font-size: clamp(0.875rem, 1vw + 0.8rem, 1rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Features – scroll-reveal */
.features-premium .features-header-anim,
.features-premium .feature-anim-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-premium.in-view .features-header-anim,
.features-premium.in-view .feature-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.features-premium.in-view .features-header-anim { transition-delay: 0.08s; }
.features-premium.in-view .feature-anim-item:nth-child(1) { transition-delay: 0.18s; }
.features-premium.in-view .feature-anim-item:nth-child(2) { transition-delay: 0.28s; }
.features-premium.in-view .feature-anim-item:nth-child(3) { transition-delay: 0.38s; }

/* Your journey – what happens after you start */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--base-white), var(--light-gray));
}

.journey-section .section-header {
    margin-bottom: 2.5rem;
}

.journey-card {
    padding: 2rem 1.5rem;
    background: var(--base-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.journey-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(15, 31, 46, 0.08);
    transform: translateY(-3px);
}

.journey-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.2) 0%, rgba(201, 162, 77, 0.08) 100%);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.journey-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.journey-desc {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin: 0;
}

.journey-section .journey-header-anim,
.journey-section .journey-col-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.journey-section.in-view .journey-header-anim { transition-delay: 0.05s; }
.journey-section.in-view .journey-col-anim:nth-child(1) { transition-delay: 0.12s; }
.journey-section.in-view .journey-col-anim:nth-child(2) { transition-delay: 0.2s; }
.journey-section.in-view .journey-col-anim:nth-child(3) { transition-delay: 0.28s; }

.journey-section.in-view .journey-header-anim,
.journey-section.in-view .journey-col-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--base-white), var(--light-gray));
}

.services-content {
    padding-right: 2rem;
}

.services-content .section-label {
    margin-bottom: 1rem;
}

.services-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.services-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-gold);
}

.btn-service-link {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-service-link:hover {
    color: #d4b05a;
    transform: translateX(5px);
}

.services-visual {
    position: relative;
    height: 400px;
}

.service-card-visual {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2d42 100%);
    border: 1px solid rgba(201, 162, 77, 0.2);
    box-shadow: 0 10px 40px rgba(15, 31, 46, 0.15);
    position: relative;
}

.service-card-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4b05a 100%);
    opacity: 0.3;
}

.service-card-visual::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4b05a 100%);
    opacity: 0.2;
}

/* Premium CTA Section */
.cta-premium {
    padding: 6rem 0;
    background-color: var(--primary-navy);
    background-image:
        linear-gradient(135deg, rgba(15, 31, 46, 0.85) 0%, rgba(15, 31, 46, 0.6) 45%, rgba(26, 45, 66, 0.8) 100%),
        url('/assets/images/WhatsApp%20Image%202026-01-24%20at%2016.39.12.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--base-white);
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 77, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-premium .cta-anim-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-premium.in-view .cta-anim-item:nth-child(1) { transition-delay: 0.1s; }
.cta-premium.in-view .cta-anim-item:nth-child(2) { transition-delay: 0.2s; }
.cta-premium.in-view .cta-anim-item:nth-child(3) { transition-delay: 0.3s; }
.cta-premium.in-view .cta-anim-item:nth-child(4) { transition-delay: 0.4s; }
.cta-premium.in-view .cta-anim-item:nth-child(5) { transition-delay: 0.5s; }

.cta-premium.in-view .cta-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.cta-premium .btn-cta-primary,
.cta-premium .btn-cta-secondary {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-premium .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(201, 162, 77, 0.45);
}

.cta-premium .btn-cta-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-content h2 {
    font-size: clamp(2.25rem, 4vw + 1.5rem, 3rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--base-white);
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1rem, 1.2vw + 0.9rem, 1.25rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
}

.btn-cta-primary:hover {
    background-color: #d4b05a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
    color: var(--primary-navy);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: transparent;
    color: var(--base-white);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--base-white);
}

/* Prescription Treatments - typography, spacing & arrangement aligned with ED section */
.treatments-scroll {
    padding: 70px 0 100px;
    background-color: var(--base-white);
    overflow: hidden;
}

.treatments-header-scroll {
    text-align: center;
    margin-bottom: 50px;
}

/* Treatments – scroll-reveal header */
.treatments-scroll .treatments-header-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.treatments-scroll.in-view .treatments-header-anim {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.treatments-label-scroll {
    display: inline-block;
    font-size: clamp(13px, 1.8vw + 10px, 16px);
    font-weight: 500;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A202C;
    margin-bottom: 6px;
    margin-top: 0;
}

.treatments-title-scroll {
    font-size: clamp(2.25rem, 5vw + 1.75rem, 3.625rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #121212;
    margin-bottom: 8px;
    margin-top: 0;
}

.treatments-subtitle-scroll {
    font-weight: 400;
    color: #B8860B;
}

.treatments-scroll-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.treatments-scroll-track {
    display: flex;
    gap: 1.25rem;
    animation: scroll-left 40s linear infinite;
    width: max-content;
    padding: 0 1rem;
}

.treatments-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.treatment-card-scroll {
    flex: 0 0 320px;
    width: 320px;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 31, 46, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.treatment-card-scroll:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(15, 31, 46, 0.18);
}

.treatment-card-image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-navy);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.treatment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 31, 46, 0.92) 0%, rgba(15, 31, 46, 0.4) 40%, transparent 70%);
    pointer-events: none;
}

.treatment-card-caption {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.5rem;
    width: 100%;
}

.treatment-card-caption h4 {
    font-size: clamp(1.125rem, 1.5vw + 1rem, 1.35rem);
    font-weight: 600;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    color: var(--base-white);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.treatment-card-caption p {
    font-size: clamp(0.875rem, 1vw + 0.8rem, 0.95rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.treatment-card-caption .treatment-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.treatment-card-scroll:hover .treatment-btn {
    background-color: #d4b05a;
}

@media (max-width: 768px) {
    .treatments-scroll { padding: 3rem 0 3rem; }
    .treatments-header-scroll { margin-bottom: 2.5rem; }
    .treatments-title-scroll { font-size: 1.875rem; }
    .treatment-card-scroll { flex: 0 0 280px; width: 280px; min-height: 380px; }
    .treatment-card-image { height: 380px; }
}

/* Not sure where to start? – curiosity CTA after treatments */
.treatments-cta-block {
    padding: 4rem 0;
    background: var(--base-white);
}

.treatments-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.treatments-cta-title {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.treatments-cta-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.treatments-cta-inner .btn-hero-primary {
    margin-top: 0;
}

/* Who is MENPLUS for? */
.who-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--base-white));
}

.who-section .section-header {
    margin-bottom: 2.5rem;
}

.who-card {
    padding: 1.75rem 1.5rem;
    background: var(--base-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.who-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(15, 31, 46, 0.08);
    transform: translateY(-3px);
}

.who-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.15) 0%, rgba(201, 162, 77, 0.08) 100%);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.who-card:hover .who-icon {
    transform: scale(1.08);
}

.who-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1.45;
}

.who-section .who-header-anim,
.who-section .who-col-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.who-section.in-view .who-header-anim { transition-delay: 0.05s; }
.who-section.in-view .who-col-anim:nth-child(1) { transition-delay: 0.12s; }
.who-section.in-view .who-col-anim:nth-child(2) { transition-delay: 0.2s; }
.who-section.in-view .who-col-anim:nth-child(3) { transition-delay: 0.28s; }
.who-section.in-view .who-col-anim:nth-child(4) { transition-delay: 0.36s; }

.who-section.in-view .who-header-anim,
.who-section.in-view .who-col-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Testosterone Section – wide layout, same as treatment/FAQ */
.testosterone-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--base-white));
}

.testosterone-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testosterone-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
}

@media (min-width: 992px) {
    .testosterone-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }
    .testosterone-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
}

.testosterone-features {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.testosterone-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.testosterone-brand {
    color: var(--accent-gold);
    font-weight: 700;
}

.testo-cta-question {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.testosterone-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-testo-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-navy);
    color: var(--base-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-testo-primary:hover {
    background-color: #0a1620;
    color: var(--base-white);
    transform: translateY(-2px);
}

.btn-testo-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-navy);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-testo-secondary:hover {
    background-color: var(--primary-navy);
    color: var(--base-white);
}

.testo-feature {
    padding: 1.5rem;
    background-color: var(--base-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    height: 100%;
}

.testo-feature:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(15, 31, 46, 0.08);
}

.testo-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.testo-feature-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testo-feature-link:hover {
    color: #d4b05a;
}

.testosterone-visual {
    min-height: 400px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2d42 100%);
    position: relative;
    overflow: hidden;
}

.testosterone-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=600&h=500&fit=crop') center/cover;
    opacity: 0.4;
}

/* Testosterone – scroll-reveal + subtle visual float */
.testosterone-section .testo-anim-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testosterone-section.in-view .testo-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.testosterone-section.in-view .testo-content > .testosterone-headline { transition-delay: 0.08s; }
.testosterone-section.in-view .testo-content > .testo-cta-question { transition-delay: 0.12s; }
.testosterone-section.in-view .testo-content > .testosterone-cta { transition-delay: 0.18s; }
.testosterone-section.in-view .testosterone-features .testo-anim-item:nth-child(1) { transition-delay: 0.28s; }
.testosterone-section.in-view .testosterone-features .testo-anim-item:nth-child(2) { transition-delay: 0.38s; }
.testosterone-section.in-view .testosterone-visual-wrap .testo-anim-item { transition-delay: 0.48s; }

.testosterone-visual-float {
    animation: testosterone-visual-float 12s ease-in-out infinite;
}

@keyframes testosterone-visual-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.testosterone-disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
}

@media (max-width: 991px) {
    .testosterone-headline { font-size: 2rem; }
    .testosterone-visual { min-height: 300px; }
}

@media (max-width: 768px) {
    .testosterone-section { padding: 3rem 0; }
    .testosterone-headline { font-size: 1.75rem; }
    .testosterone-cta { flex-direction: column; }
    .btn-testo-primary, .btn-testo-secondary { width: 100%; text-align: center; }
}

/* ===== Horizontal scroll section (pinned, horizontal scrub) – full viewport width X ===== */
.horizontal-scroll-section {
    min-height: 80vh;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 20vh 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--base-white) 0%, var(--light-gray) 100%);
}

.horizontal-scroll-pin {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.horizontal-scroll-track {
    width: 100%;
    max-width: 100vw;
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Wrapper for both arms of the X – enough height so thick rotated strips aren’t cut at any corner */
.horizontal-x-wrap {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 32vh;
}

/* One arm of the X: full screen width, tilted, solid background */
.horizontal-strip {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    transform-origin: center center;
    overflow: hidden;
    isolation: isolate;
}

.horizontal-strip--left {
    transform: translateY(-50%) rotate(-6deg);
    background: rgba(15, 31, 46, 0.1);
}

.horizontal-strip--right {
    transform: translateY(-50%) rotate(6deg);
    background: rgba(201, 162, 77, 0.16);
}

/* Inner move: same scroll animation (GSAP); own layer + solid bg for crisp text */
.horizontal-scroll-inner-move {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 3rem;
    padding: 1.5rem 2.5rem;
    will-change: transform;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.horizontal-strip--left .horizontal-scroll-inner-move {
    background: rgba(15, 31, 46, 0.1);
}

.horizontal-strip--right .horizontal-scroll-inner-move {
    background: rgba(201, 162, 77, 0.16);
}

.horizontal-item {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 0.02em;
    flex-shrink: 0;
    opacity: 0.95;
}

.horizontal-item:nth-child(odd) {
    color: var(--accent-gold);
}

/* ===== SECTION BANNER (RexMD Exact Resemblance) ===== */
.section-banner {
    padding: 70px 0 100px;
    background-color: #F6F6F6;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Animated background elements */
.section-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, rgba(214, 173, 96, 0.12) 0%, transparent 50%);
    animation: section-banner-float 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at 70% 60%, rgba(214, 173, 96, 0.08) 0%, transparent 55%);
    animation: section-banner-float 22s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.section-banner .bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184, 134, 11, 0.15) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    animation: section-banner-dots 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes section-banner-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    33% { transform: translate(15px, -20px) scale(1.05); opacity: 0.9; }
    66% { transform: translate(-10px, 15px) scale(0.98); opacity: 1; }
}

@keyframes section-banner-dots {
    0% { background-position: 0 0; }
    100% { background-position: 28px 28px; }
}

/* Line animations in background */
.section-banner .bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.section-banner .bg-lines::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        105deg,
        transparent 0,
        transparent 60px,
        rgba(214, 173, 96, 0.08) 60px,
        rgba(214, 173, 96, 0.08) 62px
    );
    animation: section-banner-lines 25s linear infinite;
}

.section-banner .bg-lines::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -75deg,
        transparent 0,
        transparent 80px,
        rgba(184, 134, 11, 0.06) 80px,
        rgba(184, 134, 11, 0.06) 82px
    );
    animation: section-banner-lines-alt 35s linear infinite reverse;
}

@keyframes section-banner-lines {
    0% { transform: translate(0, 0); }
    100% { transform: translate(62px, 0); }
}

@keyframes section-banner-lines-alt {
    0% { transform: translate(0, 0); }
    100% { transform: translate(82px, 0); }
}

.section-banner .main-title {
    text-align: center;
    margin-bottom: 50px;
    z-index: 10;
    position: relative;
}

.section-banner .main-title .section-banner-subtitle {
    font-size: clamp(13px, 1.8vw + 10px, 16px);
    color: #1A202C;
    margin-bottom: 6px;
    margin-top: 0;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-banner .main-title .section-banner-subtitle .subtext-accent {
    color: #B8860B;
    letter-spacing: 0.12em;
}

.section-banner .main-title .ed-crown-svg {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.section-banner .main-title .animated {
    opacity: 1;
}

.section-banner .main-title p:not(.section-banner-subtitle) {
    font-size: clamp(13px, 1.8vw + 10px, 16px);
    color: #1A202C;
    margin-bottom: 6px;
    font-weight: 500;
}

.section-banner .main-title h2 {
    font-size: clamp(42px, 5vw + 28px, 58px);
    font-weight: 400;
    color: #121212;
    line-height: 1.1;
    margin: 0;
}

.section-banner .main-title h2 span {
    color: #B8860B;
}

.section-banner .center {
    position: relative;
    width: 90%;
    max-width: 1200px;
    min-height: 640px;
    margin: 0 auto;
    border-radius: 35px;
    overflow: hidden;
    background-color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 55px;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-banner .center .card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.section-banner .center::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
}

.section-banner .dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    z-index: 3;
    pointer-events: none;
}

.section-banner .ed-dot-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#D6AD60 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.6;
}

.section-banner .logo {
    position: absolute;
    top: 35px;
    left: 55px;
    z-index: 4;
}

.section-banner .rex-logo-text {
    font-size: clamp(20px, 2vw + 16px, 26px);
    font-weight: 700;
    color: #FFF;
    letter-spacing: 1px;
}

.section-banner .rex-logo-text sup {
    font-size: 0.45em;
}

.section-banner .center h4 {
    font-size: clamp(15px, 1.5vw + 13px, 18px);
    font-weight: 600;
    color: #D6AD60;
    margin-bottom: 12px;
    position: relative;
    z-index: 4;
    text-transform: none;
}

.section-banner .center h3 {
    font-size: clamp(22px, 2.2vw + 18px, 28px);
    font-weight: 400;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
    max-width: 420px;
}

.section-banner .center p.animated {
    font-size: clamp(14px, 1.2vw + 12px, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 28px;
    position: relative;
    z-index: 4;
    max-width: 420px;
}

.ed-cta-question {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    position: relative;
    z-index: 4;
}

.section-banner .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(180px, 18vw, 220px);
    height: 48px;
    background-color: #23F197;
    color: #0A1C2B;
    border-radius: 37px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.2vw + 12px, 16px);
    position: relative;
    z-index: 4;
    transition: all 0.3s ease;
}

.section-banner .btn:hover {
    background-color: #1fd885;
    transform: none;
}

.section-banner .btn span {
    margin-right: 10px;
}

.section-banner .video-mobile {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 165px;
    height: 335px;
    z-index: 4;
}

.section-banner .video-mobile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.section-banner .video-mobile video {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    border-radius: 12px;
    z-index: 1;
}

/* Responsiveness for Section Banner */
@media (max-width: 850px) {
    .section-banner .center {
        width: 95%;
        padding-left: 30px;
    }
    .section-banner .video-mobile {
        display: none;
    }
    .section-banner .main-title h2 {
        font-size: 35px;
    }
}

@media (max-width: 550px) {
    .section-banner .h-550 { display: none; }
    .section-banner .s-550 { display: block; }
}

.ed-phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive: ED Banner Section */
@media (max-width: 1200px) {
    .ed-banner-content {
        padding: 3rem 2rem;
    }
    
    .ed-content-left {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    .ed-content-right {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .ed-phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .ed-content-headline {
        font-size: 1.75rem;
    }
    
    .ed-content-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .ed-banner-title {
        font-size: 2.5rem;
    }
    
    .ed-banner-card {
        min-height: 500px;
    }
    
    .ed-banner-content {
        flex-direction: column;
        padding: 3rem 2rem;
        min-height: 500px;
    }
    
    .ed-content-left {
        flex: 1;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .ed-content-right {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .ed-phone-mockup {
        width: 220px;
        height: 440px;
    }
}

@media (max-width: 768px) {
    .section-banner-ed {
        padding: 3rem 0;
    }
    
    .ed-banner-title {
        font-size: 2rem;
    }
    
    .ed-banner-card {
        min-height: 450px;
        border-radius: 16px;
    }
    
    .ed-banner-content {
        padding: 2rem 1.5rem;
        min-height: 450px;
    }
    
    .ed-content-headline {
        font-size: 1.5rem;
    }
    
    .ed-content-text {
        font-size: 1.25rem;
    }
    
    .ed-content-savings {
        font-size: 1rem;
    }
    
    .btn-ed-start {
        width: 100%;
        text-align: center;
    }
    
    .ed-phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* ===== Get Your Custom Treatment in Just 4 Easy Steps (RexMD exact design) ===== */
.four-steps-section {
    padding: 5rem 0 5.5rem;
    background-color: #F6F6F6;
    position: relative;
    overflow: hidden;
}

.four-steps-content {
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Dot pattern + gold diagonal accents */
.four-steps-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(10, 28, 43, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.four-steps-bg-pattern::before,
.four-steps-bg-pattern::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(220, 189, 125, 0.4), transparent);
    z-index: 0;
}

.four-steps-bg-pattern::before {
    top: 15%;
    right: -100px;
    transform: rotate(25deg);
}

.four-steps-bg-pattern::after {
    bottom: 20%;
    left: -100px;
    transform: rotate(-25deg);
}

/* Header with crown and subtitle */
.four-steps-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.four-steps-crown {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.four-steps-crown svg {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.crown-svg-draw {
    display: block;
}

.crown-path {
    fill: none;
}

.four-steps-subtitle {
    font-size: 0.8125rem;
    font-weight: 300;
    color: #0A1C2B;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Title: dark line + gold "4 Easy Steps" */
.four-steps-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0A1C2B;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.four-steps-title-gold {
    color: #DCBD7D;
}

/* Step cards: image (square-ish) top, ALL CAPS title, small description */
.steps-row {
    margin-bottom: 0;
}

.step-card {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    height: 100%;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.step-card:hover {
    box-shadow: none;
    transform: scale(1.02);
}

.step-card-image {
    width: 100%;
    padding-top: 73%;
    background-size: cover;
    background-position: center;
    background-color: #e8e9ec;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.step-card-body {
    padding: 1.5rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.step-card-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0A1C2B;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
}

.step-card-desc,
.step-card .step-card-body p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: #0A1C2B;
    line-height: 1.6;
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    max-width: 250px;
}

/* CTA */
.four-steps-cta {
    margin-top: 3rem;
}

.btn-four-steps {
    display: inline-block;
    background-color: #0A1C2B;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.25rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(10, 28, 43, 0.25);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.btn-four-steps:hover {
    background-color: #0a1620;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 28, 43, 0.35);
}

/* Four steps – scroll-reveal animations */
.four-steps-section .steps-header-anim,
.four-steps-section .steps-title-anim,
.four-steps-section .step-col-anim,
.four-steps-section .steps-cta-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.four-steps-section.in-view .steps-header-anim,
.four-steps-section.in-view .steps-title-anim {
    opacity: 1;
    transform: translateY(0);
}

.four-steps-section.in-view .steps-header-anim { transition-delay: 0.05s; }
.four-steps-section.in-view .steps-title-anim { transition-delay: 0.15s; }
.four-steps-section.in-view .step-col-anim:nth-child(1) { transition-delay: 0.2s; }
.four-steps-section.in-view .step-col-anim:nth-child(2) { transition-delay: 0.3s; }
.four-steps-section.in-view .step-col-anim:nth-child(3) { transition-delay: 0.4s; }
.four-steps-section.in-view .step-col-anim:nth-child(4) { transition-delay: 0.5s; }
.four-steps-section.in-view .steps-cta-anim { transition-delay: 0.65s; }

.four-steps-section.in-view .step-col-anim,
.four-steps-section.in-view .steps-cta-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle crown pulse when four-steps in view */
.four-steps-section.in-view .four-steps-crown svg {
    animation: crown-pulse 3s ease-in-out infinite;
}

@keyframes crown-pulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress { display: none; }
    .cursor-dot { display: none !important; }
    .four-steps-section .steps-header-anim,
    .four-steps-section .steps-title-anim,
    .four-steps-section .step-col-anim,
    .four-steps-section .steps-cta-anim,
    .features-premium .features-header-anim,
    .features-premium .feature-anim-item,
    .treatments-scroll .treatments-header-anim,
    .testosterone-section .testo-anim-item,
    .faq-section .faq-header-anim,
    .faq-section .faq-item.faq-anim-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .four-steps-section.in-view .four-steps-crown svg { animation: none; }
    .testosterone-visual-float { animation: none; }
    .treatment-card-scroll:hover { transform: translateY(-6px); }
}

/* ===== FAQ Section - wide layout, main + sidebar on large screens ===== */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-layout {
    display: block;
}

@media (min-width: 992px) {
    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 3rem;
        align-items: start;
    }

    .faq-main {
        min-width: 0;
    }
}

.faq-sidebar {
    display: none;
}

@media (min-width: 992px) {
    .faq-sidebar {
        display: block;
    }

    .faq-sidebar-sticky {
        position: sticky;
        top: 6rem;
    }

    .faq-sidebar-cta {
        background: var(--base-white);
        border: 1px solid var(--border-gray);
        border-radius: 16px;
        padding: 1.75rem;
        box-shadow: 0 4px 20px rgba(15, 31, 46, 0.06);
    }

    .faq-sidebar-cta h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--primary-navy);
        margin-bottom: 0.5rem;
    }

    .faq-sidebar-cta p {
        font-size: 0.9375rem;
        color: var(--text-gray);
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .faq-sidebar-cta .btn-hero-primary,
    .faq-sidebar-cta .btn-hero-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .faq-sidebar-cta .btn-hero-secondary:last-of-type {
        margin-bottom: 0;
    }
}

/* FAQ – scroll-reveal header + staggered items */
.faq-section .faq-header-anim,
.faq-section .faq-item.faq-anim-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-section.in-view .faq-header-anim,
.faq-section.in-view .faq-item.faq-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.faq-section.in-view .faq-header-anim { transition-delay: 0.05s; }
.faq-section.in-view .faq-item.faq-anim-item:nth-child(1) { transition-delay: 0.1s; }
.faq-section.in-view .faq-item.faq-anim-item:nth-child(2) { transition-delay: 0.18s; }
.faq-section.in-view .faq-item.faq-anim-item:nth-child(3) { transition-delay: 0.26s; }
.faq-section.in-view .faq-item.faq-anim-item:nth-child(4) { transition-delay: 0.34s; }
.faq-section.in-view .faq-item.faq-anim-item:nth-child(5) { transition-delay: 0.42s; }

.faq-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin: 0;
}

.faq-list {
    margin: 0;
}

@media (min-width: 992px) {
    .faq-list {
        max-width: 100%;
    }
}

.faq-item {
    border-radius: 14px;
    margin-bottom: 0.75rem;
    background: var(--base-white);
    box-shadow: 0 2px 12px rgba(15, 31, 46, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(15, 31, 46, 0.08);
}

.faq-item.is-open {
    box-shadow: 0 8px 28px rgba(201, 162, 77, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: background 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -6px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 50%;
    margin: -6px 0 0 -1px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-question {
    color: var(--accent-gold);
}

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

.faq-item.is-open .faq-answer {
    max-height: 280px;
}

.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-gray);
}

/* Responsive: 4 Easy Steps */
@media (max-width: 991px) {
    .four-steps-section { padding: 4rem 0 4.5rem; }
    .four-steps-title { font-size: 2rem; }
    .steps-row .col-lg-3 { margin-bottom: 1rem; }
}

@media (max-width: 768px) {
    .four-steps-section { padding: 3rem 0 3.5rem; }
    .four-steps-title { font-size: 1.5rem; margin-bottom: 1.75rem; }
    .step-card-image { padding-top: 85%; }
    .step-card-body { padding: 1.25rem 1rem; }
    .step-card-title { font-size: 1.15rem; }
    .step-card-desc { font-size: 0.875rem; }
    .four-steps-cta { margin-top: 2.25rem; }
    .btn-four-steps { padding: 0.9rem 1.75rem; font-size: 0.95rem; }
}

/* Responsive Design for Premium Home */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 3rem;
    }
    
    .services-visual {
        height: 300px;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 3rem 0 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .features-premium {
        padding: 3rem 0 3rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* ===== Treatment detail page (article layout) ===== */
.treatment-detail-page {
    padding-bottom: 0;
}

/* Hero: full-bleed, no card */
.treatment-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem;
    margin-bottom: 0;
}

.treatment-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.treatment-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 31, 46, 0.94) 0%, rgba(15, 31, 46, 0.6) 45%, transparent 100%);
}

.treatment-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--base-white);
}

.treatment-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.treatment-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.treatment-breadcrumb a:hover {
    color: var(--accent-gold);
}

.treatment-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.treatment-breadcrumb-current {
    color: var(--base-white);
    font-weight: 500;
}

.treatment-hero-title {
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
    font-weight: 400;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--base-white);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.treatment-hero-tagline {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Article: wide layout, uses screen width */
.treatment-article {
    background: var(--base-white);
    padding: 3.5rem 2rem 4rem;
}

.treatment-article-inner {
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .treatment-article-inner {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 3rem;
        align-items: start;
    }

    .treatment-main {
        min-width: 0;
    }
}

.treatment-sidebar {
    display: none;
}

@media (min-width: 992px) {
    .treatment-sidebar {
        display: block;
    }

    .treatment-sidebar-sticky {
        position: sticky;
        top: 6rem;
    }

    .treatment-sidebar-cta {
        background: var(--light-gray);
        border: 1px solid var(--border-gray);
        border-radius: 16px;
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .treatment-sidebar-cta h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--primary-navy);
        margin-bottom: 0.5rem;
    }

    .treatment-sidebar-cta p {
        font-size: 0.9375rem;
        color: var(--text-gray);
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .treatment-sidebar-cta .btn-hero-primary,
    .treatment-sidebar-cta .btn-hero-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .treatment-sidebar-cta .btn-hero-secondary:last-of-type {
        margin-bottom: 0;
    }

    .treatment-sidebar-summary {
        border: 1px solid var(--border-gray);
        border-radius: 16px;
        padding: 1.5rem;
    }

    .treatment-sidebar-summary h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-navy);
        margin-bottom: 0.75rem;
    }

    .treatment-sidebar-summary ul {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.9375rem;
        line-height: 1.5;
        color: var(--text-gray);
    }

    .treatment-sidebar-summary li {
        position: relative;
        padding-left: 1rem;
        margin-bottom: 0.5rem;
    }

    .treatment-sidebar-summary li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.5em;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent-gold);
    }
}

/* Inline CTA: hide on desktop when sidebar is visible to avoid duplicate */
@media (min-width: 992px) {
    .treatment-cta-inline {
        display: none;
    }
}

.treatment-lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.treatment-section {
    margin-bottom: 2.5rem;
}

.treatment-section h2 {
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.treatment-prose {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin: 0;
}

.treatment-prose + .treatment-prose {
    margin-top: 1rem;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.treatment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.treatment-steps {
    padding-left: 1.5rem;
    margin: 0;
}

.treatment-steps li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.treatment-steps li::marker {
    color: var(--accent-gold);
    font-weight: 600;
}

/* CTA block */
.treatment-cta-block {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    text-align: center;
}

.treatment-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.treatment-cta-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

.treatment-cta-buttons .btn-hero-primary,
.treatment-cta-buttons .btn-hero-secondary {
    margin: 0;
}
