@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
    --navy: #0a1628;
    --deep: #0d1f3c;
    --blue: #1a3a6b;
    --accent: #ef5e30;
    --gold: #ef5e30;
    --cream: #f9f6f0;
    --white: #ffffff;
    --text: #1e2a3a;
    --muted: #6b7a8d;
    --border: rgba(197, 145, 58, 0.2);
    --radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Rubik", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

button:focus {
    outline: none;
}

p{
    font-weight: 400;
}

.custom-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
}

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(197, 145, 58, 0.3);
}
.topbar-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}
.topbar .accreditations {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gold);
}
.badge {
    border: 1px solid var(--border);
    border-color: rgba(232, 184, 75, 0.5);
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.72rem;
    color: var(--gold);
}

.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(26, 58, 107, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 20% 60%, rgba(197, 145, 58, 0.08) 0%, transparent 60%);
    z-index: 1;
}
.hero-grid {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    min-height: 640px;
    position: relative;
    z-index: 2;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 0;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.hero-eyebrow span {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.eyebrow-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.hero h1 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-content h2{
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    font-weight: 400;
}
.hero-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
.hero-bullet::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition:
        border-color 0.2s,
        color 0.2s;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-form-panel {
    background: var(--white);
    padding: 44px 36px;
    display: flex;
    flex-direction: column; 
    position: relative;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.6s ease;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-form-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.hero-form-panel .gform_wrapper .gform_required_legend, .hero-form-panel .gform_wrapper .gform_description{
    display: none;
}

.hero-form-panel .gform_wrapper .gform_fields .gfield_label{
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.hero-form-panel .gform_wrapper.gravity-theme .gfield textarea.small, .hero-form-panel .gform_wrapper.gravity-theme .gfield input.large, .hero-form-panel .gform_wrapper.gravity-theme .gfield select.large{
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dde2ea !important;
    border-radius: var(--radius) !important;
    font-size: 0.88rem !important;
    color: var(--text) !important;
    background: #fafbfc !important;
    transition: border-color 0.2s !important;
    outline: none !important;
    height: 50px;
}

.hero-form-panel .gform_wrapper.gravity-theme .ginput_container_date input{
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dde2ea !important;
    border-radius: var(--radius) !important;
    font-size: 0.88rem !important;
    color: var(--text) !important;
    background: #fafbfc !important;
    transition: border-color 0.2s !important;
    outline: none !important;
    height: 50px;
}

.hero-form-panel .gform_wrapper #field_1_89 .ginput_container{
    display: flex;
    align-items: start;
    gap: 15px;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-subtitle {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.form-field {
    margin-bottom: 14px;
}
.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dde2ea;
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: var(--text);
    background: #fafbfc;
    transition: border-color 0.2s;
    outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: var(--white);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 13px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
}
.form-submit:hover {
    background: var(--blue);
}
.form-consent {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.5;
}

.stats-bar {
    background: #2a344f;
    padding: 0;
}
.stats-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    divide-x: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item {
    padding: 32px 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.section-spacing {
    padding: 96px 0;
}
.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}
.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-eyebrow::after {
    content: "";
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}
h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 56px;
    font-weight: 400;
}

.why-section {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.94rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 400;
}
.why-item:first-child {
    padding-top: 0;
}
.why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}
.why-aside {
    background: var(--navy);
    border-radius: 8px;
    padding: 48px 40px;
    position: sticky;
    top: 100px;
}
.why-aside h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}
.why-aside p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 32px;
}
.aside-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.aside-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.aside-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(197, 145, 58, 0.15);
    border: 1px solid rgba(197, 145, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.aside-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
    margin-bottom: 2px;
}
.aside-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.services-section {
    background: var(--cream);
}
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0ddd6;
    margin-bottom: 48px; 
    flex-wrap: wrap;
}
.tab-btn {
    padding: 14px 28px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    transition:
        color 0.2s,
        border-color 0.2s;
    letter-spacing: 0.03em;
}
.tab-btn.active {
    color: var(--navy);
    border-bottom-color: var(--accent);
    font-weight: 600;
}
.tab-btn:hover {
    color: var(--navy);
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.tab-main h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 600;
}
.tab-main p {
    font-size: 0.96rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
}
.sub-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    margin-top: 28px;
}
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 400;
}
.check-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.tab-visual {
    background: var(--navy);
    border-radius: 8px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.tab-visual::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(197, 145, 58, 0.06);
    border: 1px solid rgba(197, 145, 58, 0.15);
}
.visual-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 20px;
}
.visual-card-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}
.visual-card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-weight: 400;
}

.pediatric-section {
    background: var(--white);
}
.ped-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}
.ped-banner {
    background: linear-gradient(145deg, var(--navy), var(--blue));
    border-radius: 8px;
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
}
.ped-banner::after {
    content: "♥";
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(197, 145, 58, 0.07);
}
.ped-banner h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}
.ped-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.ped-highlight {
    background: rgba(197, 145, 58, 0.12);
    border: 1px solid rgba(197, 145, 58, 0.25);
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 400;
}
.ped-content h3 {
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.ped-content p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
.conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}
.condition-tag {
    background: #f0ede6;
    border-left: 3px solid var(--accent);
    padding: 10px 14px;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}

