/* ===================================================
   STRONG CRAFT REGEN — Global Stylesheet
   DELIBERATELY CRAFTING STRONG LIVES
   =================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
    --gold-gradient: linear-gradient(135deg, #e0c685 0%, #c9a961 45%, #a88a4a 100%);
    --gold-gradient-strong: linear-gradient(135deg, #f0d896 0%, #d4b876 25%, #c9a961 50%, #a88a4a 75%, #876a3a 100%);
    --gold-gradient-hover: linear-gradient(135deg, #d4b876 0%, #b08d57 50%, #876a3a 100%);
    --gold-gradient-bar: linear-gradient(90deg, #a88a4a 0%, #e0c685 50%, #a88a4a 100%);
}

.gold-sheen,
.science-box h4,
[style*="color:#c9a961"],
[style*="color: #c9a961"] {
    background-image: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

.gold-cursive {
    background: var(--gold-gradient-strong);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Chonburi', cursive;
    font-weight: 400;
    font-size: 0.82em;
    letter-spacing: 0;
    display: inline-block;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: Arial, Helvetica, 'Segoe UI', sans-serif;
    color: #152b30;
    background: #152b30;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
h1, h2 { font-weight: 800; }
h3, h4 { font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FIXED VIDEO BACKGROUND ===== */
.video-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.video-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(21, 43, 48, 0.25);
    z-index: -1;
    pointer-events: none;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 14px 0;
    background: #152b30;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; }
