@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --rose: #E5BABF;
    --blush: #FCF1EF;
    --sand: #E7D8C9;
    --mist: #CDD3D6;
    --slate: #5E616B;

    --white: #FFFFFF;
    --text: #2F3338;
    --muted: #74777F;
    --line: rgba(94, 97, 107, 0.16);

    --shadow: 0 18px 45px rgba(94, 97, 107, 0.1);
    --radius: 24px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--blush);
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
img {
    max-width: 100%;
    display: block;
}

.hc-header {
    position: relative;
    z-index: 999;
    background: rgba(252, 241, 239, 0.96);
    backdrop-filter: blur(14px);
}
.hc-topbar {
    background: var(--rose);
}
.hc-topbar-inner {
    max-width: 1320px;
    margin: auto;
    min-height: 42px;
    padding: 0 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.hc-contact,
.hc-social {
    display: flex;
    align-items: center;
    gap: 18px;
}
.hc-contact a {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.hc-contact i,
.hc-social i {
    color: var(--slate);
}
.hc-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.45);
    color: var(--text);
    font-size: 13px;
}
.hc-social a:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.hc-navbar {
    border-bottom: 1px solid var(--line);
}
.hc-nav-inner {
    max-width: 1320px;
    margin: auto;
    min-height: 84px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.hc-logo {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}
.hc-logo span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: var(--text);
}
.hc-logo small {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 700;
}
.hc-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}
.hc-menu a {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.hc-menu a:hover {
    color: var(--slate);
}
.hc-dropdown-parent {
    position: relative;
}
.hc-dropdown-parent > a {
    display: flex;
    align-items: center;
    gap: 7px;
}
.hc-dropdown-parent > a i {
    font-size: 11px;
    transition: var(--transition);
}
.hc-dropdown-parent:hover > a i {
    transform: rotate(180deg);
}
.hc-dropdown {
    position: absolute;
    top: calc(100% + 22px);
    left: 0;
    width: 330px;
    padding: 10px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 50;
}
.hc-dropdown-parent:hover .hc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hc-dropdown li {
    width: 100%;
}
.hc-dropdown a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.hc-dropdown a:hover {
    background: var(--blush);
    color: var(--slate);
}
.hc-mobile-dropdown button {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}
.hc-mobile-dropdown button i {
    transition: var(--transition);
}
.hc-mobile-dropdown.active button i {
    transform: rotate(180deg);
}
.hc-mobile-dropdown > div {
    display: none;
    padding: 12px 0 4px 16px;
}
.hc-mobile-dropdown.active > div {
    display: grid;
    gap: 12px;
}
.hc-mobile-dropdown > div a {
    font-size: 14px;
    color: var(--muted);
}
.hc-nav-btn,
.hc-mobile-btn {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(94, 97, 107, 0.18);
}
.hc-nav-btn:hover,
.hc-mobile-btn:hover {
    transform: translateY(-2px);
    background: var(--text);
}
.hc-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow);
}
.hc-mobile-menu {
    display: none;
    padding: 18px 28px 24px;
    border-top: 1px solid var(--line);
    background: var(--blush);
}
.hc-mobile-menu.active {
    display: grid;
    gap: 14px;
}
.hc-mobile-menu a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}
@media (max-width: 1100px) {
    .hc-menu,
    .hc-nav-btn {
        display: none;
    }
    .hc-menu-toggle {
        display: grid;
        place-items: center;
    }
    .hc-mobile-menu.active {
        display: grid;
    }
    .hc-mobile-menu {
        gap: 0;
    }
    .hc-mobile-menu > a,
    .hc-mobile-dropdown button {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        font-weight: 700;
        color: var(--text);
    }
    .hc-mobile-dropdown button i {
        transition: var(--transition);
    }
    .hc-mobile-dropdown.active button i {
        transform: rotate(180deg);
    }
    .hc-mobile-dropdown > div {
        display: none;
        padding: 12px 0 12px 18px;
        border-bottom: 1px solid var(--line);
    }
    .hc-mobile-dropdown.active > div {
        display: grid;
        gap: 12px;
    }
    .hc-mobile-dropdown > div a {
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
    }
    .hc-mobile-btn {
        margin-top: 14px;
        width: 100%;
        border-bottom: none !important;
    }
}
@media (max-width: 640px) {
    .hc-topbar-inner {
        padding: 10px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hc-contact {
        justify-content: flex-start;
    }
    .hc-contact span {
        display: none;
    }
    .hc-contact a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        justify-content: center;
        background: rgba(255,255,255,0.45);
    }
    .hc-social {
        justify-content: flex-end;
    }
    .hc-nav-inner {
        min-height: 76px;
        padding: 0 18px;
        gap: 14px;
    }
    .hc-logo {
        min-width: auto;
    }
    .hc-logo span {
        font-size: 25px;
    }
    .hc-logo small {
        font-size: 8px;
        letter-spacing: 1.2px;
    }
    .hc-menu-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .hc-mobile-menu {
        padding: 14px 18px 20px;
    }
    .hc-mobile-menu > a,
    .hc-mobile-dropdown button {
        padding: 13px 0;
        font-size: 14px;
    }
    .hc-mobile-dropdown > div {
        padding-left: 14px;
    }
}

.hc-banner {
    position: relative;
    overflow: hidden;
    background: var(--blush);
}
.hc-banner-slider {
    position: relative;
    width: 100%;
    height: clamp(260px, 65vh, 650px);
}
.hc-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}
.hc-banner-slide.active {
    opacity: 1;
    visibility: visible;
}
.hc-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.desktop-banner{
    display:block;
}
.mobile-banner{
    display:none;
}
.hc-banner-dots {
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}
.hc-banner-dots button{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.7);
    transition:.3s;
}
.hc-banner-dots button.active{
    width:34px;
    border-radius:999px;
    background:var(--rose);
}
@media(max-width:768px){
    .hc-banner-slider{
        height:360px;
    }
}
@media(max-width:640px){
    .hc-banner-slider{
        height:auto;
        aspect-ratio:430/520;
    }
    .desktop-banner{
        display:none;
    }
    .mobile-banner{
        display:block;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
    }
    .hc-banner-dots{
        bottom:16px;
    }
}

.hc-holistic {
    padding: 50px 28px;
    background: var(--white);
}
.hc-container {
    max-width: 1320px;
    margin: auto;
}
.hc-section-heading {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: center;
}
.hc-section-heading span {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.hc-section-heading h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 18px;
}
.hc-section-heading p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
}
.hc-care-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 26px;
    align-items: stretch;
}
.hc-care-intro {
    position: sticky;
    top: 110px;
    min-height: 560px;
    padding: 44px;
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            var(--rose),
            var(--sand)
        );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hc-care-intro > span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 18px;
}
.hc-care-intro h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 22px;
}
.hc-care-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(47, 51, 56, 0.78);
    margin-bottom: 32px;
}
.hc-care-intro a {
    width: fit-content;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}
.hc-care-intro a i {
    transition: var(--transition);
}
.hc-care-intro a:hover i {
    transform: translateX(4px);
}
.hc-care-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.hc-service-card {
    max-height: 110px;
    padding: 28px;
    border-radius: 30px;
    background: var(--blush);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.hc-service-card:nth-child(2),
.hc-service-card:nth-child(5) {
    background: var(--mist);
}
.hc-service-card:nth-child(3),
.hc-service-card:nth-child(7) {
    background: var(--sand);
}
.hc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.hc-service-card span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    color: var(--slate);
}
.hc-service-card i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.65);
    color: var(--slate);
    font-size: 23px;
}
.hc-service-card h4 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--text);
}
@media (max-width: 1024px) {
    .hc-care-layout {
        grid-template-columns: 1fr;
    }
    .hc-care-intro {
        position: relative;
        top: auto;
        min-height: auto;
    }
}
@media (max-width: 640px) {
    .hc-holistic {
        padding: 70px 18px;
    }
    .hc-section-heading {
        margin-bottom: 44px;
    }
    .hc-care-intro {
        padding: 30px 24px;
        border-radius: 26px;
    }
    .hc-care-intro a {
        width: 100%;
        justify-content: center;
    }
    .hc-care-services {
        grid-template-columns: 1fr;
    }
    .hc-service-card {
        min-height: 180px;
        padding: 24px;
        border-radius: 24px;
    }
    .hc-service-card h4 {
        font-size: 18px;
    }
}

.hc-doctor-profile {
    padding: 50px 28px;
    background: var(--blush);
}
.hc-profile-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.hc-profile-image {
    padding: 16px;
    border-radius: 38px;
    background: linear-gradient(145deg, var(--rose), var(--sand));
}
.hc-profile-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px;
}
.hc-profile-content span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hc-profile-content h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 24px;
}
.hc-profile-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 18px;
}
.hc-profile-points {
    margin: 34px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.hc-profile-points div {
    padding: 22px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--line);
}
.hc-profile-points strong {
    display: block;
    color: var(--text);
    font-size: 17px;
    margin-bottom: 8px;
}
.hc-profile-points small {
    color: var(--muted);
    line-height: 1.6;
}
.hc-profile-btn {
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}
@media (max-width: 992px) {
    .hc-profile-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media (max-width: 640px) {
    .hc-doctor-profile {
        padding: 70px 18px;
    }
    .hc-profile-image {
        padding: 10px;
        border-radius: 28px;
    }
    .hc-profile-image img {
        border-radius: 22px;
    }
    .hc-profile-points {
        grid-template-columns: 1fr;
    }
    .hc-profile-btn {
        width: 100%;
        justify-content: center;
    }
}

.hc-programs{
    padding:50px 28px;
    background:var(--white);
}
.hc-program-heading{
    max-width:1280px;
    margin-bottom:60px;
}
.hc-program-heading span{
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    color:var(--slate);
}
.hc-program-heading h2{
    font-family:"Playfair Display";
    font-size:clamp(38px,5vw,70px);
    line-height:1.1;
    margin:16px 0;
}
.hc-program-heading p{
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
}
.hc-program-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}
.hc-program-card{
    padding:40px;
    border-radius:35px;
}
.screening{
    background:#F7EEF1;
}
.support{
    background:#FCF1EF;
}
.patient{
    background:#E7D8C9;
}
.consultation{
    background:#CDD3D6;
}
.hc-program-icon{
    text-align:center;
    margin-bottom:25px;
}
.hc-program-icon img{
    height:70px;
}
.hc-days{
    font-size:14px;
    font-weight:700;
    color:var(--slate);
}
.hc-program-card h3{
    font-size:34px;
    margin:18px 0;
}
.hc-program-card p{
    margin-bottom:30px;
    color:var(--muted);
}
.hc-program-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:35px;
}
.hc-program-list div{
    font-size:15px;
}
.hc-program-card a{
    height:56px;
    border-radius:999px;
    background:var(--rose);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:700;
}
.hc-program-more{
    margin-top:50px;
    text-align:center;
}
.hc-program-more a{
    min-height:56px;
    padding:0 28px;
    border-radius:999px;
    background:var(--slate);
    color:white;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}
