:root {
    --navy: #EAF7FB;
    --navy2: #DDF3F8;
    --green: #F9B233;
    --green2: #F39C12;
    --ink: #1E5B73;
    --muted: #6B8A96;
    --chip: rgba(30, 91, 115, 0.08);
    --chipb: rgba(30, 91, 115, 0.15);

    --primary: #27BDBE;
    --primary-dark: #1FA4A5;
    --secondary: #F9B233;
    --accent: #FF7A59;
    --soft-blue: #EAF7FB;
    --soft-yellow: #FFF4CC;
    --soft-orange: #FFE1D6;
    --white: #ffffff;

    --ink-2: #143f55;
    --good: #18a777;
    --bad: #ff6b81;
    --bg: #f6fbff;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(30, 91, 115, 0.10);
    --shadow-lg: 0 20px 50px rgba(30, 91, 115, 0.12);
}

@font-face {
    font-family: 'Linotte';
    src: url('assets/fonts/Linotte-Regular.woff2') format('woff2'),
         url('assets/fonts/Linotte-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Linotte';
    src: url('assets/fonts/Linotte-SemiBold.woff2') format('woff2'),
         url('assets/fonts/Linotte-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Linotte';
    src: url('assets/fonts/Linotte-Bold.woff2') format('woff2'),
         url('assets/fonts/Linotte-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    
}

img, iframe, video {
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    background: #F9FDFF;
    font-family: 'Linotte', Arial, sans-serif;
    color: var(--ink);
    padding-top: 45px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6,
.hw-title,
.vsdiff__title,
.g-title,
.cta-title,
.hs-title,
.about-pro__title,
.g199-title,
.section-title,
.faq-title,
.shv-head h2,
.shv-when-4row .shv-head h2,
.impv2-head h2,
.ft-logo,
.ft h3,
.step-content h3,
.hs-step h3 {
    font-family: 'Quicksand', sans-serif !important;
    letter-spacing: 0.2px;
    color: var(--ink);
    font-weight: 700;
}

section, div, .container, .hero, .hero-grid, .cta-shell, .about-pro__wrap,
.shv-wrap, .impv2-wrap, .vsdiff__wrap, .g-wrap, .hs-wrap, .faq-wrap, .ft-wrap {
    max-width: 100%;
}

.top-brand-bar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(90deg, #27BDBE, #52D1C8);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}

.top-brand-bar-fixed span {
    color: #FFF3B0;
    font-weight: 800;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-family: 'Linotte', Arial, sans-serif;
    cursor: pointer;
    border: 0;
    max-width: 100%;
    text-align: center;
}

.btn i {
    font-size: 16px;
}

.btn-fill {
    color: #fff;
    background: linear-gradient(135deg, #F9B233, #FF9F1C);
    box-shadow: 0 12px 28px rgba(249, 178, 51, .28);
}

.btn-fill:active {
    transform: translateY(1px);
}

.btn.attn {
    position: relative;
    overflow: hidden;
}

.btn.attn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .25) 25%, rgba(255, 255, 255, .45) 35%, transparent 55%);
    transform: translateX(-120%);
    filter: blur(1px);
}

@keyframes shine {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* HERO */
.hero {
    background: linear-gradient(180deg, #EAF7FB 0%, #DDF3F8 100%);
    color: var(--ink);
    padding: 16px 0 50px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo {
    height: 44px;
    max-width: 100%;
}

.hero-grid {
    display: grid;
    gap: 14px;
    margin-top: 12px;
    grid-template-areas:
        "copy"
        "media"
        "cta"
        "features";
}

.copy { grid-area: copy; }
.media { grid-area: media; }
.cta { grid-area: cta; }
.features { grid-area: features; }

.badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(39, 189, 190, 0.18);
    color: var(--primary-dark);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(39, 189, 190, 0.08);
}

h1 {
    line-height: 1.1;
    margin: 8px 0 8px;
    font-size: 24px;
    color: #1E5B73;
}

.grad {
    background: linear-gradient(90deg, #27BDBE, #F9B233);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    margin: 0;
    color: #4D7282;
    font-weight: 600;
    font-family: 'Linotte', Arial, sans-serif;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(39, 189, 190, .14);
    box-shadow: 0 24px 60px rgba(30, 91, 115, .16);
    max-width: 100%;
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    pointer-events: none;
    background:
        radial-gradient(1000px 340px at 20% -10%, rgba(249, 178, 51, .12), transparent 60%),
        radial-gradient(900px 260px at 85% -20%, rgba(39, 189, 190, .12), transparent 55%);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(30, 91, 115, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

.video-overlay i {
    color: #fff;
    font-size: 52px;
    background: rgba(39, 189, 190, 0.8);
    padding: 22px 26px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(30, 91, 115, 0.25);
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-overlay:hover i {
    transform: scale(1.1);
    background: rgba(249, 178, 51, 0.95);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(39, 189, 190, 0.14);
    border-radius: 16px;
    padding: 10px 12px;
    min-height: 52px;
    box-shadow: 0 10px 24px rgba(30, 91, 115, 0.06);
    max-width: 100%;
}

.tile i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #EAF7FB, #FFF4CC);
    border-radius: 10px;
    border: 1px solid rgba(39, 189, 190, 0.12);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.tile span {
    font-weight: 700;
    color: #1E5B73;
    font-size: 14.5px;
    font-family: 'Linotte', Arial, sans-serif;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.cta .btn {
    min-width: 260px;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .btn.attn::before {
        animation: shine 1.8s linear infinite;
    }

    .btn.attn {
        animation: floaty 2.6s ease-in-out infinite;
    }

    .copy {
        text-align: center;
        padding-top: 20px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn.attn,
    .btn.attn::before {
        animation: none;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        gap: 22px;
        grid-template-columns: 1.05fr 0.95fr;
        grid-template-areas:
            "copy media"
            "features media"
            "cta media";
        align-items: center;
    }

    h1 {
        font-size: 38px;
    }

    .lead {
        font-size: 18px;
        max-width: 60ch;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta {
        justify-content: center !important;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .cta .btn {
        margin: 0 auto;
    }
}

/* Generic section backgrounds */
.get199.v2,
.shv-tiles-4row,
.shv-when-4row,
.impv2-section,
.g-section,
.healing-sec,
.about-pro,
.vsdiff,
.cta-hero {
    background: linear-gradient(180deg, #F9FDFF 0%, #EEF9FC 100%);
}

/* get199 */
.get199.v2 {
    position: relative;
    isolation: isolate;
    padding: 20px 0;
}

.g199-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.g199-title {
    margin: -2px 0 8px;
    font-size: 30px;
    text-align: center;
    line-height: 1.1em;
    padding-bottom: 13px;
    color: #1E5B73;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    color: #7a5400;
    background: linear-gradient(90deg, #FFF4CC, #FFE69A, #FFF4CC);
    border: 1px solid rgba(249, 178, 51, .35);
    box-shadow: 0 6px 18px rgba(249, 178, 51, .18), inset 0 1px 0 rgba(255, 255, 255, .8);
    position: relative;
    overflow: hidden;
    font-family: 'Linotte', Arial, sans-serif;
}

.price-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .55) 40%, transparent 60%);
    transform: translateX(-120%);
    filter: blur(1px);
    animation: shine 2.2s linear infinite;
}

.g199-sub {
    margin: 0 0 24px;
    text-align: center;
    color: #6B8A96;
    font-weight: 700;
    font-family: 'Linotte', Arial, sans-serif;
}

.g199-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width:960px) {
    .g199-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.g199-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .88));
    border: 1px solid rgba(39, 189, 190, .12);
    box-shadow: 0 12px 30px rgba(30, 91, 115, .08);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    max-width: 100%;
}

.g199-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(234, 247, 251, .98), rgba(255, 244, 204, .95));
    border-color: rgba(39, 189, 190, .22);
    box-shadow: 0 20px 42px rgba(30, 91, 115, .14);
}

.g199-icon {
    position: relative;
    flex: 0 0 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(160deg, #E8F5FF 0%, #FFF4CC 100%);
    z-index: 0;
}

.g199-icon i {
    font-size: 26px;
    color: #27BDBE;
    z-index: 2;
}

.g199-icon.ring::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    z-index: 1;
    padding: 2px;
    background: conic-gradient(from 0turn, #27BDBE, #F9B233, #27BDBE);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-spin 6s linear infinite;
    opacity: .9;
}

@keyframes ring-spin {
    to { transform: rotate(1turn); }
}

.g199-body h3 {
    margin: 0 0 6px;
    font-weight: 800;
    color: #1E5B73;
}

.g199-body p {
    margin: 0;
    color: #6B8A96;
    font-weight: 600;
    font-family: 'Linotte', Arial, sans-serif;
}

.g199-cta {
    margin-top: 42px;
    text-align: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #27BDBE, #F9B233);
    box-shadow: 0 8px 24px rgba(39, 189, 190, .24);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    max-width: 100%;
    text-align: center;
    font-family: 'Linotte', Arial, sans-serif;
}

.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .4) 40%, transparent 60%);
    transform: translateX(-120%);
    animation: shine 2s linear infinite;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(39, 189, 190, .28);
}

@media (min-width: 980px) {
    .cta-cta {
        justify-content: center !important;
        width: 100%;
    }

    .cta-btn {
        margin: 0 auto;
    }
}

/* content blocks */
.shv-wrap,
.impv2-wrap,
.g-wrap,
.hs-wrap {
    width: min(1200px, 92%);
    margin: auto;
}

.shv-head,
.impv2-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.shv-head h2,
.impv2-head h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: #1E5B73;
}

.shv-pill,
.impv2-pill {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27BDBE, #F9B233);
    color: #fff;
    box-shadow: 0 4px 12px rgba(39, 189, 190, 0.2);
}

.shv-grid,
.impv2-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 1024px) {
    .shv-grid,
    .impv2-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shv-tile {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(30, 91, 115, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.shv-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--img) center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.shv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 91, 115, 0.14), rgba(30, 91, 115, 0.5));
    transition: opacity 0.3s ease;
}

.shv-body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
    text-align: left;
}

.shv-body h3 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.shv-tile:hover::before {
    transform: scale(1.12);
}

.shv-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 91, 115, 0.14);
}

