/* Global font tokens (shared with style.css :root) */
/* hero-platform.css inherits --font-heading and --font-body from global :root in style.css */

/* ========================================
   Conceive Life — Platform Hero
   Pixel-close match to design reference
   ======================================== */

.cl-hero {
    --cl-navy: #12263a;
    --cl-navy-soft: #3a4d61;
    --cl-pink: #e91e63;
    --cl-pink-hot: #ff2d78;
    --cl-pink-soft: #fce4ec;
    --cl-text: #5a6b7c;
    --cl-line: rgba(18, 38, 58, 0.08);
    --cl-white: #ffffff;
    --cl-radius-btn: 16px;
    --cl-radius-card: 20px;
    --cl-shadow-card: 0 14px 40px rgba(18, 38, 58, 0.08);
    --cl-shadow-soft: 0 8px 24px rgba(18, 38, 58, 0.06);

    position: relative;
    overflow: hidden;
    background:var(--gradient-rose);
    padding: 48px 0 40px;
    color: var(--cl-navy);
    font-family: var(--font-body);
}

.cl-hero *,
.cl-hero *::before,
.cl-hero *::after,
.cl-start *,
.cl-proof * {
    box-sizing: border-box;
}

.cl-hero__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cl-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.6;
    animation: cl-orb-drift 16s ease-in-out infinite;
}

.cl-hero__orb--1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 30% 30%, #ffd6e7, transparent 70%);
    top: -140px;
    left: -100px;
}

.cl-hero__orb--2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 60% 40%, #ffe4d6, transparent 70%);
    top: 6%;
    right: -120px;
    animation-delay: -6s;
}

.cl-hero__orb--3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at 50% 50%, #e3e9ff, transparent 70%);
    bottom: -110px;
    left: 32%;
    animation-delay: -11s;
}

@keyframes cl-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(16px, -14px) scale(1.05); }
}

.cl-hero__grid {
    position: absolute;
    inset: -10% -5%;
    background-image: radial-gradient(rgba(18, 38, 58, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 28%, black 25%, transparent 72%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 28%, black 25%, transparent 72%);
    opacity: 0.55;
}

.cl-hero__container {
    position: relative;
    z-index: 1;
}

.cl-hero__grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
    gap: 32px;
    align-items: center;
}

/* ========== LEFT CONTENT ========== */

.cl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 12px;
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 999px;
    box-shadow: var(--cl-shadow-soft);
    margin-bottom: 22px;
}

.cl-hero__badge-heart {
    font-size: 13px;
    line-height: 1;
}

.cl-hero__badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-navy);
    white-space: nowrap;
}

.cl-hero__avatars {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
}

.cl-hero__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background-size: cover;
    background-position: center;
}