.hc-program-more a:hover{
    transform:translateY(-4px);
}
@media(max-width:992px){
    .hc-program-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:640px){
    .hc-programs{
        padding:70px 18px;
    }
    .hc-program-card{
        padding:25px;
    }
    .hc-program-list{
        grid-template-columns:1fr;
    }
    .hc-program-card h3{
        font-size:28px;
    }
}

.hc-consultation{
    padding:50px 28px;
    background:var(--white);
}
.hc-consult-layout{
    max-width:1320px;
    margin:auto;
    border-radius:40px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:
    linear-gradient(
    135deg,
    var(--rose),
    var(--blush)
    );
}
.hc-consult-content{
    padding:70px;
}
.hc-consult-content h2{
    font-family:"Playfair Display";
    font-size:clamp(34px,4vw,58px);
    line-height:1.1;
    margin:20px 0;
}
.hc-consult-content p{
    line-height:1.9;
    color:var(--muted);
    margin-bottom:35px;
}
.hc-consult-points{
    display:grid;
    gap:18px;
}
.hc-consult-points div{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:600;
}
.hc-consult-points i{
    width:35px;
    height:35px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:white;
}
.hc-consult-action {
    padding: 60px;

    background: linear-gradient(
        135deg,
        rgba(247,241,236,1),
        rgba(255,255,255,1)
    );

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hc-consult-label {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--hc-primary);
}

.hc-consult-action h3 {
    font-size: clamp(34px,4vw,52px);
    line-height: 1.1;

    margin-bottom: 18px;

    font-family: "Playfair Display", serif;
}

.hc-consult-action p {
    max-width: 420px;

    line-height: 1.9;
    color: var(--hc-muted);

    margin-bottom: 30px;
}

.hc-consult-stat {
    margin-bottom: 30px;
}

.hc-consult-stat strong {
    display: block;

    font-size: 42px;
    font-weight: 800;

    color: var(--hc-primary);
}

.hc-consult-stat span {
    color: var(--hc-muted);
}

.hc-whatsapp-btn {
    height: 58px;
    padding: 0 32px;

    border-radius: 999px;

    background: #25D366;
    color: #fff;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;

    transition: .3s ease;
}

.hc-whatsapp-btn:hover {
    transform: translateY(-3px);
    background: #1EBE5D;
}

.hc-whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 992px) {

    .hc-consult-action {
        padding: 40px 30px;
        align-items: center;
        text-align: center;
    }

    .hc-consult-action p {
        max-width: 100%;
    }
}

@media (max-width: 640px) {

    .hc-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .hc-consult-stat strong {
        font-size: 34px;
    }
}
@media(max-width:992px){
    .hc-consult-layout{
        grid-template-columns:1fr;
    }
}
@media(max-width:640px){
    .hc-consultation{
        padding:70px 18px;
    }
    .hc-consult-content,
    .hc-consult-form{
        padding:30px 24px;
    }
}

.hc-videos {
    padding: 50px 0;
    background: var(--blush);
    overflow: hidden;
}
.hc-video-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 44px;
}
.hc-video-top span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--slate);
}
.hc-video-top h2 {
    margin: 14px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    color: var(--text);
}
.hc-video-top p {
    color: var(--muted);
    line-height: 1.8;
}
.hc-video-view-btn {
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}
.hc-video-slider {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    padding: 0 60px;
}
.hc-video-item {
    display: block;
    min-width: 0;
}
.hc-video-thumb {
    position: relative;
    aspect-ratio: 9 / 15;
    overflow: hidden;
    border-radius: 30px;
    background: var(--mist);
    box-shadow: 0 18px 45px rgba(94, 97, 107, 0.08);
}
.hc-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.hc-video-item:hover img {
    transform: scale(1.06);
}
.hc-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(47, 51, 56, 0.76) 0%,
            rgba(47, 51, 56, 0.38) 38%,
            rgba(47, 51, 56, 0.04) 72%
        );
    z-index: 1;
}
.hc-video-play {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #e1306c;
    display: grid;
    place-items: center;
    font-size: 18px;
    z-index: 2;
}
.hc-video-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    z-index: 2;
    padding: 0;
}
.hc-video-content span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}
.hc-video-content h4 {
    font-size: clamp(16px, 1.3vw, 22px);
    line-height: 1.35;
    color: var(--white);
}
@media (max-width: 1200px) {
    .hc-video-slider {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    .hc-video-slider::-webkit-scrollbar {
        display: none;
    }
    .hc-video-item {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}
@media (max-width: 640px) {
    .hc-videos {
        padding: 70px 0;
    }
    .hc-video-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 18px;
        gap: 20px;
    }
    .hc-video-view-btn {
        width: 100%;
        justify-content: center;
    }
    .hc-video-slider {
        padding: 0 18px;
        gap: 16px;
    }
    .hc-video-item {
        flex-basis: 220px;
    }
    .hc-video-thumb {
        border-radius: 24px;
    }
    .hc-video-content {
        left: 16px;
        right: 16px;
        bottom: 18px;
    }
    .hc-video-play {
        width: 44px;
        height: 44px;
    }
}

.hc-blogs{
    padding:50px 28px;
    background:white;
}
.hc-blog-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:50px;
}
.hc-blog-header span{
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.hc-blog-header h2{
    margin-top:15px;
    font-family:"Playfair Display";
    font-size:clamp(34px,4vw,58px);
}
.hc-blog-header a{
    height:52px;
    padding:0 25px;
    border-radius:999px;
    background:var(--slate);
    color:white;
    display:flex;
    align-items:center;
    gap:10px;
}
.hc-blog-layout{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
}
.hc-feature-blog{
    overflow:hidden;
    border-radius:35px;
    background:var(--blush);
}
.hc-feature-image{
    height:380px;
    overflow:hidden;
}
.hc-feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.hc-feature-blog:hover img{
    transform:scale(1.05);
}
.hc-feature-content{
    padding:35px;
}
.hc-feature-content span{
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.hc-feature-content h3{
    margin:16px 0;
    font-size:32px;
    line-height:1.3;
}
.hc-feature-content p{
    color:var(--muted);
    line-height:1.8;
}
.hc-blog-list{
    display:grid;
    gap:20px;
}
.hc-blog-item{
    padding:18px;
    border-radius:28px;
    background:var(--blush);
    display:flex;
    align-items:center;
    gap:18px;
}
.hc-blog-item img{
    width:130px;
    height:110px;
    border-radius:18px;
    object-fit:cover;
}
.hc-blog-item span{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    color:var(--slate);
}
.hc-blog-item h4{
    margin-top:12px;
    font-size:20px;
    line-height:1.4;
}
@media(max-width:992px){
    .hc-blog-layout{
        grid-template-columns:1fr;
    }
}
@media(max-width:640px){
    .hc-blogs{
        padding:70px 18px;
    }
    .hc-blog-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
    .hc-blog-header a{
        width:100%;
        justify-content:center;
    }
    .hc-feature-image{
        height:250px;
    }
    .hc-blog-item{
        flex-direction:column;
        align-items:flex-start;
    }
    .hc-blog-item img{
        width:100%;
        height:180px;
    }
}

.hc-footer-wrap{
    padding:70px 28px 0;
    background:#2F3338;
}
.hc-footer-cta{
    max-width:1320px;
    margin:auto;
    padding:50px;
    border-radius:40px;
    background:linear-gradient(
    135deg,
    var(--rose),
    var(--sand)
    );
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:80px;
}
.hc-footer-cta-content h2{
    margin:16px 0;
    font-family:"Playfair Display";
    font-size:clamp(34px,4vw,56px);
    line-height:1.1;
}
.hc-footer-cta-btn{
    height:58px;
    padding:0 30px;
    border-radius:999px;
    background:white;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
}
.hc-footer{
    max-width:1320px;
    margin:auto;
    color:white;
}
.hc-footer-grid{
    display:grid;
    grid-template-columns:1.2fr repeat(3,1fr);
    gap:40px;
    padding-bottom:60px;
}
.hc-footer-about p{
    margin:20px 0;
    line-height:1.8;
    opacity:.8;
}
.hc-footer-social{
    display:flex;
    gap:12px;
}
.hc-footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.08);
}
.hc-footer h4{
    margin-bottom:20px;
}
.hc-footer ul{
    display:grid;
    gap:14px;
    list-style:none;
}
.hc-footer ul li,
.hc-footer a{
    opacity:.8;
}
.hc-footer-bottom{
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
}
.hc-footer-bottom div{
    display:flex;
    gap:20px;
}
.hc-footer-bottom p i{
    color: crimson;
}
@media(max-width:992px){
    .hc-footer-cta,
    .hc-footer-grid{
        grid-template-columns:1fr;
        display:grid;
    }
}
@media(max-width:640px){
    .hc-footer-wrap{
        padding:70px 18px 0;
    }
    .hc-footer-cta{
        padding:30px;
    }
    .hc-footer-bottom{
        flex-direction:column;
        gap:16px;
    }
}

