* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat Alternates", sans-serif;

}

body {
    color: #1f1f1f;
    background: #fff;
    line-height: 1.6;
    max-width: 1440px;
    margin: auto;

}

.container {
    width: 90%;
    margin: auto;
}

/* ===================== HEADER ===================== */
.header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 2rem;
    color: #44687f;
}

.logo::first-letter {
    color: #ff7f50;
}

.logo-white {
    color: #fff;
    /* font-weight: bold; */
    font-size: 2rem;
}

.logo-white::first-letter {
    color: #ff7f50;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 10px 40px 10px 16px;
    font-size: 12px;
    color: #33566B;

    background: #ffffff;
    border: 1.5px solid #D6E6EE;
    border-radius: 12px;

    cursor: pointer;
    outline: none;

    position: relative;
}

/* стрелочка справа ▼ */
.lang-select {
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M3 5l4 4 4-4' stroke='%236B8794' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
}

/* Hover */
.lang-select:hover {
    border-color: #b7d4df;
}

/* Focus */
.lang-select:focus {
    border-color: #7fb3c7;
}


.cta-btn {
    background: #ff7f50;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    height: 50px;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
    background: url("../img/landing-1.png") center/cover no-repeat;
    color: #fff;
    position: relative;
    /* width: 90%; */
    margin: auto;
    border-radius: 32px;
    min-height: 860px;
    overflow: hidden;
}

.doctor-hero {
    background: url("../img/doctors-hero.jpg") center/cover no-repeat;
    color: #fff;
    position: relative;
    /* width: 90%; */
    margin: auto;
    border-radius: 32px;
    min-height: 860px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    /* position: relative; */
    z-index: 2;
    text-align: left;
    margin: 4%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 60%;
}

.hero-slogan {
    font-size: 80px;
    font-weight: bold;
    line-height: 76px;
    letter-spacing: -2px;
    word-break: break-word;
}

.tagline {
    background-color: #dceaeE;
    padding: 4px 14px;
    display: inline-flex;
    gap: 8px;
    color: black;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
}

/* ===================== HERO BOTTOM CARDS ===================== */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5%;
}

/* 19K+ block */
.stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 24px 28px;
    width: 300px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.stat-text {
    text-align: right;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.stat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.support-doctor-card {
    width: 280px;
    height: 350px;
    background: #E4F3F8;
    border-radius: 28px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.sd-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-number {
    font-size: 36px;
    font-weight: 700;
    color: #44687F;
}

.sd-dots {
    font-size: 28px;
    font-weight: 700;
    color: #44687F;
}

.sd-text {
    /* margin-top: 14px; */
    width: 70%;
    font-size: 16px;
    color: #44687F;
    line-height: 20px;
}

.sd-img {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-30%);
    width: 210px;
    object-fit: contain;
}


.avatars {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    padding: 6px 10px;
    gap: 8px;
}

.avatars img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.stat-icon svg {
    width: 42px;
    height: 20px;
    opacity: 0.9;
}

/* Support card */
.support-card {
    position: relative;
    background: #fff;
    color: #1f1f1f;
    border-radius: 24px;
    padding: 24px 28px;
    width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.badge-icon svg {
    width: 32px;
    height: 32px;
}

.support-label {
    background: #dceaeE;
    color: #44687f;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.support-body h3 {
    font-size: 20px;
    color: #1f3b57;
    margin-bottom: 10px;
}

.support-body p {
    color: #44687f;
    font-size: 14px;
    margin-bottom: 16px;
}

.support-body .badge {
    font-size: 22px;
    font-weight: 700;
    color: #1f3b57;
    background: #dceaeE;
    padding: 4px 12px;
    border-radius: 12px;
}

.support-bottom-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: 0.8;
}

/* ===================== WHY ===================== */
/* WHY SECTION */
.why {
    background: #fdfdfd;
    padding: 80px 0;
    border-radius: 32px;
    /* width: 90%; */
    margin: auto;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdf8f4;
    border-radius: 24px;
    padding: 40px 60px;
    margin-bottom: 60px;
}

.why-left {
    max-width: 600px;
}

.why-left h2 {
    font-size: 48px;
    color: #1f3b57;
    line-height: 1.1;
}

.why-left p {
    color: #44687f;
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 24px;
}

/* .cta-btn {
    background: #ff7f50;
    color: #fff;
    border-radius: 100px;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
} */

/* Grid Layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #dcebee;
    border-radius: 24px;
    padding: 28px;
    color: #1f3b57;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-card.image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    height: 360px;
    /* you can tweak this for aspect ratio */
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: #fff;
}

