/* =====================================================
   BETTERYOU CO. — WOMEN'S WELLNESS
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Poppins",
        "Montserrat",
        Arial,
        sans-serif;

    background: #020b18;

    color: #ffffff;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    height: 78px;

    padding: 0 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        rgba(2, 11, 24, 0.88);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        rgba(255,255,255,0.07);

    position: relative;

    z-index: 100;

}


.logo img {

    width: 145px;

    display: block;

}


.navbar nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.navbar nav a {

    color: #b7c7d1;

    font-size: 12px;

    font-weight: 500;

    transition:
        color .3s ease,
        transform .3s ease;

}


.navbar nav a:hover {

    color: #ffffff;

    transform:
        translateY(-2px);

}


.women-nav {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 30px;

    color: #ffd6ea !important;

    background:
        linear-gradient(
            135deg,
            rgba(255,110,180,0.12),
            rgba(170,90,255,0.12)
        );

    border:
        1px solid
        rgba(255,150,210,0.18);

    box-shadow:
        0 0 20px
        rgba(225,100,190,0.06);

}


.women-nav i {

    color: #ff9fd1;

}


.start-nav {

    padding: 10px 21px;

    border-radius: 30px;

    background:
        linear-gradient(
            90deg,
            #00ffc8,
            #00a2ff
        );

    color: #001b24 !important;

    font-weight: 700 !important;

}


/* =====================================================
   COMMON
===================================================== */

.section-tag {

    display: inline-block;

    color: #ff9fd1;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.section-heading {

    max-width: 800px;

    margin: 0 auto;

}


.section-heading.centered {

    text-align: center;

}


.section-heading h2 {

    font-size:
        clamp(38px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 22px;

}


.section-heading h2 span {

    background:
        linear-gradient(
            90deg,
            #ffb4d9,
            #d49aff,
            #ff91c9
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.section-heading p {

    color: #91a9b5;

    font-size: 15px;

    line-height: 1.9;

}


/* =====================================================
   HERO
===================================================== */

.women-hero {

    min-height: 820px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(255,100,180,0.13),
            transparent 27%
        ),

        radial-gradient(
            circle at 85% 70%,
            rgba(160,70,255,0.14),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 80%,
            rgba(0,180,255,0.08),
            transparent 30%
        ),

        #020b18;

}


.hero-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,130,190,0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(180,100,255,0.035) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 10%,
            transparent 78%
        );

}


.women-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    left: -250px;

    top: 10%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,100,190,0.10),
            transparent 70%
        );

    filter: blur(10px);

}


.women-hero::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -250px;

    bottom: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(145,70,255,0.14),
            transparent 70%
        );

}


/* =====================================================
   GLOWS
===================================================== */

.pink-glow,
.purple-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(5px);

}


.glow-one {

    width: 300px;

    height: 300px;

    right: 20%;

    top: 5%;

    background:
        radial-gradient(
            circle,
            rgba(255,100,180,0.11),
            transparent 70%
        );

}


.glow-two {

    width: 220px;

    height: 220px;

    right: 3%;

    bottom: 10%;

    background:
        radial-gradient(
            circle,
            rgba(255,130,200,0.09),
            transparent 70%
        );

}


.glow-three {

    width: 320px;

    height: 320px;

    left: 30%;

    bottom: -150px;

    background:
        radial-gradient(
            circle,
            rgba(160,80,255,0.10),
            transparent 70%
        );

}


/* =====================================================
   PARTICLES
===================================================== */

.particle {

    position: absolute;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #ffb5d8;

    box-shadow:
        0 0 12px
        rgba(255,150,210,0.9);

    animation:
        particleFloat
        5s ease-in-out
        infinite;

}


.p1 {

    top: 20%;

    left: 55%;

}


.p2 {

    top: 35%;

    right: 12%;

    animation-delay: 1s;

}


.p3 {

    bottom: 20%;

    left: 45%;

    animation-delay: 2s;

}


.p4 {

    top: 70%;

    right: 35%;

    animation-delay: 3s;

}


.p5 {

    top: 15%;

    right: 45%;

    animation-delay: 1.5s;

}


@keyframes particleFloat {

    0%,100% {

        transform:
            translateY(0);

        opacity: .4;

    }

    50% {

        transform:
            translateY(-20px);

        opacity: 1;

    }

}


/* =====================================================
   HERO INNER
===================================================== */