.hc-scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:var(--slate);
    color:white;
    font-size:18px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(30px);
    transition:.4s;
    z-index:999;
}
.hc-scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.hc-scroll-top:hover{
    transform:translateY(-5px);
}

.hc-chatbot {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 99999;
}

.hc-chat-toggle {
    border: 0;
    cursor: pointer;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.hc-chat-toggle i {
    font-size: 18px;
    color: var(--white);
}

.hc-chat-box {
    position: absolute;
    left: 0;
    bottom: 72px;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: var(--white);
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: 0.3s ease;
}

.hc-chatbot.active .hc-chat-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.hc-chat-header {
    padding: 18px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hc-chat-header strong {
    display: block;
    color: var(--text);
}

.hc-chat-header small {
    display: block;
    margin-top: 3px;
    color: var(--slate);
}

.hc-chat-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hc-chat-messages {
    padding: 18px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white);
}

.hc-message {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.hc-message.bot {
    background: var(--blush);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.hc-message.user {
    background: var(--slate);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.hc-chat-options {
    padding: 14px 18px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.hc-chat-options button {
    border: 0;
    cursor: pointer;
    padding: 10px 13px;
    border-radius: 999px;
    background: var(--blush);
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}

.hc-chat-options button:hover {
    background: var(--rose);
}

.hc-chat-action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.hc-chat-action-links a {
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}
.hc-chat-input-wrap {
    width: 100%;
    display: flex;
    gap: 8px;
}

.hc-chat-input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    background: var(--blush);
    color: var(--text);
}

.hc-chat-send {
    height: 42px;
    padding: 0 16px !important;
    border-radius: 999px;
    background: var(--slate) !important;
    color: var(--white) !important;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .hc-chatbot {
        left: 18px;
        bottom: 18px;
    }

    .hc-chat-toggle {
        width: 55px;
        height: 55px;
        padding: 0;
        justify-content: center;
    }

    .hc-chat-toggle span {
        display: none;
    }

    .hc-chat-box {
        left: 0;
        bottom: 68px;
        width: calc(100vw - 36px);
        max-width: calc(100vw - 36px);
    }

    .hc-chat-messages {
        height: 280px;
    }
}

.about-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.about-hero {
    padding: 50px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(229, 204, 181, 0.45), transparent 34%),
        linear-gradient(135deg, var(--th-cream), var(--th-mist));
    overflow: hidden;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
}
.about-tag {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--th-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: var(--th-forest);
}
.about-hero-content h1 {
    max-width: 760px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 4vw, 45px);
    line-height: 1.03;
    color: var(--th-text);
    margin-bottom: 24px;
}
.about-hero-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--th-muted);
    margin-bottom: 30px;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.about-badges span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--th-line);
    font-size: 13px;
    font-weight: 700;
    color: var(--th-text);
}
.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.about-primary{
    min-height:60px;
    padding:0 34px;
    border-radius:18px;
    background:var(--slate);
    color:var(--white);
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    box-shadow:var(--shadow);
}
.about-primary:hover{
    transform:translateY(-4px);
    background:#4f525b;
}
.about-secondary{
    min-height:60px;
    padding:0 34px;
    border-radius:18px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(255,255,255,.9);
    color:var(--text);
    display:inline-flex;
    align-items:center;
    gap:12px;
    backdrop-filter:blur(20px);
}
.about-secondary i{
    color:var(--rose);
    font-size:18px;
}
.about-secondary:hover{
    background:var(--white);
    transform:translateY(-4px);
}
.about-hero-image {
    position: relative;
    padding: 18px;
    border-radius: 42px;
    background: linear-gradient(145deg, var(--th-sage), var(--th-peach));
}
.about-hero-image img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .about-hero-content {
        text-align: center;
    }
    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .about-badges,
    .about-actions {
        justify-content: center;
    }
    .about-hero-image {
        max-width: 560px;
        margin: auto;
    }
}
@media (max-width: 640px) {
    .about-container {
        padding: 0 18px;
    }
    .about-hero {
        padding: 70px 0 55px;
    }
    .about-actions {
        flex-direction: column;
    }
    .about-primary,
    .about-secondary {
        width: 100%;
    }
    .about-hero-image {
        padding: 10px;
        border-radius: 30px;
    }
    .about-hero-image img {
        border-radius: 24px;
    }
}

.about-info-bar{
    position:relative;
    margin-bottom:30px;
    z-index:10;
}
.about-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.about-info-card{
    position:relative;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(20px);
    border:1px solid rgba(205,211,214,0.35);
    box-shadow:0 25px 60px rgba(94,97,107,0.08);
    transition:all .35s ease;
    overflow:hidden;
}
.about-info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--rose),
        var(--sand)
    );
}
.about-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(94,97,107,0.12);
}
.about-info-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--blush),
        var(--sand)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}
.about-info-icon i{
    font-size:22px;
    color:var(--slate);
}
.about-info-content span{
    display:block;
    margin-bottom:8px;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--muted);
}
.about-info-content strong{
    display:block;
    font-size:18px;
    line-height:1.5;
    font-weight:700;
    color:var(--text);
}
@media(max-width:992px){
    .about-info-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .about-info-bar{
        margin-top:-40px;
    }
}
@media(max-width:640px){
    .about-info-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
    .about-info-bar{
        margin-top:-20px;
    }
    .about-info-card{
        padding:24px;
    }
    .about-info-content strong{
        font-size:16px;
    }
}

.about-doctor-section {
    padding: 50px 0;
    background: var(--white);
}
.about-doctor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.about-section-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.about-doctor-left h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 4vw, 45px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 34px;
}
.about-doctor-quote {
    padding: 34px;
    border-radius: 30px;
    background: var(--blush);
    border: 1px solid var(--line);
    margin-bottom: 20px;
}
.about-doctor-quote p {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 18px;
}
.about-doctor-quote span {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}
.about-doctor-content {
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--blush), var(--white));
    border: 1px solid var(--line);
}
.about-doctor-content p {
    font-size: 17px;
    line-height: 2;
    color: var(--muted);
    margin-bottom: 22px;
}
.about-doctor-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .about-doctor-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media (max-width: 640px) {
    .about-doctor-section {
        padding: 70px 0;
    }
    .about-doctor-content,
    .about-doctor-quote {
        padding: 26px;
        border-radius: 24px;
    }
    .about-doctor-quote p {
        font-size: 22px;
    }
    .about-doctor-content p {
        font-size: 16px;
        line-height: 1.85;
    }
}

.about-expertise {
    padding: 50px 0;
    background: var(--blush);
}
.about-expertise-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.about-expertise-left {
    position: sticky;
    top: 120px;
}
.about-section-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.about-expertise-left h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 24px;
}
.about-expertise-left p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 34px;
}
.about-expertise-btn {
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}
.about-expertise-right {
    display: grid;
    gap: 14px;
}
.about-expertise-row {
    padding: 26px 28px;
    border-radius: 26px;
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px 1fr 42px;
    gap: 22px;
    align-items: center;
    transition: var(--transition);
}
.about-expertise-row:hover {
    transform: translateX(8px);
    background: var(--white);
    box-shadow: var(--shadow);
}
.about-expertise-row > span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--text);
}
.about-expertise-row h3 {
    font-size: 24px;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 8px;
}
.about-expertise-row p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}
.about-expertise-row > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--slate);
    display: grid;
    place-items: center;
    transition: var(--transition);
}
.about-expertise-row:hover > i {
    background: var(--slate);
    color: var(--white);
}
@media (max-width: 992px) {
    .about-expertise-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .about-expertise-left {
        position: relative;
        top: auto;
        text-align: center;
    }
    .about-expertise-left p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 640px) {
    .about-expertise {
        padding: 70px 0;
    }
    .about-expertise-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px;
    }
    .about-expertise-row > i {
        display: none;
    }
    .about-expertise-btn {
        width: 100%;
        justify-content: center;
    }
}

.about-journey {
    padding: 50px 0;
    background: var(--white);
}
.about-journey-head {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}
.about-journey-head span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.about-journey-head h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 22px;
}
.about-journey-head p {
    line-height: 1.9;
    color: var(--muted);
}
.about-timeline {
    position: relative;
    max-width: 950px;
    margin: auto;
    display: grid;
    gap: 26px;
}
.about-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 160px;
    width: 1px;
    background: var(--line);
}
.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 60px;
    align-items: stretch;
}
.about-timeline-item::before {
    content: "";
    position: absolute;
    left: 154px;
    top: 32px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--rose);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 1px var(--line);
    z-index: 2;
}
.about-year {
    padding-top: 26px;
    font-size: 15px;
    font-weight: 800;
    color: var(--slate);
}
.about-timeline-card {
    padding: 28px 32px;
    border-radius: 28px;
    background: var(--blush);
    border: 1px solid var(--line);
    transition: var(--transition);
}
.about-timeline-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.about-timeline-card span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--slate);
}
.about-timeline-card h3 {
    font-size: 26px;
    line-height: 1.35;
    color: var(--text);
}
.about-timeline-item.active .about-timeline-card {
    background: linear-gradient(135deg, var(--rose), var(--sand));
}
.about-timeline-item.active::before {
    background: var(--slate);
}
@media (max-width: 700px) {
    .about-journey {
        padding: 70px 0;
    }
    .about-timeline::before {
        left: 10px;
    }
    .about-timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 38px;
    }
    .about-timeline-item::before {
        left: 4px;
        top: 8px;
    }
    .about-year {
        padding-top: 0;
    }
    .about-timeline-card {
        padding: 24px;
        border-radius: 24px;
    }
    .about-timeline-card h3 {
        font-size: 22px;
    }
}

