*, *::before, *::after { box-sizing: border-box; }
:root {
    --patient-primary-hex:#00796B;
    --patient-secondary-hex:#455A64;
    --patient-accent-hex:#E6A570;
    --patient-primary-rgb:0,121,107;
    --patient-secondary-rgb:69,90,100;
    --patient-text:#263238;
    --patient-light-text:#546E7A;
    --patient-card-bg:#FFFFFF;
    --patient-bg:#F7F9FA;
    --patient-border:rgba(var(--patient-primary-rgb),.15);
    --transition:all .3s ease;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--patient-bg);
    color: var(--patient-text);
    --primary: var(--patient-primary-hex);
    --secondary: var(--patient-secondary-hex);
    --accent: var(--patient-accent-hex);
    --primary-rgb: var(--patient-primary-rgb);
    --secondary-rgb: var(--patient-secondary-rgb);
    --text: var(--patient-text);
    --light-text: var(--patient-light-text);
    --card-bg: var(--patient-card-bg);
    --bg: var(--patient-bg);
    --border: var(--patient-border);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { padding: 15px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; position: sticky; top: 0; z-index: 1000; background-color: rgba(247,249,250,.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,.05); border-bottom: 1px solid var(--border); }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo img { height: 40px; width: auto; }
nav { display: flex; align-items: center; flex-wrap: wrap; }
nav a { margin-left: 25px; text-decoration: none; color: var(--text); font-weight: 500; transition: var(--transition); position: relative; font-family: 'Inter', sans-serif; font-size: 1rem; padding: 5px 0; }
nav a:hover, nav a.active { color: var(--primary); }
nav a:hover::after, nav a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: var(--primary); animation: navUnderline .3s ease-out; }
nav a.nav-contact { font-weight: 600; margin-left: 30px; }
@keyframes navUnderline { from { width: 0; } to { width: 100%; } }
.hero { display: flex; align-items: center; justify-content: center; min-height: 80vh; padding: 80px 20px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(-45deg, rgba(224,242,241,.5), rgba(232,245,233,.5), rgba(241,248,233,.5), rgba(255,253,231,.5)); background-size: 400% 400%; animation: gradientBG 15s ease infinite; }
.hero .container { position: relative; z-index: 1; max-width: 850px; }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.8rem, 6.5vw, 4.2rem); font-weight: 700; margin-bottom: 20px; background: linear-gradient(90deg,var(--primary),var(--secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; line-height: 1.1; }
.hero p { font-size: clamp(1.1rem, 2.5vw, 1.3rem); max-width: 700px; margin: 0 auto 40px; color: var(--light-text); }
.hero-search-form { display: flex; max-width: 700px; margin: 40px auto 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(var(--secondary-rgb),.08); background: var(--card-bg); }
.hero-search-form input { flex-grow: 1; border: none; padding: 20px 25px; font-size: 1.1rem; font-family: 'Inter', sans-serif; color: var(--text); outline: 0; background: transparent; }
.hero-search-form input::placeholder { color: var(--light-text); opacity: 1; transition: opacity .3s; }
.hero-search-form button { background: var(--primary); color: #fff; padding: 0 30px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; cursor: pointer; border: none; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.hero-search-form button:hover { background: var(--secondary); }
main { display: block; }
section { padding: 100px 0; position: relative; opacity: 0; transform: translateY(30px); transition: opacity .6s ease-out,transform .6s ease-out; }
section.visible { opacity: 1; transform: translateY(0); }
.h2-wrapper { text-align: center; margin-bottom: 60px; }
.h2-wrapper h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem,4vw,3rem); font-weight: 600; color: var(--text); position: relative; display: inline-block; margin: 0; line-height: 1.2; }
.h2-wrapper h2::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg,var(--primary),var(--accent-hex)); border-radius: 3px; }
.treatment-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 30px; }
.treatment { padding: 35px; border-radius: 16px; background: var(--card-bg); transition: var(--transition); border: 1px solid var(--border); position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.04); display: flex; flex-direction: column; }
.treatment:hover { transform: translateY(-8px); box-shadow: 0 12px 28px rgba(var(--secondary-rgb),.1); border-color: rgba(var(--primary-rgb),.2); }
.treatment h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); font-weight: 600; }
.treatment .treatment-subheading { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; color: var(--secondary); font-weight: 600; margin-top: 25px; margin-bottom: 10px; padding-top: 15px; border-top: 1px solid var(--border); }
#conditions { background: var(--bg); }
.conditions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
.condition-item { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background-color: var(--card-bg); border-radius: 12px; border: 1px solid var(--border); transition: var(--transition); }
.condition-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(var(--secondary-rgb), .08); }
.condition-item svg { flex-shrink: 0; width: 28px; height: 28px; color: var(--primary); margin-top: 5px; }
.condition-item div { text-align: left; }
.condition-item strong { font-weight: 600; color: var(--text); font-size: 1.1rem; }
.condition-item p { margin: 5px 0 0 0; color: var(--light-text); font-size: 0.95rem; }
#unique-journeys-therapy { background-color: var(--bg); }
#unique-journeys-therapy .journey-subsection { background: var(--card-bg); padding: 40px; border-radius: 16px; margin-bottom: 30px; border: 1px solid var(--border); box-shadow: 0 4px 15px rgba(0,0,0,.04); }
#unique-journeys-therapy h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; color: var(--primary); margin-top: 0; margin-bottom: 15px; }
#unique-journeys-therapy p { font-size: 1.05rem; line-height: 1.8; }
#how-it-works ol { max-width: 850px; margin: 0 auto; counter-reset: step; padding-left: 0; list-style: none; }
#how-it-works li { position: relative; padding: 30px 30px 30px 100px; margin-bottom: 30px; font-size: 1.05rem; background: var(--card-bg); border-radius: 16px; border: 1px solid var(--border); line-height: 1.8; box-shadow: 0 4px 12px rgba(0,0,0,.03); transition: var(--transition); }
#how-it-works li:hover { transform: scale(1.02); }
#how-it-works li::before { counter-increment: step; content: counter(step); position: absolute; left: 30px; top: 50%; transform: translateY(-50%); width: 55px; height: 55px; background: linear-gradient(135deg,var(--primary),var(--secondary)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.6rem; font-family: 'Space Grotesk', sans-serif; }
#how-it-works li strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-size: 1.25rem; }
#faq .faq-item { margin-bottom: 15px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.03); }
#faq .faq-question { padding: 20px 25px; background: var(--card-bg); font-weight: 600; font-family: 'Inter', sans-serif; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); color: var(--text); }
#faq .faq-question:hover { background-color: var(--bg); }
#faq .faq-question::after { content: '+'; font-size: 1.8rem; color: var(--primary); transition: transform .3s ease; }
#faq .faq-question.active::after { transform: rotate(45deg); }
#faq .faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height .4s ease,padding .4s ease; background: var(--card-bg); }
#faq .faq-answer.show { max-height: 600px; }
#faq .faq-answer p { padding: 25px 0; }
#contact { background-color: var(--bg); }
.contact-container { max-width: 800px; margin: 0 auto; }
.form-tabs { display: flex; border-bottom: 1px solid var(--patient-border); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-button { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; padding: 1rem 1.25rem; cursor: pointer; color: var(--patient-light-text); border: 0; background: 0 0; border-bottom: 3px solid transparent; margin-bottom: -1px; transition: all .3s ease; }
.tab-button.active { color: var(--primary); border-bottom-color: var(--primary); }
.contact-form { display: none; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form.active { display: grid; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field.full-width { grid-column: 1 / -1; }
.form-field label { font-weight: 500; }
.form-field input, .form-field textarea { width: 100%; padding: 12px 15px; border-radius: 12px; border: 1px solid var(--patient-border); background-color: var(--patient-card-bg); font-family: 'Inter', sans-serif; font-size: 1rem; }
.form-field input:focus, .form-field textarea:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--patient-primary-rgb),.2); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit-button { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.submit-btn { background: var(--primary); color: #fff; padding: 12px 30px; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); }
.submit-btn:hover { background-color: var(--patient-secondary-hex); transform: translateY(-2px); }
footer { padding: 60px 20px 30px; text-align: center; background: #E0E0E0; color: var(--patient-text); position: relative; border-top: 3px solid var(--primary); }
footer .footer-links { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; gap: 15px 25px; }
footer a { color: var(--primary); text-decoration: none; font-weight: 500; }
footer a:hover { text-decoration: underline; }
@keyframes gradientBG { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@media (max-width:768px){ header .container { flex-direction: column; align-items: center; } nav { justify-content: center; width: 100%; margin-top: 15px; } .logo { margin-bottom: 0; } .contact-form { grid-template-columns: 1fr; } .form-field.full-width { grid-column: auto; } #how-it-works li { padding: 20px 20px 20px 85px; } #how-it-works li::before { left: 20px; width: 50px; height: 50px; } }
@media (max-width:480px){ .tab-button { font-size: 1rem; padding: 0.8rem 1rem; } #how-it-works li { padding: 20px; text-align: center; } #how-it-works li::before { display: none; } }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: -999; }
.skip-link:focus { left: 10px; top: 10px; width: auto; height: auto; overflow: auto; z-index: 1001; padding: 10px; background: white; border: 1px solid black; }