.hero-inner {

    width: 86%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 50px;

    position: relative;

    z-index: 5;

}


.women-hero-content {

    max-width: 650px;

}


.women-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    border-radius: 30px;

    border:
        1px solid
        rgba(255,150,210,0.25);

    background:
        rgba(255,130,190,0.06);

    color: #ffb3d8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 25px;

}


.label-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #ff91c7;

    box-shadow:
        0 0 12px
        #ff91c7;

}


.women-hero-content h1 {

    font-size:
        clamp(52px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

    margin-bottom: 30px;

}


.women-hero-content h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #ffb0d7,
            #cba0ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.hero-lead {

    color: #e5eef2;

    font-size: 21px;

    line-height: 1.6;

    margin-bottom: 15px;

    max-width: 600px;

}


.hero-description {

    color: #8fa7b3;

    font-size: 14px;

    line-height: 1.9;

    max-width: 570px;

    margin-bottom: 32px;

}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}


.primary-btn,
.secondary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 21px;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.primary-btn {

    color: #21091a;

    background:
        linear-gradient(
            100deg,
            #ffabd3,
            #d89cff
        );

    box-shadow:
        0 0 30px
        rgba(255,140,200,0.14);

}


.secondary-btn {

    color: #e1d6e5;

    border:
        1px solid
        rgba(255,160,210,0.22);

    background:
        rgba(255,255,255,0.035);

}


.primary-btn:hover,
.secondary-btn:hover {

    transform:
        translateY(-4px);

}


.primary-btn:hover {

    box-shadow:
        0 0 45px
        rgba(255,140,210,0.30);

}


/* =====================================================
   HERO VISUAL
===================================================== */

.women-hero-visual {

    height: 580px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.woman-orb {

    width: 330px;

    height: 330px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at 35% 30%,
            rgba(255,190,220,0.24),
            rgba(150,80,255,0.12) 45%,
            transparent 70%
        );

    border:
        1px solid
        rgba(255,170,220,0.25);

    box-shadow:

        0 0 70px
        rgba(255,100,190,0.16),

        inset 0 0 70px
        rgba(170,80,255,0.10);

    position: relative;

    z-index: 5;

    animation:
        orbFloat 6s ease-in-out infinite;

}


.orb-inner {

    width: 180px;

    height: 180px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(255,180,220,0.13),
            rgba(130,60,220,0.12)
        );

    border:
        1px solid
        rgba(255,190,225,0.25);

    box-shadow:
        0 0 50px
        rgba(255,120,200,0.15);

}


.orb-inner i {

    font-size: 70px;

    color: #ffafd6;

    filter:
        drop-shadow(
            0 0 18px
            rgba(255,120,200,0.7)
        );

}


@keyframes orbFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-15px);

    }

}


/* =====================================================
   RINGS
===================================================== */

.visual-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,150,210,0.13);

    transform:
        rotate(-25deg);

}


.ring-one {

    width: 430px;

    height: 150px;

    transform:
        rotate(-25deg);

}


.ring-two {

    width: 500px;

    height: 180px;

    transform:
        rotate(40deg);

    border-color:
        rgba(170,110,255,0.12);

}


.ring-three {

    width: 590px;

    height: 220px;

    transform:
        rotate(-55deg);

    border-color:
        rgba(255,120,190,0.08);

}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 16px;

    border-radius: 16px;

    background:
        rgba(6,18,34,0.76);

    border:
        1px solid
        rgba(255,170,215,0.20);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.35);

    z-index: 10;

}


.floating-card i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: #ffacd4;

    background:
        rgba(255,130,190,0.09);

}


.floating-card small {

    display: block;

    color: #718a97;

    font-size: 7px;

    letter-spacing: 1.5px;

    margin-bottom: 3px;

}


.floating-card strong {

    display: block;

    color: white;

    font-size: 11px;

}


.card-top {

    top: 15%;

    left: 5%;

    animation:
        cardFloat 5s ease-in-out infinite;

}


.card-bottom {

    right: 0;

    bottom: 17%;

    animation:
        cardFloat 6s ease-in-out infinite reverse;

}


@keyframes cardFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


/* =====================================================
   INTRO
===================================================== */

.women-intro {

    padding:
        120px 8%;

    background:
        #030d1b;

    position: relative;

}