.about-credentials{
    padding:50px 0;
    background:var(--blush);
}
.about-credentials-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
}
.about-award-card,
.about-memberships{
    padding:50px;
    border-radius:36px;
    background:var(--white);
    border:1px solid var(--line);
}
.about-award-card h2,
.about-memberships h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(34px,3vw,45px);
    line-height:1.15;
    margin-bottom:24px;
    color:var(--text);
}
.about-award-box{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:30px;
    border-radius:24px;
    background:
    linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
}
.about-award-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    background:rgba(255,255,255,.6);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:var(--slate);
}
.about-award-box h3{
    font-size:28px;
    margin-bottom:8px;
    color:var(--text);
}
.about-award-box span{
    display:block;
    margin-bottom:14px;
    font-weight:700;
    color:var(--slate);
}
.about-award-box p{
    line-height:1.8;
    color:var(--text);
}
.about-memberships > p{
    margin-bottom:28px;
    line-height:1.9;
    color:var(--muted);
}
.about-membership-list{
    display:grid;
    gap:18px;
}
.about-membership-card{
    padding:24px;
    border-radius:22px;
    background:var(--blush);
    display:flex;
    align-items:center;
    gap:18px;
}
.membership-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:var(--slate);
}
.about-membership-card h4{
    font-size:22px;
    margin-bottom:4px;
    color:var(--text);
}
.about-membership-card p{
    color:var(--muted);
}
@media(max-width:992px){
    .about-credentials-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:640px){
    .about-credentials{
        padding:70px 0;
    }
    .about-award-card,
    .about-memberships{
        padding:30px;
    }
    .about-award-box{
        flex-direction:column;
    }
}

.about-research{
    padding:50px 0;
    background:var(--white);
}
.about-research-head{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}
.about-research-head span{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.about-research-head h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(38px,4vw,64px);
    line-height:1.1;
    margin-bottom:24px;
    color:var(--text);
}
.about-research-head p{
    line-height:1.9;
    color:var(--muted);
}
.about-publications{
    max-width:1000px;
    margin:auto;
    display:grid;
    gap:24px;
}
.about-publication{
    padding:40px;
    border-radius:30px;
    background:
    linear-gradient(
        135deg,
        var(--white),
        var(--blush)
    );
    border:1px solid var(--line);
    display:grid;
    grid-template-columns:100px 1fr;
    gap:30px;
    align-items:flex-start;
    transition:var(--transition);
}
.about-publication:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.about-publication-number{
    width:80px;
    height:80px;
    border-radius:24px;
    background:
    linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:800;
    color:var(--text);
}
.about-publication-content span{
    display:inline-block;
    margin-bottom:14px;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--slate);
}
.about-publication-content h3{
    font-size:30px;
    line-height:1.3;
    margin-bottom:16px;
    color:var(--text);
}
.about-publication-content p{
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:640px){
    .about-research{
        padding:70px 0;
    }
    .about-publication{
        grid-template-columns:1fr;
        padding:28px;
    }
    .about-publication-number{
        width:70px;
        height:70px;
    }
    .about-publication-content h3{
        font-size:24px;
    }
}

.sp-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.sp-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--blush), var(--white));
}
.sp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}
.sp-hero-content span,
.sp-tag,
.sp-section-head span,
.sp-genetic-card span,
.sp-cta-box span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.sp-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 55px);
    line-height: 1.04;
    margin-bottom: 24px;
    color: var(--text);
}
.sp-hero p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 34px;
}
.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.sp-hero-actions a {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--slate);
    color: var(--white);
    font-weight: 800;
}
.sp-hero-image {
    border-radius: 38px;
    overflow: hidden;
    background: var(--sand);
    padding: 14px;
    box-shadow: var(--shadow);
}
.sp-hero-image img {
    width: 100%;
    border-radius: 28px;
    aspect-ratio: 4 / 4;
    object-fit: cover;
}
@media (max-width: 992px) {
    .sp-hero-grid,
    .sp-risk-box,
    .sp-genetic-card,
    .sp-cta-box {
        grid-template-columns: 1fr;
    }
    .sp-feature-grid,
    .sp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .sp-container {
        padding: 0 18px;
    }
    .sp-hero,
    .sp-personalized,
    .sp-risk,
    .sp-process,
    .sp-genetic,
    .sp-faq,
    .sp-cta {
        padding: 70px 0;
    }
    .sp-hero-actions {
        flex-direction: column;
    }
    .sp-hero-actions a,
    .sp-cta-box a {
        width: 100%;
        justify-content: center;
    }
    .sp-feature-grid,
    .sp-process-grid {
        grid-template-columns: 1fr;
    }
    .sp-rich-text,
    .sp-risk-box,
    .sp-genetic-card,
    .sp-cta-box {
        padding: 28px;
        border-radius: 28px;
    }
}

.sp-intro{
    padding:50px 0;
    background:var(--white);
}
.sp-intro-wrapper{
    max-width:1100px;
    margin:auto;
}
.sp-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.sp-intro h2{
    max-width:1100px;
    font-family:"Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height:1.05;
    color:var(--text);
    margin-bottom:60px;
}
.sp-intro-content{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;
    align-items:start;
}
.sp-intro-highlight{
    padding:35px;
    border-radius:30px;
    background:
    linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    top:120px;
}
.sp-intro-highlight strong{
    display:block;
    font-size:34px;
    line-height:1.15;
    color:var(--text);
    margin-bottom:10px;
}
.sp-intro-highlight span{
    display:block;
    font-size:22px;
    color:var(--slate);
}
.sp-intro-text p{
    font-size:18px;
    line-height:2;
    color:var(--muted);
    margin-bottom:24px;
}
.sp-belief{
    margin-top:20px;
    padding:20px;
    border-radius:36px;
    background:
    linear-gradient(
        135deg,
        var(--blush),
        var(--white)
    );
    border:1px solid var(--line);
    text-align:center;
}
.sp-belief span{
    display:block;
    font-family:"Playfair Display", serif;
    font-size:clamp(30px,3vw,45px);
    line-height:1.2;
    color:var(--text);
    margin-bottom:18px;
}
.sp-belief p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:992px){
    .sp-intro-content{
        grid-template-columns:1fr;
        gap:35px;
    }
    .sp-intro-highlight{
        position:relative;
        top:auto;
    }
}
@media(max-width:640px){
    .sp-intro{
        padding:70px 0;
    }
    .sp-intro h2{
        margin-bottom:40px;
    }
    .sp-intro-highlight,
    .sp-belief{
        padding:30px;
        border-radius:24px;
    }
    .sp-intro-text p{
        font-size:16px;
        line-height:1.85;
    }
    .sp-intro-highlight strong{
        font-size:28px;
    }
}

.sp-personalized {
    padding: 50px 0;
    background: var(--blush);
}
.sp-personalized-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}
.sp-personalized-left {
    position: sticky;
    top: 110px;
}
.sp-personalized-left h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 26px;
}
.sp-personalized-left p {
    font-size: 17px;
    line-height: 1.95;
    color: var(--muted);
    margin-bottom: 20px;
}
.sp-personalized-full p {
    font-size: 17px;
    line-height: 1.95;
    color: var(--muted);
    margin-bottom: 20px;
}
.sp-personalized-right {
    display: grid;
    gap: 22px;
}
.sp-plan-card {
    padding: 30px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: var(--transition);
}
.sp-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.sp-plan-card.main {
    padding: 42px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
}
.sp-plan-card.main span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--slate);
}
.sp-plan-card.main h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 18px;
}
.sp-plan-card.main p {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
}
.sp-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.sp-plan-card i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--blush);
    color: var(--slate);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 22px;
}
.sp-plan-card h4 {
    font-size: 22px;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 12px;
}
.sp-plan-card p {
    line-height: 1.8;
    color: var(--muted);
}
@media (max-width: 992px) {
    .sp-personalized-layout {
        grid-template-columns: 1fr;
    }
    .sp-personalized-left {
        position: relative;
        top: auto;
    }
}
@media (max-width: 640px) {
    .sp-personalized {
        padding: 70px 0;
    }
    .sp-plan-grid {
        grid-template-columns: 1fr;
    }
    .sp-plan-card,
    .sp-plan-card.main {
        padding: 26px;
        border-radius: 24px;
    }
}

.sp-details {
    padding: 50px 0;
    background: var(--white);
}
.sp-details-head {
    max-width: 1100px;
    margin: 0 auto 60px;
}
.sp-details-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 22px;
}
.sp-details-head p {
    margin: auto;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 15px;
    text-align: justify;
}
.sp-details-head ul {
    list-style: none;
    margin: 40px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.sp-details-head ul li {
    position: relative;
    padding: 20px 24px 20px 68px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text);
    transition: var(--transition);
}
.sp-details-head ul li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.sp-details-head ul li::before {
    content: ">";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 18px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-size: 15px;
}
@media (max-width: 768px) {
    .sp-details-head ul {
        grid-template-columns: 1fr;
    }
    .sp-details-head ul li {
        padding: 18px 20px 18px 62px;
        font-size: 15px;
    }
    .sp-details-head ul li::before {
        left: 16px;
        top: 16px;
        width: 32px;
        height: 32px;
    }
}