.journey-section {
    background: var(--cream);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 8px;
}
.step-card {
    background: var(--white);
    padding: 36px 28px;
    position: relative;
    border-bottom: 3px solid transparent;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.step-card:hover {
    border-bottom-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1;
}
.step-num {
    font-size: 3rem;
    font-weight: 600;
    color: rgba(197, 145, 58, 0.18);
    line-height: 1;
    margin-bottom: 20px;
}
.step-card h4 {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}
.steps-row2 {
    margin-top: 2px;
    grid-template-columns: repeat(4, 1fr);
}

.doctors-section {
    background: var(--navy);
}
.doctors-section h2 {
    color: var(--white);
}
.doctors-section .section-lead {
    color: rgba(255, 255, 255, 0.6);
}
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.doctor-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.doctor-card:hover {
    border-color: rgba(197, 145, 58, 0.4);
    background: rgba(255, 255, 255, 0.07);
}
.doctor-img-placeholder {
    height: 220px;
    background: linear-gradient(145deg, rgba(26, 58, 107, 0.8), rgba(10, 22, 40, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(197, 145, 58, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.doctor-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.doctor-info {
    padding: 24px 20px;
}
.doctor-name {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 6px;
}
.doctor-creds {
    font-size: 0.75rem;
    color: var(--gold);
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
}
.doctor-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-style: italic;
}

.mdt-section {
    background: var(--white);
}
.mdt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mdt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.mdt-tag {
    background: #f0ede6;
    border: 1px solid #e0ddd6;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}
.mdt-visual {
    background: var(--cream);
    border-radius: 8px;
    padding: 48px;
    border: 1px solid #e0ddd6;
}
.mdt-visual h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 28px;
}
.referral-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e2db;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 400;
}
.referral-item:last-child {
    border-bottom: none;
}
.ref-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.complex-section {
    background: var(--cream);
}
.complex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 8px;
}
.complex-card {
    background: var(--white);
    padding: 32px 26px;
    border-top: 3px solid transparent;
    transition: border-color 0.2s;
}
.complex-card:hover {
    border-top-color: var(--accent);
}
.complex-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.complex-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
}

.faq-section {
    background: var(--white);
}
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}
.faq-sidebar h2 {
    margin-bottom: 16px;
}
.faq-sidebar p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid #e8e5de;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q .faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--accent);
    transition:
        transform 0.2s,
        background 0.2s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--white);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
}
.faq-item.open .faq-a {
    max-height: 200px;
}
.faq-a-inner {
    padding-bottom: 20px;
    font-weight: 400;
}

.cta-section {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(197, 145, 58, 0.07) 0%, transparent 70%);
}
.cta-section h2 {
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-bar {
    background: var(--deep);
    padding: 48px 0;
    border-top: 1px solid rgba(197, 145, 58, 0.2);
}
.contact-grid {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.contact-block h4 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 700;
}
.contact-block p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}
.contact-block a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: block;
}
.contact-block a:hover {
    color: var(--gold);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .custom-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .custom-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .custom-spacing {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .steps-grid,
    .steps-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .complex-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .mdt-grid,
    .why-grid,
    .ped-grid {
        grid-template-columns: 1fr;
    }
    .tab-panel.active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .hero-grid{
        padding: 0;
    }
    .hero-desc{
        margin-bottom: 20px;
    }
    .hero-content{
        padding: 30px 15px;
    }
    .hero-eyebrow{
        margin-bottom: 15px;
    }
    .hero h1{
        margin-bottom: 10px;
    }
    .hero-bullets{
        margin-bottom: 10px;
    }
    .btn-primary{
        padding: 6px 20px;
    }
    .btn-outline{
        padding: 6px 20px;
    }
    .hero-form-panel{
        padding: 20px;
    }
    .stat-num{
        font-size: 1.8rem;
    }
    .why-grid{
        gap: 20px;
    }
    .why-aside{
        padding: 25px;
    }
    .tab-panel.active{
        gap: 20px;
    }
    .tab-visual{
        padding: 25px;
    }
    .ped-banner{
        padding: 25px;
    }
    .ped-grid{
        gap: 20px;
    }
    .section-lead{
        margin-bottom: 20px;
    }
    .mdt-grid{
        gap: 20px;
    }
    .mdt-visual{
        padding: 25px;
    }
    .faq-layout{
        gap: 20px;
    }
    .cta-section{
        padding: 30px 0px;
    }
}

@media (max-width: 640px) {
    .container,
    .topbar-inner,
    .contact-grid {
        padding: 0 20px;
    }
    .stats-inner {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    .complex-grid {
        grid-template-columns: 1fr;
    }
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up {
    animation: fadeUp 0.7s ease both;
}
.delay-1 {
    animation-delay: 0.15s;
}
.delay-2 {
    animation-delay: 0.3s;
}
.delay-3 {
    animation-delay: 0.45s;
}