.why-card.image h3 {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 12px;
    backdrop-filter: blur(3px);
    font-weight: 600;
}

.why-badges {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.why-badges span {
    background: rgba(255, 255, 255, 0.9);
    color: #1f3b57;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    padding: 4px 12px;
}

.why-badges span {
    background: rgba(255, 255, 255, 0.9);
    color: #1f3b57;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    padding: 4px 12px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #44687f;
}

.why-footer {
    margin-top: 16px;
}

.why-price {
    font-weight: 700;
    font-size: 22px;
}

.why-percentage {
    font-weight: 700;
    font-size: 26px;
}

/* 📱 Respon*

.try-btn {
    background: #ff6f3c;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
}


/* === SERVICES SECTION === */
.services {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3b57;
    margin-bottom: 48px;
}

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

.service-card {
    border-radius: 24px;
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    color: #1f3b57;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #44687f;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-link {
    color: #1f3b57;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link::after {
    content: "↗";
    font-size: 14px;
    opacity: 0.8;
}

/* Card colors */
.service-card.pink {
    background: #ffe1e1;
}

.service-card.purple {
    background: #e8e4ff;
}

.service-card.green {
    background: #d7f2e3;
}



/* ===================== reviews section ===================== */


.stories {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.stories-title {
    font-size: 42px;
    color: #1f3b57;
    font-weight: 700;
    margin-bottom: 48px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

.story-card {
    background: #fdfdfd;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    /* border: 1px solid #e8edf0; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 16px;
    border-bottom: 1px solid #e6ebee;
}

.story-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f3b57;
    margin-bottom: 12px;
}

.story-text {
    font-size: 15px;
    color: #44687f;
    line-height: 1.6;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6ebee;
    padding-bottom: 20px;
}

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

.story-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dcebee;
}

.author-name {
    font-weight: 600;
    color: #1f3b57;
    font-size: 15px;
}

.author-role {
    color: #44687f;
    font-size: 13px;
}





/* ===================== how section ===================== */

.how {
    background: #fff;
    padding: 80px 0;
}

.how-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3b57;
    margin-bottom: 16px;
    text-align: center;
}

.how-subtitle {
    text-align: center;
    color: #44687f;
    max-width: 640px;
    margin: 0 auto 60px;
    font-size: 16px;
}

/* --- Steps --- */
.how-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.how-step {
    display: flex;
    align-items: flex-start;
    background: #eef6f8;
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 320px;
    flex: 1 1 280px;
}

.how-step-number {
    background: #ff7f50;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 14px;
}

.how-step-content h3 {
    font-size: 18px;
    color: #1f3b57;
    margin-bottom: 6px;
}

.how-step-content p {
    font-size: 14px;
    color: #44687f;
    line-height: 1.5;
}

/* --- Example cards --- */
.how-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.how-card {
    background: #f3f9fa;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.how-card h4 {
    font-size: 18px;
    color: #1f3b57;
    margin-bottom: 16px;
    font-weight: 600;
}

.how-card img {
    width: 100%;
    border-radius: 16px;
}



/* ===================== intro ===================== */


