:root{
    --primary:#087f8c;
    --primary-dark:#075c66;
    --secondary:#1769e0;
    --green:#20b486;
    --orange:#ff9f43;
    --pink:#ee5a8a;
    --light:#f4fbfc;
    --dark:#102a43;
    --text:#52606d;
    --white:#ffffff;
    --border:#e6eef2;
    --shadow:0 18px 50px rgba(19,74,82,.10);

    --c-respiratory:#0fae93;
    --c-vitals:#e08e1f;
    --c-mobility:#4c6fef;
    --c-clinical:#ef5da0;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'DM Sans',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

h1,h2,h3,h4{
    font-family:'Plus Jakarta Sans',sans-serif;
    color:var(--dark);
}

a{
    text-decoration:none;
    color:inherit;
}

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

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* ================= TOPBAR ================= */

.topbar{
    background:linear-gradient(90deg,var(--c-respiratory) 0%,var(--c-mobility) 38%,var(--c-vitals) 70%,var(--c-clinical) 100%);
    background-size:200% 100%;
    animation:topbar-gradient 14s ease infinite;
    color:#fff;
    box-shadow:0 4px 16px rgba(9,40,48,.12);
    position:relative;
    z-index:1001;
}

@keyframes topbar-gradient{
    0%,100%{background-position:0% 50%}
    50%{background-position:100% 50%}
}

.topbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    min-height:44px;
    padding:6px 0;
    flex-wrap:wrap;
}

.topbar .call{
    position:relative;
    display:flex;
    align-items:center;
    gap:9px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.2px;
    flex-shrink:0;
}

.topbar .call i{
    width:24px;
    height:24px;
    border-radius:50%;
    background:rgba(255,255,255,.22);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    transition:.25s;
}

.topbar .call::after{
    content:"";
    position:absolute;
    left:33px;
    right:0;
    bottom:-3px;
    height:1px;
    background:#fff;
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s;
}

.topbar .call:hover i{
    background:#fff;
    color:var(--c-mobility);
}

.topbar .call:hover::after{
    transform:scaleX(1);
}

.topbar-ticker{
    flex:1;
    max-width:480px;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);
    mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);
}

.ticker-track{
    display:flex;
    gap:38px;
    white-space:nowrap;
    width:max-content;
    animation:ticker-scroll 20s linear infinite;
}

.ticker-track span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    font-weight:700;
    color:rgba(255,255,255,.95);
}

.ticker-track i{
    font-size:11px;
    color:rgba(255,255,255,.85);
}

.topbar-ticker:hover .ticker-track{
    animation-play-state:paused;
}

@keyframes ticker-scroll{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}

.topbar .socials{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:0;
    flex-shrink:0;
}

.topbar .socials a{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    opacity:.95;
    transition:.25s;
}

.topbar .socials a:hover{
    opacity:1;
    transform:translateY(-3px) scale(1.1);
    box-shadow:0 8px 16px rgba(0,0,0,.22);
}