.cl-hero__avatar:first-child { margin-left: 0; }
.cl-hero__avatar--1 { background: linear-gradient(145deg, #f8bbd0, #ec407a); }
.cl-hero__avatar--2 { background: linear-gradient(145deg, #b2dfdb, #26a69a); }
.cl-hero__avatar--3 { background: linear-gradient(145deg, #ffe0b2, #ff9800); }
.cl-hero__avatar--4 { background: linear-gradient(145deg, #c5cae9, #5c6bc0); }

.cl-hero__avatar-plus {
    margin-left: -6px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    border: 2px solid #fff;
    background: linear-gradient(
        135deg,
        #f99ab6 0%,
        #f13e79 100%
    );
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.02em;
}

.cl-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.55rem);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: var(--letter-spacing-heading);
    color: var(--cl-navy);
    margin: 0 0 18px;
}

.cl-hero__title-accent {
    position: relative;
    display: inline-block;
}

.cl-hero__title em {
    font-style: normal;
    color: var(--primary-pink-gradient);
    position: relative;
    z-index: 1;
}

.cl-hero__title-underline {
    position: absolute;
    left: 2px;
    bottom: -8px;
    width: calc(100% - 4px);
    height: 14px;
    overflow: visible;
    pointer-events: none;
}

.cl-hero__title-underline path {
    fill: none;
    stroke: var(--cl-pink);
    stroke-width: 4;
    stroke-linecap: round;
    opacity: 0.4;
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    animation: cl-underline-draw 1s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes cl-underline-draw {
    to { stroke-dashoffset: 0; }
}

.cl-hero__subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cl-text);
    max-width: 520px;
    margin: 0 0 28px;
    font-weight: 500;
}

.cl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.cl-hero__live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    padding: 7px 14px 7px 10px;
    background: rgba(67, 160, 71, 0.08);
    border: 1px solid rgba(67, 160, 71, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
}

.cl-hero__live-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43a047;
    flex-shrink: 0;
}

.cl-hero__live-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(67, 160, 71, 0.35);
    animation: cl-live-pulse 1.8s ease-out infinite;
}

@keyframes cl-live-pulse {
    0% { transform: scale(0.6); opacity: 0.85; }
    100% { transform: scale(2); opacity: 0; }
}

.cl-hero__btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 210px;
    min-height: 68px;
    padding: 12px 22px;
    border-radius: var(--cl-radius-btn);
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cl-hero__btn-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cl-hero__btn-sub {
    margin-top: 4px;
    margin-left: 26px;
    font-size: 11.5px;
    font-weight: 500;
    opacity: 0.85;
}

.cl-hero__btn--primary {
    background: linear-gradient(135deg, #f99ab6 0%, #f13e79 100%);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.32);
    border: none;
    border-radius: 50px;
}

.cl-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(233, 30, 99, 0.4);
    color: #fff !important;
}

.cl-hero__btn--primary .cl-hero__btn-sub {
    color: rgba(255, 255, 255, 0.9);
}

.cl-hero__btn--secondary {
    background: #fff;
    color: var(--primary-pink) !important;
    border: 1.5px solid rgba(233, 30, 99, 0.45);
    box-shadow: var(--cl-shadow-soft);
    border-radius: 50px;
}

.cl-hero__btn--secondary:hover {
    transform: translateY(-2px);
    border-color: var(--cl-pink);
    color: var(--cl-pink) !important;
}

.cl-hero__btn--secondary .cl-hero__btn-sub {
    color: rgba(233, 30, 99, 0.75);
    margin-left: 34px;
}

.cl-hero__play {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--cl-pink);
}

.cl-hero__trust {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
}

.cl-hero__trust li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cl-hero__trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--cl-pink-soft);
    color: var(--cl-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform 0.25s ease;
}

.cl-hero__trust li:hover .cl-hero__trust-icon {
    transform: translateY(-2px) scale(1.06);
}

.cl-hero__trust-icon--rose { background: rgba(233, 30, 99, 0.1); color: #e91e63; }
.cl-hero__trust-icon--violet { background: rgba(126, 87, 194, 0.1); color: #7e57c2; }
.cl-hero__trust-icon--teal { background: rgba(0, 137, 123, 0.1); color: #00897b; }
.cl-hero__trust-icon--amber { background: rgba(251, 140, 0, 0.1); color: #fb8c00; }

.cl-hero__trust-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.cl-hero__trust-copy strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--cl-navy);
    line-height: 1.25;
}

.cl-hero__trust-copy span {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--cl-text);
    line-height: 1.3;
}

/* ========== ECOSYSTEM ========== */

.cl-eco {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 560px;
    margin: 0 auto;
    perspective: 1200px;
}

.cl-eco__tilt {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.cl-eco__ring {
    position: absolute;
    inset: 8%;
    border-radius: 32px;
    background: conic-gradient(from 0deg, rgba(233, 30, 99, 0.16), rgba(126, 87, 194, 0.1), rgba(255, 183, 77, 0.14), rgba(233, 30, 99, 0.16));
    filter: blur(40px);
    opacity: 0.7;
    z-index: 0;
    animation: cl-ring-spin 16s linear infinite;
    pointer-events: none;
}

@keyframes cl-ring-spin {
    to { transform: rotate(360deg); }
}

/* Floating stat chips */
.cl-eco__chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(18, 38, 58, 0.14);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    pointer-events: none;
    white-space: nowrap;
    animation: cl-chip-float 5s ease-in-out infinite;
}

.cl-eco__chip--rating {
    top: -14px;
    right: 8%;
    animation-delay: 0s;
}

.cl-eco__chip--success {
    bottom: -14px;
    left: 6%;
    animation-delay: -2.4s;
}

@keyframes cl-chip-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

.cl-eco__chip-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 99, 0.12);
    color: #e91e63;
    font-size: 13px;
    flex-shrink: 0;
}

.cl-eco__chip-icon--pulse {
    background: rgba(67, 160, 71, 0.14);
    color: #2e7d32;
}

.cl-eco__chip-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cl-eco__chip-copy strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--cl-navy);
    letter-spacing: -0.01em;
}