.intro {
    position: relative;
    /* width: 90%; */
    margin: 60px auto;

    border-radius: 32px;
    overflow: hidden;
    background-image: url("../img/momandgirl.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: -60px;
    min-height: 600px;
    display: flex;
    align-items: center;
}


/* Optional soft overlay for readability */
.intro-overlay {
    background: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.intro-text {
    padding: 60px;
    max-width: 550px;
    z-index: 2;
}

.intro-text h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1f3b57;
    line-height: 1.5;
    margin-bottom: 24px;
}

.intro-btn {
    background: #ff7f50;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.intro-btn:hover {
    background: #ff956d;
}

/* === TAGS (bottom-right area) === */
.intro-tags {
    position: absolute;
    bottom: 40px;
    /* adjust depending on image height */
    right: 40px;
    /* perfect desktop placement */
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 3;
}

.intro-tags span {
    background: #DCEAEE;
    color: #44687F;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
}



.path-section {
    width: 100%;
    padding: 40px 0;
}

/* White rounded card */
.path-card {
    /* width: 90%; */
    margin: auto;
    background: #FAF9F6;
    border-radius: 32px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Left side title */
.path-left h2 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.25;
    color: #1f3b57;
    max-width: 500px;
}

/* Right side paragraph */
.path-right p {
    max-width: 360px;
    font-size: 18px;
    line-height: 1.6;
    color: #48687a;
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: auto;
}

/* CARD BASE */
.feature-card {
    background: #F0F5F6;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* WIDTHS */
.feature-card.small {
    flex: 0 0 calc(40% - 16px);
}

.feature-card.large {
    flex: 0 0 calc(60% - 16px);
}

/* THIS MAKES 3RD + 4TH CARDS FLIP POSITIONS */
.feature-card:nth-child(3) {
    order: 3;
}

.feature-card:nth-child(4) {
    order: 4;
}

/* TITLES */
.feature-title {
    font-size: 26px;
    font-weight: 700;
    color: #2f4f60;
}

.feature-subtitle {
    font-size: 15px;
    color: #6b8794;
    margin-top: -10px;
}

/* WHITE INNER BOX */
.feature-inner {
    border-radius: 32px;
    padding: 28px;
    overflow: hidden;
}

/* IMAGES INSIDE CARD */
.feature-image {
    width: 100%;
    border-radius: 24px;
    display: block;
    max-height: 450px;
    object-fit: contain;
}

.card-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;

    width: 100%;
}

.profile-box,
.lock-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.profile-box {
    flex: 1;
}

.lock-card {
    flex: 1;
}

.lock-card h4 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
}

.lock-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

/* PROFILE */
.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-icon {
    width: 40px;
    height: 40px;
    background: #DCEAEE;
    border-radius: 50%;
}

.profile-menu {
    font-size: 22px;
    cursor: pointer;
}

.profile-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.info-icon {
    width: 16px;
    margin-right: 6px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    margin-top: 16px;
}

.gray {
    color: #7A8A9F;
    font-size: 13px;
}

.secure-btn {
    width: 100%;
    background: #FF7F50;
    color: #fff;
    padding: 14px;
    border-radius: 16px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}


/* LOCK BOX */
.lock-box {
    display: flex;
    justify-content: center;
}

.lock-img {
    width: 110px;
}


/* CALENDAR */
.calendar-box {
    background: #fff;
    padding: 24px;
    border-radius: 24px;
}

.calendar-img {
    width: 100%;
}

/* BASE HERO STRUCTURE */
.intro-momson {
    width: 100%;
    border-radius: 40px;
    padding: 60px;
    color: #1e3a45;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
    /* min-height: 750px; */
}

/* SPECIFIC BACKGROUND IMAGE */
.intro-momson {
    background-image: url('../img/momson.jpg');
    min-height: 750px;
}

/* CONTENT LIMIT */
.intro-content2 {
    max-width: 50%;
}

.intro-text2 h2 {
    font-size: 48px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2f4f60;
}

/* BUTTON */
.intro-btn2 {
    background: #ff7f50;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}



.launch-section {
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto;
    display: none;
    flex-direction: column;
    gap: 28px;
    /* padding: 0 16px; */
}

/* Top Banner */
.launch-banner {
    background: #355970;
    color: #fff;
    padding: 40px 28px;
    border-radius: 32px;
    text-align: center;
}

.launch-banner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.launch-banner p {
    font-size: 18px;
    line-height: 1.4;
}

/* Form Card */
.launch-form {
    background: #f8f8f5;
    padding: 32px 24px;
    border-radius: 32px;
    margin: 36px 0;
}

.launch-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #355970;
}

.form-desc {
    color: #6b8794;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Inputs */
.launch-form input[type="text"],
.launch-form input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    margin-bottom: 14px;
    font-size: 15px;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin: 12px 0 22px;
}

/* Button */
.submit-btn {
    width: 100%;
    background: #ff7f50;
    color: white;
    padding: 14px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}




.plans-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
}

.plan-highlight {
    background-color: #DCEAEE !important;
}