.intro-highlight {

    max-width: 900px;

    margin:
        55px auto 0;

    padding: 28px 32px;

    display: flex;

    align-items: center;

    gap: 25px;

    border-radius: 22px;

    background:
        linear-gradient(
            110deg,
            rgba(255,120,190,.06),
            rgba(150,80,255,.06)
        );

    border:
        1px solid
        rgba(255,150,210,.12);

}


.highlight-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffafd5;

    background:
        rgba(255,130,190,.08);

}


.intro-highlight h3 {

    font-size: 20px;

    margin-bottom: 7px;

}


.intro-highlight p {

    color: #8ea6b2;

    font-size: 13px;

    line-height: 1.7;

}


/* =====================================================
   WELLNESS AREAS
===================================================== */

.wellness-areas {

    padding:
        120px 7%;

    background:

        radial-gradient(
            circle at 50% 20%,
            rgba(155,80,255,.06),
            transparent 35%
        ),

        #020b18;

}


.wellness-grid {

    max-width: 1250px;

    margin:
        65px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.wellness-card {

    min-height: 290px;

    padding: 30px;

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,120,190,.025)
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.wellness-card::before {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -70px;

    top: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,130,200,.14),
            transparent 70%
        );

}


.wellness-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,150,210,.20);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.30),

        0 0 35px
        rgba(255,100,190,.05);

}


.wellness-icon {

    width: 52px;

    height: 52px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffabd4;

    background:
        linear-gradient(
            135deg,
            rgba(255,120,190,.12),
            rgba(160,90,255,.10)
        );

    border:
        1px solid
        rgba(255,150,210,.12);

    margin-bottom: 25px;

}


.card-number {

    position: absolute;

    right: 25px;

    top: 25px;

    color: #435767;

    font-size: 11px;

    font-weight: 700;

}


.wellness-card h3 {

    font-size: 19px;

    margin-bottom: 12px;

}


.wellness-card p {

    color: #819aa7;

    font-size: 12px;

    line-height: 1.8;

}


.card-line {

    width: 35px;

    height: 2px;

    margin-top: 25px;

    background:
        linear-gradient(
            90deg,
            #ff9dce,
            #a778ff
        );

}


/* =====================================================
   DESIGNED AROUND HER
===================================================== */

.designed-section {

    min-height: 700px;

    padding:
        120px 9%;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 50%,
            rgba(170,80,255,.12),
            transparent 30%
        ),

        #030c19;

}


.designed-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    right: -250px;

    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,100,190,.10),
            transparent 70%
        );

}


.designed-content {

    position: relative;

    z-index: 3;

}


.designed-content h2 {

    font-size:
        clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 25px;

}


.designed-content h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #ffb0d7,
            #b68cff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.designed-content > p {

    max-width: 550px;

    color: #8ba4b0;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 35px;

}


.journey-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;

}


.journey-point {

    display: flex;

    gap: 12px;

}


.journey-point > span {

    width: 25px;

    height: 25px;

    min-width: 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffacd4;

    background:
        rgba(255,130,190,.09);

}


.journey-point > span i {

    font-size: 9px;

}


.journey-point h4 {

    font-size: 13px;

    margin-bottom: 5px;

}


.journey-point p {

    color: #6f8995;

    font-size: 10px;

    line-height: 1.7;

}


/* =====================================================
   DESIGNED VISUAL
===================================================== */

.designed-visual {

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.visual-circle {

    width: 380px;

    height: 380px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle,
            rgba(255,140,200,.12),
            rgba(130,70,220,.08) 50%,
            transparent 70%
        );

    border:
        1px solid
        rgba(255,170,220,.18);

    box-shadow:

        0 0 80px
        rgba(255,110,190,.10),

        inset 0 0 80px
        rgba(140,80,255,.10);

    position: relative;

}


.visual-circle::before,
.visual-circle::after {

    content: "";

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,160,215,.12);

}


.visual-circle::before {

    inset: -35px;

}


.visual-circle::after {

    inset: -75px;

    border-color:
        rgba(160,100,255,.08);

}


.circle-content {

    text-align: center;

    position: relative;

    z-index: 3;

}


.circle-content span {

    display: block;

    color: #ffb1d6;

    font-size: 12px;

    letter-spacing: 5px;

    margin-bottom: 8px;

}


.circle-content strong {

    display: block;

    font-size: 37px;

    letter-spacing: -1px;

}


.circle-content small {

    display: block;

    margin-top: 12px;

    color: #758c98;

    font-size: 8px;

    letter-spacing: 2px;

}