.shv-sub,
.impv2-sub,
.impv2-note,
.shv-note,
.hw-sub,
.g199-sub,
.vsdiff__sub,
.about-pro__sub,
.hs-sub,
.g-date,
.g-location,
.modal-sub,
.tiny {
    font-family: 'Linotte', Arial, sans-serif;
}

/* section */
.impv2-section {
    padding: 60px 20px;
}

.impv2-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.impv2-head {
    text-align: center;
    margin-bottom: 10px;
}

.impv2-sub {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
    color: #6B8A96;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Linotte', Arial, sans-serif;
}

.impv2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* cards */
.shv-card,
.impv2-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    max-width: 100%;
}

.shv-card .shv-border,
.impv2-border {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: conic-gradient(from 0deg, #27BDBE, #F9B233, #27BDBE);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-spin 6s linear infinite;
}

.shv-card-in,
.impv2-in {
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    padding: 24px 18px 22px;
    box-shadow: 0 10px 30px rgba(30, 91, 115, .10);
    min-height: 290px;
    display: grid;
    gap: 14px;
    align-content: start;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    text-align: center;
}

.impv2-card:hover .impv2-in {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(30, 91, 115, .16);
    background: rgba(255, 255, 255, .98);
}

/* image box instead of icon */
.impv2-imgbox {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #EAF7FB, #FFF4CC);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
    border: 1px solid #e8f1f4;
}

.impv2-imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* heading and text */
.shv-card-in h3,
.impv2-in h3 {
    margin: 2px 0 0;
    font-weight: 800;
    color: #1E5B73;
    font-size: 18px;
    text-align: center;
    line-height: 1.35;
}

.shv-card-in p,
.impv2-in p {
    margin: 0;
    color: #6B8A96;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 1.7;
    font-family: 'Linotte', Arial, sans-serif;
}

/* animation */
@keyframes ring-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* responsive */
@media (max-width: 1024px) {
    .impv2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .impv2-grid {
        grid-template-columns: 1fr;
    }

    .impv2-in {
        min-height: auto;
    }

    .impv2-imgbox {
        height: 190px;
    }

    .impv2-sub {
        font-size: 15px;
    }
}

/* HW */
.hw-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.15;
    color: #1E5B73;
}