.billing-toggle {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.billing-toggle input {
    margin-right: 6px;
}

.plans-wrapper {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    padding: 0 32px;
}

.plan-card {
    background: #F0F5F6;
    min-height: 480px;
    padding: 28px;
    border-radius: 40px;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #44687F;
    border-bottom: 1px solid #B8CFD7;
    padding: 16px;
}


.plan-tag {
    background: #ff7f50;
    padding: 4px 10px;
    color: white;
    border-radius: 12px;
    font-size: 12px;
}

.plan-desc {
    color: #44687F;
    font-size: 16px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* margin-top: 16px; */
}

.plan-features span {
    background: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    margin-right: 6px;
}

.plan-features h3 {
    color: #44687F;
    padding: 16px;
    font-weight: 500;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 8px;
}

.price {
    font-size: 48px;
    font-weight: 600;
    color: #2f4f60;
}

.plan-action {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-month {
    font-size: 18px;
    color: #44687F
}

.plan-btn {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-btn:hover {
    background: #dceaeE;
}

.promo-box {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    background: #F0F5F6;
    border-radius: 16px;

}

.promo-box h3 {
    font-size: 36px;
    font-weight: 600;
    color: #44687F;
    line-height: normal;
    margin-bottom: 24px;
}

.promo-box p {
    font-size: 28px;
    font-weight: 400;
    color: #44687F;
    line-height: normal;
}

/* @media (max-width: 768px) {
    .plans-wrapper {
        flex-direction: column;
    }

    .plan-card {
        width: 100%;
    }
} */

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 60px;
    background: #FAFAF8;
    border-radius: 24px;
    margin-bottom: 40px;
}

/* LEFT SIDE — title */
.pricing-header-left h2 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: #2F4F60;
    max-width: 420px;
}

/* RIGHT SIDE — small description */
.pricing-header-right {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.45;
    color: #6B8794;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 32px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    font-size: 18px;
    color: #2f4f60;
}

.radio-option input {
    display: none;
}

/* внешний круг */
.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #9eb5c3;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

/* внутренний оранжевый кружок */
.radio-circle::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #FF7F50;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.4);
    transition: 0.25s ease;
}

/* активная */
.radio-option input:checked+.radio-circle {
    border-color: #FF7F50;
}

/* появление внутренней точки */
.radio-option input:checked+.radio-circle::after {
    opacity: 1;
    transform: scale(1);
}


.faq-section {
    width: 100%;
    padding: 60px 0;
    background-color: #B8CFD7;
    border-radius: 30px;
}

.faq-container {
    display: flex;
    gap: 60px;
    /* background: #ecf6fb; */
    padding: 50px;

}

/* LEFT */
.faq-left {
    width: 60%;
}

.faq-left h2 {
    font-size: 54px;
    color: #44687F;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-left p {
    color: #44687F;
    font-size: 18px;
    line-height: 30.6px;

}

/* RIGHT */
.faq-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #d7e7ef;
    padding-bottom: 16px;
}

/* QUESTION ROW */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #2f4f60;
    font-weight: 500;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
    color: #2f4f60;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.open {
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: #6b8794;
    margin-top: 14px;
    line-height: 1.5;
}

.footer {
    background: #33566B;
    color: white;
    border-radius: 40px 40px 0 0;
    padding: 50px 40px;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-container {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-contact-card {
    background: #E3F1F6;
    border-radius: 20px;
    padding: 28px;
    width: 380px;
    position: relative;
    overflow: hidden;
}

.footer-contact-left h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2F4F60;
    margin-bottom: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #2F4F60;
    font-size: 15px;
}

.footer-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-icons img {
    width: 26px;
    height: 26px;
}

/* GIRL IMAGE FIXED PERFECTLY  */
.footer-contact-img {
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 160px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

/* ============ SUBSCRIBE ============ */

.subscribe-box {
    /* width: 360px; */
    background: #eef8fc;
    padding: 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 14px;
    color: #7a8a9f;
}

.subscribe-box input::placeholder {
    color: #b7c9d4;
}

.subscribe-box button {
    background: #ff8356;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* ============ MENUS ============ */

.footer-menus {
    display: flex;
    gap: 80px;
    margin-left: 36px;
}

.footer-menu h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;

}

.footer-menu a {
    display: block;
    color: #B8CFD7;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 18px;
}

/* ============ BOTTOM ============ */

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.25); */
    text-align: center;
    color: #E5EEF0;
    font-size: 13px;
    display: flex;
    gap: 12px;
}

