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

        :root {
            --beige-light: #F9F7F4;
            --beige: #F0EBE3;
            --beige-dark: #E5DDD4;
            --olive-light: #C4B5A0;
            --olive: #9B8B75;
            --olive-dark: #6B5D4F;
            --text: #4A4A4A;
            --text-light: #7A7A7A;
            --white: #FFFFFF;
            --gold: #B89968;
            --gold-light: #D4B88B;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text);
            background: var(--beige-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 400;
            line-height: 1.2;
        }

        /* Background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(-45deg, #F9F7F4, #F0EBE3, #E8E4DC, #F5F2ED);
            background-size: 400% 400%;
            animation: gradientFlow 20s ease infinite;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .bg-particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(184, 153, 104, 0.1) 0%, transparent 70%);
            animation: float 25s infinite ease-in-out;
        }

        .bg-particle:nth-child(1) { width: 350px; height: 350px; top: 10%; left: 10%; animation-delay: 0s; }
        .bg-particle:nth-child(2) { width: 450px; height: 450px; top: 60%; left: 80%; animation-delay: -8s; }
        .bg-particle:nth-child(3) { width: 280px; height: 280px; top: 40%; left: 60%; animation-delay: -15s; }
        .bg-particle:nth-child(4) { width: 400px; height: 400px; top: 80%; left: 20%; animation-delay: -5s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            25% { transform: translate(30px, -30px) scale(1.1); opacity: 0.5; }
            50% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.4; }
            75% { transform: translate(20px, 30px) scale(1.05); opacity: 0.35; }
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(249, 247, 244, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            padding: 16px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .logo {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 26px;
            color: var(--olive-dark);
            font-weight: 500;
            letter-spacing: 1px;
            text-decoration: none;
        }

        .logo span {
            color: var(--gold);
            font-weight: 600;
        }

        .logo .logo-credentials {
            color: var(--text-light);
            font-weight: 400;
            font-size: 12px;
            letter-spacing: 0.3px;
            font-style: italic;
            text-transform: none;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 13px;
            font-weight: 400;
            transition: color 0.3s;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--olive-dark);
            color: var(--white) !important;
            padding: 10px 20px;
            border-radius: 25px;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--gold);
            color: var(--white);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--olive-dark);
        }

        /* Buttons */
        .btn {
            padding: 16px 36px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            text-transform: uppercase;
            border-radius: 30px;
        }

        .btn-primary {
            background: var(--olive-dark);
            color: var(--white);
            border: 2px solid var(--olive-dark);
        }

        .btn-primary:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(107, 93, 79, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--olive-dark);
            border: 2px solid var(--olive-dark);
        }

        .btn-secondary:hover {
            background: var(--olive-dark);
            color: var(--white);
        }

        .btn-large {
            padding: 18px 42px;
            font-size: 15px;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(196,181,160,0.25) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 30s infinite ease-in-out;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(184, 153, 104, 0.15);
            color: var(--gold);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-doctor {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 24px;
            color: var(--olive-dark);
            margin-bottom: 22px;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        .hero-doctor .hero-credentials {
            color: var(--gold);
            font-style: italic;
            font-weight: 400;
        }

        .hero-doctor .hero-name {
            font-weight: 600;
        }

        .hero-content h1 {
            font-size: 54px;
            color: var(--olive-dark);
            margin-bottom: 20px;
            font-weight: 300;
            line-height: 1.08;
        }

        .hero-content h1 span {
            font-style: italic;
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 17px;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.8;
            font-weight: 300;
            max-width: 540px;
        }

        .hero-values {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 35px;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--olive-dark);
            background: rgba(255,255,255,0.7);
            padding: 8px 14px;
            border-radius: 20px;
            border: 1px solid var(--beige-dark);
        }

        .value-item::before {
            content: '✦';
            color: var(--gold);
            font-size: 14px;
        }

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

        .hero-image {
            position: relative;
            max-width: 300px;
            width: 100%;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            background: linear-gradient(135deg, var(--beige-dark) 0%, var(--olive-light) 100%);
            display: flex;
            flex-direction: column;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            position: relative;
            z-index: 2;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(107,93,79,0.2) 100%);
            z-index: 3;
            pointer-events: none;
        }

        .hero-experience {
            position: relative;
            background: var(--olive-dark);
            padding: 14px 20px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 12px;
            z-index: 4;
        }

        .hero-experience strong {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 28px;
            color: var(--gold-light);
            font-weight: 500;
            line-height: 1;
        }

        .hero-experience span {
            font-size: 12px;
            color: var(--beige-light);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Sections common */
        section {
            padding: 100px 5%;
            position: relative;
        }

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

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-block;
            color: var(--gold);
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 44px;
            color: var(--olive-dark);
            margin-bottom: 18px;
            font-weight: 300;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
        }

        /* Issues */
        .issues {
            background: var(--white);
        }

        .issues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .issue-card {
            background: var(--beige-light);
            padding: 35px 28px;
            border-radius: 18px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .issue-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: var(--beige-dark);
            background: var(--white);
        }

        .issue-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(184, 153, 104, 0.12);
            border-radius: 50%;
            font-size: 24px;
        }

        .issue-card h4 {
            font-size: 20px;
            color: var(--olive-dark);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .issue-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Benefits */
        .benefits {
            background: var(--beige-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            align-items: center;
        }

        .benefits-image {
            position: relative;
            height: 520px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }

        .benefits-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .benefits-list {
            display: grid;
            gap: 22px;
        }

        .benefit-item {
            display: flex;
            gap: 18px;
            padding: 25px;
            background: var(--white);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

        .benefit-number {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: rgba(184, 153, 104, 0.15);
            color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 20px;
            font-weight: 500;
        }

        .benefit-item h4 {
            font-size: 20px;
            color: var(--olive-dark);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .benefit-item p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Approach */
        .approach {
            background: var(--white);
        }

        .approach-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 18px;
            color: var(--text);
            line-height: 1.9;
        }

        .methods-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .method-card {
            background: var(--beige-light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .method-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--beige-dark);
        }

        .method-image {
            height: 180px;
            overflow: hidden;
        }

        .method-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .method-card:hover .method-image img {
            transform: scale(1.05);
        }

        .method-content {
            padding: 28px;
        }

        .method-content h4 {
            font-size: 21px;
            color: var(--olive-dark);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .method-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* About / Trust */
        .about {
            background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .about-photo {
            position: relative;
            height: 560px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .about-content h3 {
            font-size: 34px;
            color: var(--olive-dark);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .about-content > p {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 18px;
            line-height: 1.8;
        }

        .about-credentials {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 28px;
        }

        .credential-item {
            padding: 18px;
            background: var(--white);
            border-radius: 12px;
            border-left: 3px solid var(--gold);
            transition: all 0.3s ease;
        }

        .credential-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
        }

        .credential-item strong {
            display: block;
            color: var(--olive-dark);
            margin-bottom: 5px;
            font-size: 17px;
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 500;
        }

        .credential-item span {
            font-size: 13px;
            color: var(--text-light);
        }

        /* Memberships */
        .memberships {
            background: var(--white);
            padding: 60px 5%;
        }

        .memberships-track {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .membership-badge {
            padding: 14px 24px;
            background: var(--beige-light);
            border-radius: 30px;
            font-size: 13px;
            color: var(--olive-dark);
            border: 1px solid var(--beige-dark);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .membership-badge:hover {
            background: var(--olive-dark);
            color: var(--white);
            border-color: var(--olive-dark);
        }

        /* Testimonials */
        .testimonials {
            background: var(--beige-light);
        }

        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.6s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 40px;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
        }

        .testimonial-quote {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 24px;
            color: var(--text);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 28px;
            font-weight: 300;
        }

        .testimonial-author {
            font-size: 16px;
            color: var(--olive-dark);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .testimonial-info {
            font-size: 14px;
            color: var(--text-light);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 35px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--beige-dark);
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .testimonial-dot.active {
            background: var(--gold);
            width: 30px;
            border-radius: 6px;
        }

        /* CTA / Format */
        .format {
            background: var(--white);
        }

        .format-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .format-card {
            background: var(--beige-light);
            padding: 45px 35px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .format-card.featured {
            background: var(--olive-dark);
            color: var(--white);
            transform: scale(1.02);
        }

        .format-card.featured h4,
        .format-card.featured .format-price,
        .format-card.featured .format-badge {
            color: var(--white);
        }

        .format-card.featured p {
            color: rgba(255,255,255,0.85);
        }

        .format-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: var(--beige-dark);
        }

        .format-badge {
            display: inline-block;
            color: var(--gold);
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .format-card h4 {
            font-size: 24px;
            color: var(--olive-dark);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .format-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 22px;
        }

        .format-price {
            font-size: 32px;
            color: var(--olive-dark);
            font-weight: 500;
            font-family: Georgia, 'Times New Roman', serif;
            margin-bottom: 25px;
        }

        .format-note {
            font-size: 12px;
            color: var(--text-light);
            opacity: 0.8;
        }

        /* Contact */
        .contact {
            background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 34px;
            color: var(--olive-dark);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .contact-info > p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-item .icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(184, 153, 104, 0.12);
            border-radius: 12px;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-item div strong {
            display: block;
            color: var(--olive-dark);
            margin-bottom: 4px;
            font-size: 15px;
        }

        .contact-item div span,
        .contact-item div a {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            text-decoration: none;
        }

        .contact-item div a:hover {
            color: var(--gold);
        }

        .contact-form {
            background: var(--white);
            padding: 45px;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .contact-form h4 {
            font-size: 24px;
            color: var(--olive-dark);
            margin-bottom: 30px;
            text-align: center;
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--olive-dark);
            font-size: 13px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--beige-dark);
            border-radius: 12px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 15px;
            background: var(--beige-light);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(184, 153, 104, 0.1);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

        .form-privacy {
            margin-top: 18px;
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: var(--olive-dark);
            color: var(--beige);
            padding: 50px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-brand .footer-name {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 24px;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 16px;
            color: var(--gold);
            margin-bottom: 18px;
            font-weight: 500;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--beige);
            text-decoration: none;
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom p {
            font-size: 13px;
            opacity: 0.6;
        }

        /* Mobile menu overlay */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(249, 247, 244, 0.98);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 25px;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            font-size: 20px;
            color: var(--olive-dark);
            text-decoration: none;
            font-family: Georgia, 'Times New Roman', serif;
        }

        .mobile-nav .close-btn {
            position: absolute;
            top: 20px;
            right: 5%;
            font-size: 32px;
            background: none;
            border: none;
            color: var(--olive-dark);
            cursor: pointer;
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-content {
                text-align: center;
                order: 2;
            }

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

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-values {
                justify-content: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                height: auto;
                order: 1;
                max-width: 300px;
                margin: 0 auto;
                width: 100%;
            }


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

            .about-photo {
                height: 450px;
                max-width: 500px;
                margin: 0 auto;
                width: 100%;
            }

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

            .benefits-image {
                height: 400px;
                max-width: 600px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .issues-grid,
            .methods-grid,
            .format-grid,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 600px) {
            .hero {
                padding: 120px 5% 60px;
            }

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

            .hero-doctor {
                font-size: 20px;
            }

            .hero-image {
                height: auto;
            }


            .hero-experience {
                padding: 12px 16px;
            }

            .hero-experience strong {
                font-size: 26px;
            }

            section {
                padding: 70px 5%;
            }

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

            .about-credentials {
                grid-template-columns: 1fr;
            }

            .format-card.featured {
                transform: none;
            }

            .contact-form {
                padding: 30px 22px;
            }

            .testimonial-card {
                padding: 28px;
            }

            .testimonial-quote {
                font-size: 19px;
            }

            .btn {
                padding: 14px 28px;
                font-size: 13px;
                width: 100%;
                text-align: center;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
    

/* === Мультистраничная навигация === */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
body.inner-page section:first-of-type { padding-top: 130px; }

/* === CTA-блок (главная) === */
.cta-band {
    background: var(--olive-dark);
    color: var(--white);
    text-align: center;
    padding: 75px 5%;
}
.cta-band h3 { color: var(--white); font-size: 32px; margin-bottom: 14px; font-weight: 300; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 16px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--gold); border-color: var(--gold); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--olive-dark); border-color: var(--white); }

/* === Шапка страницы (внутренние) === */
.page-intro { padding: 130px 5% 40px; text-align: center; }
.page-intro .section-label { margin-bottom: 12px; }
.page-intro h1 { font-size: 40px; color: var(--olive-dark); font-weight: 300; margin-bottom: 14px; }
.page-intro p { color: var(--text-light); max-width: 640px; margin: 0 auto; font-size: 16px; line-height: 1.8; }