/* ============================================
   DERMATICS INDIA - LANDING PAGE STYLES
   ============================================ */

/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
    --color-primary: #3B5BDB;
    --color-primary-dark: #2b4bc6;
    --color-primary-light: #748FFC;
    --color-primary-bg: #EDF2FF;
    --color-dark: #0f1729;
    --color-dark-2: #1a2340;
    --color-dark-3: #243056;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-yellow: #FCC419;
    --color-green: #40c057;
    --color-red: #e03131;
    --color-pink: #d6336c;
    --color-purple: #7048e8;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 16px rgba(59, 91, 219, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-max: 1200px;
    --container-padding: 20px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, #845ef7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-underline {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 91, 219, 0.35);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn--outline-sm {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

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

.btn--lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.image-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.image-placeholder span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%); */
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ===== TOP OFFER BANNER ===== */
.top-banner {
    background: #000000;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.top-banner p {
    margin: 0;
}

.top-banner strong {
    color: var(--color-yellow);
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar--scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 172px;
    margin: 0 auto;
    max-width: 1920px;
}

@media (max-width: 1024px) {
    .navbar__inner {
        padding: 10px 20px;
    }
}

.navbar__logo {
    flex-shrink: 0;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.15;
    color: var(--color-dark);
    font-weight: 500;
}

.logo-text strong {
    font-weight: 800;
    color: var(--color-primary);
}

/* Nav Pill (Search, Login, Menu) */
.navbar__actions {
    display: flex;
    align-items: center;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}

.nav-pill:hover {
    box-shadow: var(--shadow-md);
}

.nav-pill__search {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    padding: 0;
    transition: color var(--transition-fast);
}

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

.nav-pill__login {
    padding: 10px 24px;
    font-weight: 600;
}

.nav-pill__menu {
    border: none;
    cursor: pointer;
    background: #f8fafc;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.nav-pill__menu:hover {
    background: #e2e8f0;
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__subtitle--mobile,
.hero__mobile-visual {
    display: none;
}

.hero__mobile-video-card {
    position: absolute;
    height: 190px;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(180deg, #0f67ff 0%, #0b43c6 100%);
}

.hero__mobile-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.hero__mobile-doctor-wrap {
    position: relative;
}

.hero__mobile-badge {
    position: absolute;
    left: -8px;
    top: 90px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__mobile-badge img,
.hero__mobile-badge span {
    width: 34px;
    height: 34px;
    display: block;
    font-size: 28px;
    line-height: 1;
}

.hero {
    background: #00002F;
    padding: 56px clamp(20px, 6vw, 160px) 0;
    position: relative;
    overflow: hidden;
    height: 842px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hero {
        padding: 72px 20px 0;
        height: auto;
        min-height: 600px;
    }
}

.hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Laptop/medium desktop: keep doctor image aligned with content */
@media (max-width: 1440px) and (min-width: 1025px) {
    .hero__inner {
        align-items: center;
    }

    .hero__content {
        padding-bottom: 40px;
    }

    .hero__image {
        align-self: center;
    }
}

.hero__content {
    flex: 0 0 auto;
    max-width: 750px;
    padding-bottom: 50px;
    padding-top: 40px;
    padding-left: 60px;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0px;
    max-width: 704px;
    height: 183px;
}

.text-accent {
    color: #F2994A;
    /* Approximate "Star" color from Figma based on typical defaults, or use var(--color-yellow) */
}

.hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0px;
    color: #F1F5F9;
    max-width: 582px;
    margin-bottom: 28px;
}

.hero__checklist {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 630px;
}

.hero__checklist li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0px;
    margin: 0;
}

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* background: var(--color-green); */
    background-image: url("https://appointment-page-media.s3.ap-south-1.amazonaws.com/Group+793.webp");
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 700;
    flex-shrink: 0;
}

.hero__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn--hero-primary {
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    width: 252px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-full);
}

.btn--hero-primary:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #4338ca 100%);
    color: #FFFFFF;
}

.btn--hero-outline {
    position: relative;
    background: transparent;
    width: 252px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: var(--radius-full);
    z-index: 1;
}

.btn--hero-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 1px;
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.btn--hero-outline:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #FFFFFF;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hero__image {
    flex: 0 0 clamp(420px, 45vw, 960px);
    position: relative;
    align-self: flex-end;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-right: 0;
}

