/* ========================================
   BMS LANDING PAGE - MAIN STYLES
   ======================================== */

:root {
    --primary-red: #ED3237;
    --dark-red: #C8202A;
    --black: #111111;
    --white: #FFFFFF;
    --light-red: #FFF0F1;
    --gray-light: #F5F5F5;
    --gray-dark: #666666;
    --gray-text: #999999;
    
    --font-devanagari: 'Noto Sans Devanagari', sans-serif;
    --font-anek: 'Anek Devanagari', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   SECTION ANIMATIONS
   ======================================== */

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Section animation classes */
section[id] {
    animation: fadeIn 0.6s ease-out;
}

section[id].fade-right {
    animation: fadeInFromRight 0.8s ease-out !important;
}

section[id].fade-left {
    animation: fadeInFromLeft 0.8s ease-out !important;
}

section[id].fade-top {
    animation: fadeInFromTop 0.8s ease-out !important;
}

section[id].fade-bottom {
    animation: fadeInFromBottom 0.8s ease-out !important;
}

body {
    font-family: var(--font-devanagari);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-anek);
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTIONS */
.section-spacing {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.text-white {
    color: var(--white);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* HEADER / NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: transparent;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.nav.sticky {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    padding: 0.3rem 0;
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    z-index: 999;
}

.nav-menu.active {
    display: block;
}

.nav-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-menu-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, rgba(245, 236, 239, 0.2) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 600;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.sep {
    opacity: 0.5;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--black);
}

.hero-title mark {
    background: var(--light-red);
    color: var(--primary-red);
    padding: 0 0.5rem;
    border-radius: 8px;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 500px;
    line-height: 1.8;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.benefit-item {
    padding: 1rem;
    background: var(--light-red);
    border-radius: 12px;
    text-align: center;
}

.benefit-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.benefit-item .value {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 800;
    font-family: var(--font-anek);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.membership-badge {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-red) 0%, rgba(200, 16, 46, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-red);
}

.placeholder-box i {
    font-size: 4rem;
    opacity: 0.8;
}

.placeholder-box p {
    font-weight: 600;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* BENEFIT CARDS SECTION */
.benefit-cards {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200, 16, 46, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 800;
    margin: 1rem 0;
    font-family: var(--font-anek);
}

.card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.feature-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.feature-list li:before {
    content: "✓ ";
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* BMS म्हणजे काय SECTION */
.what-is-bms {
    background: var(--gray-light);
}

.bms-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.bms-content > p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 2rem;
}

.bms-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background: #F5F0F0;
    color: var(--black);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 3px solid #E0E0E0;
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    background: var(--white);
    color: var(--primary-red);
    transform: scale(1.1);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin: 0;
}

/* REELS GALLERY SECTION */
.reels-gallery {
    background: var(--white);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 9/16;
}

.reel-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    transition: var(--transition);
}

.reel-card:hover .reel-placeholder {
    transform: scale(1.05);
}

/* REGISTRATION PROCESS SECTION */
.registration-process {
    background: var(--light-red);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: 0 15px 35px rgba(200, 16, 46, 0.1);
    transform: translateY(-8px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-anek);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin: 1rem 0;
}

.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* APP DOWNLOAD GUIDE */
.app-guide {
    background: var(--gray-light);
    color: var(--black);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.app-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.app-left > p {
    color: var(--gray-dark);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.app-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-step {
    display: flex;
    gap: 1.5rem;
}

.step-badge {
    min-width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-family: var(--font-anek);
    flex-shrink: 0;
}

.step-desc h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--black);
}

.step-desc p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 0;
}

.app-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 200px;
    aspect-ratio: 9/19.5;
    background: var(--black);
    border: 12px solid #333;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: var(--black);
    border-radius: 0 0 30px 30px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px 40px 10px;
}

.app-screen-placeholder {
    text-align: center;
    color: var(--primary-red);
}

.app-screen-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.app-screen-placeholder p {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.app-screen-placeholder small {
    display: block;
    color: var(--gray-text);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.phone-home {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 4px;
}

.app-warning {
    background: rgba(200, 16, 46, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--black);
}

.app-warning p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.app-warning strong {
    color: var(--primary-red);
}

/* HOW TO USE SECTION */
.how-to-use {
    background: var(--gray-light);
}

.usage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.usage-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #E0E0E0;
    transition: var(--transition);
}

.usage-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(200, 16, 46, 0.15);
}

.usage-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, rgba(200, 16, 46, 0.02) 100%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.usage-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    min-width: 50px;
}

.usage-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.usage-flow {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.flow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--light-red);
    color: var(--primary-red);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-anek);
}

.flow-arrow {
    text-align: center;
    color: var(--primary-red);
    font-size: 1rem;
    opacity: 0.5;
}

.flow-result {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--light-red);
}

.badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FINAL REGISTRATION CTA */
.registration-cta {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.08) 0%, var(--gray-light) 100%);
    color: var(--black);
}

.registration-card {
    background: var(--white);
    color: var(--black);
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.reg-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-anek);
}

.registration-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.registration-card > p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.error-alert {
    background: #FEE;
    border-left: 4px solid var(--primary-red);
    padding: 1rem;
    border-radius: 8px;
    color: var(--primary-red);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    color: var(--gray-text);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.reg-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-red);
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 800;
    font-family: var(--font-anek);
}

.stat-item p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