.cl-eco__chip-copy span {
    font-size: 10px;
    font-weight: 600;
    color: var(--cl-text);
}

/* Photo artwork version */
.cl-eco--photo {
    height: auto;
    max-width: 800px;
    aspect-ratio: 1024 / 711;
}

.cl-eco--photo .cl-eco__glow--pink {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    background: rgba(255, 182, 210, 0.32);
}

.cl-eco--photo .cl-eco__glow--lilac {
    width: 38%;
    height: 38%;
    top: 5%;
    right: 2%;
    background: rgba(255, 214, 228, 0.26);
}

.cl-eco__frame {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    animation: cl-phone-float 6s ease-in-out infinite;
    /* box-shadow: 0 24px 60px rgba(18, 38, 58, 0.12); */
}

.cl-eco__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.cl-eco__hotspot {
    position: absolute;
    z-index: 3;
    border-radius: 14px;
    /* Keep invisible but focusable/clickable */
    background: transparent;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cl-eco__hotspot:hover,
.cl-eco__hotspot:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.45);
    outline: none;
}

/* Hotspot positions tuned to new 1024×711 artwork:
   Tablet is centered. Four feature cards sit at each corner. */
.cl-eco__hotspot--ebooks {
    /* Fertility eBooks — top-left card */
    left: 1%;
    top: 5%;
    width: 29%;
    height: 42%;
}

.cl-eco__hotspot--assessment {
    /* Free Assessment — bottom-left card */
    left: 1%;
    top: 54%;
    width: 29%;
    height: 40%;
}

.cl-eco__hotspot--tracker {
    /* Fertility Tracker — top-right card */
    right: 1%;
    top: 5%;
    width: 29%;
    height: 42%;
}

.cl-eco__hotspot--consult {
    /* Find Affordable IVF Clinics — bottom-right card */
    right: 1%;
    top: 54%;
    width: 29%;
    height: 40%;
}

.cl-eco__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.cl-eco__glow--pink {
    width: 280px;
    height: 280px;
    background: rgba(255, 182, 210, 0.5);
    top: 18%;
    left: 26%;
}

.cl-eco__glow--lilac {
    width: 180px;
    height: 180px;
    background: rgba(197, 202, 233, 0.45);
    top: 4%;
    right: 4%;
}

.cl-eco__glow--peach {
    width: 160px;
    height: 160px;
    background: rgba(255, 204, 128, 0.35);
    bottom: 10%;
    left: 6%;
}

.cl-eco__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cl-eco__path {
    stroke: rgba(18, 38, 58, 0.2);
    stroke-width: 1.4;
    stroke-dasharray: 3 5;
    fill: none;
}

/* Floating cards */
.cl-eco__card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 198px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    box-shadow: var(--cl-shadow-card);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    text-decoration: none !important;
    color: var(--cl-navy) !important;
    animation: cl-card-float 5.5s ease-in-out infinite;
    transition: box-shadow 0.25s ease;
}

.cl-eco__card:hover {
    box-shadow: 0 18px 44px rgba(18, 38, 58, 0.12);
    color: var(--cl-navy) !important;
}

.cl-eco__card--tl {
    top: 42px;
    left: 0;
    border: 1.5px solid rgba(126, 87, 194, 0.35);
    animation-delay: 0s;
}

.cl-eco__card--tr {
    top: 42px;
    right: 0;
    border: 1.5px solid rgba(251, 140, 0, 0.35);
    animation-delay: -1.3s;
}

.cl-eco__card--bl {
    bottom: 52px;
    left: 0;
    border: 1.5px solid rgba(67, 160, 71, 0.35);
    animation-delay: -2.6s;
}

.cl-eco__card--br {
    bottom: 52px;
    right: 0;
    border: 1.5px solid rgba(30, 136, 229, 0.35);
    animation-delay: -3.9s;
}

@keyframes cl-card-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