.hero-img {
    width: 100%;
    max-height: 794px;
    display: block;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 60px 20px 60px;
    background: #FFFFFF;
}

.about__inner {
    max-width: 1133px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__text {
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    /* 100% in Figma */
    color: #64748B;
    margin: 0 auto;
    letter-spacing: 0px;
    line-height: 1.3;
}

.about__text:first-child {
    max-width: 1075px;
}

.about__text:last-child {
    max-width: 1130px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 40px 0 56px;
    background: #FFFFFF;
}

.why-choose .container {
    max-width: 1400px;
    padding: 0 20px;
}

.why-choose .section-title {
    font-family: 'Figtree', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
    color: #1E293B;
    max-width: 791px;
    margin: 0 auto 14px;
}

.why-choose .section-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #64748B;
    max-width: 669px;
    margin: 0 auto 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.feature-card {
    background: #FFFFFF;
    border: 2px solid #F1F5F9;
    border-radius: 14px;
    min-height: 184px;
    padding: 16px 18px 14px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    border-color: #E2E8F0;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-card__icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

.feature-card h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 10px;
}

.feature-card p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #64748B;
    margin: 0;
}

/* ===== CONSULT SECTIONS ===== */
.consult-section {
    padding: 54px 0 60px;
    margin-top: -30px;
    margin-bottom: 30px;
}

.consult-section__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1290px;
}

.consult-section--reverse .consult-section__inner {
    flex-direction: row;
}

.consult-section__image {
    flex: 0 0 510px;
}

.consult-img-placeholder {
    width: 100%;
    height: 236px;
    border-radius: 12px;
}

.consult-section__content {
    flex: 1;
    max-width: 620px;
}

.consult-section__content h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #1E293B;
    margin-bottom: 16px;
}

.consult-section__content p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    line-height: 1;
    margin-bottom: 14px;
}