/* =====================================================
   APP CONNECTION
===================================================== */

.women-app {

    min-height: 650px;

    padding:
        110px 9%;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(255,100,190,.12),
            transparent 30%
        ),

        #020b18;

    border-top:
        1px solid
        rgba(255,255,255,.04);

    border-bottom:
        1px solid
        rgba(255,255,255,.04);

}


.app-background-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,150,210,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(160,100,255,.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

}


.app-content {

    position: relative;

    z-index: 3;

}


.app-content h2 {

    font-size:
        clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 25px;

}


.app-content h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #ffafd5,
            #b68bff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.app-content > p {

    max-width: 520px;

    color: #8ca4b0;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 30px;

}


.app-feature-row {

    display: flex;

    gap: 25px;

    margin-bottom: 35px;

    flex-wrap: wrap;

}


.app-feature-row div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #a8bac3;

    font-size: 11px;

}


.app-feature-row i {

    color: #ff9dcd;

}


.app-btn {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 14px 20px;

    border-radius: 40px;

    color: #230b1b;

    font-size: 12px;

    font-weight: 700;

    background:
        linear-gradient(
            100deg,
            #ffacd4,
            #bf94ff
        );

    box-shadow:
        0 0 35px
        rgba(255,120,190,.12);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.app-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 50px
        rgba(255,120,190,.25);

}


/* =====================================================
   COMING SOON CARD
===================================================== */

.app-coming {

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.coming-glow {

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,100,190,.18),
            rgba(150,70,255,.08),
            transparent 70%
        );

    filter: blur(10px);

}


.coming-card {

    width: 300px;

    min-height: 390px;

    border-radius: 30px;

    padding: 40px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    z-index: 3;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,100,190,.035)
        );

    border:
        1px solid
        rgba(255,180,220,.18);

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.45),

        0 0 50px
        rgba(255,100,190,.08);

    backdrop-filter:
        blur(20px);

    transform:
        rotate(3deg);

    transition:
        transform .5s ease;

}


.coming-card:hover {

    transform:
        rotate(0deg)
        translateY(-10px);

}


.coming-icon {

    width: 65px;

    height: 65px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffb0d6;

    background:
        linear-gradient(
            135deg,
            rgba(255,120,190,.12),
            rgba(160,80,255,.12)
        );

    border:
        1px solid
        rgba(255,170,220,.17);

    margin-bottom: 25px;

}


.coming-icon i {

    font-size: 25px;

}


.coming-card > span {

    color: #ff9fcf;

    font-size: 8px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 15px;

}


.coming-card h3 {

    font-size: 30px;

    line-height: 1.05;

    margin-bottom: 15px;

}


.coming-card h3 strong {

    background:
        linear-gradient(
            90deg,
            #ffafd5,
            #b18aff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.coming-card p {

    color: #8199a5;

    font-size: 11px;

    line-height: 1.7;

    max-width: 210px;

}


.coming-line {

    width: 60px;

    height: 1px;

    margin: 25px 0 15px;

    background:
        linear-gradient(
            90deg,
            #ff9dce,
            #a981ff
        );

}


.coming-card small {

    color: #536c79;

    font-size: 7px;

    letter-spacing: 2px;

}


/* =====================================================
   COMMITMENT
===================================================== */

.commitment {

    padding:
        120px 7%;

    background:
        #030d1b;

}


.commitment-grid {

    max-width: 1200px;

    margin:
        60px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.commitment-card {

    padding: 30px 25px;

    min-height: 260px;

    border-radius: 22px;

    position: relative;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.06);

    transition:
        transform .3s ease,
        border-color .3s ease;

}


.commitment-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,150,210,.18);

}


.commitment-number {

    position: absolute;

    right: 20px;

    top: 18px;

    color: #3a4e5d;

    font-size: 10px;

    font-weight: 700;

}


.commitment-card > i {

    color: #ffabd3;

    font-size: 22px;

    margin-bottom: 30px;

}


.commitment-card h3 {

    font-size: 19px;

    margin-bottom: 10px;

}


.commitment-card p {

    color: #7f97a4;

    font-size: 11px;

    line-height: 1.8;

}


/* =====================================================
   FINAL CTA
===================================================== */

.women-final {

    min-height: 600px;

    padding:
        120px 8%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(255,110,190,.13),
            transparent 32%
        ),

        radial-gradient(
            circle at 70% 50%,
            rgba(150,80,255,.10),
            transparent 35%
        ),

        #020a17;

}