.cl-eco__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.cl-eco__card--ebooks .cl-eco__card-icon { background: linear-gradient(145deg, #9575cd, #7e57c2); }
.cl-eco__card--assessment .cl-eco__card-icon { background: linear-gradient(145deg, #81c784, #43a047); }
.cl-eco__card--tracker .cl-eco__card-icon { background: linear-gradient(145deg, #ffb74d, #fb8c00); }

.cl-eco__card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #bbdefb;
    background: #e3f2fd;
}

.cl-eco__card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cl-eco__card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cl-eco__card-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cl-eco__card-cta {
    font-size: 11px;
    font-weight: 600;
    color: var(--cl-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cl-eco__card--ebooks .cl-eco__card-cta { color: #7e57c2; }
.cl-eco__card--assessment .cl-eco__card-cta { color: #43a047; }
.cl-eco__card--tracker .cl-eco__card-cta { color: #ef6c00; }
.cl-eco__card--consult .cl-eco__card-cta { color: #1e88e5; }

.cl-eco__card-cta i {
    font-size: 9px;
}

/* Phone */
.cl-eco__phone {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    z-index: 3;
    width: 230px;
}

.cl-phone {
    animation: cl-phone-float 6s ease-in-out infinite;
}

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

.cl-phone__bezel {
    background: #1a1a1a;
    border-radius: 36px;
    padding: 9px;
    box-shadow:
        0 28px 60px rgba(18, 38, 58, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    position: relative;
}

.cl-phone__notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 12px;
    z-index: 5;
}

.cl-phone__screen {
    background: linear-gradient(180deg, #fff7fa 0%, #ffffff 45%, #f8f9fb 100%);
    border-radius: 28px;
    min-height: 460px;
    padding: 28px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cl-phone__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--cl-navy);
    padding: 0 4px;
}

.cl-phone__status-icons {
    display: inline-flex;
    gap: 4px;
    font-size: 9px;
}

.cl-phone__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 2px 0;
}

.cl-phone__hello {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    color: var(--cl-text);
}

.cl-phone__name {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--cl-navy);
    letter-spacing: var(--letter-spacing-heading);
    line-height: 1.15;
}

.cl-phone__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f8bbd0, #e91e63);
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.25);
}

.cl-phone__window {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(18, 38, 58, 0.06);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(18, 38, 58, 0.04);
}

.cl-phone__window-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cl-phone__window-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--cl-text);
}

.cl-phone__window-left strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--cl-pink);
    letter-spacing: -0.02em;
}

.cl-phone__window-meta {
    font-size: 10px;
    font-weight: 500;
    color: var(--cl-text);
}

.cl-phone__ring {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.cl-phone__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.cl-phone__ring-bg {
    fill: none;
    stroke: #fce4ec;
    stroke-width: 6;
}

.cl-phone__ring-fg {
    fill: none;
    stroke: #e91e63;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 176;
    stroke-dashoffset: 55;
}

.cl-phone__ring > span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--cl-navy);
}

.cl-phone__ring > span span {
    font-size: 9px;
    font-weight: 700;
    margin-left: 1px;
}

.cl-phone__insight {
    background: #fff;
    border: 1px solid rgba(18, 38, 58, 0.06);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(18, 38, 58, 0.04);
}

.cl-phone__insight-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--cl-navy);
    margin-bottom: 6px;
}

.cl-phone__insight-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--cl-pink);
    background: var(--cl-pink-soft);
    padding: 2px 7px;
    border-radius: 999px;
}

.cl-phone__wave {
    height: 42px;
}

.cl-phone__wave svg {
    width: 100%;
    height: 100%;
}

.cl-phone__wave-fill { fill: url(#clWaveFill); }
.cl-phone__wave-line {
    fill: none;
    stroke: #e91e63;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.cl-phone__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.cl-phone__stat {
    background: #fff;
    border: 1px solid rgba(18, 38, 58, 0.06);
    border-radius: 12px;
    padding: 8px;
}

.cl-phone__stat span {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: var(--cl-text);
    margin-bottom: 5px;
}

.cl-phone__bar {
    height: 4px;
    border-radius: 999px;
    background: #f1f3f5;
    overflow: hidden;
}

.cl-phone__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f48fb1, #e91e63);
}

.cl-phone__nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 10px 6px;
    border: 1px solid rgba(18, 38, 58, 0.06);
}

.cl-phone__nav span {
    color: rgba(18, 38, 58, 0.28);
    font-size: 13px;
}

.cl-phone__nav .is-active {
    color: var(--cl-pink);
}

.cl-hero__scrollcue {
    display: none;
}

@media (min-width: 992px) {
    .cl-hero__scrollcue {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        margin: 44px auto 0;
        width: fit-content;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--cl-text);
        text-decoration: none !important;
        opacity: 0.7;
        transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
    }

    .cl-hero__scrollcue:hover {
        opacity: 1;
        transform: translateY(2px);
        color: var(--cl-pink) !important;
    }

    .cl-hero__scrollcue i {
        font-size: 10px;
        animation: cl-scroll-bounce 1.8s ease-in-out infinite;
    }
}