.sp-faq {
    position: relative;
    padding: 50px 0;
    background: #fdf8f7;
    overflow: hidden;
}
.sp-faq::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(229, 186, 191, 0.15);
}
.sp-faq::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(231, 216, 201, 0.18);
}
.sp-faq .sp-container {
    position: relative;
    z-index: 2;
}
.sp-faq .sp-section-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}
.sp-faq .sp-section-head span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.sp-faq .sp-section-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height: 1.1;
    color: var(--text);
}
.sp-faq .sp-section-head p {
    max-width: 650px;
    margin: 18px auto 0;
    line-height: 1.9;
    color: var(--muted);
}
.sp-faq-list {
    max-width: 980px;
    margin: auto;
    display: grid;
    gap: 16px;
}
.sp-faq-list details {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 97, 107, 0.08);
    overflow: hidden;
    transition: var(--transition);
}
.sp-faq-list details[open] {
    background: var(--white);
    box-shadow: var(--shadow);
}
.sp-faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 76px 26px 30px;
    position: relative;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--text);
}
.sp-faq-list summary::-webkit-details-marker {
    display: none;
}
.sp-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}
.sp-faq-list details[open] summary {
    color: var(--slate);
}
.sp-faq-list details[open] summary::after {
    content: "−";
    background: var(--slate);
    color: var(--white);
}
.sp-faq-list details p {
    padding: 0 30px 28px;
    max-width: 860px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
}
@media (max-width: 640px) {
    .sp-faq {
        padding: 70px 0;
    }
    .sp-faq-list summary {
        padding: 22px 64px 22px 22px;
        font-size: 17px;
    }
    .sp-faq-list summary::after {
        right: 18px;
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
    .sp-faq-list details p {
        padding: 0 22px 24px;
        font-size: 15px;
    }
}

.sp-symptoms {
    padding: 50px 0;
    background: var(--white);
}
.sp-symptoms-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.sp-symptoms-left {
    position: sticky;
    top: 110px;
}
.sp-symptoms-left h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
}
.sp-symptoms-left p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
}
.sp-symptoms-list {
    display: grid;
    gap: 16px;
}
.sp-symptom-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blush), var(--white));
    border: 1px solid var(--line);
    transition: var(--transition);
}
.sp-symptom-row:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.sp-symptom-row > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
}
.sp-symptom-row h3 {
    font-size: 24px;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 10px;
}
.sp-symptom-row p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}
@media (max-width: 992px) {
    .sp-symptoms-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .sp-symptoms-left {
        position: relative;
        top: auto;
    }
}
@media (max-width: 640px) {
    .sp-symptoms {
        padding: 70px 0;
    }
    .sp-symptom-row {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.sp-approach {
    padding: 50px 0;
    background: var(--blush);
}
.sp-approach-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.sp-approach-left {
    position: sticky;
    top: 110px;
}
.sp-approach-left h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
}
.sp-approach-left p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
}
.sp-approach-steps {
    position: relative;
    display: grid;
    gap: 18px;
}
.sp-approach-steps::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: var(--line);
}
.sp-approach-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: flex-start;
}
.sp-approach-step > span {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
}
.sp-approach-step > div {
    padding: 28px 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    transition: var(--transition);
}
.sp-approach-step:hover > div {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.sp-approach-step h3 {
    font-size: 25px;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 12px;
}
.sp-approach-step p {
    line-height: 1.85;
    color: var(--muted);
}
@media (max-width: 992px) {
    .sp-approach-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .sp-approach-left {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .sp-approach {
        padding: 70px 0;
    }
    .sp-approach-steps::before {
        left: 24px;
    }
    .sp-approach-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }
    .sp-approach-step > span {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 14px;
    }
    .sp-approach-step > div {
        padding: 22px;
        border-radius: 22px;
    }
    .sp-approach-step h3 {
        font-size: 21px;
    }
}

.sp-warning-signs {
    padding: 50px 0;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        var(--blush) 100%
    );
}
.sp-warning-head {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 70px;
}
.sp-warning-head span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.sp-warning-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 50px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}
.sp-warning-head p {
    line-height: 1.9;
    color: var(--muted);
}
.sp-warning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.sp-warning-card {
    display: flex;
    gap: 24px;
    padding: 34px;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--line);
    transition: var(--transition);
}
.sp-warning-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.sp-warning-number {
    min-width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}
.sp-warning-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text);
}
.sp-warning-content p {
    line-height: 1.85;
    color: var(--muted);
}
.sp-warning-footer {
    margin-top: 40px;
    padding: 28px 32px;
    border-radius: 24px;
    background: rgba(229,186,191,.18);
    display: flex;
    align-items: center;
    gap: 16px;
}
.sp-warning-footer i {
    font-size: 22px;
    color: var(--slate);
}
.sp-warning-footer p {
    margin: 0;
    line-height: 1.8;
    color: var(--text);
}
@media (max-width: 768px) {
    .sp-warning-grid {
        grid-template-columns: 1fr;
    }
    .sp-warning-card {
        padding: 26px;
    }
    .sp-warning-number {
        min-width: 58px;
        height: 58px;
        font-size: 18px;
    }
    .sp-warning-content h3 {
        font-size: 20px;
    }
    .sp-warning-footer {
        align-items: flex-start;
    }
}

.srv-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.srv-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--blush), var(--white));
}
.srv-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}
.srv-hero-content span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.srv-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4vw, 55px);
    line-height: 1.04;
    margin-bottom: 24px;
    color: var(--text);
}
.srv-hero-content p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 34px;
}
.srv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.srv-hero-actions a {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}
.srv-hero-actions a:first-child {
    background: var(--slate);
    color: var(--white);
}
.srv-hero-actions a:last-child {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--line);
}
.srv-hero-image {
    border-radius: 38px;
    overflow: hidden;
    background: var(--sand);
    padding: 14px;
    box-shadow: var(--shadow);
}
.srv-hero-image img {
    width: 100%;
    border-radius: 28px;
    aspect-ratio: 4 / 4;
    object-fit: cover;
}
@media(max-width: 992px) {
    .srv-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media(max-width: 640px) {
    .srv-container {
        padding: 0 18px;
    }
    .srv-hero-actions {
        flex-direction: column;
    }
    .srv-hero-actions a {
        width: 100%;
        justify-content: center;
    }
}

.srv-story{
    padding:50px 0;
    background:var(--white);
}
.srv-story-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:90px;
    align-items:start;
}
.srv-story-left{
    position:sticky;
    top:120px;
}
.srv-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.srv-story-left h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(40px,4vw,55px);
    line-height:1.05;
    color:var(--text);
    margin-bottom:32px;
}
.srv-highlight{
    padding:24px 28px;
    border-left:4px solid var(--rose);
    background:var(--blush);
    border-radius:0 24px 24px 0;
    font-size:22px;
    font-weight:600;
    line-height:1.5;
    color:var(--text);
}
.srv-story-right p{
    margin-bottom:28px;
    font-size:17px;
    line-height:2;
    color:var(--muted);
}
.srv-divider{
    width:80px;
    height:2px;
    background:linear-gradient(
        90deg,
        var(--rose),
        var(--sand)
    );
    margin:45px 0;
}
.srv-story-right h3{
    font-family:"Playfair Display",serif;
    font-size:42px;
    line-height:1.15;
    color:var(--text);
    margin-bottom:24px;
}
@media(max-width:992px){
    .srv-story-grid{
        grid-template-columns:1fr;
        gap:50px;
    }
    .srv-story-left{
        position:relative;
        top:auto;
    }
}
@media(max-width:640px){
    .srv-story{
        padding:70px 0;
    }
    .srv-story-left h2{
        font-size:42px;
    }
    .srv-story-right h3{
        font-size:32px;
    }
    .srv-highlight{
        font-size:18px;
        padding:20px;
    }
    .srv-story-right p{
        font-size:16px;
        line-height:1.9;
    }
}

.srv-benefits{
    padding:50px 0;
    background:var(--blush);
}
.srv-benefits-head{
    margin:0 auto 70px;
    text-align:center;
}
.srv-benefits-head span{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.srv-benefits-head h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(40px,4vw,55px);
    line-height:1.08;
    color:var(--text);
    margin-bottom:22px;
}
.srv-benefits-head p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:var(--muted);
}
.srv-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}
.srv-benefit-card{
    position:relative;
    padding:38px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:32px;
    transition:var(--transition);
}
.srv-benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.srv-benefit-no{
    width:60px;
    height:60px;
    border-radius:18px;
    margin-bottom:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    font-size:18px;
    font-weight:800;
    color:var(--text);
}
.srv-benefit-card h3{
    font-size:28px;
    line-height:1.3;
    color:var(--text);
    margin-bottom:18px;
}
.srv-benefit-card p{
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:768px){
    .srv-benefits{
        padding:70px 0;
    }
    .srv-benefits-grid{
        grid-template-columns:1fr;
    }
    .srv-benefit-card{
        padding:28px;
    }
    .srv-benefit-card h3{
        font-size:24px;
    }
}

.srv-approach {
    padding: 50px 0;
    background: var(--white);
}
.srv-approach-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.srv-approach-left {
    position: sticky;
    top: 120px;
}
.srv-approach-left span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.srv-approach-left h2 {
    font-family: "Playfair Display", serif;
    font-size:clamp(40px,4vw,55px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
}
.srv-approach-left p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
}
.srv-approach-steps {
    position: relative;
    display: grid;
    gap: 18px;
}
.srv-approach-steps::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: var(--line);
}
.srv-approach-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: flex-start;
}
.srv-approach-step > span {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
}
.srv-approach-step > div {
    padding: 28px 30px;
    border-radius: 28px;
    background: var(--blush);
    border: 1px solid var(--line);
    transition: var(--transition);
}
.srv-approach-step:hover > div {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.srv-approach-step h3 {
    font-size: 25px;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 12px;
}
.srv-approach-step p {
    line-height: 1.85;
    color: var(--muted);
}
@media (max-width: 992px) {
    .srv-approach-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .srv-approach-left {
        position: relative;
        top: auto;
    }
}
@media (max-width: 640px) {
    .srv-approach {
        padding: 70px 0;
    }
    .srv-approach-steps::before {
        left: 24px;
    }
    .srv-approach-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }
    .srv-approach-step > span {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 14px;
    }
    .srv-approach-step > div {
        padding: 22px;
        border-radius: 22px;
    }
    .srv-approach-step h3 {
        font-size: 21px;
    }
}

