* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #102528;
    background:
        radial-gradient(circle at top left, rgba(15, 111, 120, 0.12), transparent 34rem),
        linear-gradient(180deg, #f7fffd 0%, #ffffff 42%, #f4fbfa 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 88px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 255, 253, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 111, 120, 0.12);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 35% 30%, #ffffff 0 10%, transparent 11%),
        linear-gradient(135deg, var(--primary), #14a7a4);
    box-shadow: 0 14px 34px rgba(15, 111, 120, 0.25);
}

.brand-mark span {
    width: 22px;
    height: 22px;
    border: 3px solid #ffffff;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-25deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: #577275;
    font-size: 0.78rem;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    color: #345457;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 12px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
    background: rgba(15, 111, 120, 0.08);
}

.main-nav .nav-cta {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 14px 28px rgba(15, 111, 120, 0.22);
}

.main-nav .nav-cta:hover {
    color: #ffffff;
    background: #0b5d65;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    cursor: pointer;
    padding: 11px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    margin: 5px 0;
    transition: 0.2s ease;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 184, 77, 0.55);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 77, 0.55);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 184, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 77, 0);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -140px;
    background: radial-gradient(circle, rgba(20, 167, 164, 0.18), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.7rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    max-width: 760px;
}

.hero-text {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: 1.1rem;
    color: #476468;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #14a7a4);
    box-shadow: 0 16px 34px rgba(15, 111, 120, 0.24);
}

.btn-soft {
    color: var(--primary);
    background: #ffffff;
    border-color: rgba(15, 111, 120, 0.16);
    box-shadow: 0 12px 24px rgba(15, 111, 120, 0.08);
}

.btn-light {
    background: #ffffff;
    color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
    max-width: 650px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 111, 120, 0.12);
    box-shadow: 0 14px 34px rgba(15, 111, 120, 0.07);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1.1;
}

.hero-stats span {
    display: block;
    color: #60797c;
    font-size: 0.86rem;
    margin-top: 6px;
}

.hero-visual {
    min-height: 560px;
    display: grid;
    place-items: center;
}

.movement-card {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 0.86;
    border-radius: 44px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 245, 0.88)),
        radial-gradient(circle at 70% 18%, rgba(255, 184, 77, 0.22), transparent 34%);
    border: 1px solid rgba(15, 111, 120, 0.12);
    box-shadow: 0 28px 70px rgba(15, 111, 120, 0.18);
    overflow: hidden;
}

.movement-card::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 36px;
    border: 1px dashed rgba(15, 111, 120, 0.28);
}

.orbit {
    position: absolute;
    border: 2px solid rgba(15, 111, 120, 0.1);
    border-radius: 50%;
}

.orbit-one {
    width: 360px;
    height: 360px;
    left: 40px;
    top: 80px;
}

.orbit-two {
    width: 240px;
    height: 240px;
    right: -50px;
    bottom: 52px;
}

.body-line {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 180px;
    height: 300px;
    transform: translate(-50%, -50%);
}

.body-line span {
    position: absolute;
    display: block;
    background: var(--primary);
}

.head {
    width: 54px;
    height: 54px;
    left: 63px;
    top: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #14a7a4) !important;
    box-shadow: 0 12px 28px rgba(15, 111, 120, 0.22);
}

.spine {
    width: 14px;
    height: 122px;
    left: 83px;
    top: 62px;
    border-radius: 999px;
}

.arm,
.leg {
    height: 12px;
    border-radius: 999px;
    transform-origin: center;
}

.arm-left {
    width: 115px;
    left: -2px;
    top: 88px;
    transform: rotate(-30deg);
}

.arm-right {
    width: 115px;
    right: -2px;
    top: 88px;
    transform: rotate(30deg);
}

.leg-left {
    width: 120px;
    left: 6px;
    top: 194px;
    transform: rotate(42deg);
}

.leg-right {
    width: 120px;
    right: 6px;
    top: 194px;
    transform: rotate(-42deg);
}

.floating-note {
    position: absolute;
    width: 180px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 111, 120, 0.12);
    box-shadow: 0 16px 35px rgba(15, 111, 120, 0.14);
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note strong {
    font-size: 0.93rem;
    color: #153336;
}

.floating-note span {
    font-size: 0.8rem;
    color: #688184;
    margin-top: 4px;
}

.note-one {
    top: 54px;
    left: -22px;
}

.note-two {
    right: -26px;
    top: 230px;
}

.note-three {
    left: 42px;
    bottom: 54px;
}

.trust-strip {
    padding: 20px 0;
    background: var(--primary);
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
}

.trust-grid span {
    font-weight: 800;
    font-size: 0.9rem;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.showcase-content h2,
.faq-intro h2,
.contact-card h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.section-heading p:not(.eyebrow),
.about-content p,
.showcase-content p,
.faq-intro p,
.contact-card p {
    color: #587276;
    margin-top: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.process-card,
.testimonial-card {
    border-radius: 30px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 111, 120, 0.1);
    box-shadow: 0 18px 45px rgba(15, 111, 120, 0.08);
    transition: 0.22s ease;
}

.service-card:hover,
.process-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 111, 120, 0.13);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--secondary);
    border-radius: 20px;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.service-card h3,