@keyframes cl-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ========== STARTING POINT ========== */

.cl-start {
    background: #fff;
    padding: 28px 0 20px;
}

.cl-start__panel {
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(18, 38, 58, 0.05);
    padding: 36px 28px 28px;
}

.cl-start__title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-heading);
    color: var(--cl-navy);
    margin: 0 0 28px;
}

.cl-start__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cl-start__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    background: #fff;
    border: 1px solid rgba(18, 38, 58, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(18, 38, 58, 0.04);
    text-decoration: none !important;
    color: var(--cl-navy) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 96px;
}

.cl-start__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(18, 38, 58, 0.1);
    color: var(--cl-navy) !important;
}

.cl-start__icon,
.cl-start__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
}

.cl-start__avatar {
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    border: 2px solid #bbdefb;
}

.cl-start__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cl-start__card--assessment .cl-start__icon { background: linear-gradient(145deg, #f48fb1, #e91e63); }
.cl-start__card--tracker .cl-start__icon { background: linear-gradient(145deg, #b39ddb, #7e57c2); }
.cl-start__card--ebooks .cl-start__icon { background: linear-gradient(145deg, #ffcc80, #fb8c00); }

.cl-start__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.cl-start__card-title {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.cl-start__card-desc {
    font-size: 11.5px;
    line-height: 1.45;
    color: var(--cl-text);
    font-weight: 500;
}

.cl-start__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cl-start__card--assessment .cl-start__arrow { background: rgba(233, 30, 99, 0.12); color: #e91e63; }
.cl-start__card--tracker .cl-start__arrow { background: rgba(126, 87, 194, 0.12); color: #7e57c2; }
.cl-start__card--ebooks .cl-start__arrow { background: rgba(251, 140, 0, 0.12); color: #ef6c00; }
.cl-start__card--consult .cl-start__arrow { background: rgba(30, 136, 229, 0.12); color: #1e88e5; }

.cl-start__card:hover .cl-start__arrow {
    transform: translateX(3px);
}

/* ========== PROOF BAR ========== */

.cl-proof {
    background: #fff;
    border-top: 1px solid rgba(18, 38, 58, 0.06);
    padding: 22px 0 28px;
}

.cl-proof__list {
    list-style: none;
    margin: 0;
    padding: 18px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid rgba(18, 38, 58, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18, 38, 58, 0.03);
}

.cl-proof__item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    padding: 4px 10px;
}

.cl-proof__item--divided {
    border-left: 1px solid rgba(18, 38, 58, 0.08);
}

.cl-proof__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.cl-proof__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cl-proof__text strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--cl-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cl-proof__text span {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--cl-text);
}

/* ========== REDUCED MOTION ========== */

@media (prefers-reduced-motion: reduce) {
    .cl-phone,
    .cl-eco__card,
    .cl-eco__frame {
        animation: none !important;
    }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1199.98px) {
    .cl-hero__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cl-start__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cl-eco:not(.cl-eco--photo) {
        height: 520px;
        max-width: 520px;
    }

    .cl-eco--photo {
        max-width: 680px;
    }

    .cl-eco__card {
        width: 176px;
        padding: 10px 12px;
    }
}

@media (max-width: 991.98px) {
    .cl-hero__grid-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cl-hero__left {
        max-width: 640px;
    }

    .cl-eco:not(.cl-eco--photo) {
        height: 540px;
    }

    .cl-eco--photo {
        max-width: 640px;
    }

    .cl-proof__list {
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .cl-proof__item {
        flex: 1 1 40%;
        justify-content: flex-start;
    }

    .cl-proof__item--divided {
        border-left: none;
    }
}

@media (max-width: 767.98px) {
    .cl-hero {
        padding: 32px 0 24px;
    }

    .cl-hero__badge {
        flex-wrap: wrap;
        max-width: 100%;
    }

    .cl-hero__badge-text {
        white-space: normal;
    }

    .cl-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cl-hero__btn {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
    }

    .cl-eco:not(.cl-eco--photo) {
        height: 500px;
        max-width: 100%;
    }

    .cl-eco--photo {
        max-width: 100%;
    }

    .cl-eco__phone {
        width: 200px;
    }

    .cl-phone__screen {
        min-height: 400px;
        padding-top: 24px;
    }

    .cl-eco__card {
        width: 148px;
        gap: 8px;
    }

    .cl-eco__card-icon,
    .cl-eco__card-avatar {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .cl-eco__card-label {
        font-size: 11.5px;
    }

    .cl-eco__card-cta {
        font-size: 10px;
    }

    .cl-start__panel {
        padding: 28px 16px 16px;
        border-radius: 22px;
    }

    .cl-start__grid {
        grid-template-columns: 1fr;
    }

    .cl-proof__item {
        flex: 1 1 100%;
    }
}

@media (max-width: 479.98px) {
    .cl-hero__trust {
        grid-template-columns: 1fr;
    }

    .cl-eco__card--tl,
    .cl-eco__card--tr {
        top: 8px;
    }

    .cl-eco__card--bl,
    .cl-eco__card--br {
        bottom: 8px;
    }

    .cl-eco__card-cta {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .cl-eco__chip {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cl-hero__orb,
    .cl-eco__ring,
    .cl-eco__chip,
    .cl-hero__live-dot::after,
    .cl-hero__scrollcue i,
    .cl-hero__title-underline path,
    .cl-assess__orb {
        animation: none !important;
    }

    .cl-hero__title-underline path {
        stroke-dashoffset: 0;
    }
}

/* ========================================
   Free Assessment section — matches hero
   ======================================== */

.cl-assess {
    --cl-navy: #12263a;
    --cl-navy-soft: #3a4d61;
    --cl-pink: #e91e63;
    --cl-pink-soft: #fce4ec;
    --cl-text: #5a6b7c;
    --cl-line: rgba(18, 38, 58, 0.08);
    --cl-radius-btn: 16px;
    --cl-radius-card: 22px;
    --cl-shadow-card: 0 14px 40px rgba(18, 38, 58, 0.08);
    --cl-shadow-soft: 0 8px 24px rgba(18, 38, 58, 0.06);

    position: relative;
    overflow: hidden;
    /* background:
        radial-gradient(ellipse 55% 45% at 8% 20%, rgba(255, 214, 228, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 92% 80%, rgba(255, 228, 214, 0.4) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fff8fb 50%, #ffffff 100%); */
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    color: var(--cl-navy);
    font-family: var(--font-body);
}

.cl-assess *,
.cl-assess *::before,
.cl-assess *::after {
    box-sizing: border-box;
}

.cl-assess__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cl-assess__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    animation: cl-orb-drift 16s ease-in-out infinite;
}

.cl-assess__orb--1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 30% 30%, #ffd6e7, transparent 70%);
    top: -100px;
    right: -80px;
}

.cl-assess__orb--2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at 50% 50%, #e3e9ff, transparent 70%);
    bottom: -80px;
    left: -60px;
    animation-delay: -7s;
}

.cl-assess__grid {
    position: absolute;
    inset: -10% -5%;
    background-image: radial-gradient(rgba(18, 38, 58, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    opacity: 0.45;
}

.cl-assess__container {
    position: relative;
    z-index: 1;
}

.cl-assess__grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.cl-assess__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 999px;
    box-shadow: var(--cl-shadow-soft);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-navy);
}

.cl-assess__badge i {
    color: var(--cl-pink);
    font-size: 12px;
}

.cl-assess__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: var(--font-weight-heading, 400);
    line-height: 1.2;
    letter-spacing: var(--letter-spacing-heading, -0.02em);
    color: var(--cl-navy);
    margin: 0 0 16px;
}

.cl-assess__title em {
    font-style: normal;
    color: var(--cl-pink);
}

.cl-assess__subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cl-text);
    max-width: 34rem;
    margin: 0 0 24px;
    font-weight: 500;
}

.cl-assess__benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0 0 28px;
}

.cl-assess__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 38, 58, 0.07);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(18, 38, 58, 0.04);
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

.cl-assess__benefit::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 16px 0 0 16px;
    opacity: 0.9;
}

.cl-assess__benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(18, 38, 58, 0.1);
}

.cl-assess__benefit--rose::before { background: #e91e63; }
.cl-assess__benefit--violet::before { background: #7e57c2; }
.cl-assess__benefit--teal::before { background: #00897b; }
.cl-assess__benefit--amber::before { background: #fb8c00; }

.cl-assess__benefit--rose:hover { border-color: rgba(233, 30, 99, 0.22); }
.cl-assess__benefit--violet:hover { border-color: rgba(126, 87, 194, 0.22); }
.cl-assess__benefit--teal:hover { border-color: rgba(0, 137, 123, 0.22); }
.cl-assess__benefit--amber:hover { border-color: rgba(251, 140, 0, 0.22); }

.cl-assess__benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.28s ease;
}

.cl-assess__benefit:hover .cl-assess__benefit-icon {
    transform: scale(1.06);
}

.cl-assess__benefit--rose .cl-assess__benefit-icon {
    background: linear-gradient(145deg, rgba(233, 30, 99, 0.14), rgba(233, 30, 99, 0.06));
    color: #e91e63;
    box-shadow: inset 0 0 0 1px rgba(233, 30, 99, 0.12);
}

.cl-assess__benefit--violet .cl-assess__benefit-icon {
    background: linear-gradient(145deg, rgba(126, 87, 194, 0.14), rgba(126, 87, 194, 0.06));
    color: #7e57c2;
    box-shadow: inset 0 0 0 1px rgba(126, 87, 194, 0.12);
}

.cl-assess__benefit--teal .cl-assess__benefit-icon {
    background: linear-gradient(145deg, rgba(0, 137, 123, 0.14), rgba(0, 137, 123, 0.06));
    color: #00897b;
    box-shadow: inset 0 0 0 1px rgba(0, 137, 123, 0.12);
}

.cl-assess__benefit--amber .cl-assess__benefit-icon {
    background: linear-gradient(145deg, rgba(251, 140, 0, 0.14), rgba(251, 140, 0, 0.06));
    color: #fb8c00;
    box-shadow: inset 0 0 0 1px rgba(251, 140, 0, 0.12);
}

.cl-assess__benefit-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cl-assess__benefit-copy strong {
    font-size: 14px;
    font-weight: 750;
    font-weight: 700;
    color: var(--cl-navy);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.cl-assess__benefit-copy span {
    font-size: 12px;
    font-weight: 500;
    color: var(--cl-text);
    line-height: 1.4;
}

.cl-assess__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Right CTA card */
.cl-assess__card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: var(--cl-shadow-card);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cl-assess__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(18, 38, 58, 0.12);
}

.cl-assess__card-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fff5f8, #fce4ec);
}

.cl-assess__card-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.cl-assess__card-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 38, 58, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cl-navy);
    box-shadow: var(--cl-shadow-soft);
    backdrop-filter: blur(8px);
}

.cl-assess__card-pill i {
    color: var(--cl-pink);
    font-size: 11px;
}

.cl-assess__card-body {
    padding: 1.35rem 1.4rem 1.5rem;
}

.cl-assess__card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cl-assess__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f48fb1, #e91e63);
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.28);
}

.cl-assess__card-kicker {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cl-pink);
}