.consult-section__content .btn {
    margin-top: 10px;
    min-width: 120px;
    min-height: 42px;
    padding: 11px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    box-shadow: none;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.consult-section__content .btn:hover {
    background: linear-gradient(90deg, #1D4ED8 0%, #4338CA 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(59, 91, 219, 0.18);
}

.consult-section--skin {
    padding: 56px 0 48px;
}

.consult-section--skin .consult-section__inner {
    max-width: 1123px;
    gap: 32px;
    align-items: flex-start;
}

.consult-section--skin .consult-section__image {
    flex: 0 0 542px;
}

.consult-section--skin .consult-img-placeholder {
    height: 330px;
    border-radius: 8px;
}

.consult-section--skin .consult-section__content {
    max-width: 549px;
    padding-top: 2px;
}

.consult-section--skin .consult-section__content h2 {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 18px;
}

.consult-section--skin .consult-section__content p {
    max-width: 549px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.consult-section--skin .consult-section__content .btn {
    width: 166px;
    height: 60px;
    min-width: 120px;
    min-height: 42px;
    padding: 0 16px;
    margin-top: 8px;
    border-radius: 100px;
}

.consult-section--hair {
    padding: 10px 0 56px;
}

.consult-section--hair .consult-section__inner {
    max-width: 1128px;
    gap: 32px;
    align-items: flex-start;
}

.consult-section--hair .consult-section__content {
    max-width: 524px;
    padding-top: 14px;
}

.consult-section--hair .consult-section__content h2 {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 18px;
}

.consult-section--hair .consult-section__content p {
    max-width: 524px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.consult-section--hair .consult-section__content .btn {
    width: 166px;
    height: 60px;
    min-width: 120px;
    min-height: 42px;
    padding: 0 16px;
    margin-top: 08px;
    border-radius: 100px;
    font-size: 16px;
}

.consult-section--hair .consult-section__image {
    flex: 0 0 572px;
}

.consult-section--hair .consult-img-placeholder {
    height: 330px;
    border-radius: 8px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 38px 0 76px;
    background: #FFFFFF;
}

.how-it-works .container {
    max-width: 1058px;
}

.how-it-works .section-label {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #2563EB;
    margin-bottom: 10px;
}

.how-it-works .section-title {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 0;
}

.how-it-works .text-underline {
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

.how-it-works .text-underline::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 7.3px;
    background-image: url('https://appointment-page-media.s3.ap-south-1.amazonaws.com/Vector.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.steps-layout {
    display: flex;
    align-items: center;
    gap: 66px;
    margin-top: 18px;
}

.steps-layout__media {
    flex: 0 0 425px;
}

.steps-video-frame {
    width: 100%;
    height: 690px;
    border-radius: 34px;
    border: 6px solid #1E293B;
    background:
        radial-gradient(circle at 92% 84%, rgba(59, 130, 246, 0.95) 0 14%, transparent 14.5%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08) 8%, transparent 8.5% 38%, rgba(255, 255, 255, 0.06) 38.5%, transparent 39% 72%, rgba(255, 255, 255, 0.08) 72.5%, transparent 73%),
        linear-gradient(180deg, #1654C7 0%, #1460E8 54%, #0F78FF 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 28px 60px rgba(30, 41, 59, 0.16);
}

.steps-video {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 28px;
    background: transparent;
    display: block;
    object-fit: cover;
}

.steps-layout__steps {
    flex: 0 0 465px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    position: relative;
    padding-bottom: 26px;
}

.step:last-child {
    padding-bottom: 0;
}

.step__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #D4DAE4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step:first-child .step__icon {
    background: #2563EB;
}

.step__line {
    position: absolute;
    left: 12px;
    top: 26px;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            #E2E8F0 0 4px,
            transparent 4px 8px);
    z-index: 1;
}

.step__content {
    padding-top: 0;
}

.step__label {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #D1D5DB;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 4px;
    display: block;
}

.step__content h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 6px;
}

.step:first-child .step__content h3 {
    color: #2563EB;
}

.step__content p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.2;
}

.steps-cta {
    text-align: center;
    margin-top: 32px;
}

.steps-cta .btn {
    width: 224px;
    height: 42px;
    min-width: 224px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 100px;
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    border: none;
    box-shadow: none;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.steps-cta .btn:hover {
    background: linear-gradient(90deg, #1D4ED8 0%, #4338CA 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(59, 91, 219, 0.18);
}

/* ===== DOCTOR PROFILE ===== */
.doctor-profile {
    padding: 28px 0 44px;
    background: #FFFFFF;
}

.doctor-profile__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 92px;
    max-width: 1128px;
}

.doctor-profile__info {
    flex: 0 0 524px;
    max-width: 524px;
    position: relative;
}

.doctor-profile__badge {
    position: absolute;
    top: 28px;
    left: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.doctor-profile__info h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #1E293B;
    margin-bottom: 20px;
}

.doctor-profile__specialty {
    color: #2563EB;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 34px;
}

.doctor-profile__info p:not(.doctor-profile__specialty) {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.55;
    margin-bottom: 24px;
}

.doctor-profile__cta {
    margin-top: 08px;
    width: 166px;
    height: 60px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    box-shadow: none;
}

.doctor-profile__cta:hover {
    background: linear-gradient(90deg, #1D4ED8 0%, #4338CA 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(59, 91, 219, 0.18);
}

.doctor-profile__image-wrap {
    flex: 0 0 602px;
    width: 602px;
    height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-profile__full-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.doctor-profile__orbit {
    position: absolute;
    border: 1px solid rgba(100, 116, 139, 0.14);
    border-radius: 50%;
}

.doctor-profile__orbit--one {
    width: 360px;
    height: 360px;
}

.doctor-profile__orbit--two {
    width: 440px;
    height: 440px;
}

.doctor-profile__orbit--three {
    width: 520px;
    height: 520px;
}

.doctor-profile__photo {
    position: relative;
    width: 336px;
    height: 430px;
    border-radius: 170px 170px 0 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    z-index: 2;
}

.doctor-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-profile__stars {
    position: absolute;
    top: 72px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 145px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    z-index: 3;
}

.doctor-profile__stars span {
    color: #F6B500;
    font-size: 13px;
    letter-spacing: 1px;
}

.doctor-profile__stars small {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    line-height: 1;
    color: #1E293B;
    font-weight: 500;
}

.trust-avatars {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.avatar-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    border: 2px solid var(--color-white);
    margin-left: -5px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle--count {
    background: #2563EB;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-profile__patients {
    position: absolute;
    left: 20px;
    bottom: 116px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1E293B;
    z-index: 3;
}

.doctor-profile__patients strong {
    color: #2563EB;
    font-weight: 700;
}

.doctor-profile__dot {
    position: absolute;
    right: 86px;
    bottom: 32px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2563EB;
    z-index: 3;
}

.doctor-profile--legacy-hidden {
    display: none;
}

#doctor-profile-section .doctor-profile__orbit,
#doctor-profile-section .doctor-profile__badge,
#doctor-profile-section .doctor-profile__photo,
#doctor-profile-section .doctor-profile__stars,
#doctor-profile-section .doctor-profile__patients,
#doctor-profile-section .doctor-profile__dot {
    display: none;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 54px 0 78px;
    background: #FFFFFF;
}

.faq .container {
    max-width: 1400px;
    padding: 0 20px;
}

.faq .section-title {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #1E293B;
    margin-bottom: 32px;
}

.faq-list {
    max-width: 1360px;
    margin: 0 auto;
}

.faq-item {
    background: #EFF4FB;
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(30, 41, 59, 0.08);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    color: #1E293B;
    text-align: left;
    gap: 16px;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: #1E293B;
}

.faq-item__arrow {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: #1E293B;
}

.faq-item--active .faq-item__arrow {
    transform: rotate(180deg);
    color: #1E293B;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item--active .faq-item__answer {
    max-height: 260px;
    padding: 0 16px 16px;
}

.faq-item__answer p {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #64748B;
    text-align: justify;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    padding: 10px 0 72px;
    background: #FFFFFF;
}

.seo-content .container {
    max-width: 1400px;
    padding: 0 20px;
}

.seo-content__card {
    background: #FFFFFF;
    border: 1px solid #D9E2EE;
    border-radius: 22px;
    padding: 24px 22px 18px;
    max-width: 1360px;
    margin: 0 auto;
}

.seo-content__summary h2:first-child {
    display: none;
}

.seo-content__card h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 18px;
    letter-spacing: 0;
}

.seo-content__card h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-top: 18px;
    margin-bottom: 10px;
}

.seo-content__card p {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.25;
    margin-bottom: 16px;
}

.seo-content__card ul {
    margin: 8px 0 14px 22px;
    list-style: disc;
}

.seo-content__card ul li {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.25;
    margin-bottom: 8px;
}

.seo-content__extra {
    padding-top: 6px;
}

.seo-content__plain-list {
    list-style: none;
    margin: 8px 0 16px 20px;
}

.seo-content__plain-list li {
    margin-bottom: 6px;
}

.seo-content__plain-list--compact li {
    margin-bottom: 4px;
}

.seo-content__readmore {
    border-top: 1px solid #E2E8F0;
    margin-top: 24px;
    padding-top: 18px;
    text-align: center;
}

.seo-content__readmore a {
    color: #2563EB;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
}

.seo-content__readmore a:hover {
    text-decoration: underline;
}

.seo-content__card.seo-content__card--expanded .seo-content__readmore {
    margin-top: 12px;
}

.seo-content .steps-cta {
    margin-top: 16px;
}

.seo-content .steps-cta .btn {
    width: 229px;
    height: 42px;
    min-width: 229px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 100px;
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    border: none;
    box-shadow: none;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.seo-content .steps-cta .btn:hover {
    background: linear-gradient(90deg, #1D4ED8 0%, #4338CA 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(59, 91, 219, 0.18);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 20px 0 28px;
    background: #FFFFFF;
}

.trust-badges .container {
    max-width: 1375px;
    padding: 0 20px;
}

.trust-badges__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    min-height: 154px;
    padding: 14px 6px 0;
}

.trust-badge {
    text-align: center;
    flex: 1;
}

.trust-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-bottom: 16px;
}

.trust-badge__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.trust-badge h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    color: #1E293B;
    margin-bottom: 6px;
}

.trust-badge p {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
    color: #64748B;
}

/* ===== APP DOWNLOAD BANNER ===== */
.app-download {
    margin: 10px 0 60px;
}

.app-download__inner {
    width: 100%;
    max-width: 1360px;
    height: 300px;
    background: #F8CE00;
    border: 1px solid #F9F9F9;
    border-radius: 500px;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.app-download__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.app-download__image {
    flex: 0 0 344px;
    width: 344px;
    height: 344px;
    position: absolute;
    left: 104px;
    top: 06px;
    z-index: 2;
    display: block;
    pointer-events: none;
}

.app-download__image img {
    width: 344px;
    height: 344px;
    object-fit: contain;
    display: block;
    object-position: left top;
}

.app-img-placeholder {
    width: 180px;
    height: 200px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.app-download__content {
    flex: 0 0 auto;
    width: 472px;
    max-width: 472px;
    position: absolute;
    left: 431px;
    top: 63px;
    z-index: 2;
    margin-left: 0;
}

.app-download__content h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 22px;
    color: #000000;
    letter-spacing: 0;
    width: 469px;
}

.app-download__content p {
    font-family: 'Figtree', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    max-width: 472px;
    letter-spacing: 0;
    margin: 0;
}

.app-download__stores {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: absolute;
    left: 1021px;
    top: 62px;
    z-index: 2;
    align-items: flex-start;
    margin-right: 0;
}

.store-badge {
    display: block;
    transition: transform var(--transition-fast);
}

.store-badge img {
    width: 228.6px;
    height: 67.73px;
    display: block;
    object-fit: cover;
}

.store-badge:hover {
    transform: scale(1.05);
}

.mobile-install-popup {
    display: none;
}

.store-badge-placeholder {
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    text-align: center;
    min-width: 160px;
}

.store-badge-placeholder span {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
}

.store-badge-placeholder strong {
    font-size: 1.05rem;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background: #FFFFFF;
    padding: 36px 0 20px;
}

.footer .container {
    max-width: 1360px;
    padding: 0 24px;
}

.footer__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 32px;
    padding: 48px 56px 38px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
}

.footer__newsletter {
    max-width: 365px;
    margin-top: 30px;
}

.footer__newsletter h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 16px;
}