.process-card h3 {
    margin: 0;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.service-card p,
.process-card p,
.testimonial-card p {
    color: #5c7477;
    margin: 12px 0 0;
}

.about-section {
    background:
        linear-gradient(135deg, rgba(232, 247, 245, 0.85), rgba(255, 255, 255, 0.95));
}

.about-grid,
.showcase-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.clinic-card {
    border-radius: 38px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 111, 120, 0.16);
    border: 1px solid rgba(15, 111, 120, 0.12);
}

.clinic-top {
    display: flex;
    gap: 8px;
    padding: 0 0 16px;
}

.clinic-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(15, 111, 120, 0.22);
}

.clinic-body {
    min-height: 330px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 184, 77, 0.25), transparent 25%),
        linear-gradient(135deg, var(--primary), #14a7a4);
    padding: 26px;
    display: grid;
    align-content: end;
    gap: 20px;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 140px;
}

.mini-chart span {
    flex: 1;
    border-radius: 999px 999px 8px 8px;
    background: rgba(255, 255, 255, 0.72);
}

.progress-panel {
    background: rgba(255, 255, 255, 0.93);
    border-radius: 24px;
    padding: 18px;
}

.progress-panel strong {
    display: block;
    color: #122c2f;
}

.progress-panel p {
    margin: 6px 0 14px;
    color: #5f777a;
    font-size: 0.9rem;
}

.progress-line {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 111, 120, 0.13);
}

.progress-line span {
    display: block;
    width: 76%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 111, 120, 0.1);
    font-weight: 750;
}

.check-list span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.82rem;
}

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
}

.process-card {
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    background: rgba(15, 111, 120, 0.08);
}

.process-card span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 17px;
    color: var(--primary);
    background: var(--secondary);
    font-weight: 900;
    margin-bottom: 24px;
}

.showcase-section {
    background:
        radial-gradient(circle at 10% 30%, rgba(255, 184, 77, 0.18), transparent 28rem),
        #f7fffd;
}

.text-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 900;
}

.feature-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 28px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(15, 111, 120, 0.12);
    box-shadow: 0 22px 55px rgba(15, 111, 120, 0.11);
}

.feature-pill {
    min-height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 24px;
    color: #16383c;
    background:
        linear-gradient(135deg, rgba(232, 247, 245, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(15, 111, 120, 0.09);
    font-weight: 900;
}

.feature-pill:nth-child(2),
.feature-pill:nth-child(5) {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.24), rgba(255, 255, 255, 0.95));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stars {
    color: #d9901f;
    letter-spacing: 0.08em;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 22px;
    color: #172f32;
}

.testimonial-card span {
    color: #6f8587;
    font-size: 0.88rem;
    margin-top: 3px;
}

.faq-section {
    background: linear-gradient(180deg, #ffffff, #f4fbfa);
}

.faq-grid {
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(15, 111, 120, 0.12);
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 111, 120, 0.06);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: #183437;
    font-weight: 900;
}

.faq-item button span {
    color: var(--primary);
    font-size: 1.2rem;
    transition: 0.2s ease;
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: #5d7679;
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.contact-section {
    padding-top: 40px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.32), transparent 26rem),
        linear-gradient(135deg, var(--primary), #14a7a4);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 111, 120, 0.22);
}

.contact-card .eyebrow,
.contact-card p {
    color: rgba(255, 255, 255, 0.84);
}

.contact-card h2 {
    color: #ffffff;
}

.contact-details {
    display: grid;
    gap: 12px;
}

.contact-details a,
.contact-details div {
    display: block;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details span,
.contact-details strong {
    display: block;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.contact-details strong {
    color: #ffffff;
    word-break: break-word;
}

.contact-actions {
    grid-column: 1 / -1;
    margin-top: 0;
}

.site-footer {
    padding: 30px 0;
    color: #5e7578;
    background: #ffffff;
    border-top: 1px solid rgba(15, 111, 120, 0.1);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-grid p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    transition: 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .section-pad {
        padding: 70px 0;
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .movement-card {
        max-width: 430px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 26px;
        background: #ffffff;
        border: 1px solid rgba(15, 111, 120, 0.12);
        box-shadow: 0 24px 60px rgba(15, 111, 120, 0.2);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 70px;
    }

    .hero-stats,
    .trust-grid,
    .services-grid,
    .process-grid,
    .testimonials-grid,
    .feature-board {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 14vw, 4rem);
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .movement-card {
        aspect-ratio: 0.78;
        border-radius: 34px;
    }

    .floating-note {
        width: 155px;
        padding: 12px;
    }

    .note-one {
        left: 10px;
        top: 48px;
    }

    .note-two {
        right: 10px;
        top: 220px;
    }

    .note-three {
        left: 24px;
        bottom: 44px;
    }

    .body-line {
        transform: translate(-50%, -50%) scale(0.82);
    }

    .contact-card {
        border-radius: 30px;
    }
}

@media (max-width: 440px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand-text small {
        display: none;
    }

    .hero-stats div,
    .service-card,
    .process-card,
    .testimonial-card {
        border-radius: 24px;
    }

    .whatsapp-float {
        left: 16px;
        right: 16px;
    }

    .whatsapp-float span {
        width: 100%;
        text-align: center;
    }
}