/* FOOTER */
.footer {
    background: #A50020;
    color: var(--white);
    padding: 3rem 1.5rem 1.5rem;
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

/* ANIMATIONS */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s ease-out forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* UTILITY CLASSES */
.container {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .benefit-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .bms-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .usage-cards {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* CREATIVE VISUAL REFRESH */
:root {
    --font-devanagari: 'Noto Sans Devanagari', sans-serif;
    --font-anek: 'Manrope', 'Anek Devanagari', sans-serif;
    --font-english: 'DM Sans', sans-serif;
    --shadow-soft: 0 24px 70px rgba(95, 15, 31, 0.12);
}

body { font-family: var(--font-english); letter-spacing: -0.01em; }
h1, h2, h3, h4, h5, h6, .nav, .btn, .eyebrow, .membership-badge,
.form-group, legend, .form-note, .footer { font-family: var(--font-devanagari); }

.hero {
    isolation: isolate;
    background: linear-gradient(120deg, #fffafb 0%, #fff 48%, #fdf0f3 100%);
}
.hero-bg {
    background:
        linear-gradient(90deg, rgba(255, 250, 251, .98) 0%, rgba(255, 250, 251, .84) 35%, rgba(255, 250, 251, .12) 78%),
        url('../images/healthcare-hero.png') right center / cover no-repeat,
        radial-gradient(circle at 82% 50%, rgba(200,16,46,.18), transparent 48%);
    opacity: .78;
}
.hero-inner { grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); gap: clamp(2rem, 5vw, 5rem); }
.hero-left { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.7rem, 5.6vw, 4.9rem); letter-spacing: -.035em; text-wrap: balance; }
.hero-title mark { box-shadow: 0 10px 0 rgba(200,16,46,.06); }
.hero-sub { font-family: var(--font-devanagari); }
.hero-right { min-height: 420px; position: relative; }
.hero-visual { max-width: 560px; aspect-ratio: 1.08; background: rgba(255,255,255,.22); border: 10px solid rgba(255,255,255,.66); box-shadow: var(--shadow-soft); overflow: visible; animation: float 5s ease-in-out infinite; }
.hero-image-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 14px; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; transition: transform .7s ease; }
.hero-visual:hover .hero-image { transform: scale(1.05); }
.nav .brand { width: 240px; justify-content: flex-start; }
.brand-logo { height: 50px; width: 224px; object-fit: contain; object-position: left center; }
.hero-image-badge { position: absolute; left: -34px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,.94); color: var(--black); box-shadow: 0 18px 40px rgba(72, 0, 17, .16); font: 500 .78rem/1.35 var(--font-english); }
.hero-image-badge i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--light-red); color: var(--primary-red); font-size: 1.1rem; }
.hero-image-badge strong { color: var(--primary-red); font-size: .68rem; letter-spacing: .03em; }
.card, .feature-box, .usage-card, .process-step, .registration-card { box-shadow: 0 12px 35px rgba(17,17,17,.035); }
.card:hover, .feature-box:hover, .process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.registration-cta { position: relative; overflow: hidden; }
.registration-cta::before { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; right: -160px; top: -120px; background: radial-gradient(circle, rgba(200,16,46,.16), transparent 68%); pointer-events: none; }
.registration-card { position: relative; z-index: 1; border: 1px solid rgba(200,16,46,.08); }
.form-group input, .form-group select { font-family: var(--font-english); background: #fffdfd; }
.form-group input::placeholder { color: #a7a0a1; }
.reel-placeholder { transition: transform .5s ease, box-shadow .5s ease; }
.reel-card:hover .reel-placeholder { transform: scale(1.025); box-shadow: var(--shadow-soft); }
.reveal-up { animation: revealUp .85s cubic-bezier(.2,.8,.2,1) both; }

@media (max-width: 768px) {
    .hero { padding-top: 96px; }
    .hero-bg { background: linear-gradient(180deg, rgba(255,250,251,.92), rgba(255,250,251,.9)), url('../images/healthcare-hero.png') center / cover no-repeat; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.25rem; }
    .hero-right { min-height: 330px; }
    .hero-visual { max-width: min(100%, 500px); margin: 0 auto; }
    .hero-image-badge { left: 12px; bottom: 14px; }
    .nav .brand { width: auto; }
    .brand-logo { width: auto; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.25rem, 11vw, 3.25rem); }
    .hero-right { min-height: 260px; }
    .hero-visual { border-width: 6px; border-radius: 18px; }
    .hero-image-badge { padding: 10px 12px; font-size: .68rem; }
    .hero-image-badge i { width: 32px; height: 32px; }
    .hero-benefits { gap: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* MEDICAL ATMOSPHERE */
.what-is-bms, .app-guide {
    position: relative;
    overflow: hidden;
    background-color: var(--gray-light);
    background-image:
        linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%23c8102e' stroke-opacity='.08' stroke-width='2'%3E%3Cpath d='M75 39v27M61.5 52.5h27'/%3E%3Ccircle cx='75' cy='52' r='23'/%3E%3Cpath d='M18 119h27M31.5 105.5v27M104 108h28'/%3E%3Cpath d='M18 25h28M32 11v28'/%3E%3C/g%3E%3C/svg%3E");
}
.what-is-bms::after { content: '\f21e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 7%; top: 13%; color: rgba(200,16,46,.08); font-size: 8rem; transform: rotate(-14deg); pointer-events: none; }
.app-guide::after { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 8%; bottom: 10%; color: rgba(200,16,46,.06); font-size: 9rem; pointer-events: none; }

/* REDESIGNED FOOTER */
.footer { position: relative; overflow: hidden; background: linear-gradient(135deg, #210710 0%, #4b0a1c 58%, #810d29 100%); padding: 2.5rem 1.5rem 1.25rem; border-top: 0; }
.footer::before { content: ''; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 82% 20%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 20% 80%, #fff 0 1px, transparent 1.5px); background-size: 28px 28px, 42px 42px; pointer-events: none; }
.footer .container { position: relative; z-index: 1; }
.footer-topline { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: 1.4rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font: 600 .78rem var(--font-english); text-transform: uppercase; letter-spacing: .08em; }
.footer-kicker { color: #fff; }.footer-kicker i { color: #ff6681; margin-right: .45rem; }.footer-status i { color: #49e08a; font-size: .55rem; margin-right: .35rem; }
.footer-content { grid-template-columns: 1.4fr .8fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); margin-bottom: 2.5rem; }
.footer-logo { filter: brightness(0) invert(1); height: 44px; }
.footer-brand-col p { max-width: 290px; color: rgba(255,255,255,.66); line-height: 1.7; }
.footer-col h4, .footer-contact-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .7rem; }.footer-col a { color: rgba(255,255,255,.68); font: 500 .9rem var(--font-english); }.footer-col a i { color: #ff6681; font-size: .65rem; margin-right: .4rem; transition: transform .25s; }.footer-col a:hover { color: #fff; }.footer-col a:hover i { transform: translateX(3px); }
.footer-socials { display: flex; gap: .65rem; margin-top: 1.3rem; }.footer-socials a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; transition: .25s ease; }.footer-socials a:hover { background: var(--primary-red); border-color: var(--primary-red); transform: translateY(-3px); }
.footer-contact-link { display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem; color: #fff; }.contact-icon { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 11px; background: rgba(255,255,255,.1); color: #ff9aac; }.contact-icon.whatsapp { background: #25d366; color: #fff; }.footer-contact-link small, .footer-contact-link strong { display: block; font-family: var(--font-english); }.footer-contact-link small { color: rgba(255,255,255,.52); font-size: .68rem; }.footer-contact-link strong { color: #fff; font-size: .84rem; font-weight: 600; }.footer-contact-link:hover strong { color: #ff9aac; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; max-width: none; padding-top: 1.2rem; border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.5); font-family: var(--font-english); }.footer-bottom p { margin: 0; }.footer-legal { display: flex; gap: 1.2rem; }.footer-legal a { color: rgba(255,255,255,.5); }.footer-legal a:hover { color: #fff; }

/* FLOATING QUICK ACTIONS + COOKIES */
.floating-actions { position: fixed; right: 18px; bottom: 22px; z-index: 1100; display: flex; flex-direction: column; gap: .55rem; align-items: flex-end; }.floating-action { display: flex; align-items: center; gap: .55rem; min-width: 42px; width: 42px; height: 42px; padding: 0 12px; overflow: hidden; border: 0; border-radius: 999px; color: #fff; background: #202020; box-shadow: 0 10px 24px rgba(0,0,0,.18); cursor: pointer; text-decoration: none; transition: width .3s ease, transform .25s ease, background .25s ease; font: 600 .75rem var(--font-english); }.floating-action i { min-width: 18px; text-align: center; }.floating-action:hover { width: 112px; transform: translateX(-3px); }.floating-action span { white-space: nowrap; }.whatsapp-action { background: #18ad56; }.call-action { background: var(--primary-red); }.message-action { background: #6d48c7; }.scroll-top { background: #1f2937; }
.cookie-banner { position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 1200; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; max-width: 760px; padding: 14px 16px; border: 1px solid rgba(200,16,46,.12); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 18px 50px rgba(17,17,17,.18); backdrop-filter: blur(14px); font-family: var(--font-english); }.cookie-banner[hidden] { display: none; }.cookie-copy { display: flex; align-items: center; gap: .8rem; }.cookie-copy p { margin: 0; color: #5d5456; font-size: .76rem; line-height: 1.45; }.cookie-copy strong { color: #181416; font-size: .84rem; }.cookie-icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 12px; color: var(--primary-red); background: var(--light-red); }.cookie-actions { display: flex; gap: .5rem; }.cookie-btn { border: 0; border-radius: 9px; padding: .65rem .9rem; cursor: pointer; font: 700 .75rem var(--font-english); }.cookie-accept { background: var(--primary-red); color: #fff; }.cookie-close { background: #f4eef0; color: #6b5960; }

@media (max-width: 600px) { .footer-topline, .footer-bottom { align-items: flex-start; flex-direction: column; }.footer-content { grid-template-columns: 1fr; gap: 1.6rem; }.footer-bottom { gap: .65rem; }.footer-legal { gap: .8rem; }.floating-actions { right: 12px; bottom: 12px; }.cookie-banner { left: 12px; right: 12px; bottom: 12px; align-items: stretch; flex-direction: column; gap: .7rem; }.cookie-actions { justify-content: flex-end; } }

/* FINAL BRAND POLISH */
:root { --primary-red: #ED3237; --dark-red: #C8202A; --light-red: #FFF0F1; }
.bms-content { max-width: 1060px; }
.bms-features { gap: 2.25rem; }
.feature-box { min-height: 292px; padding: 2.75rem 2rem; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; border: 1px solid rgba(237,50,55,.06); border-radius: 20px; }
.feature-icon { font-size: 3rem; margin-bottom: 1.35rem; color: #ED3237; }
.feature-box h4 { font-size: 1.25rem; line-height: 1.25; }
.feature-box p { font-size: 1rem; line-height: 1.65; max-width: 185px; }
.btn-primary, .cookie-accept { background: #ED3237; }
.btn-primary:hover { background: #C8202A; }
.hero-visual, .registration-card, .card, .feature-box, .process-step, .usage-card { border-color: rgba(237,50,55,.08); }
.registration-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(237,50,55,.04); }
.floating-actions { right: 20px; }
.floating-action { box-sizing: border-box; width: 44px; min-width: 44px; height: 44px; padding: 0; justify-content: center; overflow: visible; border: 0; outline: 0; }
.floating-action span { position: absolute; right: 52px; opacity: 0; pointer-events: none; padding: .4rem .6rem; border-radius: 7px; color: #fff; background: #1f2937; transition: opacity .2s ease; }
.floating-action:hover { width: 44px; transform: translateX(-2px); }
.floating-action:hover span { opacity: 1; }
.whatsapp-action { background: #18AD56; }.call-action { background: #ED3237; }
@media (max-width: 768px) { .bms-features { gap: 1rem; }.feature-box { min-height: 250px; padding: 2rem 1.25rem; } }
@media (max-width: 480px) { .feature-box { min-height: 0; padding: 1.75rem 1.2rem; }.feature-icon { font-size: 2.5rem; } .floating-actions { right: 10px; } }

/* BRAND RED FOOTER + INSTAGRAM REELS */
.footer.footer-brand-red { background: linear-gradient(135deg, #ED3237 0%, #D92530 58%, #B91F2A 100%); }
.footer-brand-red::before { opacity: .16; }
.instagram-reel-card { display: block; text-decoration: none; }
.instagram-reel-card .reel-placeholder { flex-direction: column; gap: .45rem; background: linear-gradient(150deg, #ED3237 0%, #B91F2A 100%); }
.instagram-reel-card .reel-placeholder i { font-size: 3rem; }
.instagram-reel-card .reel-placeholder span { font: 700 1rem var(--font-english); }
.instagram-reel-card .reel-placeholder small { font: 500 .72rem var(--font-english); opacity: .78; }
.instagram-reel-card:hover .reel-placeholder { background: linear-gradient(150deg, #C8202A 0%, #ED3237 100%); }

/* REFERENCE-STYLE MEDICAL BACKGROUNDS */
.what-is-bms, .app-guide {
    background-image:
        linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.94)),
        url('../images/medical-pattern.svg');
    background-size: auto, 320px 320px;
    background-repeat: repeat;
}
.footer.footer-brand-red {
    background-image:
        linear-gradient(90deg, rgba(237,50,55,.96) 0%, rgba(237,50,55,.86) 42%, rgba(14,54,91,.58) 100%),
        url('../images/footer-healthcare-bg.png');
    background-size: cover;
    background-position: center right;
}
.footer.footer-brand-red::before { background-image: none; }
.reels-gallery {
    background-image: linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.95)), url('../images/medical-pattern.svg');
    background-size: auto, 320px 320px;
}
.instagram-embeds { align-items: stretch; }
.instagram-embed-card { min-height: 560px; overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid rgba(61,111,166,.18); box-shadow: 0 14px 34px rgba(61,111,166,.09); }
.instagram-embed-empty { height: 100%; min-height: 560px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .6rem; color: #3d6fa6; background: rgba(255,255,255,.65); font-family: var(--font-english); text-align: center; }
.instagram-embed-empty i { font-size: 3.2rem; }.instagram-embed-empty strong { font-size: 1rem; color: #1b3150; }.instagram-embed-empty small { color: #718096; font-size: .78rem; }
.instagram-embed-card blockquote { margin: 0 !important; min-width: 100% !important; }
@media (max-width: 768px) { .instagram-embed-card, .instagram-embed-empty { min-height: 500px; } }

/* INSTAGRAM EMBED LAYOUT FIX */
.reels-grid.instagram-embeds { width: 100%; max-width: 1120px; margin: 0 auto; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; gap: 1.5rem; }
.instagram-embeds .instagram-embed-card { min-height: 0; display: flex; justify-content: center; align-items: flex-start; border: 0; box-shadow: none; background: transparent; overflow: visible; }
.instagram-embeds .instagram-embed-card blockquote { width: 100% !important; max-width: 540px !important; min-width: 0 !important; margin: 0 auto !important; }
.instagram-embeds .instagram-embed-empty { width: 100%; min-height: 520px; max-width: 540px; border-radius: 18px; }
@media (max-width: 720px) { .reels-grid.instagram-embeds { grid-template-columns: minmax(0, 1fr); max-width: 540px; padding: 0 .5rem; }.instagram-embeds .instagram-embed-card { width: 100%; }.instagram-embeds .instagram-embed-card blockquote { max-width: 100% !important; } }

/* RESTORE ORIGINAL TYPOGRAPHY */
:root { --font-devanagari: 'Noto Sans Devanagari', sans-serif; --font-anek: 'Anek Devanagari', sans-serif; --font-english: 'Noto Sans Devanagari', sans-serif; }
body { font-family: var(--font-devanagari); }

/* Reference-led campaign hero */
.hero {
    min-height: 760px;
    padding: 105px 0 118px;
    background: #fffafa url('../images/family-hero-v2.png') center / cover no-repeat;
    align-items: flex-start;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,250,250,.99) 0%, rgba(255,250,250,.96) 32%, rgba(255,250,250,.36) 50%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}
.hero-bg { display: none; }
.hero .container { position: relative; z-index: 2; width: 100%; max-width: 1440px; }
.hero-inner { grid-template-columns: minmax(520px, 48%) 1fr; gap: 0; align-items: start; }
.hero-left { gap: 12px; padding: 12px 0 0; max-width: 660px; }
.eyebrow { margin: 0; font-size: 1.05rem; font-weight: 800; }
.eyebrow .dot { width: 12px; height: 12px; box-shadow: 0 0 0 5px var(--light-red); }
.hero-title { font-size: clamp(3rem, 4.6vw, 4.65rem); line-height: 1.05; letter-spacing: 0; }
.hero-title mark { padding: 0; background: transparent; color: var(--primary-red); border-radius: 0; box-shadow: none; }
.hero-sub { max-width: 570px; margin: 5px 0 0; padding-bottom: 12px; font-size: 1.18rem; line-height: 1.55; border-bottom: 2px solid var(--primary-red); }
.hero-benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 3px; }
.benefit-item { min-height: 154px; padding: 14px 7px 11px; border: 1px solid #f4d5d8; border-radius: 8px; background: rgba(255,255,255,.93); box-shadow: 0 8px 25px rgba(100, 25, 35, .06); }
.benefit-item > i { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 8px; border-radius: 50%; background: var(--light-red); color: var(--primary-red); font-size: 1.35rem; }
.benefit-item strong { min-height: 34px; margin: 0; color: var(--black); font-size: .77rem; line-height: 1.25; }
.benefit-item .value { font-size: 1.65rem; line-height: 1.15; }
.benefit-item small { display: block; color: #222; font-size: .62rem; font-weight: 800; }
.benefit-item .stars { display: block; margin: 8px 0 4px; color: #ffbd24; font-size: 1.05rem; letter-spacing: 0; white-space: nowrap; }
.hero-cta { gap: 8px; margin-top: 2px; }
.hero-cta .btn { justify-content: center; padding: 11px 18px; font-size: 1rem; }
.membership-badge { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0; padding: 7px 14px; border-radius: 7px; background: var(--primary-red); color: #fff; font-size: .98rem; }
.membership-badge i { font-size: 1.2rem; }
.hero-right { min-height: 540px; }
.free-badge { position: absolute; top: 4px; right: 18px; display: flex; align-items: center; gap: 12px; padding: 13px 20px; border: 1px solid rgba(237,50,55,.12); border-radius: 8px; background: rgba(255,255,255,.94); box-shadow: 0 10px 30px rgba(60,20,20,.08); font: 800 .86rem/1.2 var(--font-devanagari); }
.free-badge i { color: var(--primary-red); font-size: 2rem; }
.free-badge span, .free-badge strong { display: block; }
.free-badge strong { color: var(--primary-red); font-size: 1.15rem; }
.hero-trust { position: absolute; right: 16px; bottom: -88px; display: grid; grid-template-columns: repeat(3, 1fr); width: min(700px, 52%); padding: 17px 20px; border: 1px solid rgba(237,50,55,.12); border-radius: 8px; background: rgba(255,255,255,.95); box-shadow: 0 10px 30px rgba(60,20,20,.08); }
.hero-trust > div { display: flex; align-items: center; gap: 12px; padding: 0 15px; font-size: .79rem; line-height: 1.35; }
.hero-trust > div + div { border-left: 1px solid #f2d8da; }
.hero-trust i { color: var(--primary-red); font-size: 1.8rem; }
.hero-trust strong { font-weight: 800; }

@media (max-width: 980px) {
    .hero { min-height: auto; padding: 92px 0 32px; background-position: 68% center; }
    .hero::after { background: linear-gradient(90deg, rgba(255,250,250,.98) 0%, rgba(255,250,250,.92) 56%, rgba(255,250,250,.25) 100%); }
    .hero-inner { grid-template-columns: minmax(0, 630px) 1fr; }
    .hero-right { min-height: 520px; }
    .free-badge { top: -48px; }
    .hero-trust { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 18px; }
}

@media (max-width: 768px) {
    .hero { padding: 76px 0 24px; background-image: none; }
    .hero::after { display: none; }
    .hero-inner { display: flex; flex-direction: column; padding: 0; }
    .hero-left { max-width: none; }
    .hero-title { font-size: 2.65rem; }
    .hero-sub { max-width: none; }
    .hero-benefits { grid-template-columns: repeat(2, 1fr); }
    .hero-right { order: -1; width: calc(100% + 2rem); max-width: none; min-height: 330px; margin: 0 -1rem 15px; background: url('../images/family-hero-v2.png') 67% center / cover no-repeat; }
    .free-badge { top: 12px; right: 8px; padding: 9px 12px; transform: scale(.88); transform-origin: top right; }
    .hero-trust { grid-template-columns: 1fr; padding: 10px 16px; }
    .hero-trust > div { padding: 10px 0; }
    .hero-trust > div + div { border-top: 1px solid #f2d8da; border-left: 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.15rem; }
    .hero-right { min-height: 260px; }
    .hero-benefits { gap: 7px; }
    .benefit-item { min-height: 145px; }
    .hero-cta .btn, .membership-badge { font-size: .88rem; }
}

/* Equal card alignment for registration and usage flows */
.process-step {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 64px auto auto;
    justify-content: center;
    align-content: start;
    column-gap: 18px;
    min-height: 300px;
    text-align: center;
}
.process-step .step-number { position: static; grid-column: 1; grid-row: 1; align-self: center; margin: 0; }
.process-step .step-icon { grid-column: 2; grid-row: 1; align-self: center; justify-self: start; margin: 0; color: var(--primary-red); font-size: 2.4rem; line-height: 1; }
.process-step .step-icon i { display: block; color: var(--primary-red); }
.process-step h4 { grid-column: 1 / -1; grid-row: 2; align-self: end; min-height: 52px; margin: 22px 0 8px; display: flex; align-items: center; justify-content: center; }
.process-step p { grid-column: 1 / -1; grid-row: 3; max-width: 280px; min-height: 52px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: center; text-align: center; }

.usage-cards { align-items: stretch; }
.usage-card { display: flex; flex-direction: column; height: 100%; }
.usage-header { min-height: 130px; flex: 0 0 130px; }
.usage-flow {
    flex: 1;
    display: grid;
    grid-template-rows: repeat(4, minmax(58px, auto) 26px) 72px;
    align-content: stretch;
    gap: 0;
    min-height: 530px;
}
.flow-step { position: relative; display: flex; align-items: center; justify-content: center; min-height: 58px; padding-inline: 50px; text-align: center; }
.flow-step .flow-num { position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.flow-step p { width: 100%; margin: 0; text-align: center; }
.flow-arrow { display: grid; place-items: center; height: 26px; margin: 0; text-align: center; }
.flow-arrow i { display: block; color: rgba(237,50,55,.55); }
.flow-result { grid-row: 9; align-self: stretch; display: flex; align-items: center; justify-content: center; min-height: 72px; padding: 12px 0 0; }

@media (max-width: 768px) {
    .process-step { min-height: 280px; }
    .usage-header { min-height: 110px; flex-basis: 110px; }
    .usage-flow { min-height: 500px; }
}

@media (max-width: 480px) {
    .process-step { min-height: 260px; padding-inline: 20px; }
    .usage-flow { min-height: 470px; padding-inline: 20px; }
}
h1, h2, h3, h4, h5, h6, .nav, .btn, .eyebrow, .membership-badge, .form-group, legend, .form-note, .footer { font-family: var(--font-anek); }
.form-group input, .form-group select, .floating-action, .cookie-banner, .cookie-btn, .footer-col a, .footer-contact-link small, .footer-contact-link strong, .app-welcome-screen, .instagram-embed-empty { font-family: var(--font-devanagari); }

/* ==================================================
   REFERENCE-INSPIRED STRUCTURE (content unchanged)
   ================================================== */
:root { --layout-width: 1240px; --layout-border: #e7e9ed; --layout-muted: #f6f7f8; }
.container { width: min(100% - 40px, var(--layout-width)); max-width: var(--layout-width); padding-inline: 0; }
.section-spacing { padding: 88px 0; }
.section-header { max-width: 760px; margin: 0 auto 46px; }
.section-header h2 { margin-bottom: 10px; font-size: clamp(2rem, 3vw, 2.75rem); }
.section-header p { margin: 0; line-height: 1.7; }

.nav { min-height: 82px; padding: 10px max(24px, calc((100vw - var(--layout-width)) / 2)); }
.nav.sticky { min-height: 72px; padding-inline: max(24px, calc((100vw - var(--layout-width)) / 2)); }
.brand-logo { height: 54px; }
.nav-links { gap: 30px; }
.btn-nav { border-radius: 999px; padding: 11px 22px; background: var(--primary-red); color: #fff; }

.hero { min-height: 0; padding: 138px 0 96px; background: #fff; }
.hero::after { display: none; }
.hero .container { width: min(100% - 40px, var(--layout-width)); max-width: var(--layout-width); padding: 0; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr); gap: clamp(42px, 6vw, 82px); align-items: center; }
.hero-left { max-width: none; gap: 0; padding: 0; }
.eyebrow { align-self: flex-start; margin: 0 0 22px; padding: 7px 13px; border: 1px solid rgba(237,50,55,.28); border-radius: 999px; background: #fff; font-size: .88rem; }
.hero-title { margin-bottom: 24px; font-size: clamp(3.1rem, 4.7vw, 4.55rem); line-height: 1.08; }
.hero-sub { max-width: 650px; margin: 0 0 28px; padding: 0; border: 0; font-size: 1.08rem; line-height: 1.75; }
.hero-benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0 0 28px; }
.benefit-item { min-height: 132px; padding: 15px 8px; border-color: var(--layout-border); border-radius: 8px; box-shadow: 0 8px 24px rgba(20,30,45,.06); }
.benefit-item > i { width: 38px; height: 38px; margin-bottom: 6px; }
.benefit-item strong { min-height: 31px; font-size: .72rem; }
.benefit-item .value { font-size: 1.5rem; }
.hero-cta { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; margin: 0; }
.hero-cta .btn, .hero-cta .membership-badge { width: auto; min-height: 46px; margin: 0; padding: 10px 18px; border-radius: 999px; }
.hero-cta .membership-badge { background: #fff; color: var(--primary-red); border: 1px solid rgba(237,50,55,.3); }
.hero-right { display: block; min-height: 590px; border: 1px solid var(--layout-border); border-radius: 8px; background: url('../images/family-hero-v2.png') 66% center / cover no-repeat; box-shadow: 0 22px 55px rgba(36,45,55,.13); }
.free-badge { top: auto; right: 28px; bottom: 18px; padding: 11px 16px; border-radius: 8px; }
.hero-trust { right: 38px; bottom: -36px; width: calc(46% - 46px); padding: 12px; border-radius: 8px; }
.hero-trust > div { padding: 0 10px; font-size: .7rem; }
.hero-trust i { font-size: 1.35rem; }

.benefit-cards { background: #fff; border-top: 1px solid var(--layout-border); }
.cards-grid { gap: 24px; }
.card { min-height: 310px; padding: 34px 28px; border: 1px solid var(--layout-border); border-radius: 8px; box-shadow: 0 10px 28px rgba(23,33,45,.05); }
.card:hover { transform: translateY(-5px); }

.what-is-bms { background: var(--layout-muted); background-image: none; }
.bms-content > p { max-width: 850px; margin: 0 auto 44px; text-align: center; }
.bms-features { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.feature-box { min-height: 250px; padding: 30px 20px; border: 1px solid var(--layout-border); border-radius: 8px; background: #fff; box-shadow: none; }

.how-it-works { background: #fff; }
.timeline { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 26px; max-width: 1160px; margin-inline: auto; }
.timeline::before { top: 36px; left: 8%; right: 8%; height: 1px; background: #d9dde2; }
.timeline-item { position: relative; z-index: 1; }
.timeline-icon { width: 72px; height: 72px; border: 1px solid rgba(237,50,55,.25); background: #fff; }
.timeline-icon i { display: inline-block; color: var(--primary-red); font-size: 1.75rem; line-height: 1; }
.timeline-content { margin-top: 16px; }

.reels-gallery { background: var(--layout-muted); background-image: none; }
.reels-grid.instagram-embeds { max-width: var(--layout-width); grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.instagram-embeds .instagram-embed-empty { min-height: 520px; border: 1px solid var(--layout-border); border-radius: 8px; background: #fff; }

.registration-process { background: #fff; }
.process-steps { max-width: 1080px; margin-inline: auto; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.process-step { min-height: 250px; padding: 34px 28px; border: 1px solid var(--layout-border); border-radius: 8px; box-shadow: 0 10px 28px rgba(23,33,45,.05); }

.app-guide { background: var(--layout-muted); background-image: none; }
.app-content { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 70px; align-items: center; }
.app-left h2 { font-size: clamp(2rem, 3vw, 2.75rem); }
.app-steps-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.app-step { min-height: 112px; padding: 18px; border: 1px solid var(--layout-border); border-radius: 8px; background: #fff; }

.how-to-use { background: #fff; }
.usage-cards { gap: 24px; }
.usage-card { border: 1px solid var(--layout-border); border-top: 5px solid var(--primary-red); border-radius: 8px; box-shadow: 0 10px 28px rgba(23,33,45,.05); }

.registration-cta { padding: 96px 0; background: linear-gradient(120deg, #c8202a, #8f1520); }
.registration-cta .container { width: min(100% - 40px, 1050px); }
.registration-card { max-width: 1050px; padding: 42px; border-radius: 8px; box-shadow: 0 24px 65px rgba(68,4,14,.24); }
.registration-card > h2, .registration-card > p { text-align: center; }
.reg-badge { display: table; margin: 0 auto 16px; }
.registration-form legend { border-radius: 8px; }

.footer.footer-brand-red { padding-top: 0; }
.footer-cta { padding: 34px 0; }
.footer-content { gap: 60px; }

@media (max-width: 1050px) {
    .hero-inner { grid-template-columns: 1fr 44%; gap: 34px; }
    .hero-title { font-size: 3.4rem; }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-right { min-height: 560px; }
    .hero-trust { width: 44%; right: 24px; }
    .bms-features { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
    .container, .hero .container { width: min(100% - 32px, var(--layout-width)); }
    .section-spacing { padding: 64px 0; }
    .section-header { margin-bottom: 34px; }
    .hero { padding: 92px 0 58px; }
    .hero-inner { display: flex; flex-direction: column; gap: 30px; }
    .hero-left { order: 2; width: 100%; }
    .hero-right { order: 1; width: 100%; min-height: 440px; margin: 0; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-trust { position: static; order: 3; width: 100%; margin: -12px 0 0; }
    .free-badge { top: 28px; right: 24px; bottom: auto; }
    .cards-grid, .process-steps, .usage-cards { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .timeline::before { display: none; }
    .reels-grid.instagram-embeds { grid-template-columns: 1fr; }
    .app-content { grid-template-columns: 1fr; gap: 44px; }
    .registration-card { padding: 28px 22px; }
}

@media (max-width: 520px) {
    .hero { padding-top: 78px; }
    .hero-right { min-height: 330px; }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-cta { align-items: stretch; flex-direction: column; }
    .hero-cta .btn, .hero-cta .membership-badge { width: 100%; justify-content: center; }
    .hero-trust { grid-template-columns: 1fr; }
    .bms-features, .timeline, .app-steps-list { grid-template-columns: 1fr; }
    .feature-box, .card, .process-step { min-height: 0; }
    .registration-cta .container { width: min(100% - 24px, 1050px); }
}

/* Preserve the reference headline rhythm across screen sizes. */
.hero-title .line { display: block; }
.hero-title .line > span { display: block; }

@media (max-width: 768px) {
    .hero-title { margin-top: 28px; }
}

/* Fit the complete desktop hero inside the first viewport. */
@media (min-width: 981px) {
    .hero { min-height: 720px; padding: 92px 0 54px; }
    .hero-title { margin-bottom: 16px; font-size: clamp(3rem, 4vw, 4rem); line-height: 1.02; }
    .hero-sub { margin-bottom: 18px; line-height: 1.55; }
    .hero-benefits { margin-bottom: 18px; }
    .benefit-item { min-height: 128px; padding-block: 12px; }
    .hero-cta { min-height: 46px; }
    .hero-trust { bottom: 12px; }
}

@media (min-width: 769px) and (max-width: 980px) {
    .hero { min-height: 700px; padding: 88px 0 48px; }
    .hero-title { font-size: clamp(2.7rem, 5.2vw, 3.5rem); }
    .benefit-item { min-height: 124px; }
    .hero-trust { bottom: 10px; }
}

/* Final hero composition: visible navigation, blush copy area and reference trust bar. */
@media (min-width: 769px) {
    .nav,
    .nav:not(.sticky) {
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(237,50,55,.1);
        box-shadow: 0 8px 28px rgba(66,25,30,.06);
    }
    .nav:not(.sticky) .nav-links,
    .nav:not(.sticky) .btn-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .hero { background-color: #fff5f6; }
    .hero::after {
        background: linear-gradient(90deg, #fff5f6 0%, rgba(255,245,246,.98) 35%, rgba(255,248,249,.78) 51%, rgba(255,255,255,0) 73%);
    }
    .hero-trust {
        right: 32px;
        bottom: 14px;
        width: min(840px, 53%);
        min-height: 96px;
        padding: 14px 20px;
        border-radius: 8px;
        background: rgba(255,255,255,.96);
    }
    .hero-trust > div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        min-width: 0;
        padding: 0 22px;
        color: #292326;
        font-size: .86rem;
        line-height: 1.42;
        text-align: left;
    }
    .hero-trust > div + div { border-left: 1px solid rgba(237,50,55,.18); }
    .hero-trust i { flex: 0 0 auto; font-size: 2.3rem; color: var(--red); }
    .hero-trust strong { display: block; font-size: .9rem; line-height: 1.35; }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .hero-trust { width: 58%; padding-inline: 12px; }
    .hero-trust > div { gap: 10px; padding-inline: 10px; font-size: .72rem; }
    .hero-trust i { font-size: 1.75rem; }
}

@media (min-width: 769px) {
    .hero-cta { display: block; width: 100%; max-width: 700px; margin: 0; }
    .hero-cta > .btn { display: none; }
    .hero-cta .membership-badge { display: flex; width: 100%; min-height: 48px; margin: 0; padding: 9px 18px; border: 0; border-radius: 7px; background: var(--primary-red); color: #fff; box-shadow: 0 10px 24px rgba(190,24,35,.2); }
    .hero-more { display: flex; }
}

/* Requested header visibility, blush copy panel and reference trust strip */
@media (min-width: 769px) {
    .nav, .nav:not(.sticky) { background: rgba(255,255,255,.98); border-bottom-color: rgba(237,50,55,.1); box-shadow: 0 8px 28px rgba(66,25,30,.06); }
    .nav:not(.sticky) .nav-links, .nav:not(.sticky) .btn-nav { opacity: 1; visibility: visible; pointer-events: auto; }
    .hero { background-color: #fff6f7; }
    .hero::after { background: linear-gradient(90deg, rgba(255,246,247,.99) 0%, rgba(255,246,247,.97) 35%, rgba(255,249,249,.7) 52%, rgba(255,255,255,0) 74%); }
    .hero-trust { min-height: 94px; width: min(840px, 53%); padding: 14px 20px; border-radius: 8px; }
    .hero-trust > div { gap: 16px; padding: 0 22px; color: #292326; font-size: .86rem; line-height: 1.45; text-align: left; }
    .hero-trust > div + div { border-left: 1px solid rgba(237,50,55,.18); }
    .hero-trust i { flex: 0 0 auto; font-size: 2.25rem; }
    .hero-trust strong { font-size: .9rem; }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .hero-trust { width: 58%; padding-inline: 12px; }
    .hero-trust > div { gap: 10px; padding-inline: 10px; font-size: .72rem; }
    .hero-trust i { font-size: 1.7rem; }
}

/* Final desktop campaign-banner authority */
@media (min-width: 769px) {
    .nav:not(.sticky) { background: transparent; border-bottom-color: transparent; box-shadow: none; }
    .nav:not(.sticky) .nav-links, .nav:not(.sticky) .btn-nav { opacity: 0; visibility: hidden; pointer-events: none; }
    .hero-title { max-width: 640px; }
    .hero-benefits { margin-bottom: 10px; }
    .benefit-item { min-height: 140px; padding-block: 12px; }
    .hero-cta { display: block; width: 100%; max-width: 700px; min-height: 48px; margin: 0; }
    .hero-cta > .btn { display: none; }
    .hero-cta .membership-badge { display: flex; width: 100%; min-height: 48px; margin: 0; border: 0; border-radius: 7px; background: var(--primary-red); color: #fff; box-shadow: 0 10px 24px rgba(190,24,35,.2); }
    .hero-more { display: flex; min-height: 42px; }
}

/* Align hero copy with the logo's vertical guide on wide screens. */
@media (min-width: 1441px) {
    .hero-left { margin-left: 100px; }
}

@media (min-width: 769px) and (max-width: 1440px) {
    .hero-left { margin-left: 0; }
}

/* Professional reference-style hero finish */
@media (min-width: 769px) {
    .hero { border-bottom: 1px solid #f0e5e7; }
    .hero-bg { display: block; z-index: 1; width: 46%; left: 8%; background: url('../images/medical-pattern.svg') center / 380px auto no-repeat; opacity: .055; pointer-events: none; }
    .hero-left { position: relative; z-index: 3; }
    .eyebrow { margin-bottom: 16px; padding: 6px 12px; border-color: rgba(237,50,55,.34); background: rgba(255,255,255,.88); }
    .hero-title { max-width: 640px; letter-spacing: 0; text-wrap: balance; }
    .hero-sub { position: relative; max-width: 610px; padding-bottom: 14px; }
    .hero-sub::after { content: ''; position: absolute; left: 0; bottom: 0; width: 72px; height: 2px; background: var(--primary-red); }
    .hero-benefits { gap: 10px; }
    .benefit-item { display: flex; flex-direction: column; align-items: center; justify-content: center; border-color: rgba(237,50,55,.16); background: rgba(255,255,255,.94); box-shadow: 0 10px 26px rgba(64,29,34,.07); }
    .benefit-item > i { width: 42px; height: 42px; margin-bottom: 8px; }
    .benefit-item strong { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 32px; text-align: center; }
    .benefit-item small { margin-top: 3px; }
    .hero-cta { display: grid; grid-template-columns: minmax(210px, .72fr) minmax(310px, 1.28fr); width: 100%; max-width: 700px; gap: 10px; }
    .hero-cta .btn, .hero-cta .membership-badge { width: 100%; min-height: 48px; justify-content: center; border-radius: 8px; }
    .membership-badge { border-width: 1px; background: rgba(255,255,255,.94); box-shadow: 0 8px 22px rgba(65,25,32,.06); }
    .hero-trust { min-height: 66px; padding: 10px 16px; border-color: rgba(237,50,55,.15); background: rgba(255,255,255,.95); box-shadow: 0 14px 32px rgba(55,23,28,.11); backdrop-filter: blur(8px); }
    .hero-trust > div { justify-content: center; }
    .free-badge { border-color: rgba(237,50,55,.14); box-shadow: 0 14px 35px rgba(55,23,28,.12); }
}

@media (max-width: 768px) {
    .hero-bg { display: none; }
    .hero-sub { position: relative; padding-bottom: 12px; }
    .hero-sub::after { content: ''; position: absolute; left: 0; bottom: 0; width: 58px; height: 2px; background: var(--primary-red); }
    .benefit-item { border-color: rgba(237,50,55,.16); background: rgba(255,255,255,.92); box-shadow: 0 8px 22px rgba(55,23,28,.08); }
    .hero-cta .btn, .hero-cta .membership-badge { border-radius: 8px; }
}

/* Exact campaign-banner composition from the supplied reference */
.free-badge { color: inherit; text-decoration: none; }
.hero-more { display: flex; align-items: center; gap: 10px; margin-top: 10px; color: #4f4f4f; font-size: .92rem; font-weight: 600; }
.hero-more > i { color: var(--primary-red); font-size: 1.1rem; }
.hero-more > a { padding: 7px 18px; border-radius: 999px; background: var(--primary-red); color: #fff; text-decoration: none; font-weight: 800; }

@media (min-width: 769px) {
    .nav:not(.sticky) { background: transparent; border-bottom-color: transparent; box-shadow: none; }
    .nav:not(.sticky) .nav-links, .nav:not(.sticky) .btn-nav { opacity: 0; visibility: hidden; pointer-events: none; }
    .hero { padding-top: 92px; }
    .hero-left { width: min(52%, 700px); }
    .hero-title { font-size: clamp(3rem, 4vw, 4.15rem); }
    .hero-benefits { margin-bottom: 10px; }
    .benefit-item { min-height: 148px; }
    .hero-cta { display: block; max-width: 700px; }
    .hero-cta > .btn { display: none; }
    .hero-cta .membership-badge { width: 100%; min-height: 48px; margin: 0; border: 0; border-radius: 7px; background: var(--primary-red); color: #fff; box-shadow: 0 10px 24px rgba(190,24,35,.2); }
    .hero-more { min-height: 42px; }
    .free-badge { padding: 14px 20px; }
}

@media (max-width: 768px) {
    .hero-more { justify-content: center; flex-wrap: wrap; margin: 10px 0 16px; }
    .hero-more > a { padding: 6px 15px; }
}

/* Requested full-background hero and clean registration surface */
.hero {
    min-height: 800px;
    padding: 132px 0 112px;
    background: #fff url('../images/family-hero-v2.png') right bottom / auto calc(100% - 82px) no-repeat;
    align-items: center;
}
.hero::after {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.97) 34%, rgba(255,255,255,.58) 55%, rgba(255,255,255,0) 76%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; width: min(100% - 40px, 1440px); max-width: 1440px; }
.hero-inner { display: block; }
.hero-left { width: min(54%, 700px); }
.hero-right { display: none; }
.free-badge { top: 28px; right: 32px; bottom: auto; }
.hero-trust { right: 32px; bottom: 24px; width: min(720px, 50%); }

.registration-cta { padding: 88px 0; background: #fff; }
.registration-card { border: 1px solid #e7e9ed; background: #fff; box-shadow: 0 18px 50px rgba(27,36,48,.08); }
.registration-form legend { display: none; }
.owner-form-grid { margin-top: 0; }
.registration-form > .btn-large { align-self: center; width: min(100%, 420px); padding-inline: 24px; }

.footer.footer-brand-red {
    background-image: linear-gradient(rgba(190,19,32,.96), rgba(125,8,22,.98)), url('../images/footer-healthcare-bg.png');
    background-size: cover;
    background-position: center;
}

@media (max-width: 980px) {
    .hero { min-height: 760px; background-size: auto calc(100% - 72px); background-position: 65% bottom; }
    .hero-left { width: 62%; }
    .hero-title { font-size: clamp(2.8rem, 6vw, 4rem); }
    .hero-trust { width: 58%; }
    .free-badge { top: 24px; right: 22px; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 90px 0 48px; background-size: auto 100%; background-position: 62% center; }
    .hero::after { background: rgba(255,255,255,.9); }
    .hero .container { width: min(100% - 32px, 1440px); }
    .hero-inner { display: block; }
    .hero-left { width: 100%; }
    .hero-right { display: none; }
    .free-badge { top: 84px; right: 14px; }
    .hero-trust { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 24px; }
    .registration-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
    .hero { padding-top: 84px; }
    .hero-title { font-size: clamp(2.25rem, 11vw, 3rem); }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn, .hero-cta .membership-badge { width: 100%; }
    .hero-trust { grid-template-columns: 1fr; }
    .registration-card { padding: 22px 16px; }
}

/* Final responsive hero, footer and quick-action system */
.nav {
    min-height: 92px;
    padding: 14px clamp(24px, 3vw, 54px);
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(237,50,55,.1);
    box-shadow: 0 8px 28px rgba(66,25,30,.06);
    backdrop-filter: none;
}
.nav.sticky { min-height: 76px; padding: 8px clamp(24px, 3vw, 54px); }
.nav .brand { width: auto; }
.brand-logo { height: 58px; }

.hero {
    min-height: 800px;
    padding: 116px 0 92px;
    background-size: auto calc(100% - 54px);
    background-position: right bottom;
    background-repeat: no-repeat;
}
.hero .container { max-width: 1560px; padding-inline: clamp(30px, 4.2vw, 78px); }
.hero-inner { grid-template-columns: minmax(560px, 47%) 1fr; }
.hero .reveal-up { opacity: 1; transform: none; animation: none; }
.hero-left { max-width: 690px; gap: 10px; padding-top: 22px; }
.eyebrow { gap: 8px; margin-bottom: 16px; font-size: 1.08rem; }
.eyebrow > i { color: var(--primary-red); font-size: 1.15rem; }
.hero-title { font-size: clamp(3.2rem, 4.25vw, 4.3rem); line-height: 1.04; }
.hero-sub { margin-bottom: 0; font-size: 1.08rem; line-height: 1.55; }
.hero-benefits { gap: 10px; }
.benefit-item { min-height: 148px; }
.hero-cta { display: grid; grid-template-columns: 1fr; }
.hero-cta .btn, .membership-badge { min-height: 48px; }
.free-badge { top: 24px; right: clamp(28px, 4vw, 68px); }
.hero-trust { right: clamp(28px, 4vw, 68px); bottom: 20px; width: min(720px, 50%); }

.footer.footer-brand-red {
    padding: 0 1.5rem 1.25rem;
    background-image: linear-gradient(rgba(184,20,32,.96), rgba(126,8,23,.98)), url('../images/footer-healthcare-bg.png');
    background-position: center;
}
.footer.footer-brand-red::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.04), transparent 45%, rgba(0,0,0,.12)); pointer-events: none; }
.footer .container { max-width: 1280px; }
.footer-cta { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 28px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.footer-cta-copy span { display: block; margin-bottom: 4px; color: #ffd9dc; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.footer-cta-copy h2 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(1.55rem, 2.4vw, 2.3rem); line-height: 1.25; }
.footer-cta-button { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; padding: 13px 20px; border-radius: 6px; background: #fff; color: #b81420; box-shadow: 0 12px 30px rgba(70,0,10,.2); text-decoration: none; font-weight: 800; }
.footer-cta-button i { font-size: 1.35rem; }
.footer-cta-button span, .footer-cta-button small { display: block; }
.footer-cta-button small { margin-top: 1px; color: #796064; font-size: .66rem; font-weight: 600; }
.footer-topline { position: relative; z-index: 2; margin-bottom: 28px; }
.footer-content { position: relative; z-index: 2; grid-template-columns: 1.3fr .75fr 1.1fr; }
.footer-logo { height: 54px; }
.footer-brand-col p, .footer-col a, .footer-contact-link small { color: rgba(255,255,255,.78); }
.footer-contact-link { padding: 9px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 6px; background: rgba(255,255,255,.06); text-decoration: none; }
.footer-contact-link:hover { background: rgba(255,255,255,.12); }
.footer-bottom { position: relative; z-index: 2; }

.floating-actions { right: 0; bottom: 24%; gap: 8px; }
.floating-action { position: relative; justify-content: flex-start; width: 158px; min-width: 158px; height: 46px; padding: 0 14px; overflow: hidden; border-radius: 6px 0 0 6px; background: #fff; color: #222; border: 1px solid #f0d5d8; box-shadow: 0 8px 25px rgba(70,16,24,.14); }
.floating-action i { display: grid; place-items: center; width: 27px; height: 27px; min-width: 27px; border-radius: 50%; background: var(--primary-red); color: #fff; }
.floating-action span { position: static; opacity: 1; padding: 0; background: transparent; color: #222; font-size: .78rem; font-weight: 800; }
.floating-action:hover { width: 164px; transform: translateX(-6px); background: #fff5f6; }
.floating-action:hover span { opacity: 1; }
.whatsapp-action, .call-action, .message-action, .scroll-top { background: #fff; }
.whatsapp-action i { background: #18ad56; }
.message-action i { background: #525bc7; }
.scroll-top i { background: #232936; }

/* Only the scroll control remains as a quiet bottom-right utility. */
.floating-actions { right: 22px; bottom: 22px; display: block; }
.floating-actions .scroll-top { justify-content: center; width: 46px; min-width: 46px; height: 46px; padding: 0; overflow: hidden; border: 0; border-radius: 50%; background: #232936; color: #fff; }
.floating-actions .scroll-top i { width: auto; height: auto; min-width: 0; background: transparent; }
.floating-actions .scroll-top span { display: none; }
.floating-actions .scroll-top:hover { width: 46px; transform: translateY(-3px); background: var(--primary-red); }

.hero-cta { align-items: center; }
.hero-cta .btn, .hero-cta .membership-badge { width: min(72%, 470px); margin-inline: auto; }

.registration-card { max-width: 1240px; }
.registration-form fieldset { padding: 0; }
.registration-form legend { width: 100%; padding: 14px 18px; border-radius: 6px; background: linear-gradient(90deg, #c30d2d, #a90825); color: #fff; font-size: 1.15rem; }
.registration-form legend i { margin-right: 8px; }
.owner-form-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 24px; margin-top: 22px; }
.owner-form-grid .form-span-2 { grid-column: span 2; }
.radio-group { display: flex; align-items: center; gap: 24px; min-height: 48px; }
.radio-group label { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.radio-group input { width: 18px; height: 18px; accent-color: var(--primary-red); }
.owner-form-grid input[readonly] { background: #eef0f2; color: #545c66; cursor: not-allowed; }

@media (max-width: 1100px) {
    .hero { min-height: 760px; background-position: 62% center; }
    .hero-inner { grid-template-columns: minmax(500px, 56%) 1fr; }
    .hero-title { font-size: 3.5rem; }
    .hero-trust { width: 56%; }
}

@media (max-width: 768px) {
    body { padding-bottom: 0; }
    .nav { min-height: 68px; padding: 8px 16px; }
    .brand-logo { height: 46px; }
    .hero { min-height: 0; padding: 68px 0 30px; }
    .hero .container { padding-inline: 16px; }
    .hero-left { padding-top: 8px; }
    .hero-title { font-size: clamp(2.15rem, 10vw, 3rem); }
    .hero-right { min-height: 330px; }
    .free-badge { top: 14px; right: 8px; }
    .hero-trust { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 16px; }
    .footer.footer-brand-red { padding-inline: 1rem; }
    .footer-cta { align-items: flex-start; flex-direction: column; padding: 25px 0; }
    .footer-cta-button { width: 100%; justify-content: center; }
    .floating-actions { left: auto; right: 14px; bottom: 14px; display: block; padding: 0; background: transparent; box-shadow: none; }
    .floating-actions .scroll-top { display: flex; width: 44px; min-width: 44px; height: 44px; }
    .hero-cta .btn, .hero-cta .membership-badge { width: min(88%, 470px); }
    .registration-card { padding: 1.5rem; }
    .owner-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 480px) {
    .hero-right { min-height: 280px; }
    .free-badge { padding: 8px 10px; transform: scale(.78); }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-topline { gap: 8px; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-contact-link { max-width: none; }
    .hero-cta .btn, .hero-cta .membership-badge { width: 100%; }
    .owner-form-grid { grid-template-columns: 1fr; }
    .owner-form-grid .form-span-2 { grid-column: span 1; }
}

/* APP WELCOME SCREEN PREVIEW */
.phone-screen { padding: 0; background: #C8102E; align-items: stretch; }
.app-welcome-screen { width: 100%; min-height: 100%; padding: 24px 10px 18px; display: flex; flex-direction: column; align-items: center; color: #fff; background: linear-gradient(160deg, #ED3237 0%, #C8102E 100%); text-align: center; }
.app-logo-card { width: 92%; margin: 12px auto 22px; padding: 18px 10px; border-radius: 18px; background: #fff; box-shadow: 0 8px 16px rgba(80,0,0,.16); }
.app-logo-card img { width: 100%; height: auto; display: block; }
.app-welcome-screen h3 { margin: 0; color: #fff; font: 800 1.4rem var(--font-english); }
.app-welcome-sub { margin: 5px 0 18px; color: rgba(255,255,255,.78); font: 500 .62rem var(--font-english); }
.app-choice-card { width: 108%; padding: 12px 9px; border-radius: 18px; background: #fff4f4; box-shadow: 0 8px 14px rgba(80,0,0,.16); }
.app-choice { width: 100%; padding: 10px 5px; border: 2px solid #C8102E; border-radius: 999px; background: transparent; color: #C8102E; font: 700 .62rem var(--font-english); }
.app-choice + .app-choice { margin-top: 8px; }.app-choice.active { background: #C8102E; color: #fff; box-shadow: 0 4px 8px rgba(80,0,0,.2); }.app-choice i { margin-right: 4px; }
.app-terms { margin: 18px 0 15px; color: rgba(255,255,255,.74); font: 500 .48rem var(--font-english); }
.app-promise { width: 108%; padding: 13px 7px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; background: rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 4px; font: 500 .48rem var(--font-english); }.app-promise strong { font-size: .7rem; }.app-promise span { color: rgba(255,255,255,.87); }
@media (max-width: 480px) { .app-welcome-screen { padding: 17px 7px 12px; }.app-logo-card { margin-bottom: 15px; padding: 12px 7px; }.app-choice-card { padding: 8px 6px; }.app-terms { margin: 12px 0 10px; } }

/* Structural layout authority */
.nav { min-height: 82px; padding: 10px max(24px, calc((100vw - 1240px) / 2)); }
.nav.sticky { min-height: 72px; padding-inline: max(24px, calc((100vw - 1240px) / 2)); }
.hero { min-height: 0; padding: 138px 0 96px; background: #fff; align-items: initial; }
.hero::after { display: none; }
.hero .container { width: min(100% - 40px, 1240px); max-width: 1240px; padding: 0; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr); gap: clamp(42px, 6vw, 82px); align-items: center; }
.hero-left { max-width: none; gap: 0; padding: 0; }
.eyebrow { margin: 0 0 22px; padding: 7px 13px; }
.hero-title { margin-bottom: 24px; font-size: clamp(3.1rem, 4.7vw, 4.55rem); line-height: 1.08; }
.hero-sub { max-width: 650px; margin: 0 0 28px; padding: 0; border: 0; font-size: 1.08rem; line-height: 1.75; }
.hero-benefits { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin: 0 0 28px; }
.hero-cta { display: flex; flex-direction: row; justify-content: flex-start; gap: 12px; margin: 0; }
.hero-cta .btn, .hero-cta .membership-badge { width: auto; min-height: 46px; margin: 0; padding: 10px 18px; border-radius: 999px; }
.hero-cta .membership-badge { background: #fff; color: var(--primary-red); border: 1px solid rgba(237,50,55,.3); }
.hero-right { display: block; min-height: 590px; max-width: none; margin: 0; border: 1px solid #e7e9ed; border-radius: 8px; background: url('../images/family-hero-v2.png') 66% center / cover no-repeat; box-shadow: 0 22px 55px rgba(36,45,55,.13); }
.free-badge { top: auto; right: 68px; bottom: 74px; z-index: 4; transform: none; }
.hero-trust { right: 38px; bottom: -36px; width: calc(46% - 46px); margin: 0; }

@media (max-width: 768px) {
    .hero { padding: 92px 0 58px; }
    .hero .container { width: min(100% - 32px, 1240px); }
    .hero-inner { display: flex; flex-direction: column; gap: 30px; padding: 0; }
    .hero-left { order: 2; width: 100%; }
    .hero-right { order: 1; width: 100%; min-height: 440px; margin: 0; }
    .hero-trust { position: static; order: 3; width: 100%; margin: -12px 0 0; }
    .free-badge { top: 28px; right: 24px; bottom: auto; }
}

@media (max-width: 520px) {
    .hero { padding-top: 78px; }
    .hero-right { min-height: 330px; }
    .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn, .hero-cta .membership-badge { width: 100%; justify-content: center; }
}

/* Final full-background hero authority */
.hero { min-height: 800px; padding: 132px 0 112px; background: #fff url('../images/family-hero-v2.png') right bottom / auto calc(100% - 82px) no-repeat; align-items: center; }
.hero::after { display: block; content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 34%, rgba(255,255,255,.58) 55%, rgba(255,255,255,0) 76%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; width: min(100% - 40px, 1440px); max-width: 1440px; }
.hero-inner { display: block; }
.hero-left { width: min(54%, 700px); }
.hero-right { display: none; }
.free-badge { top: 116px; right: 32px; bottom: auto; }
.hero-trust { right: 32px; bottom: 24px; width: min(720px, 50%); }
.registration-cta { padding: 88px 0; background: #fff; }
.registration-card { border: 1px solid #e7e9ed; background: #fff; box-shadow: 0 18px 50px rgba(27,36,48,.08); }
.registration-form legend { display: none; }
.owner-form-grid { margin-top: 0; }
.footer.footer-brand-red { background-image: linear-gradient(rgba(190,19,32,.96), rgba(125,8,22,.98)), url('../images/footer-healthcare-bg.png'); background-size: cover; background-position: center; }

@media (max-width: 980px) {
    .hero { min-height: 760px; background-size: auto calc(100% - 72px); background-position: 65% bottom; }
    .hero-left { width: 62%; }
    .hero-trust { width: 58%; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 90px 0 48px; background-size: auto 100%; background-position: 62% center; }
    .hero::after { background: rgba(255,255,255,.9); }
    .hero .container { width: min(100% - 32px, 1440px); }
    .hero-inner { display: block; }
    .hero-left { width: 100%; }
    .hero-right { display: none; }
    .free-badge { top: 84px; right: 14px; bottom: auto; }
    .hero-trust { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 24px; }
}

@media (max-width: 480px) {
    .hero { padding-top: 84px; }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-trust { grid-template-columns: 1fr; }
}

/* Final equal-card authority */
.process-step { min-height: 300px; }
.usage-cards { align-items: stretch; }
.usage-card { display: flex; flex-direction: column; height: 100%; }
.usage-header { min-height: 130px; flex: 0 0 130px; }
.usage-flow { flex: 1; display: grid; grid-template-rows: repeat(4, minmax(58px, auto) 26px) 72px; align-content: stretch; gap: 0; min-height: 530px; }
.flow-step { position: relative; display: flex; align-items: center; justify-content: center; min-height: 58px; padding-inline: 50px; text-align: center; }
.flow-step .flow-num { position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.flow-step p { width: 100%; margin: 0; text-align: center; }
.flow-arrow { display: grid; place-items: center; height: 26px; margin: 0; text-align: center; }
.flow-result { grid-row: 9; align-self: stretch; display: flex; align-items: center; justify-content: center; min-height: 72px; padding: 12px 0 0; }

@media (max-width: 768px) {
    .process-step { min-height: 280px; }
    .usage-header { min-height: 110px; flex-basis: 110px; }
    .usage-flow { min-height: 500px; }
}

@media (max-width: 480px) {
    .process-step { min-height: 260px; }
    .usage-flow { min-height: 470px; padding-inline: 20px; }
}

/* Free-registration badge sits in the clear top-right hero area. */
.hero .free-badge { top: 12px; right: calc((1440px - 100vw) / 2 + 10px); bottom: auto; }

@media (max-width: 1440px) {
    .hero .free-badge { right: 14px; }
}

@media (max-width: 980px) {
    .hero .free-badge { top: 10px; right: 20px; }
}

@media (max-width: 768px) {
    .hero .free-badge { top: 8px; right: 12px; transform: scale(.88); transform-origin: top right; }
}

/* Desktop/laptop and portrait-mobile hero compositions */
@media (min-width: 769px) {
    .hero { min-height: 800px; }
    .hero-left { width: min(54%, 700px); }
    .hero-trust { position: absolute; right: 32px; bottom: 20px; width: min(720px, 50%); margin: 0; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 1220px;
        padding: 88px 0 38px;
        background-size: auto 58%;
        background-position: 67% 43%;
        background-repeat: no-repeat;
    }
    .hero::after {
        background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 27%, rgba(255,255,255,.12) 46%, rgba(255,255,255,.08) 68%, rgba(255,255,255,.96) 79%, #fff 100%);
    }
    .hero .container { min-height: 1090px; }
    .hero-left { display: block; width: 100%; }
    .eyebrow { max-width: 62%; margin-bottom: 18px; }
    .hero-title { max-width: 72%; margin-bottom: 18px; font-size: clamp(2.45rem, 8.5vw, 3.5rem); }
    .hero-sub { max-width: 64%; font-size: .98rem; line-height: 1.65; }
    .hero-benefits { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 7px; margin-top: 500px; margin-bottom: 14px; }
    .benefit-item { min-height: 150px; padding: 12px 5px; }
    .benefit-item strong { font-size: .67rem; }
    .benefit-item .value { font-size: 1.45rem; }
    .benefit-item .stars { font-size: .9rem; }
    .hero-cta { gap: 9px; margin-bottom: 14px; }
    .hero-trust { position: relative; right: auto; bottom: auto; width: 100%; margin: 0; }
}

@media (max-width: 520px) {
    .hero { min-height: 1120px; padding-top: 78px; background-size: auto 48%; background-position: 66% 43%; }
    .hero .container { min-height: 1010px; }
    .eyebrow { max-width: 70%; }
    .hero-title { max-width: 92%; font-size: clamp(2.15rem, 11vw, 2.9rem); }
    .hero-sub { max-width: 78%; font-size: .9rem; }
    .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-top: 390px; }
    .benefit-item { min-height: 142px; }
    .hero-cta { flex-direction: column; }
    .hero-trust { grid-template-columns: 1fr; }
}

/* Desktop viewport fit authority */
@media (min-width: 981px) {
    .hero { min-height: 720px; padding: 92px 0 54px; }
    .hero-title { margin-bottom: 16px; font-size: clamp(3rem, 4vw, 4rem); line-height: 1.02; }
    .hero-sub { margin-bottom: 18px; line-height: 1.55; }
    .hero-benefits { margin-bottom: 18px; }
    .benefit-item { min-height: 128px; padding-block: 12px; }
    .hero-cta { min-height: 46px; }
    .hero-trust { bottom: 12px; }
}

@media (min-width: 769px) and (max-width: 980px) {
    .hero { min-height: 700px; padding: 88px 0 48px; }
    .hero-title { font-size: clamp(2.7rem, 5.2vw, 3.5rem); }
    .benefit-item { min-height: 124px; }
    .hero-trust { bottom: 10px; }
}