.footer__newsletter p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.35;
    margin-bottom: 18px;
}

.newsletter-form {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.newsletter-form__submit {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: transparent;
    color: #3B5BDB;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.newsletter-form input {
    width: 100%;
    height: 58px;
    padding: 0 60px 0 18px;
    border: 1px solid #D9E2EE;
    border-radius: 18px;
    background: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    color: #1E293B;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: #2563EB;
}

.newsletter-form__submit:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-50%) scale(1.04);
}

.newsletter-form__submit:focus-visible {
    outline: 2px solid #7C3AED;
    outline-offset: 2px;
}

.newsletter-form--loading .newsletter-form__submit {
    opacity: 0.7;
    pointer-events: none;
}

.newsletter-form__message {
    min-height: 20px;
    margin-bottom: 18px;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #15803D;
}

.footer__newsletter .newsletter-form__message--success {
    color: #16A34A;
}

.footer__newsletter .newsletter-form__message--error {
    color: #DC2626;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E9E9EA;
    color: #1E293B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.footer__social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.footer__social[aria-label="Instagram"] img {
    filter: brightness(0);
}

.footer__social:hover {
    transform: translateY(-1px);
}

/* .footer__social--active {
    background: #1E293B;
    color: #FFFFFF;
} */

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;
    max-width: 620px;
}