.navbar-logo .logo-desktop { height: 38px; width: auto; transition: height 0.3s ease; }
.navbar-logo .logo-mobile { height: 50px; width: auto; display: none; }
.navbar.scrolled .navbar-logo .logo-desktop { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li { position: relative; }
.nav-links a {
    color: #FFFFFF; font-size: 0.9rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: #c9a961; transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Treatments dropdown */
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret {
    display: inline-block; width: 5px; height: 5px;
    border-right: 1.5px solid #FFFFFF; border-bottom: 1.5px solid #FFFFFF;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 2px;
}
.nav-dropdown:hover .nav-caret { transform: rotate(-135deg) translateY(0); border-color: #c9a961; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #152b30; min-width: 260px;
    padding: 12px 0; border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a {
    display: block; padding: 10px 22px;
    font-size: 0.82rem; letter-spacing: 0.5px;
    text-transform: uppercase; white-space: nowrap;
    color: rgba(255,255,255,0.85);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: #c9a961; background: rgba(201,169,97,0.08); }
.nav-links .btn-nav {
    background: var(--gold-gradient-strong); color: #152b30; padding: 10px 24px; border-radius: 4px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px;
    text-transform: uppercase; transition: all 0.3s ease;
}
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav:hover {
    background: var(--gold-gradient-hover); transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { width: 28px; height: 2px; background: #FFFFFF; transition: all 0.3s ease; display: block; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block; background: var(--gold-gradient-strong); color: #152b30;
    padding: 16px 36px; border-radius: 4px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.3s ease; border: 2px solid #c9a961; cursor: pointer;
    box-shadow: 0 2px 8px rgba(168, 138, 74, 0.25);
}
.btn-primary:hover {
    background: var(--gold-gradient-hover); border-color: #a88a4a;
    transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}
.btn-secondary {
    display: inline-block; background: transparent; color: #FFFFFF;
    padding: 16px 36px; border-radius: 4px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.3s ease; border: 2px solid #FFFFFF; cursor: pointer;
}
.btn-secondary:hover {
    background: #FFFFFF; color: #152b30;
    transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn-dark {
    display: inline-block; background: #152b30; color: #FFFFFF;
    padding: 16px 36px; border-radius: 4px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.3s ease; border: 2px solid #152b30; cursor: pointer;
}
.btn-dark:hover {
    background: #0e2226; border-color: #0e2226;
    transform: translateY(-3px); box-shadow: 0 8px 24px rgba(21, 43, 48, 0.35);
}

/* ===== SECTION UTILITY ===== */
.section { padding: 100px 0; position: relative; }
.section-dark {
    background:
        radial-gradient(circle at 15% 20%, rgba(201,169,97,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201,169,97,0.05) 0%, transparent 50%),
        linear-gradient(160deg, #234447 0%, #152b30 40%, #0e2226 100%);
    background-attachment: fixed;
    color: #FFFFFF;
}
.section-overlay {
    background:
        radial-gradient(circle at 18% 30%, rgba(201,169,97,0.10) 0%, transparent 45%),
        linear-gradient(20deg, rgba(21,43,48,0.95) 0%, rgba(21,43,48,0.92) 40%, rgba(21,43,48,0.55) 75%, rgba(21,43,48,0.10) 100%);
    background-attachment: fixed;
}
.section-transparent { background: transparent; }
.section-label {
    display: inline-block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 16px;
}
.section-dark .section-label {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section-title { font-size: 2.75rem; font-weight: 800; margin-bottom: 20px; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.5px; }
.section-subtitle { font-size: 1.1rem; color: #5A6668; max-width: 640px; line-height: 1.8; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== CONTENT PANEL ===== */
.content-panel {
    background: rgba(255, 255, 255, 0.69);
    border-radius: 12px;
    padding: 60px 48px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.content-panel--dark {
    background:
        radial-gradient(circle at 15% 20%, rgba(201,169,97,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201,169,97,0.05) 0%, transparent 50%),
        linear-gradient(160deg, #234447 0%, #152b30 40%, #0e2226 100%);
    background-attachment: fixed;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.content-panel--dark .section-title { color: #FFFFFF; }
.content-panel--dark .section-subtitle { color: rgba(255,255,255,0.75); }
.content-panel--dark-translucent {
    background:
        radial-gradient(circle at 18% 30%, rgba(201,169,97,0.10) 0%, transparent 45%),
        linear-gradient(20deg, rgba(21,43,48,0.95) 0%, rgba(21,43,48,0.92) 40%, rgba(21,43,48,0.55) 75%, rgba(21,43,48,0.10) 100%);
    background-attachment: fixed;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.content-panel--dark-translucent .section-title { color: #FFFFFF; }
.content-panel--dark-translucent .section-subtitle { color: rgba(255,255,255,0.75); }
.content-panel--dark-translucent .condition-card { background: rgba(255,255,255,0.92); }
.content-panel--dark .about-card h3 { color: #FFFFFF; }
.content-panel--dark .about-card p { color: rgba(255,255,255,0.75); }
.content-panel--dark .about-card .credential {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: transparent; overflow: hidden;
    padding-top: 66px;
}
.hero-content {
    position: relative; z-index: 2; max-width: 780px;
    padding: 48px 0;
}
.hero-content::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background:
        radial-gradient(circle at 18% 30%, rgba(201,169,97,0.10) 0%, transparent 45%),
        linear-gradient(20deg, rgba(21,43,48,0.95) 0%, rgba(21,43,48,0.92) 40%, rgba(21,43,48,0.55) 75%, rgba(21,43,48,0.10) 100%);
    z-index: -1;
}
.hero-label {
    display: inline-block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 24px; padding: 8px 0;
    border-bottom: 2px solid #c9a961;
    border-image: var(--gold-gradient-bar) 1;
}
.hero h1 { font-size: 3.5rem; font-weight: 800; color: #FFFFFF; line-height: 1.1; margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 span {
    background: linear-gradient(135deg,
        #f2d8a8 0%,
        #e0c083 14%,
        #c8a363 28%,
        #a88349 45%,
        #d4b178 58%,
        #a07d44 72%,
        #7a5c2f 86%,
        #5e4526 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Chonburi', cursive; font-weight: 400;
    font-size: 0.82em;
    letter-spacing: 0;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 40px; max-width: 580px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero emblem */
.hero-emblem {
    position: absolute;
    left: 90px;
    top: 180px;
    z-index: 2;
    height: 110px;
    display: flex; align-items: flex-start; justify-content: flex-start;
    background: transparent;
}
.hero-emblem img {
    height: 100%; width: auto;
    max-width: none;
    display: block;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}

.hero-stats { display: flex; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat h3 {
    font-size: 2rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TREATMENT CARDS ===== */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.treatment-card {
    background: #FFFFFF;
    border-radius: 8px; padding: 48px 36px; text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(232,236,236,0.8); position: relative; overflow: hidden;
}
.treatment-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gold-gradient-bar); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(21, 43, 48, 0.15); border-color: transparent; }
.treatment-icon {
    width: 72px; height: 72px; margin: 0 auto 28px;
    background: #EBF0F0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.treatment-card:hover .treatment-icon { background: var(--gold-gradient-strong); }
.treatment-icon svg { width: 32px; height: 32px; stroke: #c9a961; fill: none; stroke-width: 1.5; transition: stroke 0.3s ease; }
.treatment-card:hover .treatment-icon svg { stroke: #FFFFFF; }
.treatment-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; color: #152b30; }
.treatment-card p { font-size: 0.95rem; color: #5A6668; line-height: 1.75; margin-bottom: 24px; }
.treatment-card .card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.5px; text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: gap 0.3s ease;
}
.treatment-card .card-link:hover { gap: 10px; }
.treatment-card .card-link svg { width: 14px; height: 14px; stroke: #c9a961; fill: none; stroke-width: 2; }

/* ===== WHY CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.why-card {
    display: flex; align-items: flex-start; gap: 24px;
    background: rgba(255,255,255,0.92); padding: 36px; border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(232,236,236,0.8);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(21, 43, 48, 0.12); border-color: transparent; }
.why-icon {
    flex-shrink: 0; width: 56px; height: 56px;
    background: linear-gradient(135deg, #c9a961, #b08d57); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 26px; height: 26px; stroke: #FFFFFF; fill: none; stroke-width: 1.5; }
.why-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: #152b30; }
.why-content p { font-size: 0.93rem; color: #5A6668; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; position: relative; }
.steps-grid::before {
    content: ''; position: absolute; top: 44px; left: 12.5%; width: 75%; height: 2px;
    background: linear-gradient(90deg, #c9a961 0%, rgba(201,169,97,0.2) 100%); z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 88px; height: 88px; margin: 0 auto 28px;
    background: #152b30; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; font-weight: 800; color: #c9a961;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border: 3px solid #c9a961; transition: all 0.3s ease;
}
.step-card:hover .step-number { background: #c9a961; color: #152b30; transform: scale(1.08); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: #FFFFFF; }
.step-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== CONDITIONS ===== */
.conditions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.condition-card {
    background: rgba(255,255,255,0.71); border-radius: 8px; padding: 36px 28px; text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(232,236,236,0.8); position: relative;
    cursor: pointer;
}
.condition-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(21, 43, 48, 0.12); border-color: #c9a961; }
.condition-icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: #EBF0F0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.condition-card:hover .condition-icon { background: #c9a961; }
.condition-icon svg { width: 28px; height: 28px; stroke: #c9a961; fill: none; stroke-width: 1.5; transition: stroke 0.3s ease; }
.condition-card:hover .condition-icon svg { stroke: #FFFFFF; }
.condition-card h3 { font-size: 1rem; font-weight: 700; color: #152b30; line-height: 1.4; }

/* ===== ABOUT TEAM ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.about-card { position: relative; }
.about-card-image {
    width: 100%; aspect-ratio: 2741 / 3414; height: auto;
    background: #EBF0F0; border-radius: 8px;
    margin-bottom: 32px; overflow: hidden;
}
.about-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-card-label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.about-card h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; color: #152b30; }
.about-card .about-role {
    font-size: 0.9rem; font-weight: 600; margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.about-card p { font-size: 0.95rem; color: #5A6668; line-height: 1.8; margin-bottom: 16px; }
.about-card .credential {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: #5A6668; background: #EBF0F0;
    padding: 8px 16px; border-radius: 4px; margin-top: 8px;
}
.about-card .credential svg { width: 16px; height: 16px; stroke: #c9a961; fill: none; stroke-width: 2; }

/* ===== PARTNERS ===== */
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 80px; margin-top: 48px; flex-wrap: wrap; }
.partner-item { text-align: center; transition: all 0.3s ease; }
.partner-item:hover { transform: translateY(-4px); }
.partner-logo-box {
    width: 280px; height: 140px; background: #FFFFFF; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; border: 1px solid #E8ECEC; transition: all 0.3s ease; padding: 14px 20px;
}
.partner-item:hover .partner-logo-box { border-color: #c9a961; box-shadow: 0 8px 32px rgba(21, 43, 48, 0.08); }
.partner-logo-box img { max-width: 100%; max-height: 112px; object-fit: contain; }
.partner-logo-box.partner-logo-box--fill { padding: 8px; }
.partner-logo-box.partner-logo-box--fill img { max-width: 100%; max-height: 100%; width: 100%; height: auto; object-fit: contain; }
.partner-logo-box .placeholder-logo { font-size: 1.1rem; font-weight: 700; color: #152b30; text-align: center; line-height: 1.3; }
.partner-item p { font-size: 0.85rem; color: #5A6668; margin-bottom: 4px; }
.partner-item a {
    font-weight: 600; font-size: 0.85rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.partner-item a:hover { text-decoration: underline; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.testimonial-card {
    background: rgba(255,255,255,0.71); border-radius: 8px; padding: 40px 36px;
    border: 1px solid rgba(232,236,236,0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(21,43,48,0.12); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #c9a961; stroke: none; }
.testimonial-card blockquote { font-size: 0.95rem; color: #5A6668; line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.testimonial-card blockquote::before { content: '\201C'; font-size: 3rem; color: #c9a961; line-height: 0; vertical-align: -0.6em; margin-right: 4px; font-family: Georgia, serif; opacity: 0.5; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author-avatar {
    width: 48px; height: 48px; border-radius: 50%; background: #EBF0F0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: #c9a961;
    flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.95rem; color: #152b30; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.testimonial-author-info span { font-size: 0.82rem; color: #5A6668; }

/* ===== MISSION ===== */
.mission-content {
    max-width: 800px; margin: 0 auto; text-align: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,169,97,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201,169,97,0.05) 0%, transparent 50%),
        linear-gradient(160deg, #234447 0%, #152b30 40%, #0e2226 100%);
    background-attachment: fixed;
    padding: 56px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.mission-content blockquote {
    font-size: 1.25rem; line-height: 1.9; color: rgba(255,255,255,0.9);
    font-style: italic; position: relative; padding: 0 40px;
}
.mission-content blockquote::before {
    content: '\201C'; font-size: 5rem; color: #c9a961;
    position: absolute; top: -30px; left: -10px;
    font-family: Georgia, serif; line-height: 1; opacity: 0.5;
}

/* ===== FINAL CTA ===== */
.section-cta { padding: 32px 0; }
.cta-section { text-align: center; padding: 32px 0; }
.cta-section h2 { font-size: 2.5rem; font-weight: 800; color: #FFFFFF; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(circle at 18% 30%, rgba(201,169,97,0.10) 0%, transparent 45%),
        linear-gradient(20deg, rgba(21,43,48,0.95) 0%, rgba(21,43,48,0.92) 40%, rgba(21,43,48,0.55) 75%, rgba(21,43,48,0.10) 100%);
    background-attachment: fixed;
    text-align: center;
    position: relative;
}
.page-hero .section-label { display: block; margin-bottom: 16px; }
.page-hero h1 { font-size: 3rem; font-weight: 800; color: #FFFFFF; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto; line-height: 1.8; }

/* ===== FAQ ===== */
.faq-list { margin-top: 48px; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item {
    background: rgba(255,255,255,0.71); border-radius: 8px; margin-bottom: 16px;
    border: 1px solid rgba(232,236,236,0.8); overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 8px 32px rgba(21,43,48,0.08); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 32px; cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 1rem; color: #152b30;
}
.faq-question svg { width: 20px; height: 20px; stroke: #c9a961; fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 32px 24px; font-size: 0.95rem; color: #5A6668; line-height: 1.8; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.blog-card {
    background: rgba(255,255,255,0.71); border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(232,236,236,0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(21,43,48,0.15); border-color: transparent; }
.blog-card-image { width: 100%; height: 220px; background: #EBF0F0; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Montserrat', Arial, sans-serif;
}
.blog-card h3 { font-size: 1.1rem; font-weight: 700; color: #152b30; margin-bottom: 12px; line-height: 1.4; }
.blog-card p { font-size: 0.9rem; color: #5A6668; line-height: 1.7; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.82rem; color: #8a9a9b; }
.blog-meta svg { width: 14px; height: 14px; stroke: #8a9a9b; fill: none; stroke-width: 1.5; }

/* ===== INTAKE FORM ===== */
.intake-form { max-width: 860px; margin: 0 auto; }
.form-section-title {
    font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 0.8rem;
    letter-spacing: 3px; text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 24px; margin-top: 40px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,97,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-group label {
    font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: 0.85rem;
    color: #152b30; letter-spacing: 0.3px;
}
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px; border: 1.5px solid #E8ECEC; border-radius: 6px;
    font-family: Arial, Helvetica, sans-serif; font-size: 0.95rem; color: #152b30;
    background: #FFFFFF; transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #c9a961; box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a88700' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: #c9a961; cursor: pointer; flex-shrink: 0; }
.checkbox-item span { font-size: 0.9rem; color: #152b30; }
.form-submit-area { text-align: center; margin-top: 40px; }
.form-note { font-size: 0.82rem; color: #8a9a9b; margin-top: 16px; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: transparent; color: #FFFFFF; padding: 0; }
.footer-top {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin-bottom: 0; padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 280px; overflow: hidden;
}
.footer-logo-horizontal {
    height: 420px; width: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,169,97,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201,169,97,0.05) 0%, transparent 50%),
        linear-gradient(160deg, #234447 0%, #152b30 40%, #0e2226 100%);
    background-attachment: fixed;
    padding: 48px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer-tagline {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 12px; font-family: 'Montserrat', sans-serif;
}
.footer h4 {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 20px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.3s ease; }
.footer ul li a:hover { color: #c9a961; }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 12px; }
.footer-contact a {
    font-size: 0.9rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
    padding: 28px 24px 20px;
    display: flex; flex-direction: column; gap: 16px;
    background: transparent;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.85); text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.85) !important; }
.footer-bottom-row {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px;
}
.footer-legal-links {
    display: flex; flex-wrap: wrap; gap: 22px;
    list-style: none; margin: 0; padding: 0;
}
.footer-legal-links li { margin: 0; }
.footer-legal-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55) !important;
    text-shadow: none;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
}
.footer-legal-links a:hover { color: #c9a961 !important; }
.footer-disclaimer {
    font-size: 0.72rem !important;
    line-height: 1.7;
    color: rgba(255,255,255,0.5) !important;
    text-shadow: none !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.75rem; }
    .hero-emblem { width: 260px; height: 260px; right: 20px; }
    .hero-emblem img { width: 220px; height: 220px; }
    .section-title { font-size: 2.25rem; }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .conditions-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    /* Collapse inline 2-col grids that don't have their own media queries */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 3fr"],
    [style*="grid-template-columns: 1fr 3fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #152b30; flex-direction: column; padding: 100px 40px 40px;
        gap: 28px; transition: right 0.4s ease; box-shadow: -8px 0 32px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links > li { width: 100%; text-align: center; }
    .nav-caret { display: none; }
    .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; background: transparent;
        min-width: 0; padding: 12px 0 0; margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-dropdown-menu a {
        padding: 8px 0; font-size: 0.75rem;
        color: rgba(255,255,255,0.65); text-align: center;
    }
    .nav-toggle { display: flex; }
    .navbar-logo .logo-desktop { display: none; }
    .navbar-logo .logo-mobile { display: block; }
    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero h1 { font-size: 2.25rem; }
    .hero p { font-size: 1.05rem; }
    .hero-emblem { display: none; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .section { padding: 72px 0; }
    .section-title { font-size: 2rem; }
    .content-panel { padding: 40px 24px; }
    .treatments-grid { grid-template-columns: 1fr; gap: 24px; }
    .why-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .partners-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { gap: 14px; text-align: center; }
    .footer-bottom-row { flex-direction: column; gap: 14px; }
    .footer-legal-links { justify-content: center; gap: 16px 22px; }
    .cta-section h2 { font-size: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.25rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; word-break: break-word; }
    .hero h1 span { font-size: 0.7em; display: inline-block; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; text-align: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
    .conditions-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn-dark, .cta-buttons .btn-primary { width: 100%; max-width: 320px; text-align: center; }
    .section-title { font-size: 1.75rem; }
}