.hw-hero-media {
    max-width: 980px;
    margin: 0 auto 24px;
    position: relative;
}

.hw-hero-media img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(30, 91, 115, 0.10);
    border: 1px solid #e7eff6;
}

.desk-img { display: block !important; }
.mob-img { display: none !important; }

@media (max-width: 768px) {
    .desk-img { display: none !important; }
    .mob-img { display: block !important; }
    .hw-hero-media { margin: 10px 0 12px; }
}

@media (max-width: 480px) {
    .hw-hero-media img {
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(30, 91, 115, 0.10);
    }
}

/* vs diff */
.vsdiff {
    padding: 72px 18px;
}

.vsdiff__wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.vsdiff__title {
    text-align: center;
    margin: 0 0 28px;
    line-height: 1.12;
    font-size: clamp(28px,4.2vw,48px);
}

.vsdiff__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.vsdiff__card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(#e9f0f5, #e9f0f5);
    pointer-events: none;
}

.vsdiff__col {
    padding: 28px clamp(18px,3vw,40px) 36px;
    max-width: 100%;
}

.vsdiff__col--left {
    background:
        radial-gradient(1200px 300px at -20% -30%, #FFF0F4 0, transparent 50%),
        linear-gradient(180deg,#fff,#fff);
}

.vsdiff__col--right {
    background:
        radial-gradient(1200px 300px at 120% -30%, #EAFBF4 0, transparent 50%),
        linear-gradient(180deg,#fff,#fff);
}

.vsdiff__vs {
    position: absolute;
    left: 43%;
    top: 210px;
    transform: translate(-50%,-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(180deg,#27BDBE,#1E5B73);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 12px 26px rgba(30, 91, 115, .18);
    font-size: 24px;
    z-index: 2;
    font-family: 'Quicksand', sans-serif;
}

.vsdiff__head { margin-bottom: 14px; }

.vsdiff__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    color: #1E5B73;
    background: #EEF9FC;
    border: 1px solid #DCEEF2;
    font-family: 'Linotte', Arial, sans-serif;
}

.vsdiff__tag--good {
    background: #EAFBF4;
    border-color: #CFEFE2;
    color: #15855f;
}

.vsdiff__tag--bad {
    background: #FFF0F4;
    border-color: #FFD7E1;
    color: #D9486B;
}

.vsdiff__list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.vsdiff__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    color: #1E5B73;
    font-weight: 650;
    line-height: 1.5;
    border-bottom: 1px dashed #e8eef4;
    font-family: 'Linotte', Arial, sans-serif;
}

.vsdiff__list li:last-child {
    border-bottom: none;
}

.b {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    flex: 0 0 30px;
}

.b--good { background: var(--good); }
.b--bad { background: var(--bad); }

@media (max-width: 640px) {
    .vsdiff {
        padding: 20px 14px;
    }

    .vsdiff__title {
        margin-bottom: 20px;
        font-size: clamp(26px,6vw,36px);
    }

    .vsdiff__vs {
        display: none;
    }

    .vsdiff__card {
        grid-template-columns: 1fr;
    }

    .vsdiff__card::after {
        display: none;
    }

    .vsdiff__col {
        width: 100%;
        max-width: 100%;
        padding: 18px 12px 22px;
    }
}

/* review cards */
.g-section {
    padding: 20px 18px;
}

.g-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.g-title {
    text-align: center;
    font-size: clamp(24px,4.2vw,40px);
    line-height: 1.15;
    margin: 0 0 22px;
}

.g-reels {
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-viewport,
.clinic-carousel,
.cc__viewport,
.g-track,
.cc__track {
    max-width: 100%;
  /*  overflow-x: hidden; */
}

.g-viewport {
    --per: 3;
    scroll-snap-type: x mandatory;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1 1 auto;
    outline: none;
}

.g-viewport::-webkit-scrollbar {
    display: none;
}

@media (max-width:1024px) { .g-viewport { --per:2; } }
@media (max-width:640px) { .g-viewport { --per:1; } }

.g-track {
    display: flex;
    gap: 18px;
    padding: 6px 2px 10px;
    margin: 0;
    list-style: none;
}

.g-card {
    scroll-snap-align: start;
    flex: 0 0 calc((100% - (var(--per) - 1)*18px)/var(--per));
    background: #fff;
    border: 1px solid #E4EFF3;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(30, 91, 115, .10);
    padding: 18px 18px 16px;
    min-height: 180px;
    max-width: 100%;
}

.g-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.g-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.g-meta {
    line-height: 1.1;
}

.g-name {
    display: block;
    font-weight: 800;
    color: #1E5B73;
    font-family: 'Linotte', Arial, sans-serif;
}

.g-badge {
    margin-left: auto;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #27BDBE, #F9B233);
    box-shadow: 0 6px 16px rgba(39, 189, 190, .18);
    font-family: 'Linotte', Arial, sans-serif;
}

.g-stars {
    color: #f6b800;
    font-size: 18px;
    letter-spacing: .5px;
    margin: 4px 0 8px;
}

.g-text {
    margin: 0;
    color: #1E5B73;
    line-height: 1.55;
    font-weight: 600;
    font-family: 'Linotte', Arial, sans-serif;
}

.g-nav {
    appearance: none;
    border: 0;
    background: #fff;
    color: #27BDBE;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(30, 91, 115, .12);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    flex: 0 0 auto;
}

@media (max-width:640px) {
    .g-nav {
        width: 38px;
        height: 38px;
    }
}

/* CTA hero */
.cta-hero {
    padding: clamp(40px,5vw,64px) 20px;
}

.cta-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 18px 32px;
    grid-template-columns: 1fr;
    grid-template-areas:
        "badge"
        "title"
        "art"
        "copy"
        "btn";
}

.cta-badge {
    grid-area: badge;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(30, 91, 115, .08);
    font-family: 'Linotte', Arial, sans-serif;
}

.cta-title {
    grid-area: title;
    margin: 4px 0 0;
    line-height: 1.12;
    letter-spacing: .2px;
    font-size: clamp(24px,5.4vw,30px);
}

.cta-title span {
    color: var(--ink-2);
}

.cta-art {
    grid-area: art;
    margin: 4px 0 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.cta-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/11;
}

.cta-copy {
    grid-area: copy;
    color: var(--muted);
    font-size: clamp(16px,1.9vw,18px);
    line-height: 1.65;
    max-width: 56ch;
    margin: 0;
    font-family: 'Linotte', Arial, sans-serif;
}

.cta-cta {
    grid-area: btn;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-btn em {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    opacity: .95;
}

@media (min-width: 980px) {
    .cta-shell {
        grid-template-columns: 1.15fr .95fr;
        align-items: center;
        grid-template-areas:
            "badge art"
            "title art"
            "copy art"
            "btn art";
    }

    .cta-cta {
        justify-content: center !important;
        width: 100%;
    }

    .cta-copy {
        max-width: 60ch;
    }

    .cta-art img {
        aspect-ratio: 4/3;
    }
}

/* FAQ */
.faq-sec {
    padding: 48px 20px 90px;
    background: #fff;
}

.faq-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.faq-title {
    margin: 0 0 18px;
    font-size: clamp(24px,4vw,36px);
    text-align: left;
}

.faq-acc {
    display: grid;
    gap: 14px;
}

.acc-item {
    background: #F9FDFF;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(30, 91, 115, .06);
    overflow: hidden;
}

.acc-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 0;
    background: linear-gradient(90deg, #EAF7FB, #FFF9E5);
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
    font-size: clamp(15px,2.2vw,18px);
    text-align: left;
    font-family: 'Linotte', Arial, sans-serif;
}

.acc-sign {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
    flex: 0 0 22px;
    box-shadow: inset 0 0 0 2px #D9F0EB;
}

.acc-sign::before,
.acc-sign::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #27BDBE;
    transform: translate(-50%,-50%);
}

.acc-sign::after {
    transform: translate(-50%,-50%) rotate(90deg);
}

.acc-item.open .acc-sign::after {
    opacity: 0;
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s ease;
    padding: 0 20px;
    color: #4D7282;
    font-size: clamp(14px,2vw,16px);
    line-height: 1.6;
    text-align: left;
    font-family: 'Linotte', Arial, sans-serif;
}

.acc-item.open .acc-body {
    padding: 0 20px 18px;
}

/* Sticky footer */
.sticky-offer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 -10px 30px rgba(30, 91, 115, .08);
}

.so-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.so-left {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.so-price {
    font-weight: 900;
    color: var(--ink);
    font-size: clamp(22px,3.6vw,28px);
    font-family: 'Linotte', Arial, sans-serif;
}

.so-note,
.so-mid,
.so-label,
.so-timer,
.so-right .so-btn {
    font-family: 'Linotte', Arial, sans-serif;
}

.so-note {
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.so-mid {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
}

.so-label {
    color: var(--muted);
}

.so-timer {
    min-width: 74px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    padding: 6px 10px;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
}

.so-right .so-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg,var(--primary),var(--secondary));
    font-weight: 900;
}

@media (max-width:640px) {
    .faq-sec { padding-bottom: 100px; }
    .so-note { display: none; }
    .so-timer { min-width: 66px; }
}

/* about section */
.about-pro {
    padding: clamp(20px,6vw,86px) 20px;
}

.about-pro__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
        "head media"
        "body media"
        "caro caro";
    gap: clamp(20px,3.8vw,46px);
    align-items: center;
}

.about-pro__head { grid-area: head; text-align: center; }
.about-pro__media { grid-area: media; }
.about-pro__body { grid-area: body; }
.clinic-carousel { grid-area: caro; }

.about-pro__title {
    margin: 0 0 8px;
    font-size: clamp(26px,3.6vw,40px);
    line-height: 1.15;
}

.about-pro__body p {
    margin: 0 0 14px;
    color: #4D7282;
    line-height: 1.7;
    font-size: clamp(14px,2vw,17px);
    font-family: 'Linotte', Arial, sans-serif;
}

.about-pro__body strong {
    font-weight: 800;
    color: #1E5B73;
}

.about-pro__photo {
    position: relative;
    background: linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
    border: 1px solid #e6f0f4;
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    margin-left: auto;
}

.about-pro__photo img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.about-pro__tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(6px);
    border: 1px solid #e7f0f3;
    padding: 6px 10px;
    border-radius: 999px;
    color: #1E5B73;
    font-weight: 800;
    font-size: 12px;
    font-family: 'Linotte', Arial, sans-serif;
}

.about-pro__quote {
    margin: 18px 0 22px;
    background: var(--card);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #e8f2f6;
    box-shadow: var(--shadow);
}

.about-pro__quote blockquote {
    margin: 0 0 8px;
    color: #1E5B73;
    font-weight: 700;
    font-family: 'Linotte', Arial, sans-serif;
}

.about-pro__quote figcaption {
    color: var(--muted);
    font-size: 14px;
    font-family: 'Linotte', Arial, sans-serif;
}

.about-pro__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: linear-gradient(180deg,#EAFBF4,#EAF7FB);
    border: 1px solid #d7ecec;
    color: #1E5B73;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    font-family: 'Linotte', Arial, sans-serif;
}

/* carousel */
.clinic-carousel {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 14px 14px 48px;
    border: 1px solid #e6f0f4;
    box-shadow: 0 16px 32px rgba(30, 91, 115, .10);
    --perView: 3;
    max-width: 100%;
}

.cc__viewport {
    overflow: hidden;
    border-radius: 14px;
}

.cc__track {
    display: flex;
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.cc__slide {
    min-width: calc(100% / var(--perView));
    padding: 6px;
}

.cc__slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.cc__btn {
    position: absolute;
    top: calc(50% - 26px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #27BDBE;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(30, 91, 115, .12);
    transition: transform .15s ease;
}

.cc__btn:hover {
    transform: translateY(-2px);
}

.cc__btn--prev { left: 14px; }
.cc__btn--next { right: 14px; }

.cc__dots {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4px; 
}

.cc__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #c9dde5;
    transition: all .25s ease;
}

.cc__dot.is-active {
    width: 26px;
    background: #27BDBE;
}

@media (max-width: 940px) {
    .about-pro__wrap {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "media"
            "body"
            "caro";
    }

    .about-pro__photo {
        margin: 0 auto;
        max-width: 520px;
    }

    .cc__slide img {
        height: 280px;
    }
}

/* modal */
.btn-wide {
    width: 100%;
    justify-content: center;
}

.btn-fill.attn {
    background: linear-gradient(135deg, #F9B233, #FF9F1C);
    color: #fff;
    box-shadow: 0 10px 24px rgba(249, 178, 51, .25);
    text-align: center;
}

.btn-fill.attn:hover {
    transform: translateY(-1px);
}

.modal-backdrop,
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
}

.modal-backdrop {
    background: rgba(30, 91, 115, .30);
    backdrop-filter: saturate(140%) blur(4px);
}

.modal-backdrop.is-open,
.modal.is-open {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}

.modal {
    display: grid;
    place-items: center;
}

.modal-card {
    width: min(560px,92vw);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(30, 91, 115, .20);
    padding: 28px 22px 22px;
    position: relative;
    transform: translateY(10px);
    transition: transform .25s ease;
    max-width: 100%;
}

.modal.is-open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 0;
    background: #edf5fb;
    color: #1E5B73;
    font-size: 22px;
    cursor: pointer;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.f {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.f-full {
    grid-column: 1 / -1;
}

.f span {
    font-weight: 700;
    color: #1E5B73;
    font-family: 'Linotte', Arial, sans-serif;
}

.f input,
.f select {
    height: 46px;
    border: 1px solid #dfeaf2;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    outline: 0;
    font-family: 'Linotte', Arial, sans-serif;
    max-width: 100%;
}

.f input:focus,
.f select:focus {
    border-color: #27BDBE;
    box-shadow: 0 0 0 3px rgba(39, 189, 190, .15);
}

.chk {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.err {
    display: none;
    color: #c62828;
    font-size: 12px;
    font-family: 'Linotte', Arial, sans-serif;
}

@media (max-width:640px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .modal-card {
        padding: 24px 16px 16px;
        border-radius: 18px;
    }
}

/* timeline section */
.healing-sec {
    padding: 19px 18px;
}

.hs-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.hs-title {
    text-align: center;
    font-size: clamp(32px,4.8vw,56px);
    letter-spacing: .2px;
    margin: 0 0 8px;
}

.hs-timeline {
    position: relative;
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(5, 1fr);
    align-items: flex-start;
}

.hs-track {
    position: absolute;
    left: 11%;
    right: 7%;
    top: 50px;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg,#27BDBE,#F9B233);
    box-shadow: 0 6px 16px rgba(39, 189, 190, .12);
}

.hs-step {
    text-align: center;
}

.hs-step p {
    color: #4D7282;
    line-height: 1.55;
    font-weight: 600;
    margin: 0 auto;
    max-width: 260px;
    font-family: 'Linotte', Arial, sans-serif;
}

.hs-node {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(115% 115% at 30% 30%, #27BDBE 0%, #1FA4A5 55%, #1E5B73 100%);
    box-shadow: 0 14px 36px rgba(30, 91, 115, .18), inset 0 0 0 8px #ffffff;
    display: grid;
    place-items: center;
}

.hs-node img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.hs-node::after {
    content: attr(data-step);
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--primary);
    border: 3px solid var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(39, 189, 190, .16);
    font-family: 'Quicksand', sans-serif;
}

.hs-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
    width: 100%;
}

.hs-btn {
    background: linear-gradient(180deg,#27BDBE,#F9B233);
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    padding: 16px 26px;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(39, 189, 190, .22);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, box-shadow .18s ease;
    max-width: 100%;
    text-align: center;
    font-family: 'Linotte', Arial, sans-serif;
}

.hs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(39, 189, 190, .28);
}

@media (max-width: 900px) {
    .hs-timeline {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hs-track {
        display: none;
    }

    .hs-step {
        text-align: left;
        padding-left: 94px;
        position: relative;
        max-width: 720px;
        margin: 0 auto;
    }

    .hs-step .hs-node {
        position: absolute;
        left: 0;
        top: 0;
        width: 80px;
        height: 80px;
    }

    .hs-step h3 {
        margin-top: 0;
    }

    .hs-step p {
        max-width: none;
    }

    .hs-step::before {
        content: "";
        position: absolute;
        left: 32px;
        top: 54px;
        width: 8px;
        height: calc(100% + 24px);
        background: linear-gradient(180deg,#27BDBE,#F9B233);
        border-radius: 8px;
    }

    .hs-step:last-child::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hs-node::after {
        top: 13px;
    }

    .hs-title {
        font-size: 34px;
    }

    .hs-step {
        padding-left: 106px;
    }

    .hs-step .hs-node {
        width: 72px;
        height: 72px;
    }
}

/* footer */
.ft {
    position: relative;
    background: linear-gradient(180deg, #1FA4A5 0%, #27BDBE 100%);
    color: #fff;
    padding: 72px 24px 26px;
    overflow: hidden;
}

.ft:before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background:
        radial-gradient(800px 300px at 85% -10%, rgba(255,255,255,.12), transparent 55%),
        radial-gradient(900px 260px at 10% -20%, rgba(255,244,204,.14), transparent 60%);
}

.ft-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 34px;
    grid-template-columns: 1.2fr .6fr .6fr .6fr;
}

.ft-logo {
    font-size: 34px;
    margin: 0;
}

.ft-logo span {
    color: #FFF3B0;
}

.ft-sub,
.ft-doctors p,
.ft-contact a,
.ft-links a,
.ft-timing,
.ft-bottom,
.ft-site {
    color: rgba(255,255,255,0.92);
    font-family: 'Linotte', Arial, sans-serif;
}

.ft-sub {
    margin: 6px 0 18px;
    font-weight: 600;
}

.ft-doctors > div {
    margin: 12px 0;
}

.ft-doctors h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.ft-contact {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.ft-contact li {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    line-height: 1.5;
}

.ft-contact i {
    color: #FFF3B0;
    margin-top: 3px;
}

.ft-contact a:hover,
.ft-links a:hover,
.ft-site:hover {
    color: #FFF3B0;
}

.ft-col {
    background: transparent;
    border: none;
    padding: 20px 18px;
    box-shadow: none;
}

.ft h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.ft-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-links li {
    margin: 10px 0;
}

.ft-timing {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft-timing li {
    margin: 8px 0;
}

.ft-timing i {
    color: #FFF3B0;
    margin-right: 6px;
}

.ft-off {
    opacity: .85;
}

.ft-social {
    display: flex;
    gap: 12px;
    margin: 6px 0 16px;
}

.ft-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #1FA4A5;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    transition: .25s;
}

.ft-social a:hover {
    transform: translateY(-3px);
    filter: saturate(1.2);
}

.ft-social .ig {
    background: linear-gradient(135deg,#f9d163,#f04a77 55%,#7b5cff);
    color: #fff;
}

.ft-social .fb {
    background: #fff;
    color: #1FA4A5;
}

.ft-social .yt {
    background: #ff6262;
    color: #fff;
}

.ft-site {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.ft-bottom {
    max-width: 1200px;
    margin: 26px auto 0;
    padding-top: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-top: 1px dashed rgba(255,255,255,.28);
    font-size: 14px;
}

.ft-dot {
    width: 6px;
    height: 6px;
    background: #FFF3B0;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .ft-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .ft {
        padding: 56px 16px 22px;
    }

    .ft-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ft-col {
        padding: 16px;
    }

    .ft-logo {
        font-size: 27px;
    }
}

/* google strip */
.gm-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,#7fe5fb,#37c8ea);
    display: grid;
    place-items: center;
    color: #0b1422;
    font-weight: 900;
    border: 2px solid rgba(66,215,244,.6);
    box-shadow: 0 6px 16px -8px rgba(66,215,244,.45);
}

.gm-avatar::after {
    content: attr(data-initial);
    font-family: 'Quicksand', sans-serif;
}

.gm-bar {
    max-width: 1180px;
    margin: 0 auto 24px;
    background: #ffffff;
    border: 1px solid #d8ebef;
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(30, 91, 115, 0.06);
}

.gm-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--ink);
    font-family: 'Linotte', Arial, sans-serif;
}

.gm-badge img {
    border-radius: 4px;
}

.gm-rating {
    margin-left: 6px;
    opacity: .9;
}

.gm-stars {
    color: #ffcc66;
    letter-spacing: 2px;
    margin-left: 6px;
}

.gm-meta {
    opacity: .7;
    margin-left: 10px;
}

.gm-verified {
    background: #EAFBF4;
    color: #15855f;
    border: 1px solid #BFE9D5;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Linotte', Arial, sans-serif;
}

/* consultation process */
.header .btn {
    padding-top: 12px;
    padding-bottom: 12px;
}

.consultation-process {
    background: linear-gradient(180deg, #EAF7FB 0%, #DDF3F8 100%);
    color: var(--ink);
    padding: 20px 10px;
    text-align: center;
}

.section-title {
    font-size: 30px;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
    max-width: 100%;
}

.step-card {
    background: #fff;
    color: #1E5B73;
    border-radius: 20px;
    padding: 30px;
    flex: 1 1 23%;
    box-shadow: 0px 6px 20px rgba(30, 91, 115, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    overflow: hidden;
    min-width: 250px;
    border: 1px solid rgba(39, 189, 190, 0.10);
    max-width: 100%;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 12px 30px rgba(30, 91, 115, 0.14);
}

.step-icon {
    width: 40%;
    margin: auto;
    font-size: 39px;
    background: linear-gradient(135deg, #27BDBE, #F9B233);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(39, 189, 190, 0.16);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-content p,
.step-content ul {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    color: #4D7282;
    font-family: 'Linotte', Arial, sans-serif;
}

.step-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.step-content ul li {
    font-size: 14px;
    color: #4D7282;
    text-align: left;
    font-family: 'Linotte', Arial, sans-serif;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #27BDBE, #F9B233);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform .2s ease;
    margin-top: 20px;
    font-family: 'Linotte', Arial, sans-serif;
    max-width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        padding: 0 12px;
    }

    .step-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .step-icon {
        width: 28%;
        margin: auto;
        font-size: 28px;
        padding: 20px;
        border-radius: 50%;
        margin-bottom: 20px;
    }
}