.srv-outcomes{
    padding:50px 0;
    background:var(--blush);
}
.srv-outcomes-head{
    max-width:820px;
    margin:0 auto 70px;
    text-align:center;
}
.srv-outcomes-head span{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.srv-outcomes-head h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(40px,4vw,55px);
    line-height:1.08;
    color:var(--text);
    margin-bottom:22px;
}
.srv-outcomes-head p{
    line-height:1.9;
    color:var(--muted);
}
.srv-outcomes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.srv-outcome-card{
    padding:34px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:28px;
    transition:var(--transition);
}
.srv-outcome-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}
.srv-outcome-card h3{
    font-size:24px;
    line-height:1.35;
    color:var(--text);
    margin-bottom:14px;
}
.srv-outcome-card p{
    line-height:1.85;
    color:var(--muted);
}
.srv-outcomes-note{
    margin-top:50px;
    padding:40px;
    border-radius:32px;
    background:linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    text-align:center;
}
.srv-outcomes-note h3{
    font-family:"Playfair Display",serif;
    font-size:42px;
    line-height:1.2;
    color:var(--text);
    margin-bottom:16px;
}
.srv-outcomes-note p{
    max-width:760px;
    margin:auto;
    line-height:1.9;
    color:var(--text);
}
@media(max-width:992px){
    .srv-outcomes-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:640px){
    .srv-outcomes{
        padding:70px 0;
    }
    .srv-outcomes-grid{
        grid-template-columns:1fr;
    }
    .srv-outcome-card{
        padding:26px;
    }
    .srv-outcomes-note{
        padding:30px 24px;
    }
    .srv-outcomes-note h3{
        font-size:30px;
    }
}

.srv-faq {
    padding: 50px 0;
    background: #fdf8f7;
}
.srv-faq-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}
.srv-faq-head span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.srv-faq-head h2 {
    font-family: "Playfair Display", serif;
    font-size:clamp(40px,4vw,55px);
    line-height: 1.1;
    color: var(--text);
}
.srv-faq-head p {
    margin-top: 18px;
    line-height: 1.9;
    color: var(--muted);
}
.srv-faq-list {
    max-width: 980px;
    margin: auto;
    display: grid;
    gap: 16px;
}
.srv-faq-list details {
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(94,97,107,.08);
    overflow: hidden;
}
.srv-faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 76px 26px 30px;
    position: relative;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--text);
}
.srv-faq-list summary::-webkit-details-marker {
    display: none;
}
.srv-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: grid;
    place-items: center;
    font-size: 22px;
}
.srv-faq-list details[open] {
    background: var(--white);
    box-shadow: var(--shadow);
}
.srv-faq-list details[open] summary::after {
    content: "−";
    background: var(--slate);
    color: var(--white);
}
.srv-faq-list details p {
    padding: 0 30px 28px;
    line-height: 1.9;
    color: var(--muted);
}
@media(max-width:640px) {
    .srv-faq {
        padding: 70px 0;
    }
    .srv-faq-list summary {
        padding: 22px 64px 22px 22px;
        font-size: 17px;
    }
    .srv-faq-list details p {
        padding: 0 22px 24px;
    }
}

.srv-companion-help {
    padding: 50px 0;
    background: var(--blush);
    overflow: hidden;
}
.srv-companion-head {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}
.srv-companion-head span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.srv-companion-head h2 {
    font-family: "Playfair Display", serif;
    font-size:clamp(40px,4vw,55px);
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 22px;
}
.srv-companion-head p {
    max-width: 720px;
    margin: auto;
    line-height: 1.9;
    color: var(--muted);
}
.srv-companion-timeline {
    max-width: 950px;
    margin: auto;
    position: relative;
    display: grid;
    gap: 28px;
}
.srv-companion-timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: var(--line);
}
.srv-companion-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: flex-start;
}
.srv-companion-number {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    box-shadow: 0 12px 30px rgba(94, 97, 107, 0.08);
}
.srv-companion-content {
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: var(--transition);
}
.srv-companion-item:hover .srv-companion-content {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}
.srv-companion-content h3 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 14px;
}
.srv-companion-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
}
@media (max-width: 768px) {
    .srv-companion-help {
        padding: 70px 0;
    }
    .srv-companion-head {
        margin-bottom: 45px;
    }
    .srv-companion-item {
        grid-template-columns: 60px 1fr;
        gap: 18px;
    }
    .srv-companion-number {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 18px;
    }
    .srv-companion-timeline::before {
        left: 30px;
    }
    .srv-companion-content {
        padding: 24px;
        border-radius: 24px;
    }
    .srv-companion-content h3 {
        font-size: 22px;
    }
    .srv-companion-content p {
        font-size: 15px;
    }
}

.srv-audience{
    padding:50px 0;
    background:var(--white);
}
.srv-audience-head{
    max-width:1100px;
    margin-bottom:40px;
}
.srv-audience-head span{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.srv-audience-head h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(40px,4vw,55px);
    line-height:1.08;
    color:var(--text);
}
.srv-audience-content p{
    margin-bottom:24px;
    font-size:17px;
    line-height:2;
    color:var(--muted);
}

.srv-support {
    padding: 50px 0;
    background: var(--blush);
}
.srv-support-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}
.srv-support-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.srv-support-title {
    margin-bottom: 16px;
}
.srv-support-title span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.srv-support-title h2 {
    font-family: "Playfair Display", serif;
    font-size:clamp(40px,4vw,55px);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 16px;
}
.srv-support-title p {
    line-height: 1.85;
    color: var(--muted);
}
.srv-support-card,
.srv-support-benefit {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
}
.srv-support-card h3 {
    font-size: 24px;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
}
.srv-support-card p,
.srv-support-benefit p {
    line-height: 1.85;
    color: var(--muted);
}
.srv-support-benefit {
    display: flex;
    gap: 18px;
}
.srv-support-benefit span {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
}
.srv-support-benefit h4 {
    font-size: 21px;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 8px;
}
@media(max-width: 992px) {
    .srv-support-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media(max-width: 640px) {
    .srv-support {
        padding: 70px 0;
    }
    .srv-support-card,
    .srv-support-benefit {
        padding: 22px;
        border-radius: 22px;
    }
    .srv-support-benefit {
        gap: 14px;
    }
    .srv-support-benefit span {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 13px;
    }
}

.blog-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.blog-hero {
    padding: 40px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(229,186,191,.32), transparent 34%),
        linear-gradient(135deg, var(--blush), var(--white));
    text-align: center;
}
.blog-hero span,
.blog-top span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.blog-hero h1 {
    max-width: 940px;
    margin: 0 auto 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 6vw, 55px);
    line-height: 1.04;
    color: var(--text);
}
.blog-hero p {
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
}
@media(max-width: 640px) {
    .blog-container {
        padding: 0 18px;
    }
}

.blog-listing {
    padding: 50px 0;
    background: var(--white);
}
.blog-section-head {
    max-width: 820px;
    margin: 0 auto 65px;
    text-align: center;
}
.blog-section-head span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.blog-section-head h2 {
    font-family: "Playfair Display", serif;
    font-size:clamp(40px,4vw,55px);
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 20px;
}
.blog-section-head p {
    line-height: 1.9;
    color: var(--muted);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.blog-card {
    border-radius: 30px;
    background: var(--blush);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.blog-img {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}
.blog-img span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--slate);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blog-body {
    padding: 26px;
}
.blog-body small {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 700;
}
.blog-body h3 {
    font-size: 23px;
    line-height: 1.32;
    margin-bottom: 14px;
}
.blog-body h3 a {
    color: var(--text);
}
.blog-body p {
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 22px;
}
.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--slate);
}
.blog-read i {
    transition: var(--transition);
}
.blog-read:hover i {
    transform: translateX(5px);
}
@media(max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 640px) {
    .blog-listing {
        padding: 70px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-img {
        height: 230px;
    }
    .blog-body {
        padding: 22px;
    }
}

.bd-container{
    max-width:1320px;
    margin:auto;
    padding:0 28px;
}
.bd-hero{
    padding:50px 0;
    background:linear-gradient(135deg,var(--blush),var(--white));
}
.bd-breadcrumb{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:35px;
    font-size:14px;
    color:var(--muted);
}
.bd-breadcrumb a{
    color:var(--slate);
    font-weight:700;
}
.bd-hero-content{
    max-width:980px;
}
.bd-hero-content > span{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.bd-hero h1{
    font-family:"Playfair Display",serif;
    font-size: clamp(40px, 4vw, 45px);
    line-height:1.04;
    color:var(--text);
    margin-bottom:24px;
}
.bd-hero p{
    max-width:760px;
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}
.bd-meta{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:30px;
}
.bd-meta div{
    padding:12px 18px;
    border-radius:999px;
    background:var(--white);
    color:var(--slate);
    font-weight:700;
}
.bd-main{
    padding:50px 0;
    background:var(--white);
}
.bd-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;
    align-items:start;
}
.bd-sidebar{
    position:sticky;
    top:100px;
    display:grid;
    gap:24px;
}
.bd-side-card,
.bd-side-cta{
    padding:28px;
    border-radius:28px;
    background:var(--blush);
    border:1px solid var(--line);
}
.bd-side-card h3,
.bd-side-cta h3{
    color:var(--text);
    margin-bottom:18px;
}
.bd-side-card a{
    display:block;
    padding:13px 0;
    color:var(--muted);
    border-bottom:1px solid var(--line);
    font-weight:700;
}
.bd-side-card a:last-child{
    border-bottom:0;
}
.bd-side-cta span{
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--slate);
}
.bd-side-cta a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
    padding:14px 20px;
    border-radius:999px;
    background:var(--slate);
    color:var(--white);
    font-weight:800;
}
.bd-related h3 {
    margin-bottom: 22px;
}
.bd-related-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.bd-related-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.bd-related-item img {
    width: 82px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}
