@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0E2F4E;
    --navy-dark: #0b2540;
    --teal: #1A6FA0;
    --teal-dark: #155d87;
    --teal-light: #EEF5F9;
    --gold: #C9A96E;
    --gold-light: #F5EDD8;
    --white: #FFFFFF;
    --off-white: #F9F6F1;
    --light-gray: #F0F2F5;
    --border-gray: rgba(0, 55, 94, 0.12);
    --text-dark: #0E2F4E;
    --text-body: #4A6275;
    --text-muted: #718096;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BUTTONS ========== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--teal);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title span {
    color: var(--teal);
}

.section-padding {
    padding: 80px 0;
}

/* ========== HEADER / NAVBAR ========== */

.site-header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header-book {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.header-book:hover {
    background: #b8944f;
    transform: translateY(-1px);
    color: var(--white);
}

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV OVERLAY ===== */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(14, 47, 78, 0.96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    padding: 0 24px;
}

.mobile-nav-inner .header-phone,
.mobile-nav-inner .header-book {
    justify-content: center;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ========== HERO SECTION ========== */

.hero-section {
    background: var(--navy);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

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

.hero-content .section-label {
    color: var(--teal);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--teal);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.hero-buttons .btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.hero-trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
}

.hero-trust-badges .badge svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

/* ========== TRUST BAR ========== */

.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-gray);
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    padding: 16px;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: var(--border-gray);
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-number--small {
    font-size: 28px;
    line-height: 1.2;
}

.trust-number .star {
    color: var(--teal);
}

.trust-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== PAIN POINTS ========== */

.pain-points {
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pain-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.pain-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pain-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.pain-cta-box {
    margin-top: 48px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
}

.pain-cta-box h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.pain-cta-box p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== WHY CHOOSE US ========== */

.why-choose-us {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--teal);
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */

.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.step-card {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    color: var(--white);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ========== SURGEONS ========== */

.surgeons-section {
    background: var(--off-white);
}

.surgeons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.surgeon-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: var(--transition);
}

.surgeon-card:hover {
    box-shadow: var(--shadow-md);
}

.surgeon-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 3px solid var(--teal-light);
}

.surgeon-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.surgeon-info .surgeon-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: block;
}

.surgeon-info p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ========== OFFICE GALLERY ========== */

.gallery-section {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item--tall {
    grid-row: span 2;
}

/* ========== TESTIMONIALS ========== */

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #F5A623;
    fill: #F5A623;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 8px;
}

.testimonial-text.expanded::-webkit-scrollbar {
    width: 5px;
}

.testimonial-text.expanded::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.testimonial-text.expanded::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}

.read-more-toggle {
    background: none;
    border: none;
    color: var(--teal);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    font-family: var(--font-body);
    text-align: left;
    display: block;
}

.read-more-toggle:hover {
    color: var(--teal-dark);
}

.testimonial-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-google {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

/* ========== FAQ ========== */

.faq-section {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--teal);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ========== INSURANCE ========== */

.insurance-section {
    background: var(--white);
}

.insurance-box {
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 40px;
}

.insurance-box h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.insurance-box > p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 28px;
}

.insurance-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.insurance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.insurance-badge svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
}

/* ========== LOCATIONS ========== */

.locations-section {
    background: var(--off-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.location-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.location-map {
    width: 100%;
    height: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.location-card h3,
.location-card .location-address,
.location-card .location-hours,
.location-card .location-phone {
    margin-left: 36px;
    margin-right: 36px;
}

.location-card:hover {
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-top: 24px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 10px;
    line-height: 1.5;
}

.location-address a {
    color: var(--text-body);
}

.location-address a:hover {
    color: var(--teal);
}

.location-address svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.location-hours svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    background: var(--teal);
    padding: 12px 20px;
    border-radius: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.location-phone:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.location-phone svg {
    flex-shrink: 0;
}

/* ========== PRICING HIGHLIGHT ========== */

.pricing-highlight {
    background: var(--gold-light);
}

.pricing-card {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.pricing-card h2 {
    font-size: 32px;
    color: var(--navy);
    margin: 10px 0 16px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-includes {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 12px;
}

.pricing-note {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 28px;
}

/* ========== FINAL CTA ========== */

.final-cta {
    background: var(--navy);
    padding: 70px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta h2 span {
    color: var(--teal);
}

.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.final-cta-buttons .btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ========== FOOTER ========== */

.site-footer {
    background: #0E2F4E;
    padding: 24px 0;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.footer-link:hover {
    color: var(--teal);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2)::after {
        display: none;
    }

    .surgeon-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-section {
        padding: 50px 0 60px;
    }

    .hero-video-bg {
        display: none;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item::after {
        display: none;
    }

    .trust-number {
        font-size: 36px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .surgeons-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn-primary,
    .final-cta-buttons .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .site-footer .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .pain-cta-box {
        padding: 28px 20px;
    }

    .pain-cta-box h3 {
        font-size: 24px;
    }

    .insurance-box {
        padding: 28px 20px;
    }

    .insurance-badges {
        flex-direction: column;
    }

    .insurance-badge {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 50px 0;
    }

    .trust-bar {
        padding: 30px 0;
    }

    .hero-section {
        padding: 40px 0 50px;
    }

    .final-cta {
        padding: 50px 0;
    }
    .faq-question {
        padding: 15px;
    }

    .trust-item:nth-child(odd)::after {
        display: block;
        height: 60px;
        background: #E2E5EA;
        width: 2px;
    }
    .location-card h3, .location-card .location-address, .location-card .location-hours, .location-card .location-phone {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .trust-number {
        font-size: 30px;
    }

    .header-logo img {
        height: 40px;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-phone-number {
        display: none;
    }

    .surgeon-photo {
        width: 100px;
        height: 100px;
    }

    .step-card {
        padding: 28px 24px;
    }
}

@media (max-width: 375.98px) {
    .pain-cta-box .btn-primary {
        width: 100%;
    }
}