.final-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,120,200,.12),
            transparent 70%
        );

    filter: blur(10px);

}


.final-content {

    position: relative;

    z-index: 3;

    max-width: 800px;

}


.final-content h2 {

    font-size:
        clamp(48px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 25px;

}


.final-content h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #ffacd4,
            #d098ff,
            #ffacd4
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.final-content > p {

    max-width: 620px;

    margin:
        0 auto 35px;

    color: #8ca4b0;

    font-size: 14px;

    line-height: 1.9;

}


.final-buttons {

    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    padding:
        35px 7%;

    text-align: center;

    background:
        #010812;

    border-top:
        1px solid
        rgba(255,255,255,.05);

}


.footer-social {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-bottom: 20px;

}


.social-btn {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    color: #9bb0bb;

    transition:
        transform .3s ease,
        color .3s ease;

}


.social-btn:hover {

    transform:
        translateY(-4px);

    color: #ffffff;

}


footer p {

    color: #5e7682;

    font-size: 10px;

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1000px) {


    .navbar {

        padding:
            0 5%;

    }


    .navbar nav {

        gap: 15px;

    }


    .navbar nav a {

        font-size: 10px;

    }


    .hero-inner {

        width: 90%;

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .women-hero {

        padding:
            100px 0;

    }


    .women-hero-content {

        margin: auto;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .women-hero-visual {

        height: 500px;

        margin-top: 20px;

    }


    .wellness-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .designed-section {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .designed-content > p {

        margin-left: auto;

        margin-right: auto;

    }


    .journey-points {

        text-align: left;

    }


    .women-app {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .app-content > p {

        margin-left: auto;

        margin-right: auto;

    }


    .app-feature-row {

        justify-content: center;

    }


    .commitment-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 650px) {


    .navbar {

        height: auto;

        padding:
            18px 20px;

        flex-direction: column;

        gap: 18px;

    }


    .navbar nav {

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 9px;

    }


    .navbar nav a {

        font-size: 9px;

    }


    .women-nav {

        padding:
            7px 10px;

    }


    .start-nav {

        padding:
            8px 13px;

    }


    .women-hero {

        min-height: auto;

        padding:
            90px 20px
            60px;

    }


    .hero-inner {

        width: 100%;

    }


    .women-hero-content h1 {

        font-size: 48px;

        letter-spacing: -2.5px;

    }


    .hero-lead {

        font-size: 17px;

    }


    .hero-description {

        font-size: 13px;

    }


    .women-hero-visual {

        height: 400px;

    }


    .woman-orb {

        width: 240px;

        height: 240px;

    }


    .orb-inner {

        width: 130px;

        height: 130px;

    }


    .orb-inner i {

        font-size: 48px;

    }


    .visual-ring {

        transform:
            scale(.7)
            rotate(-25deg);

    }


    .card-top {

        left: 0;

        top: 5%;

    }


    .card-bottom {

        right: -5%;

        bottom: 7%;

    }


    .floating-card {

        padding:
            9px 11px;

    }


    .floating-card strong {

        font-size: 9px;

    }


    .women-intro,
    .wellness-areas,
    .commitment {

        padding:
            80px 20px;

    }


    .section-heading h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .intro-highlight {

        padding:
            22px;

        flex-direction: column;

        text-align: center;

    }


    .wellness-grid {

        grid-template-columns:
            1fr;

        margin-top: 45px;

    }


    .designed-section {

        padding:
            80px 20px;

    }


    .journey-points {

        grid-template-columns:
            1fr;

    }


    .designed-visual {

        min-height: 400px;

    }


    .visual-circle {

        width: 260px;

        height: 260px;

    }


    .visual-circle::before {

        inset: -25px;

    }


    .visual-circle::after {

        inset: -50px;

    }


    .circle-content strong {

        font-size: 27px;

    }


    .women-app {

        padding:
            80px 20px;

        gap: 45px;

    }


    .app-content h2 {

        font-size: 40px;

    }


    .app-coming {

        min-height: 390px;

    }


    .coming-card {

        width: 270px;

        min-height: 360px;

    }


    .commitment-grid {

        grid-template-columns:
            1fr;

        margin-top: 40px;

    }


    .women-final {

        min-height: 520px;

        padding:
            80px 20px;

    }


    .final-content h2 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .final-content > p {

        font-size: 13px;

    }


}