.bd-related-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate);
}
.bd-related-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text);
}
.bd-article{
    max-width:860px;
}
.bd-featured-img{
    margin-bottom:42px;
    border-radius:34px;
    overflow:hidden;
    box-shadow:var(--shadow);
}
.bd-featured-img img{
    width:100%;
    aspect-ratio:16/8;
    object-fit:cover;
}
.bd-article p{
    font-size:17px;
    line-height:2;
    color:var(--muted);
    margin-bottom:24px;
}
.bd-article h2{
    font-family:"Playfair Display",serif;
    font-size:clamp(30px,4vw,45px);
    line-height:1.15;
    color:var(--text);
    margin:55px 0 22px;
}
.bd-article h3{
    font-size:23px;
    color:var(--text);
    margin-bottom:10px;
}
.bd-article ul,
.bd-article ol{
    margin:28px 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:14px;
}
.bd-article ul li,
.bd-article ol li{
    position:relative;
    padding:18px 20px 18px 58px;
    border-radius:18px;
    background:var(--blush);
    color:var(--text);
    line-height:1.7;
    font-weight:600;
}
.bd-article ul li::before,
.bd-article ol li::before{
    content:"";
    position:absolute;
    left:20px;
    top:21px;
    width:14px;
    height:14px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rose),var(--sand));
}
.bd-symptom-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:30px 0;
}
.bd-symptom-grid span{
    padding:16px 18px;
    border-radius:18px;
    background:var(--blush);
    color:var(--text);
    font-weight:700;
}
.bd-info-list{
    display:grid;
    gap:18px;
}
.bd-info-list div{
    padding:28px;
    border-radius:24px;
    background:linear-gradient(135deg,var(--blush),var(--white));
    border:1px solid var(--line);
}
.bd-info-list p{
    margin-bottom:0;
}
.bd-alert-box{
    padding:34px;
    border-radius:30px;
    background:linear-gradient(135deg,var(--rose),var(--sand));
    margin:28px 0;
}
.bd-alert-box p,
.bd-alert-box li{
    color:var(--text);
}
.bd-alert-box ul li{
    background:rgba(255,255,255,.55);
}
.bd-article blockquote{
    margin:45px 0;
    padding:36px;
    border-radius:28px;
    background:var(--blush);
    border-left:5px solid var(--rose);
    font-family:"Playfair Display",serif;
    font-size:28px;
    line-height:1.5;
    color:var(--text);
}
.bd-faq{
    margin-top:70px;
}
.bd-faq details{
    margin-bottom:14px;
    border-radius:22px;
    background:var(--blush);
    border:1px solid var(--line);
    overflow:hidden;
}
.bd-faq summary{
    cursor:pointer;
    padding:22px 60px 22px 24px;
    font-weight:800;
    color:var(--text);
    position:relative;
}
.bd-faq summary::after{
    content:"+";
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    font-size:24px;
    color:var(--slate);
}
.bd-faq details[open] summary::after{
    content:"−";
}
.bd-faq details p{
    padding:0 24px 24px;
    margin:0;
}
.bd-post-nav {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.bd-post-nav-card {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--blush), var(--white));
    border: 1px solid var(--line);
    transition: var(--transition);
}
.bd-post-nav-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.bd-post-nav-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate);
}
.bd-post-nav-card h3 {
    font-size: 22px;
    line-height: 1.35;
    color: var(--text);
}
.bd-post-nav-card.next {
    text-align: right;
}
.bd-post-nav-card.next span {
    justify-content: flex-end;
}
@media(max-width:992px){
    .bd-layout{
        grid-template-columns:1fr;
    }
    .bd-sidebar{
        position:relative;
        top:auto;
        order:2;
    }
    .bd-article{
        max-width:100%;
    }
}
@media(max-width:640px){
    .bd-container{
        padding:0 18px;
    }
    .bd-hero,
    .bd-main{
        padding:70px 0;
    }
    .bd-meta div{
        width:100%;
    }
    .bd-symptom-grid{
        grid-template-columns:1fr;
    }
    .bd-article blockquote{
        padding:26px;
        font-size:23px;
    }
    .bd-featured-img img{
        aspect-ratio:4/3;
    }
    .bd-post-nav {
        grid-template-columns: 1fr;
    }
    .bd-post-nav-card.next {
        text-align: left;
    }
    .bd-post-nav-card.next span {
        justify-content: flex-start;
    }
}

.video-hero{
    padding:50px 0px;
    text-align:center;
    background:
    radial-gradient(circle at top left,
    rgba(229,186,191,.3),
    transparent 35%),
    linear-gradient(135deg,
    var(--blush),
    var(--white));
}
.video-container{
    max-width:1320px;
    margin:auto;
    padding:0 28px;
}
.video-hero span{
    display:inline-block;
    margin-bottom:18px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.video-hero h1{
    max-width:950px;
    margin:auto;
    font-family:"Playfair Display",serif;
    font-size:clamp(45px,4vw,55px);
    line-height:1.04;
    color:var(--text);
}
.video-hero p{
    max-width:760px;
    margin:24px auto 0;
    line-height:1.9;
    color:var(--muted);
}

.contact-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.contact-hero {
    padding: 50px 0px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(229,186,191,.34), transparent 35%),
        linear-gradient(135deg, var(--blush), var(--white));
}
.contact-hero span,
.contact-info-head span,
.contact-form > span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.contact-hero h1 {
    max-width: 950px;
    margin: auto;
    font-family: "Playfair Display", serif;
    font-size:clamp(45px,4vw,55px);
    line-height: 1.04;
    color: var(--text);
}
.contact-hero p {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
}
.contact-main {
    padding: 50px 0;
    background: var(--white);
}
.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-head h2,
.contact-form h2 {
    font-family: "Playfair Display", serif;
    font-size:clamp(35px,4vw,45px);
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
}
.contact-cards {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}
.contact-card {
    padding: 15px;
    border-radius: 24px;
    background: var(--blush);
    border: 1px solid var(--line);
    display: flex;
    gap: 18px;
    align-items: center;
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.contact-card i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-size: 20px;
    flex-shrink: 0;
}
.contact-card span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 6px;
}
.contact-card strong {
    color: var(--text);
    line-height: 1.5;
}
.contact-hours {
    margin-top: 28px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
}
.contact-hours h3 {
    font-size: 26px;
    color: var(--text);
    margin-bottom: 18px;
}
.contact-hours div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(94,97,107,.18);
}
.contact-hours div:last-child {
    border-bottom: 0;
}
.contact-hours span,
.contact-hours strong {
    color: var(--text);
}
.contact-form-wrap {
    padding: 14px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    box-shadow: var(--shadow);
}
.contact-form {
    padding: 42px;
    border-radius: 30px;
    background: var(--white);
}
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    height: 58px;
    margin-bottom: 18px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--blush);
    color: var(--text);
    outline: none;
}
.contact-form textarea {
    height: 150px;
    padding-top: 18px;
    resize: none;
}
.contact-form button {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.contact-map {
    padding: 50px 0px;
    background: var(--white);
}
.contact-map-box {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 12px solid var(--blush);
}
.contact-map iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}
@media(max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 640px) {
    .contact-container {
        padding: 0 18px;
    }
    .contact-hero,
    .contact-main {
        padding: 70px 0;
    }
    .contact-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form {
        padding: 28px 22px;
    }
    .contact-hours div {
        flex-direction: column;
        gap: 6px;
    }
    .contact-map {
        padding-bottom: 70px;
    }
    .contact-map iframe {
        height: 360px;
    }
}

.book-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.book-hero {
    padding: 50px 0px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(229,186,191,.34), transparent 35%),
        linear-gradient(135deg, var(--blush), var(--white));
}
.book-hero span,
.book-intro span,
.book-doctor-card span,
.book-whatsapp-card span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.book-hero h1 {
    max-width: 950px;
    margin: auto;
    font-family: "Playfair Display", serif;
    font-size:clamp(45px,4vw,55px);
    line-height: 1.04;
    color: var(--text);
}
.book-hero p {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
}
.book-main {
    padding: 50px 0;
    background: var(--white);
}
.book-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: start;
}
.book-left {
    padding: 14px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    box-shadow: var(--shadow);
}
.book-intro,
.book-form {
    background: var(--white);
}
.book-intro {
    padding: 42px 42px 10px;
    border-radius: 30px 30px 0 0;
}
.book-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 18px;
}
.book-intro p {
    max-width: 720px;
    line-height: 1.9;
    color: var(--muted);
}
.book-form {
    padding: 24px 42px 42px;
    border-radius: 0 0 30px 30px;
}
.book-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.book-field {
    margin-bottom: 20px;
}
.book-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}
.book-field input,
.book-field select,
.book-field textarea {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--blush);
    color: var(--text);
    outline: none;
}
.book-field textarea {
    height: 150px;
    padding-top: 18px;
    resize: none;
}
.book-form button {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.book-right {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 22px;
}
.book-doctor-card,
.book-info-card,
.book-whatsapp-card {
    padding: 28px;
    border-radius: 30px;
    background: var(--blush);
    border: 1px solid var(--line);
}
.book-doctor-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    align-items: center;
}
.book-doctor-card img {
    width: 110px;
    height: 130px;
    object-fit: cover;
    border-radius: 24px;
}
.book-doctor-card h3,
.book-info-card h3,
.book-whatsapp-card h3 {
    font-size: 26px;
    color: var(--text);
    margin-bottom: 12px;
}
.book-doctor-card p,
.book-info-card p,
.book-whatsapp-card p {
    line-height: 1.8;
    color: var(--muted);
}
.book-info-card div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.book-info-card div:last-child {
    border-bottom: 0;
}
.book-info-card span {
    color: var(--muted);
}
.book-info-card strong {
    color: var(--text);
}
.book-whatsapp-card {
    background: linear-gradient(135deg, var(--rose), var(--sand));
}
.book-whatsapp-card a {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--slate);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}
@media(max-width: 992px) {
    .book-layout {
        grid-template-columns: 1fr;
    }
    .book-right {
        position: relative;
        top: auto;
    }
}
@media(max-width: 640px) {
    .book-container {
        padding: 0 18px;
    }
    .book-hero,
    .book-main {
        padding: 70px 0;
    }
    .book-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .book-intro {
        padding: 28px 24px 10px;
    }
    .book-form {
        padding: 20px 24px 28px;
    }
    .book-doctor-card {
        grid-template-columns: 1fr;
    }
    .book-doctor-card img {
        width: 100%;
        height: 240px;
    }
    .book-info-card div {
        flex-direction: column;
        gap: 6px;
    }
}