.topbar .socials a.fb{color:#1877F2;}
.topbar .socials a.ig{background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);color:#fff;}
.topbar .socials a.x{color:#000;}
.topbar .socials a.yt{color:#FF0000;}

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

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(8,127,140,.08);
    box-shadow:0 5px 18px rgba(19,74,82,.04);
}

@media (min-width:769px) and (max-width:1150px){
    .nav-links{gap:15px}
    .nav-links a{font-size:13px}
    .nav-btn{padding:10px 13px}
    .nav-icons{gap:6px;margin-left:2px}
}

.navbar{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:56px;
    width:auto;
}

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

.nav-links a{
    font-size:14px;
    font-weight:600;
    color:#405261;
    transition:.3s;
}

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

.nav-btn{
    background:linear-gradient(135deg,var(--primary),#13a99b);
    color:white!important;
    padding:11px 19px;
    border-radius:30px;
    box-shadow:0 8px 20px rgba(8,127,140,.20);
}

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

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

.hero{
    min-height:500px;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 90% 20%,rgba(41,196,181,.18),transparent 30%),
        radial-gradient(circle at 10% 80%,rgba(57,133,255,.10),transparent 25%),
        linear-gradient(135deg,#f3fcfc 0%,#fff 57%,#f5fbff 100%);
}

.hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(32,180,134,.08);
    right:-180px;
    top:100px;
}

.hero::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:1px solid rgba(23,105,224,.16);
    border-radius:50%;
    left:-105px;
    bottom:55px;
}

.hero-content{
    min-height:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:start;
    gap:32px;
    padding:30px 0 42px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 15px;
    border-radius:30px;
    background:#e5f8f5;
    color:var(--primary);
    font-weight:700;
    font-size:13px;
    margin-bottom:22px;
}

.badge i{
    color:#16b99c;
}

.hero h1{
    font-size:56px;
    line-height:1.08;
    letter-spacing:-2px;
    margin-bottom:22px;
}

.hero h1 span{
    background:linear-gradient(90deg,#087f8c,#1769e0,#20b486);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    max-width:560px;
    font-size:17px;
    line-height:1.8;
    color:#637381;
    margin-bottom:32px;
}

.home-proof{
    display:flex;
    flex-wrap:wrap;
    gap:10px 20px;
    margin-top:28px;
    color:#6c7f8a;
    font-size:12px;
    font-weight:600;
}

.home-proof div{
    display:flex;
    align-items:center;
    gap:7px;
}

.home-proof i{
    color:var(--primary);
    font-size:13px;
}

.home-proof strong{
    color:var(--dark);
    font-weight:800;
}

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

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:15px 25px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:linear-gradient(135deg,var(--primary),#13a99b);
    color:white;
    box-shadow:0 12px 28px rgba(8,127,140,.22);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 34px rgba(8,127,140,.28);
}

.btn-outline{
    border:1px solid #cbdde1;
    color:var(--dark);
    background:white;
}

.btn-outline:hover{
    border-color:var(--primary);
    color:var(--primary);
}

/* Hero visual */

.hero-visual{
    position:relative;
    height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.doctor-circle{
    width:390px;
    height:390px;
    border-radius:50%;
    background:linear-gradient(145deg,#d9f7f3,#eaf6ff 72%,#fff4e5);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-slide:first-child .hero-content > div:first-child{
    padding-top:18px;
}

.hero-slide:first-child .hero-visual::after{
    content:"CARE, MADE CLOSER";
    position:absolute;
    right:18px;
    bottom:8px;
    color:rgba(8,127,140,.42);
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
    transform:rotate(-8deg);
}

.doctor-circle::before{
    content:"";
    position:absolute;
    inset:25px;
    border:2px dashed rgba(8,127,140,.2);
    border-radius:50%;
}

.doctor-icon{
    width:230px;
    height:280px;
    border-radius:120px 120px 80px 80px;
    background:linear-gradient(160deg,#fff,#dff4f1);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 25px 50px rgba(8,127,140,.12);
    overflow:hidden;
}

.doctor-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:inherit;
}

.float-card{
    position:absolute;
    background:white;
    padding:16px 19px;
    border-radius:16px;
    box-shadow:var(--shadow);
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    color:var(--dark);
    animation:float 4s ease-in-out infinite;
}

.float-card i{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:17px;
}

.card-heart{
    top:80px;
    left:0;
}

.card-heart i{
    background:linear-gradient(135deg,var(--c-respiratory),#3fcaae);
}

.card-check{
    bottom:70px;
    right:0;
}

.card-check i{
    background:linear-gradient(135deg,var(--c-mobility),#7e97ff);
}

.card-temp{
    right:15px;
    top:180px;
}

.card-temp i{
    background:linear-gradient(135deg,var(--c-vitals),#ffc46b);
}

@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-10px)}
}

/* ================= BANNER SLIDER ================= */

.hero-slide{display:none;min-height:500px}
.hero-slide.active{display:block;animation:banner-in .65s ease both}
.hero-alt-slide .hero-content{position:relative;z-index:2}

@keyframes banner-in{
    from{opacity:0;transform:translateX(20px)}
    to{opacity:1;transform:translateX(0)}
}

.banner-device-showcase{
    position:relative;
    width:390px;
    height:390px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,#e4f9f6,#ebf2ff);
    box-shadow:inset 0 0 0 22px rgba(255,255,255,.42),0 28px 60px rgba(8,127,140,.13);
}

.vitals-showcase{background:linear-gradient(145deg,#eaf2ff,#fff4e5)}
.banner-orbit{position:absolute;border:1px dashed rgba(8,127,140,.28);border-radius:50%}
.orbit-one{inset:28px}.orbit-two{inset:62px;border-color:rgba(23,105,224,.18)}
.banner-icon{position:relative;z-index:1;width:190px;height:220px;border-radius:90px 90px 62px 62px;background:linear-gradient(155deg,#fff,#d9f4ef);display:flex;align-items:center;justify-content:center;box-shadow:0 22px 40px rgba(8,127,140,.13);overflow:hidden}
.vitals-showcase .banner-icon{background:linear-gradient(155deg,#fff,#e5edff)}
.banner-icon img{width:100%;height:100%;object-fit:cover;border-radius:inherit}
.banner-note{position:absolute;right:-15px;bottom:46px;z-index:2;display:flex;align-items:center;gap:10px;padding:14px 17px;border-radius:15px;background:#fff;box-shadow:var(--shadow);color:var(--dark);font-size:13px;font-weight:800}
.banner-note i{color:var(--green);font-size:20px}.banner-note small{color:#83949f;font-weight:500}

.slider-controls{position:absolute;z-index:10;left:50%;bottom:34px;transform:translateX(-50%);display:flex;align-items:center;gap:14px;padding:8px 11px;border:1px solid rgba(255,255,255,.7);border-radius:30px;background:rgba(255,255,255,.7);box-shadow:0 10px 28px rgba(19,74,82,.10);backdrop-filter:blur(10px)}
.slider-arrow{width:32px;height:32px;border:0;border-radius:50%;background:#fff;color:var(--primary);cursor:pointer;transition:.25s}.slider-arrow:hover{background:var(--primary);color:#fff}
.slider-dots{display:flex;gap:7px}.slider-dot{width:8px;height:8px;padding:0;border:0;border-radius:10px;background:#b7d5d6;cursor:pointer;transition:.25s}.slider-dot.active{width:25px;background:var(--primary)}

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

.trust{
    margin-top:-35px;
    position:relative;
    z-index:5;
}

.trust-box{
    background:white;
    border-radius:20px;
    box-shadow:0 20px 55px rgba(22,74,82,.12);
    padding:24px 30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-item{transition:.25s}
.trust-item:hover{transform:translateY(-3px)}

.trust-item{
    display:flex;
    align-items:center;
    gap:13px;
    border-right:1px solid var(--border);
}

.trust-item:last-child{
    border:none;
}

.trust-item i{
    font-size:25px;
    color:var(--primary);
}

.trust-item strong{
    display:block;
    color:var(--dark);
    font-size:15px;
}

.trust-item span{
    font-size:12px;
    color:#8795a1;
}

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

section{
    padding:100px 0;
}

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

.section-tag{
    display:inline-block;
    padding:7px 13px;
    border-radius:20px;
    background:#eaf8f6;
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

.section-head h2{
    font-size:38px;
    margin-bottom:14px;
}

.section-head p{
    line-height:1.8;
}

/* ================= ABOUT ================= */

.about{
    background:linear-gradient(180deg,#fff 0%,#faffff 100%);
}

.about-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    align-items:center;
    gap:70px;
}

.about-image{
    min-height:470px;
    border-radius:35px;
    background:var(--light);
    position:relative;
    overflow:hidden;
}

.about-photo-grid{
    position:absolute;
    inset:0;
    z-index:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr;
    gap:3px;
    background:#fff;
}

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

.about-tint{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(135deg,rgba(8,127,140,.40),rgba(23,105,224,.32));
}

.about-image::after{
    content:"";
    position:absolute;
    inset:20px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:25px;
    z-index:2;
}

.about-image::before{content:"";position:absolute;width:170px;height:170px;right:-55px;top:-55px;border-radius:50%;background:rgba(255,255,255,.18);z-index:2}

.experience{
    position:absolute;
    bottom:30px;
    left:30px;
    z-index:3;
    background:white;
    border-radius:18px;
    padding:18px 22px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.experience strong{
    font-size:28px;
    color:var(--primary);
}

.experience span{
    display:block;
    font-size:12px;
    color:#667;
}

.about-content h2{
    font-size:40px;
    margin-bottom:20px;
}

.about-content>p{
    line-height:1.9;
    margin-bottom:28px;
}

.about-list{
    list-style:none;
    display:grid;
    gap:14px;
}

.about-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.about-list i{
    color:var(--green);
    margin-top:4px;
}

/* ================= PRODUCTS ================= */

.products{
    background:linear-gradient(180deg,#f4fbfc 0%,#eef8fa 100%);
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-bottom:60px;
}

.shop-card{
    background:white;
    border:1px solid #e9f0f2;
    border-radius:22px;
    padding:26px 22px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.shop-card::before{content:"";position:absolute;left:0;right:0;top:0;height:4px;background:linear-gradient(90deg,var(--primary),var(--secondary));opacity:0;transition:.35s}

.shop-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.shop-card:hover::before{opacity:1}

.shop-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:23px;
    margin-bottom:18px;
}

.sc1{background:#e3f7f2;color:var(--c-respiratory)}
.sc2{background:#fdf2e3;color:var(--c-vitals)}
.sc3{background:#e9edfd;color:var(--c-mobility)}
.sc4{background:#fdeaf3;color:var(--c-clinical)}

.shop-card .cat-tag{
    display:block;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.sc1 ~ .cat-tag, .shop-card.r-respiratory .cat-tag{ color:var(--c-respiratory); }

.shop-card h3{
    font-size:19px;
    margin-bottom:8px;
}

.shop-card p{
    font-size:13px;
    line-height:1.7;
    margin-bottom:16px;
}

.shop-card ul{
    list-style:none;
    display:grid;
    gap:6px;
    font-size:12px;
    color:#8795a1;
    border-top:1px solid var(--border);
    padding-top:14px;
    margin-bottom:14px;
}

.shop-card ul code{
    font-size:10px;
    background:var(--light);
    padding:2px 6px;
    border-radius:6px;
    color:var(--primary);
}

.product-link{
    color:var(--primary);
    font-weight:700;
    font-size:13px;
}

.devices-subhead{
    text-align:center;
    margin-bottom:36px;
}

.devices-subhead h3{
    font-size:24px;
    margin-bottom:8px;
}

.devices-subhead p{
    font-size:14px;
    color:#8795a1;
}

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

.product-card{
    background:white;
    border:1px solid #e9f0f2;
    border-radius:22px;
    padding:20px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.product-card:hover .gallery-img.active{transform:scale(1.05)}

.product-image{
    height:200px;
    border-radius:17px;
    overflow:hidden;
    position:relative;
    margin-bottom:20px;
    background:var(--light);
}

.product-image .gallery-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
    opacity:0;
    z-index:1;
    transition:opacity .8s ease, transform .45s ease;
}

.product-image .gallery-img.active{
    opacity:1;
    z-index:2;
}

.product-model{
    position:absolute;
    top:12px;
    right:12px;
    z-index:3;
    background:rgba(16,42,67,.75);
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:.5px;
    padding:4px 9px;
    border-radius:20px;
}

.product-card .cat-tag{
    display:inline-block;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:6px;
}

.t-respiratory{color:var(--c-respiratory)}
.t-vitals{color:var(--c-vitals)}
.t-mobility{color:var(--c-mobility)}
.t-clinical{color:var(--c-clinical)}

.product-card h3{
    font-size:19px;
    margin-bottom:8px;
}

.product-card p{
    font-size:13px;
    line-height:1.7;
    margin-bottom:18px;
}

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

.why{
    position:relative;
    background:linear-gradient(180deg,#fff 0%,#f8fcfd 100%);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.why-card{
    padding:30px 24px;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--border);
    transition:.3s;
}

.why-card:nth-child(odd){background:linear-gradient(145deg,#fff,#faffff)}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.why-icon{
    width:55px;
    height:55px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:22px;
}

.icon1{background:#e5f8f5;color:#087f8c}
.icon2{background:#eaf1ff;color:#1769e0}
.icon3{background:#fff0df;color:#ff9f43}
.icon4{background:#ffeaf1;color:#ee5a8a}

.why-card h3{
    font-size:17px;
    margin-bottom:10px;
}

.why-card p{
    font-size:13px;
    line-height:1.7;
}

/* ================= REVIEWS ================= */

.reviews{
    padding:100px 0;
    overflow:hidden;
    background:radial-gradient(circle at 6% 15%,rgba(32,180,134,.10),transparent 24%),radial-gradient(circle at 96% 86%,rgba(23,105,224,.11),transparent 26%),#f8fcfd;
}

.review-intro{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:42px;
}

.review-intro h2{font-size:38px;max-width:560px}

.review-score{
    flex-shrink:0;
    padding:16px 20px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 12px 28px rgba(19,74,82,.07);
}

.review-score strong{display:block;color:var(--dark);font-size:23px;line-height:1}
.review-score .stars{color:#f3ad27;font-size:13px;letter-spacing:2px;margin:7px 0 4px}
.review-score span:last-child{color:#778b98;font-size:12px}

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

.review-card{
    position:relative;
    min-height:260px;
    padding:30px;
    border:1px solid #e4eef1;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 24px rgba(19,74,82,.05);
    transition:.35s;
}

.review-card:hover{transform:translateY(-7px);box-shadow:var(--shadow)}
.review-card::before{content:"\201C";position:absolute;right:23px;top:12px;color:#d8f2ef;font-family:Georgia,serif;font-size:78px;line-height:1}
.review-stars{color:#f2a928;font-size:14px;letter-spacing:2px;margin-bottom:18px}
.review-card blockquote{position:relative;color:#405261;font-size:15px;line-height:1.8;margin-bottom:24px}
.reviewer{display:flex;align-items:center;gap:12px}
.reviewer-avatar{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;font-weight:800;background:linear-gradient(135deg,#0fae93,#45cbb4)}
.review-card:nth-child(2) .reviewer-avatar{background:linear-gradient(135deg,#1769e0,#728cf5)}
.review-card:nth-child(3) .reviewer-avatar{background:linear-gradient(135deg,#e08e1f,#f4b75e)}
.reviewer strong{display:block;color:var(--dark);font-size:13px}
.reviewer span{display:block;color:#82939e;font-size:11px;margin-top:3px}

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

.cta{
    padding:80px 0;
}

.cta-box{
    background:
        radial-gradient(circle at 90% 10%,rgba(255,255,255,.2),transparent 30%),
        linear-gradient(120deg,#087f8c,#1769e0);
    border-radius:30px;
    padding:60px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    overflow:hidden;
    position:relative;
    box-shadow:0 24px 55px rgba(8,127,140,.20);
}

.cta-box::before{
    content:"";
    width:250px;
    height:250px;
    position:absolute;
    right:-80px;
    bottom:-120px;
    border:50px solid rgba(255,255,255,.08);
    border-radius:50%;
}

.cta-box h2{
    color:white;
    font-size:32px;
    margin-bottom:22px;
    max-width:480px;
}

.cta-info{
    display:grid;
    gap:12px;
    margin-bottom:26px;
}

.cta-info div{
    display:flex;
    gap:10px;
    font-size:13.5px;
    color:rgba(255,255,255,.9);
}

.cta-info i{
    margin-top:3px;
    color:#bdf5ea;
}

.cta-right{
    flex-shrink:0;
}

.cta .btn{
    background:white;
    color:var(--primary);
    white-space:nowrap;
}

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

footer{
    background:linear-gradient(135deg,#092f38,#0b3b46);
    color:#a9c2c7;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:50px;
    padding-bottom:50px;
}

.footer-logo{
    height:40px;
    margin-bottom:18px;
    filter:brightness(0) invert(1);
}

.footer-about{
    line-height:1.8;
    font-size:13px;
}

footer h4{
    color:white;
    margin-bottom:18px;
    font-size:15px;
}

.footer-links{
    list-style:none;
    display:grid;
    gap:11px;
    font-size:13px;
}

.footer-links a:hover{
    color:white;
}

.contact-info{
    display:grid;
    gap:12px;
    font-size:13px;
}

.contact-info div{
    display:flex;
    gap:10px;
}

.contact-info i{
    color:#28d0b9;
    margin-top:3px;
}

footer .socials{
    display:flex;
    gap:10px;
    margin-top:20px;
}

footer .socials a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    transition:.3s;
}

footer .socials a:hover{
    transform:translateY(-3px);
    filter:brightness(1.1);
}

footer .socials a.fb{background:#1877F2;}
footer .socials a.ig{background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);}
footer .socials a.x{background:#000;}
footer .socials a.yt{background:#FF0000;}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:22px;
    font-size:12px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

/* ================= WHATSAPP ================= */

.call-float{
    position:fixed;
    right:22px;
    bottom:92px;
    z-index:900;
    width:56px;
    height:56px;
    border-radius:50%;
    background:linear-gradient(135deg,#087f8c,#13a99b);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px rgba(8,127,140,.30);
    transition:.25s;
}

.call-float:hover{
    transform:translateY(-4px) scale(1.05);
}

.call-float i{
    color:#fff;
    font-size:22px;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:900;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 22px rgba(0,0,0,.28);
    transition:.2s;
}

.whatsapp-float:hover{
    transform:scale(1.07);
}

.whatsapp-float i{
    font-size:26px;
    color:#fff;
}

.whatsapp-float .ping{
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#25D366;
    z-index:-1;
    animation:wa-ping 2.4s ease-out infinite;
}

@keyframes wa-ping{
    0%{transform:scale(1);opacity:.55}
    100%{transform:scale(1.9);opacity:0}
}

/* ================= PAGE HERO (subpages) ================= */

.page-hero{
    padding:64px 0 48px;
    text-align:center;
    background:
        radial-gradient(circle at 90% 10%,rgba(41,196,181,.14),transparent 30%),
        radial-gradient(circle at 8% 90%,rgba(23,105,224,.08),transparent 25%),
        linear-gradient(135deg,#f3fcfc,#fff 60%);
}

.page-hero .section-tag{
    margin-bottom:16px;
}

.page-hero h1{
    font-size:44px;
    line-height:1.15;
    letter-spacing:-1px;
    max-width:780px;
    margin:0 auto 16px;
}

.page-hero .lede{
    max-width:640px;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:#637381;
}

/* ================= ABOUT US ================= */

.aboutus-hero{
    padding-bottom:34px;
}

.aboutus-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    max-width:760px;
    margin:34px auto 0;
    border-top:1px solid rgba(8,127,140,.14);
    border-bottom:1px solid rgba(8,127,140,.14);
}

.aboutus-hero-stats div{
    display:flex;
    flex-direction:column;
    gap:5px;
    padding:18px 20px;
}

.aboutus-hero-stats div + div{
    border-left:1px solid rgba(8,127,140,.14);
}

.aboutus-hero-stats strong{
    font-family:'Plus Jakarta Sans',sans-serif;
    color:var(--primary);
    font-size:24px;
}

.aboutus-hero-stats span{
    color:#6c7f8a;
    font-size:12px;
    font-weight:700;
}

.aboutus-intro{
    padding:88px 0 94px;
}

.aboutus-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:76px;
    align-items:center;
}

.aboutus-image-stack{
    min-height:450px;
    position:relative;
}

.aboutus-image{
    position:absolute;
    overflow:hidden;
    background:var(--light);
    box-shadow:var(--shadow);
}

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

.aboutus-image-main{
    inset:0 64px 45px 0;
    border-radius:28px 80px 28px 80px;
}

.aboutus-image-small{
    width:190px;
    height:190px;
    right:0;
    bottom:0;
    border:10px solid #fff;
    border-radius:50%;
}

.aboutus-image-label{
    position:absolute;
    left:24px;
    bottom:18px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:12px 16px;
    border-radius:12px;
    background:#fff;
    box-shadow:var(--shadow);
    color:var(--dark);
    font-size:12px;
    font-weight:800;
}

.aboutus-image-label i{color:var(--primary);font-size:18px}

.aboutus-copy h2{
    font-size:36px;
    line-height:1.2;
    margin-bottom:20px;
}

.aboutus-copy p{
    line-height:1.85;
    margin-bottom:16px;
}

.aboutus-copy .btn{margin-top:12px}

.aboutus-principles{
    padding:88px 0;
    background:#f7fbfc;
}

.aboutus-principle-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.aboutus-principle{
    padding:27px 23px;
    min-height:245px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 30px rgba(19,74,82,.05);
}

.aboutus-principle h3{font-size:17px;margin:22px 0 10px}
.aboutus-principle p{font-size:13px;line-height:1.75}
.aboutus-principle .why-icon{width:48px;height:48px}

.aboutus-founders{padding:90px 0}

@media(max-width:768px){
    .aboutus-hero-stats{grid-template-columns:1fr;max-width:360px}
    .aboutus-hero-stats div + div{border-left:0;border-top:1px solid rgba(8,127,140,.14)}
    .aboutus-hero-stats div{padding:14px 18px}
    .aboutus-intro{padding:64px 0 70px}
    .aboutus-intro-grid{grid-template-columns:1fr;gap:45px}
    .aboutus-image-stack{min-height:350px}
    .aboutus-image-main{inset:0 44px 36px 0}
    .aboutus-image-small{width:145px;height:145px}
    .aboutus-copy h2{font-size:30px}
    .aboutus-principles{padding:70px 0}
    .aboutus-principle-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:480px){
    .aboutus-principle-grid{grid-template-columns:1fr}
    .aboutus-image-stack{min-height:300px}
    .aboutus-image-label{left:10px;bottom:8px;font-size:11px}
}

/* ================= WHY / REVIEWS PAGES ================= */

.why-page-hero,
.reviews-page-hero{
    padding-bottom:64px;
}

.why-page{
    padding:96px 0;
}

.why-practice{
    padding:88px 0;
    background:#f7fbfc;
}

.why-practice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:42px;
}

.why-practice-grid > div{
    padding-top:18px;
    border-top:2px solid var(--primary);
}

.why-practice-grid > div:nth-child(2){border-color:var(--secondary)}
.why-practice-grid > div:nth-child(3){border-color:var(--orange)}
.why-practice-grid h2{font-size:24px;line-height:1.3;margin:18px 0 12px}
.why-practice-grid p{font-size:14px;line-height:1.8}

.review-page-score{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:28px;
    padding:12px 17px;
    border:1px solid rgba(8,127,140,.14);
    border-radius:16px;
    background:rgba(255,255,255,.78);
    box-shadow:0 10px 24px rgba(19,74,82,.06);
}

.review-page-score strong{font-size:24px;color:var(--dark)}
.review-page-score .stars{color:#f3ad27;letter-spacing:2px}
.review-page-score span{font-size:12px;color:#778b98}

.reviews-page{padding-top:88px}

@media(max-width:768px){
    .why-page{padding:70px 0}
    .why-practice{padding:70px 0}
    .why-practice-grid{grid-template-columns:1fr;gap:30px}
    .why-practice-grid h2{font-size:22px}
    .review-page-score{flex-wrap:wrap;justify-content:center}
    .reviews-page{padding-top:70px}
}

/* ================= PRODUCT DETAIL (products/*.html) ================= */

.pd-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:60px;
    align-items:start;
    padding:10px 0 30px;
}

.pd-image{
    height:420px;
    border-radius:26px;
    margin-bottom:0;
}

.pd-thumbs{
    display:flex;
    gap:10px;
    margin-top:14px;
}

.pd-thumbs button{
    width:64px;
    height:64px;
    border-radius:12px;
    border:2px solid var(--border);
    background:var(--light);
    padding:6px;
    cursor:pointer;
    transition:.2s;
}

.pd-thumbs button.active{
    border-color:var(--primary);
}

.pd-thumbs img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.pd-info .cat-tag{
    display:inline-block;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.pd-info h1{
    font-size:34px;
    margin-bottom:6px;
}

.pd-model{
    font-size:13px;
    color:#8795a1;
    font-weight:700;
    margin-bottom:18px;
}

.pd-desc{
    font-size:15.5px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:22px;
}

.pd-amazon{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:9px 16px;
    border-radius:30px;
    background:#fff4e0;
    color:#b8720a;
    font-weight:800;
    font-size:12.5px;
    margin-bottom:26px;
}

.pd-amazon i{
    font-size:15px;
}

.pd-features{
    margin-bottom:30px;
}

.pd-actions{
    max-width:440px;
}

/* ================= PRODUCT CATALOG (our-products.html) ================= */

.cat-section{
    padding:56px 0;
    border-top:1px solid var(--border);
}

.cat-section:first-of-type{
    border-top:0;
    padding-top:10px;
}

.cat-section-head{
    display:flex;
    align-items:flex-start;
    gap:22px;
    flex-wrap:wrap;
    margin-bottom:34px;
}

.cat-num{
    flex-shrink:0;
    font-family:'Plus Jakarta Sans',sans-serif;
    font-weight:800;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:8px 14px;
    border-radius:20px;
    background:#eaf8f6;
    color:var(--primary);
    margin-top:2px;
}

.cat-section.c-respiratory .cat-num{background:#e3f7f2;color:var(--c-respiratory)}
.cat-section.c-vitals .cat-num{background:#fdf2e3;color:var(--c-vitals)}
.cat-section.c-mobility .cat-num{background:#e9edfd;color:var(--c-mobility)}
.cat-section.c-clinical .cat-num{background:#fdeaf3;color:var(--c-clinical)}

.cat-section-head h2{
    font-size:27px;
    margin-bottom:6px;
}

.cat-section-head p{
    font-size:14px;
    color:#8795a1;
    max-width:540px;
}

/* ================= OUR STORY ================= */

.story-block{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    align-items:start;
    gap:60px;
    padding:10px 0 20px;
}

.story-block .figure{
    position:relative;
    background:linear-gradient(145deg,#0b3b46,#092f38);
    color:#fff;
    border-radius:28px;
    padding:46px 38px;
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:21px;
    font-weight:600;
    line-height:1.55;
}

.story-block .figure::before{
    content:"\201C";
    position:absolute;
    top:8px;
    left:26px;
    font-family:Georgia,serif;
    font-size:70px;
    line-height:1;
    color:rgba(255,255,255,.18);
}

.story-block .body p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:20px;
}

.mission-strip{
    background:linear-gradient(120deg,#087f8c,#1769e0);
    padding:52px 0;
    margin:20px 0 0;
}

.mission-strip blockquote{
    max-width:820px;
    margin:0 auto;
    text-align:center;
    color:#fff;
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:26px;
    font-weight:700;
    line-height:1.5;
}

.founder-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.founder-card{
    background:#fff;
    border:1px solid var(--border);
    border-top:4px solid var(--primary);
    border-radius:22px;
    padding:34px 30px;
    transition:.3s;
}

.founder-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.founder-card.c-respiratory{border-top-color:var(--c-respiratory)}
.founder-card.c-mobility{border-top-color:var(--c-mobility)}

.founder-card .role{
    margin-bottom:14px;
}

.founder-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.founder-card p{
    font-size:14px;
    line-height:1.8;
}

/* ================= CONTACT ================= */

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    align-items:start;
    gap:50px;
    padding:10px 0 20px;
}

.contact-details{
    display:grid;
    gap:26px;
}

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

.contact-item .ci-icon{
    flex-shrink:0;
    width:44px;
    height:44px;
    border-radius:12px;
    background:#e5f8f5;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.contact-item strong{
    display:block;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#8795a1;
    margin-bottom:4px;
}

.contact-item p,
.contact-item a{
    font-size:15px;
    font-weight:600;
    line-height:1.6;
    color:var(--dark);
}

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

.form-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:36px;
    box-shadow:var(--shadow);
}

.form-card .section-tag{
    margin-bottom:20px;
}

.field-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.field{
    display:grid;
    gap:8px;
    margin-bottom:16px;
}

.field label{
    font-size:12px;
    font-weight:700;
    color:var(--dark);
}

.field input,
.field select,
.field textarea{
    border:1px solid var(--border);
    border-radius:12px;
    padding:12px 14px;
    font-family:inherit;
    font-size:14px;
    color:var(--dark);
    background:var(--light);
    transition:.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    outline:none;
    border-color:var(--primary);
    background:#fff;
    box-shadow:0 0 0 3px rgba(8,127,140,.12);
}

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

/* ================= ENQUIRY POPUP ================= */

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(9,40,48,.5);
    backdrop-filter:blur(2px);
    z-index:1400;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.modal-overlay.active{
    opacity:1;
    visibility:visible;
}

.enquiry-modal{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-46%);
    width:min(460px,92vw);
    max-height:88vh;
    overflow-y:auto;
    background:#fff;
    border-radius:24px;
    padding:36px 32px;
    z-index:1500;
    box-shadow:0 30px 80px rgba(19,74,82,.25);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.enquiry-modal.active{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,-50%);
}

.enquiry-modal .modal-close{
    position:absolute;
    top:18px;
    right:18px;
    width:34px;
    height:34px;
    border-radius:50%;
    border:none;
    background:var(--light);
    color:var(--dark);
    cursor:pointer;
    transition:.2s;
}

.enquiry-modal .modal-close:hover{
    background:var(--primary);
    color:#fff;
}

.enquiry-modal h3{
    font-size:22px;
    margin:6px 0 24px;
}

.enquiry-modal form{
    display:grid;
}

.enquiry-modal .btn{
    width:100%;
    margin-top:6px;
}

/* Product actions */

.product-actions{
    display:flex;
    gap:10px;
    margin-bottom:14px;
}

.btn-enquire,
.btn-add-cart,
.btn-buy-now{
    flex:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:11px 10px;
    border-radius:10px;
    font-size:12.5px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
    border:1px solid var(--border);
}

.btn-enquire,
.btn-add-cart{
    background:var(--light);
    color:var(--primary);
}

.btn-enquire:hover,
.btn-add-cart:hover{
    background:#e5f8f5;
}

.btn-buy-now{
    background:linear-gradient(135deg,var(--primary),#13a99b);
    color:#fff;
    border:none;
}

.btn-buy-now:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(8,127,140,.25);
}

.btn-wishlist{
    flex:0 0 46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    border:1px solid var(--border);
    background:var(--light);
    color:#8795a1;
    cursor:pointer;
    font-size:15px;
    transition:.25s;
}

.btn-wishlist:hover{
    background:#ffeaf1;
    color:var(--c-clinical);
}

.btn-wishlist.active{
    background:#ffeaf1;
    border-color:#f6c6d8;
    color:var(--c-clinical);
}

/* Category filters */

.product-filters{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:34px;
}

.filter-btn{
    padding:9px 18px;
    border-radius:30px;
    border:1px solid var(--border);
    background:#fff;
    color:var(--text);
    font-size:12.5px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.filter-btn:hover{
    border-color:var(--primary);
    color:var(--primary);
}

.filter-btn.active{
    background:linear-gradient(135deg,var(--primary),#13a99b);
    border-color:transparent;
    color:#fff;
}

/* Assurance strip */

.assurance-strip{
    padding:26px 0;
    background:var(--light);
    border-bottom:1px solid var(--border);
}

.assurance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.assurance-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:700;
    color:var(--dark);
}

.assurance-item i{
    color:var(--primary);
    font-size:16px;
    flex-shrink:0;
}

/* Professional testimonials */

.pro-badge{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:6px 12px;
    border-radius:20px;
    background:#eaf1ff;
    color:var(--secondary);
    font-size:11px;
    font-weight:800;
    margin-bottom:16px;
}

/* ================= MOBILE ================= */

@media(max-width:1000px){

    .hero h1{
        font-size:46px;
    }

    .banner-device-showcase{width:360px;height:360px}
    .banner-icon{width:160px;height:185px}
    .banner-icon i{font-size:76px}

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

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

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

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

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

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

}

@media(max-width:768px){

    .topbar .container{
        justify-content:center;
        text-align:center;
    }

    .topbar-ticker{
        display:none;
    }

    .navbar{
        height:70px;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        gap:0;
        padding:10px 20px 20px;
        box-shadow:0 15px 30px rgba(0,0,0,.08);
        display:none;
    }

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

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        padding:14px 5px;
    }

    .nav-btn{
        text-align:center;
    }

    .menu-btn{
        display:block;
    }

    .hero{
        min-height:auto;
    }

    .hero-slide{min-height:auto}

    .hero-content{
        grid-template-columns:1fr;
        min-height:auto;
        padding:48px 0 58px;
        text-align:center;
    }

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

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

    .home-proof{
        justify-content:center;
        gap:10px 14px;
    }

    .hero-visual{
        height:400px;
    }

    .banner-device-showcase{width:310px;height:310px;margin-top:10px}
    .banner-note{right:-12px;bottom:25px;padding:11px 13px;font-size:11px;text-align:left}
    .slider-controls{bottom:18px}

    .doctor-circle{
        width:310px;
        height:310px;
    }

    .doctor-icon{
        width:170px;
        height:210px;
    }

    .doctor-icon i{
        font-size:80px;
    }

    .float-card{
        transform:scale(.82);
    }

    .card-heart{
        left:-15px;
        top:30px;
    }

    .card-check{
        right:-10px;
        bottom:30px;
    }

    .card-temp{
        right:-10px;
        top:120px;
    }

    .trust{
        margin-top:0;
        padding:20px 0;
    }

    .trust-box{
        grid-template-columns:repeat(2,1fr);
        padding:20px;
    }

    .trust-item{
        border:none;
    }

    section{
        padding:70px 0;
    }

    .section-head h2,
    .about-content h2{
        font-size:30px;
    }

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

    .about-image{
        min-height:350px;
    }

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

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

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

    .cta-box{
        padding:40px 25px;
        flex-direction:column;
        text-align:center;
    }

    .cta-box h2{
        font-size:27px;
        max-width:none;
    }

    .cta-info div{
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

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

    .story-block{
        grid-template-columns:1fr;
        gap:34px;
    }

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

    .contact-grid{
        grid-template-columns:1fr;
        gap:34px;
    }

    .pd-grid{
        grid-template-columns:1fr;
        gap:34px;
    }

    .pd-image{
        height:320px;
    }

    .field-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .mission-strip blockquote{
        font-size:21px;
    }

    .enquiry-modal{
        padding:30px 24px;
    }

    .product-actions{
        flex-direction:column;
    }

    .assurance-grid{
        grid-template-columns:1fr 1fr;
        text-align:left;
    }
}

@media(max-width:480px){

    .review-intro{align-items:flex-start;flex-direction:column;margin-bottom:30px}
    .review-intro h2{font-size:31px}
    .review-grid{grid-template-columns:1fr}
    .review-card{min-height:auto}

    .container{
        width:90%;
    }

    .logo img{
        height:40px;
    }

    .hero h1{
        font-size:37px;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:14px;
    }

    .home-proof{
        display:grid;
        grid-template-columns:1fr;
        justify-items:center;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .banner-device-showcase{width:270px;height:270px}
    .banner-icon{width:130px;height:150px}
    .banner-icon i{font-size:62px}
    .banner-note{right:-8px;bottom:16px}

    .hero-visual{
        height:340px;
    }

    .doctor-circle{
        width:260px;
        height:260px;
    }

    .doctor-icon{
        width:140px;
        height:170px;
    }

    .doctor-icon i{
        font-size:65px;
    }

    .float-card{
        font-size:11px;
        padding:10px;
    }

    .float-card i{
        width:32px;
        height:32px;
    }

    .trust-box{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .trust-item{
        font-size:11px;
    }

    .trust-item i{
        font-size:18px;
    }

    .product-image{
        height:170px;
    }

    .cta-box .btn{
        width:100%;
    }

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

    .product-filters{
        gap:8px;
    }

    .filter-btn{
        padding:8px 14px;
        font-size:12px;
    }
}

/* ================= NAV ICONS (CART / WISHLIST / ACCOUNT) ================= */

.nav-icons{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:6px;
}

.nav-icon-btn{
    position:relative;
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--light);
    color:var(--dark);
    font-size:15px;
    transition:.25s;
    flex-shrink:0;
}

.nav-icon-btn:hover{
    background:#e5f8f5;
    color:var(--primary);
}

.icon-badge{
    position:absolute;
    top:-3px;
    right:-3px;
    min-width:17px;
    height:17px;
    padding:0 4px;
    border-radius:10px;
    background:var(--pink);
    color:#fff;
    font-size:9.5px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    border:2px solid #fff;
}

/* ================= CART PAGE ================= */

.cart-layout{
    display:grid;
    grid-template-columns:1.8fr 1fr;
    align-items:start;
    gap:40px;
}

.cart-list{
    display:grid;
    gap:16px;
}

.cart-row{
    display:grid;
    grid-template-columns:80px 1fr auto auto auto;
    align-items:center;
    gap:18px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px;
}

.cart-row-img{
    width:80px;
    height:80px;
    border-radius:12px;
    overflow:hidden;
    background:var(--light);
}

.cart-row-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cart-row-info h3{
    font-size:16px;
    margin-bottom:4px;
}

.cart-row-price{
    font-size:13px;
    color:#8795a1;
    font-weight:700;
}

.qty-stepper{
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--border);
    border-radius:30px;
    padding:6px 4px;
}

.qty-btn{
    width:26px;
    height:26px;
    border-radius:50%;
    border:none;
    background:var(--light);
    color:var(--dark);
    font-weight:800;
    cursor:pointer;
    transition:.2s;
}

.qty-btn:hover{
    background:var(--primary);
    color:#fff;
}

.qty-val{
    min-width:18px;
    text-align:center;
    font-weight:700;
    color:var(--dark);
    font-size:14px;
}

.cart-row-total{
    font-weight:800;
    color:var(--dark);
    font-size:15px;
    white-space:nowrap;
}

.cart-remove{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    color:#c94f6d;
    cursor:pointer;
    transition:.2s;
}

.cart-remove:hover{
    background:#ffeaf1;
    border-color:#f6c6d8;
}

.summary-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    box-shadow:var(--shadow);
    position:sticky;
    top:90px;
}

.summary-card h3{
    font-size:18px;
    margin-bottom:20px;
}

.summary-line{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    color:var(--text);
    margin-bottom:12px;
}

.summary-line.total{
    border-top:1px solid var(--border);
    padding-top:16px;
    margin-top:6px;
    font-weight:800;
    color:var(--dark);
    font-size:17px;
}

.summary-card .btn{
    width:100%;
    margin-top:18px;
}

.summary-note{
    margin-top:14px;
    font-size:12px;
    color:#8795a1;
    text-align:center;
}

.empty-state{
    text-align:center;
    padding:70px 20px;
    background:#fff;
    border:1px dashed var(--border);
    border-radius:24px;
}

.empty-state i{
    font-size:42px;
    color:#c9dbe0;
    margin-bottom:18px;
}

.empty-state h3{
    font-size:22px;
    margin-bottom:10px;
}

.empty-state p{
    font-size:14px;
    margin-bottom:24px;
}

/* ================= CHECKOUT ================= */

.checkout-layout{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:40px;
    align-items:start;
}

.checkout-line{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    padding:10px 0;
    border-bottom:1px solid var(--border);
}

.checkout-total{
    border-bottom:none;
    padding-top:16px;
    font-size:17px;
    font-weight:800;
    color:var(--dark);
}

.checkout-success{
    text-align:center;
    padding:50px 30px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
}

.checkout-success i{
    font-size:52px;
    color:var(--green);
    margin-bottom:20px;
}

.checkout-success h3{
    font-size:24px;
    margin-bottom:10px;
}

.checkout-success .order-id{
    display:inline-block;
    margin:14px 0 22px;
    padding:8px 16px;
    border-radius:30px;
    background:var(--light);
    color:var(--primary);
    font-weight:800;
    font-size:13px;
}

/* ================= AUTH (LOGIN / SIGNUP) ================= */

.auth-wrap{
    display:flex;
    justify-content:center;
    padding:10px 0 20px;
}

.auth-card{
    width:min(440px,100%);
}

.auth-card .form-card{
    padding:40px;
}

.auth-switch{
    text-align:center;
    margin-top:20px;
    font-size:13.5px;
    color:#637381;
}

.auth-switch a{
    color:var(--primary);
    font-weight:700;
}

.form-error{
    display:none;
    background:#fff0f0;
    color:#c0392b;
    border:1px solid #f5c6c6;
    border-radius:10px;
    padding:10px 14px;
    font-size:13px;
    margin-bottom:16px;
}

/* ================= ACCOUNT ================= */

.account-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:40px;
    align-items:start;
}

.account-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
    text-align:center;
}

.account-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#13a99b);
    color:#fff;
    font-size:26px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
}

.account-card h3{
    font-size:19px;
    margin-bottom:4px;
}

.account-card p{
    font-size:13px;
    margin-bottom:4px;
}

.account-card .btn{
    width:100%;
    margin-top:20px;
}

.account-links{
    display:grid;
    gap:10px;
    margin-top:24px;
    text-align:left;
}

.account-links a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 4px;
    font-size:13.5px;
    font-weight:700;
    color:var(--dark);
    border-top:1px solid var(--border);
}

.account-links a:hover{
    color:var(--primary);
}

.order-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid var(--border);
}

.order-row strong{
    display:block;
    color:var(--dark);
    font-size:14px;
}

.order-row span{
    display:block;
    font-size:12px;
    color:#8795a1;
    margin-top:3px;
}

.order-row div:last-child{
    font-weight:800;
    color:var(--primary);
}

.empty-note{
    font-size:13.5px;
    color:#8795a1;
    padding:20px 0;
}

/* ================= TOAST ================= */

.tsh-toast{
    position:fixed;
    left:50%;
    bottom:30px;
    transform:translate(-50%,20px);
    background:var(--dark);
    color:#fff;
    padding:13px 22px;
    border-radius:30px;
    font-size:13.5px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:2000;
    max-width:88vw;
    text-align:center;
}

.tsh-toast.show{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
}

@media(max-width:768px){

    .nav-icons{
        gap:6px;
        margin-left:0;
    }

    .nav-icon-btn{
        width:36px;
        height:36px;
        font-size:14px;
    }

    .cart-layout,
    .checkout-layout,
    .account-grid{
        grid-template-columns:1fr;
    }

    .cart-row{
        grid-template-columns:60px 1fr;
        grid-template-areas:
            "img info"
            "qty qty"
            "total remove";
    }

    .cart-row-img{ grid-area:img; width:60px; height:60px; }
    .cart-row-info{ grid-area:info; }
    .qty-stepper{ grid-area:qty; justify-self:start; }
    .cart-row-total{ grid-area:total; }
    .cart-remove{ grid-area:remove; justify-self:end; }

    .summary-card{ position:static; }

    .auth-card .form-card{ padding:28px 24px; }
}

.dnone{
	display:none;
}