.footer__col h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 18px;
    margin-top: 30px;
}

.footer__col ul li {
    margin-bottom: 14px;
}

.footer__col ul li a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #64748B;
    transition: color var(--transition-fast);
}

.footer__col ul li a:hover {
    color: #2563EB;
}

.footer__bottom {
    padding: 18px 0 0;
    margin-top: 18px;
}

.footer__bottom p {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.13;
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.footer__bottom a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.animate-target:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card.animate-target:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card.animate-target:nth-child(4) {
    transition-delay: 0.3s;
}

.step.animate-target:nth-child(2) {
    transition-delay: 0.1s;
}

.step.animate-target:nth-child(3) {
    transition-delay: 0.2s;
}

.step.animate-target:nth-child(4) {
    transition-delay: 0.3s;
}

.step.animate-target:nth-child(5) {
    transition-delay: 0.4s;
}

.trust-badge.animate-target:nth-child(2) {
    transition-delay: 0.1s;
}

.trust-badge.animate-target:nth-child(3) {
    transition-delay: 0.15s;
}

.trust-badge.animate-target:nth-child(4) {
    transition-delay: 0.2s;
}

.trust-badge.animate-target:nth-child(5) {
    transition-delay: 0.25s;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.1rem;
    }

    .hero__image {
        flex: 0 0 340px;
    }

    .hero-img-placeholder {
        height: 380px;
    }

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

    .consult-section__inner {
        gap: 40px;
    }

    .steps-layout {
        gap: 32px;
    }

    .steps-layout__media {
        flex: 0 0 340px;
    }

    .steps-video-frame {
        height: 600px;
    }

    .doctor-profile__inner {
        gap: 40px;
        align-items: center;
    }

    .doctor-profile__image-wrap {
        flex: 0 0 420px;
        width: 420px;
        height: 340px;
    }

    .doctor-profile__info {
        flex: 1;
        max-width: 480px;
    }

    .doctor-profile__photo {
        width: 280px;
        height: 340px;
    }

    .doctor-profile__orbit--one {
        width: 300px;
        height: 300px;
    }

    .doctor-profile__orbit--two {
        width: 360px;
        height: 360px;
    }

    .doctor-profile__orbit--three {
        width: 420px;
        height: 420px;
    }

    .app-download__inner {
        padding: 32px;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .section-subtitle br {
        display: none;
    }

    .top-banner {
        height: auto;
        padding: 8px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-banner p {
        margin: 0;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
    }

    .top-banner strong {
        font-size: 12px;
    }

    /* Navbar Mobile */

    .navbar__inner {
        padding: 10px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }


    .brand-logo {
        width: 100px;
        height: auto;
        display: block;
    }

    .navbar__logo {
        display: flex;
        align-items: center;
        max-width: 150px;
    }

    .navbar__actions .btn,
    #login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        padding: 0 12px;
        font-size: 12px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .navbar__search {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__actions {
        position: static;
        right: auto;
        top: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
    }

    .navbar__actions.active {
        right: 0;
    }

    /* Hero Mobile */
    @media (max-width: 768px) {
        .hero {
            padding: 18px 16px 0;
            background: #050038;
            height: auto;
            min-height: auto;
            overflow: hidden;
            /* margin-left: 10px; */
        }

        .hero__inner {
            display: block;
        }

        .hero__content {
            padding: 0;
            max-width: 100%;
        }


        .hero__title {
            max-width: 320px;
            height: auto;
            margin-bottom: 16px;
            font-size: 28px;
            line-height: 1.15;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .text-accent {
            color: #f6a329;
        }

        .hero__subtitle--desktop {
            display: none;
        }

        .hero__subtitle--mobile {
            display: block;
            margin-bottom: 26px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.45;
            max-width: 280px;
        }

        .hero__checklist {
            gap: 14px;
            margin-bottom: 18px;
        }

        .hero__checklist li {
            gap: 12px;
            align-items: flex-start;
            font-size: 14px;
            line-height: 1.2;
        }

        .check-icon {
            width: 22px;
            height: 22px;
            min-width: 22px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .hero__cta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 10px;
        }

        .hero__cta .btn {
            height: 48px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 999px;
        }

        .btn--hero-primary {
            width: 272px;
        }

        .btn--hero-outline {
            width: 165px;
            background: transparent;
            border: 1px solid #2563eb;
        }

        .hero__image {
            display: none;
        }

        .hero__mobile-visual {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 8px;
            margin-top: -2px;
            min-height: 238px;
            position: relative;
        }

        .hero__mobile-video-card {
            position: relative;
            width: 40%;
            height: 210px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 16px;
            background: linear-gradient(180deg, #0f67ff 0%, #0b43c6 100%);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .hero__mobile-video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }

        .hero__mobile-doctor-wrap {
            width: 500px;
            position: absolute;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            flex-shrink: 0;
            right: -60px;
        }


        .hero__mobile-doctor {
            width: 100%;
            max-width: 350px;
            height: auto;
            right: -50px;
            display: block;
            object-fit: contain;
            position: relative;
            z-index: 2;
        }


        .hero__mobile-badge {
            position: absolute;
            left: -18px;
            top: 62px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
        }

        .hero__mobile-badge img,
        .hero__mobile-badge span {
            width: 30px;
            height: 30px;
            font-size: 26px;
            line-height: 1;
        }
    }

    .about{
        padding-top: 30px;
    }
    .about__text{
        font-size: 16px;
    }

    .why-choose {
        padding-top: 10px;
        padding-bottom: 32px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .why-choose .section-title {
        font-size: 1.4rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .why-choose .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 24px;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* Consult Sections Mobile */
    .consult-section__inner {
        flex-direction: column !important;
        gap: 30px;
        margin: 0 10px;
    }

    .consult-section__image {
        flex: 0 0 auto;
        width: 100%;
    }

    .consult-img-placeholder {
        height: 260px;
    }

    .consult-section__content h2 {
        font-size: 1.4rem;
    }

    /* Make CTAs consistent on mobile */
    #cta-consult-skin,
    #cta-consult-hair,
    .doctor-profile__cta {
        width: 180px !important;
        height: 56px !important;
        min-width: 180px !important;
        min-height: 56px !important;
        padding: 0 18px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        margin-left: 0 !important;
    }

    .consult-section--skin .consult-section__inner {
        max-width: 100%;
        gap: 24px;
    }

    .consult-section--skin .consult-section__image {
        flex: 0 0 auto;
        width: 100%;
    }

    .consult-section--skin .consult-img-placeholder {
        height: 260px;
    }

    .consult-section--skin .consult-section__content {
        max-width: 100%;
        padding-top: 0;
    }

    .consult-section--skin .consult-section__content h2 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .consult-section--skin .consult-section__content p {
        max-width: 100%;
    }

    .consult-section--hair .consult-section__inner {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .consult-section--hair .consult-section__content {
        max-width: 100%;
        padding-top: 0;
        order: 2;
    }

    .consult-section--hair .consult-section__content h2 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .consult-section--hair .consult-section__content p {
        max-width: 100%;
    }

    .consult-section--hair .consult-section__content .btn {
        width: auto;
        min-width: 166px;
        height: 56px;
        min-height: 56px;
        padding: 0 16px;
        margin-top: 8px;
    }

    .consult-section--hair .consult-section__image {
        flex: 0 0 auto;
        width: 100%;
        order: 1;
    }

    .consult-section--hair .consult-img-placeholder {
        height: 260px;
    }

    /* Steps Mobile */
    .steps-layout {
        flex-direction: column;
        gap: 30px;
    }

    .steps-layout__media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .steps-video-frame {
        height: 560px;
        border-radius: 28px;
    }

    .steps-video {
        border-radius: 26px;
    }

    /* Doctor Profile Mobile */
    .doctor-profile__inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .doctor-profile__image-wrap {
        flex: 0 0 auto;
        order: -1;
        width: 100%;
        margin-top: -60px;
        max-width: 360px;
        padding-top: 0;
        height: 250px;
    }

    .doctor-profile__info {
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: left;
        margin-left: 15px;
    }

    .doctor-profile__photo {
        width: 220px;
        height: 280px;
        padding: 10px;
    }

    .doctor-profile__badge {
        top: 12px;
        left: 18px;
        width: 42px;
        height: 42px;
    }

    .doctor-profile__stars {
        top: 44px;
        right: 8px;
        min-width: 126px;
        padding: 8px;
    }

    .doctor-profile__patients {
        left: 6px;
        bottom: 68px;
        min-width: 126px;
        font-size: 13px;
        padding: 8px 12px;
    }

    .doctor-profile__dot {
        right: 36px;
        bottom: 28px;
    }

    .doctor-profile__orbit--one {
        width: 230px;
        height: 230px;
    }

    .doctor-profile__orbit--two {
        width: 290px;
        height: 290px;
    }

    .doctor-profile__orbit--three {
        width: 340px;
        height: 340px;
    }

    .doctor-profile__info h2 {
        font-size: 1.2rem;
    }

    .doctor-profile__specialty {
        font-size: 14px;
    }

    .doctor-profile__info p:not(.doctor-profile__specialty) {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .doctor-profile__cta {
        width: 180px !important;
        height: 56px !important;
        font-size: 16px !important;
        margin-left: 0 !important;
    }

    .how-it-works{
        padding: 0 15px;
        margin-bottom: 20px;
    }

    /* FAQ Mobile */

    .faq {
        padding: 22px 10px 0;
    }

    .faq .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .faq-item__question {
        padding: 16px 14px;
        font-size: 15px;
    }

    .faq-item--active .faq-item__answer {
        padding: 0 14px 14px;
    }

    .faq-item__answer p {
        font-size: 15px;
    }

    /* SEO Content Mobile */

    .seo-content .container{
        padding: 0 30px;
    }
    .seo-content__card {
        padding: 20px 16px 16px;
    }

    .seo-content__card h2 {
        font-size: 1.2rem;
    }

    .seo-content__card h3 {
        font-size: 1.1rem;
    }

    .seo-content__card p,
    .seo-content__card ul li,
    .seo-content__readmore a {
        font-size: 15px;
    }

    /* Trust Badges Mobile */
    .trust-badges__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        min-height: auto;
        padding: 0;
    }

    .seo-content {
        padding-bottom: 28px;
    }

    .trust-badges {
        padding-top: 8px;
    }

    .trust-badge {
        flex: 0 0 calc(33.333% - 16px);
    }

    .trust-badge__icon {
        margin-bottom: 12px;
    }

    .trust-badge__icon img {
        width: 34px;
        height: 34px;
    }

    .trust-badge h4 {
        font-size: 14px;
    }

    .trust-badge p {
        font-size: 10px;
    }

    /* App Download Mobile */

    .app-download {
        margin: 10px 0 20px;
        padding: 16px 0 16px;
    }

    .footer {
        padding-top: 16px;
    }

    .app-download__inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: calc(100% - 20px) !important;
        margin: 0 auto !important;
        height: auto !important;
        min-height: unset !important;
        background: #ffcc00;
        border-radius: 36px !important;
        padding: 22px 18px 28px !important;
        overflow: hidden;
        gap: 12px !important;
        position: relative !important;
    }

    .app-download__inner::before {
        display: none !important;
    }


    .app-download__image {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 0 6px 0 !important;
        flex: 0 0 auto !important;
        pointer-events: none !important;
    }

    .app-download__stores {
        position: static !important;
        margin: 0 !important;
        flex-direction: row !important;
        gap: 12px !important;
    }

    .app-download__image img {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
        object-position: center !important;
    }


    .app-download__content {
        position: static !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
    }

    .app-download__content h2 {
        display: block !important;
        font-size: 1.35rem !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
        color: #0f1729 !important;
        margin: 0 auto 10px auto !important;
        max-width: 320px !important;
    }

.app-download__content p {
        display: block !important;
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        color: #0f1729 !important;
        margin: 0 auto 16px auto !important;
        max-width: 320px !important;
    }

    .app-download__stores img {
        height: 40px;
        width: auto;
        display: block;
    }

    .app-download__stores {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin: 0 !important;
    }

    .store-badge img {
        height: 38px !important;
        width: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Footer Mobile */
    .footer__inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 30px 20px 24px;
    }

    .footer__newsletter {
        max-width: 100%;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mobile-install-popup {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        display: block;
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        overflow: visible;
    }

    .mobile-install-popup--hidden {
        display: none;
    }

    .mobile-install-popup__content {
        display: grid;
        grid-template-columns: 52px 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
    }

    .mobile-install-popup__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: #EEF4FF;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
    }

    .mobile-install-popup__icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-install-popup__copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .mobile-install-popup__copy strong {
        font-family: 'Figtree', sans-serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.1;
        color: #1E293B;
        margin-bottom: 4px;
    }

    .mobile-install-popup__copy span {
        font-family: 'Figtree', sans-serif;
        font-size: 10px;
        font-weight: 500;
        line-height: 1.3;
        color: #64748B;
    }

    .mobile-install-popup__badges {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }

    .mobile-install-popup__badge {
        display: flex;
        justify-content: flex-end;
        text-decoration: none;
    }

    .mobile-install-popup__badge img {
        width: 100%;
        max-width: 112px;
        height: auto;
        display: block;
    }

    .mobile-install-popup__close {
        position: absolute;
        top: -08px;
        right: -08px;
        width: 24px;
        height: 24px;
        border: none;
        border-radius: 999px;
        background: rgba(0, 1, 3, 0.72);
        color: #FFFFFF;
        font-size: 16px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .footer {
        padding-bottom: 110px;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 0.85rem;
    }

    .hero__checklist li {
        font-size: 0.85rem;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 12px);
    }

    .app-download__stores {
        flex-direction: column;
    }

    .footer__links {
        flex-direction: column;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .mobile-install-popup__content {
        grid-template-columns: 48px 1fr auto;
        gap: 10px;
        padding: 10px 12px;
    }

    .mobile-install-popup__icon {
        width: 48px;
        height: 48px;
    }

    .mobile-install-popup__copy strong {
        font-size: 16px;
    }

    .mobile-install-popup__copy span {
        font-size: 12px;
    }

    .mobile-install-popup__badge img {
        max-width: 85px;
    }
}