.thankyou-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background:
        radial-gradient(circle at top left,
        rgba(229,186,191,.35),
        transparent 35%),
        linear-gradient(
        135deg,
        var(--blush),
        var(--white)
    );
}
.thankyou-container {
    width: 100%;
    max-width: 760px;
}
.thankyou-card {
    position: relative;
    background: var(--white);
    border-radius: 40px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background:
    linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
.thankyou-icon i {
    font-size: 38px;
    color: var(--text);
}
.thankyou-card span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.thankyou-card h1 {
    font-family: "Playfair Display", serif;
    font-size:clamp(45px,4vw,55px);
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 22px;
}
.thankyou-card p {
    max-width: 560px;
    margin: auto;
    line-height: 1.9;
    color: var(--muted);
}
.thankyou-info {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.thankyou-info div {
    padding: 24px;
    border-radius: 24px;
    background: var(--blush);
    border: 1px solid var(--line);
}
.thankyou-info strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 16px;
}
.thankyou-info span {
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
}
.thankyou-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.thankyou-actions a {
    min-width: 220px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    transition: var(--transition);
}
.thankyou-primary {
    background: var(--slate);
    color: var(--white);
}
.thankyou-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--line);
}
.thankyou-actions a:hover {
    transform: translateY(-4px);
}
.thankyou-note {
    margin-top: 36px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(
        135deg,
        rgba(229,186,191,.22),
        rgba(231,216,201,.28)
    );
    border: 1px solid var(--line);
    border-radius: 24px;
    text-align: left;
}
.thankyou-note-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        var(--rose),
        var(--sand)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
.thankyou-note-icon i {
    font-size: 20px;
    color: var(--text);
}
.thankyou-note-content h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 8px;
}
.thankyou-note-content p {
    margin: 0;
    max-width: 100%;
    line-height: 1.8;
    color: var(--muted);
    font-size: 15px;
}
@media(max-width:768px){
    .thankyou-card{
        padding:40px 24px;
        border-radius:30px;
    }
    .thankyou-info{
        grid-template-columns:1fr;
    }
    .thankyou-actions{
        flex-direction:column;
    }
    .thankyou-actions a{
        width:100%;
    }
    .thankyou-icon{
        width:80px;
        height:80px;
    }
    .thankyou-icon i{
        font-size:30px;
    }
}
@media(max-width:640px) {
    .thankyou-note {
        padding: 18px;
        gap: 14px;
    }
    .thankyou-note-icon {
        width: 48px;
        height: 48px;
    }
    .thankyou-note-icon i {
        font-size: 18px;
    }
    .thankyou-note-content h4 {
        font-size: 16px;
    }
    .thankyou-note-content p {
        font-size: 14px;
    }
}

.legal-container{
    max-width:1320px;
    margin:auto;
    padding:0 25px;
}
.legal-hero{
    padding:50px 0px;
    background:
    radial-gradient(circle at top left,
        rgba(229,186,191,.35),
        transparent 35%),
        linear-gradient(
        135deg,
        var(--blush),
        var(--white)
    );
}
.legal-breadcrumb{
    display:flex;
    gap:10px;
    margin-bottom:24px;
    color:var(--muted);
    font-size:14px;
}
.legal-hero > .legal-container > span{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--slate);
}
.legal-hero h1{
    font-family:"Playfair Display",serif;
    font-size:clamp(45px,5vw,55px);
    line-height:1.05;
    color:var(--text);
    margin-bottom:20px;
}
.legal-hero p{
    max-width:760px;
    color:var(--muted);
    line-height:1.9;
}
.legal-update{
    margin-top:-40px;
    position:relative;
    z-index:2;
}
.legal-update-box{
    background:var(--white);
    border-radius:30px;
    padding:24px 36px;
    box-shadow:var(--shadow);
    display:flex;
    gap:60px;
}
.legal-update-box strong{
    display:block;
    margin-bottom:6px;
    color:var(--text);
}
.legal-update-box span{
    color:var(--muted);
}
.legal-content{
    padding:50px 0;
}
.legal-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:70px;
}
.legal-sidebar{
    position:sticky;
    top:100px;
    height:max-content;
}
.legal-nav{
    padding:28px;
    border-radius:30px;
    background:var(--blush);
    border:1px solid var(--line);
}
.legal-nav a{
    display:block;
    padding:14px 0;
    color:var(--text);
    font-weight:600;
    border-bottom:1px solid var(--line);
}
.legal-nav a:last-child{
    border-bottom:none;
}
.legal-article section{
    margin-bottom:60px;
}
.legal-article h2{
    font-family:"Playfair Display",serif;
    font-size:40px;
    margin-bottom:18px;
    color:var(--text);
}
.legal-article p{
    line-height:2;
    color:var(--muted);
}
.legal-article ul{
    margin-top:20px;
    display:grid;
    gap:12px;
}
.legal-article li{
    padding:18px 22px;
    border-radius:18px;
    background:var(--blush);
    color:var(--text);
}
.legal-help{
    padding-bottom:110px;
}
.legal-help-box{
    padding:50px;
    border-radius:40px;
    text-align:center;
    background:
    linear-gradient(
    135deg,
    var(--rose),
    var(--sand)
    );
}
.legal-help-box span{
    display:block;
    margin-bottom:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:800;
}
.legal-help-box h2{
    font-family:"Playfair Display",serif;
    font-size:40px;
    margin-bottom:20px;
}
.legal-help-box p{
    max-width:700px;
    margin:auto;
    color:var(--text);
}
.legal-help-box a{
    margin-top:28px;
    display:inline-flex;
    padding:16px 28px;
    border-radius:999px;
    background:var(--slate);
    color:#fff;
    font-weight:700;
}
@media(max-width:992px){
    .legal-layout{
        grid-template-columns:1fr;
        gap:40px;
    }
    .legal-sidebar{
        position:relative;
        top:auto;
    }
    .legal-update-box{
        flex-direction:column;
        gap:20px;
    }
}

.services-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 28px;
}
.services-hero {
    padding: 50px 0px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(229,186,191,.34), transparent 35%),
        linear-gradient(135deg, var(--blush), var(--white));
}
.services-hero span,
.services-head span,
.services-content span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
}
.services-hero h1 {
    max-width: 980px;
    margin: auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4vw, 55px);
    line-height: 1.04;
    color: var(--text);
}
.services-hero p {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
}
.services-list {
    padding: 50px 0;
    background: var(--white);
}
.services-head {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}
.services-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 45px);
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 20px;
}
.services-head p {
    line-height: 1.9;
    color: var(--muted);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.services-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    background: var(--blush);
    border: 1px solid var(--line);
    border-radius: 34px;
    overflow: hidden;
    transition: var(--transition);
}
.services-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.services-img {
    display: block;
    min-height: 320px;
    overflow: hidden;
}
.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.services-card:hover .services-img img {
    transform: scale(1.06);
}
.services-content {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-content span {
    margin-bottom: 14px;
}
.services-content h3 {
    font-size: 30px;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 16px;
}
.services-content p {
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 26px;
}
.services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--slate);
    font-weight: 800;
}
.services-link i {
    transition: var(--transition);
}
.services-link:hover i {
    transform: translateX(5px);
}
@media(max-width: 1100px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 700px) {
    .services-container {
        padding: 0 18px;
    }
    .services-hero,
    .services-list {
        padding: 70px 0;
    }
    .services-card {
        grid-template-columns: 1fr;
    }
    .services-img {
        min-height: 240px;
    }
    .services-content {
        padding: 26px;
    }
    .services-content h3 {
        font-size: 25px;
    }
}

.sp-specialities{
    padding:50px 0;
    background:#fff;
}
.sp-speciality-list{
    display:flex;
    flex-direction:column;
    gap:40px;
}
.sp-speciality-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background:#fff;
    border:1px solid var(--line);
    border-radius:30px;
    overflow:hidden;
    transition:all .4s ease;
}
.sp-speciality-item.reverse .sp-speciality-image{
    order:2;
}
.sp-speciality-item.reverse .sp-speciality-content{
    order:1;
}
.sp-speciality-item:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border-color:rgba(0,0,0,.05);
}
.sp-speciality-image{
    display:block;
    height:420px;
    overflow:hidden;
}
.sp-speciality-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}
.sp-speciality-item:hover .sp-speciality-image img{
    transform:scale(1.08);
}
.sp-speciality-content{
    padding:50px;
}
.sp-speciality-content span{
    font-size:70px;
    font-weight:700;
    color:rgba(201,167,117,.25);
    display:block;
    line-height:1;
    margin-bottom:15px;
}
.sp-speciality-content h3{
    font-size:34px;
    line-height:1.2;
    margin-bottom:18px;
}
.sp-speciality-content h3 a{
    color:var(--text);
    transition:var(--transition);
}
.sp-speciality-item:hover .sp-speciality-content h3 a{
    color:var(--slate);
}
.sp-speciality-content p{
    line-height:1.9;
    color:var(--muted);
    margin-bottom:24px;
}
.sp-speciality-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:8px;
    font-weight:700;
    color:var(--slate);
    transition:var(--transition);
}
.sp-speciality-btn i{
    transition:transform .3s ease;
}
.sp-speciality-item:hover .sp-speciality-btn i{
    transform:translateX(6px);
}
@media(max-width:991px){
    .sp-speciality-item{
        grid-template-columns:1fr;
        gap:0;
    }
    .sp-speciality-item.reverse .sp-speciality-image{
        order:1;
    }
    .sp-speciality-item.reverse .sp-speciality-content{
        order:2;
    }
    .sp-speciality-image{
        height:280px;
    }
    .sp-speciality-content{
        padding:30px;
    }
    .sp-speciality-content h3{
        font-size:28px;
    }
}