.cl-assess__card-title {
    margin: 2px 0 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: var(--font-weight-heading, 400);
    letter-spacing: var(--letter-spacing-heading, -0.02em);
    color: var(--cl-navy);
    line-height: 1.2;
}

.cl-assess__card-desc {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cl-text);
    font-weight: 500;
}

.cl-assess__card-btn {
    width: 100%;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.cl-assess__card-btn .cl-hero__btn-row {
    justify-content: center;
}

.cl-assess__card-btn .cl-hero__btn-sub {
    margin-left: 0;
}

.cl-assess__card-stats {
    list-style: none;
    margin: 18px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--cl-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cl-assess__card-stats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: var(--cl-text);
    line-height: 1.35;
}

.cl-assess__card-stats i {
    color: var(--cl-pink);
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.cl-assess__card-stats strong {
    color: var(--cl-navy);
    font-weight: 700;
    margin-right: 4px;
}

@media (max-width: 991.98px) {
    .cl-assess__grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cl-assess__right {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .cl-assess {
        padding: 2.75rem 0;
    }

    .cl-assess__benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cl-assess__benefit {
        padding: 13px 14px;
    }

    .cl-assess__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cl-assess__actions .cl-hero__btn {
        width: 100%;
        align-items: center;
        text-align: center;
        min-width: 0;
    }

    .cl-assess__actions .cl-hero__btn-row {
        justify-content: center;
    }

    .cl-assess__actions .cl-hero__btn-sub {
        margin-left: 0;
    }

    .cl-assess__card-body {
        padding: 1.15rem 1.1rem 1.25rem;
    }
}