.footer-bottom span {
    display: block;
}

.orange {
    width: 100%;
    background-color: #FF7F50;
    height: 36px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    main {
        padding: 0 16px;
    }

    .nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 1rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 2rem 0;
        border-radius: 40px;
        min-height: auto;
    }

    .hero-slogan {
        font-size: 36px;
        line-height: 42px;
    }

    .tagline {
        font-size: 14px;
        padding: 6px 12px;
    }

    .hero-bottom {
        position: static;
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 5%;
        padding-bottom: 0;
    }

    .hero-slogan {
        font-size: 36px;
        line-height: 42px;
    }

    .desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .stat,
    .support-card {
        /* width: 90%; */
        max-width: 340px;
    }

    .cta-btn {
        padding: 10px 20px;
    }

    .why-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

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

    .why-card.image img {
        border-radius: 20px;
    }

    .why-left h2 {
        font-size: 32px;
    }



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

    .stories-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

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




    .how-grid {
        flex-direction: column;
        gap: 16px;
    }

    .how-step {
        max-width: 100%;
    }

    .how-examples {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-title {
        font-size: 32px;
    }

    .how-subtitle {
        margin-bottom: 40px;
    }

    .intro {
        height: 392px;
        background-size: cover;
        background-position-x: -400px;
    }

    .intro-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .intro-text {
        flex: 1;
        order: 2;
    }

    .intro-text h2 {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .intro-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .intro-tags {
        display: flex;
        position: static;
        margin-top: 16px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-image {
        order: 1;
        width: 100%;
        margin-bottom: 24px;
    }

    .intro-image img {
        width: 100%;
        border-radius: 20px;
    }


    .path-section {
        display: none;
    }

    .features-section {
        /* display: none; */
        flex-direction: column;
    }

    .feature-card {
        width: 100%;
    }

    .feature-card.small,
    .feature-card.large {
        width: 100%;
    }

    .feature-inner {
        padding: 0px;
    }

    .card-container {
        flex-direction: column;
    }

    .intro button {
        width: 100%;
    }

    .intro-momson {
        min-height: 400px;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px;
        margin: 36px 0;
    }

    .intro-momson button {
        width: 100%;
    }

    .intro-text2 h2 {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .intro-text {
        padding: 12px;
        max-width: 100%;
        font-size: 24px;

    }


    .intro-content {
        width: 100%;
        max-width: 100%;
        padding: 12px;
    }

    .intro-content2 {
        width: 100%;
        max-width: 100%;
    }

    .launch-section {
        display: flex;
    }

    .plans-section {
        display: none;
    }

    .faq-section {
        padding: 12px 0;
    }

    .faq-left {
        width: 100%;
        /* text-align: center; */
    }

    .faq-left h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .faq-right {
        width: 100%;
    }

    .faq-container {
        flex-direction: column;
        padding: 32px 16px;
        align-items: center;
        gap: 24px;
    }

    .faq-item {
        background-color: #DCEAEE;
        padding: 16px;
        border-radius: 16px;
    }


    .footer {
        /* margin-top: 80px; */
        padding: 25px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }

    .footer-card {
        width: 380px;
        padding: 28px;
    }

    .footer-doctor {
        width: 170px;
        right: 0;
        bottom: 0;
    }

    .footer-menus {
        flex-direction: column;
        align-self: start;
        gap: 36px;
        margin: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }

    .footer-bottom span {
        margin: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .service-card {
        padding: 28px 22px;
    }
}



/* ===================== DOCTOR PAGE ===================== */
.benefit-section {
    width: 100%;
    margin: 60px 0;
}

.benefit-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    /* flex-wrap: wrap; */
}

.benefit-card {
    width: 25%;
    background: #E3EFF4;
    padding: 30px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    font-size: 32px;
    color: #2F4F60;
    font-weight: 600;
}

.benefit-card p {
    color: #2F4F60;
    line-height: 1.4;
    font-size: 24px;
}


/* ===================== Steps ===================== */

.steps-section {
    width: 100%;
    margin-top: 50px;
}

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

.step-card {
    background: #eaf4f7;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2f4f60;
}

.step-card h4 {
    font-size: 24px;
    color: #2f4f60;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.step-card input,
.step-card select {
    width: 100%;
    height:60px;
    border-radius: 16px;
    border: none;
    outline: none;
    padding: 0 16px;
    background: #fff;
    font-size: 14px;
}

.step-card button {
    background: #ff8356;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 12px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
}

.step-img {
    width: 100%;
    border-radius: 16px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: #2f4f60;
}




.how-easy {
    background: #FAF9F6;
    border-radius: 32px;
    padding: 60px 40px;
    margin-top: 60px;
    text-transform: uppercase;
    /* border: 2px solid #4a87a3; */
}

.how-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.how-left {
    /* flex: 1; */
    background: #3b6479;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.how-left img {
    /* width: 70%; */
    width: 550px;
    height: 500px;
    display: block;
}

/* RIGHT */
.how-right {
    flex: 1;
}

.how-right h2 {
    font-size: 54px;
    font-weight: 600;
    color: #2F4F60;
    margin-bottom: 30px;

}

.how-item {
    margin-bottom: 28px;
}

.how-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2F4F60;
    margin-bottom: 6px;
}

.how-item p {
    color: #4d6f7f;
    line-height: 1.4;
}

.how-btn {
    background: #FF8356;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.2s;
}

.how-btn:hover {
    background: #ff6a33;
}

/* 📱 MOBILE */



.apply-section {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 32px;
}

.apply-left {
    position: relative;
    flex: 1;
}

.apply-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.apply-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.apply-badge {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.apply-badge span img {
    filter: brightness(0) saturate(100%) invert(1);
}

.apply-right {
    flex: 1;
    background: #33566b;
    color: white;
    padding: 40px;
    border-radius: 24px;
}

.apply-right h2 {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.apply-desc {
    margin-bottom: 24px;
    font-size: 16px;
    opacity: 0.9;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-form input,
.apply-form select {
    background: white;
    border: none;
    padding: 16px;
    font-size: 15px;
    border-radius: 10px;
}

.apply-form button {
    margin-top: 10px;
    padding: 16px;
    background: #ff8356;
    color: white;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

.apply-form button:hover {
    background: #ff6a2c;
}


.success-stories {
    padding: 60px 0 40px;
}

.success-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #2F4F60;
    margin-bottom: 40px;
}

.success-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.success-card {
    width: 45%;
    min-width: 320px;
}

.stars img {
    width: 22px;
    height: 22px;
    margin-right: 4px;
}

.success-text {
    margin-top: 15px;
    font-size: 18px;
    color: #2F4F60;
    line-height: 1.4;
    max-width: 420px;
}

.success-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
}

.author-avatar img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FF8356;
    padding: 6px;
}

.author-name {
    font-size: 16px;
    color: #2F4F60;
    font-weight: 600;
}

.author-role {
    font-size: 14px;
    color: #7A8A9F;
}



/* Mobile */
@media(max-width: 768px) {
    .benefit-card {
        width: 100%;
    }

    .benefit-cards {
        flex-direction: column;
    }

    .benefit-card h3 {
        font-size: 24px;
    }

    .benefit-card p {
        font-size: 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 24px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    .step-card h4 {
        font-size: 13px;
    }

    .step-img {
        max-width: 100%;
    }


    .how-container {
        flex-direction: column;
        text-align: center;
    }

    .how-left {
        width: 100%;
    }

    .how-right {
        width: 100%;
    }

    .how-right h2 {
        font-size: 32px;
    }




    .apply-section {
        flex-direction: column;
        padding: 20px;
    }

    .apply-right {
        width: 100%;
    }

    .apply-left {
        width: 100%;
    }

    .apply-badges {
        flex-wrap: wrap;
    }
    .apply-img {
        height: 330px;
    }



    .success-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .success-card {
        width: 100%;
    }

    .success-title {
        font-size: 30px;
        margin-bottom: 30px;
        padding: 0 20px;
        line-height: 1.3;
    }

    .success-text {
        font-size: 16px;
        max-width: 100%;
        margin-top: 10px;
    }

    .stars img {
        width: 20px;
        height: 20px;
    }

    .success-author {
        margin-top: 20px;
    }

    .author-avatar img {
        width: 42px;
        height: 42px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-role {
        font-size: 13px;
    }
}