:root {
    --text-primary: #3d3d3d;
    --text-secondary: #5a5a5a;
    --text-light: #ffffff;
    --bg-main: #ffffff;

    /* Soft glass mesh gradient matching PulseVisit brand */
    --bg-gradient-base:
        linear-gradient(135deg,
            #fafafa 0%,
            #f3f2fb 45%,
            #d5d2ff 70%,
            #8b8cff 100%);
    --bg-purple-block: rgba(143, 143, 255, 0.15);

    --card-bg: rgba(255, 255, 255, 0.4);
    --card-border: rgba(255, 255, 255, 0.6);
    --card-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);

    --accent-primary: #8a4fff;
    --accent-secondary: #ff6b6b;

    --font-primary: 'Satoshi', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Google Material Symbols styling helper */
.material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

/* Buttons */
button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-primary {
    background: #3d3d3d;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #2b2b2b;
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    background: rgba(255, 255, 255, 0.9);
}

.btn-text {
    padding: 12px 16px;
    color: var(--text-secondary);
}

.btn-text:hover {
    color: var(--text-primary);
}

.btn-outline {
    border: 1px solid var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-full);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--text-light);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(253, 251, 253, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
}

.logo-scrolled {
    display: none;
}

.main-header.scrolled .logo-default {
    display: none;
}

.main-header.scrolled .logo-scrolled {
    display: block;
}

nav {
    display: none;
    gap: 32px;
}

@media (min-width: 992px) {
    nav {
        display: flex;
    }
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Layout Utilities */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Reusable Mesh Background Utility */
.mesh-bg {
    background-image:
        radial-gradient(circle, rgba(109, 115, 255, 0.7) 0%, transparent 95%),
        radial-gradient(circle, rgba(244, 178, 234, 0.7) 0%, transparent 70%),
        linear-gradient(135deg, #fafafa 0%, #f0effc 40%, #d5d2ff 75%, #8b8cff 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 100% 0%, 0% 100%, 0% 0%;
    background-repeat: no-repeat;
    animation: smoothMesh 15s ease-in-out infinite alternate;
}

/* Premium Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

/* Pull all hero children to the front */
.hero>* {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 80px;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-content h1.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.05;
    color: var(--text-light);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-top: 20px;
}

.hero-content p.hero-services-list {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-content p.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon.bg-green {
    background-color: #2ed573;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.btn-icon.shadow-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.whatsapp-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid #128c7e;
    color: #128c7e;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #128c7e;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding-left: 28px;
    /* Aligns text perfectly under the word, skipping the checkmark */
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@media (min-width: 992px) {
    .hero-image-container {
        margin-top: 0;
    }
}

.main-ring-img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--card-shadow);
    animation: float 8s ease-in-out infinite reverse;
}

.floating-card.top-right {
    top: 10%;
    right: -5%;
}

@media (max-width: 768px) {
    .floating-card.top-right {
        right: 5%;
        top: 0;
    }
}

.card-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.card-sub {
    font-size: 0.8rem;
    color: #4caf50;
    font-weight: 500;
    margin-left: 4px;
}

/* Features Section */
.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 300px);
    }
}

.feature-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-card .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .bg-img {
    transform: scale(1.05);
}

.feature-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* ==========================================
   Enhanced Services Section & Custom Cards
   ========================================== */

/* Playful Section Title Header with Dots */
.services-header-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.services-header-wrapper h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Dots around the title */
.services-header-wrapper::before,
.services-header-wrapper::after,
.services-header-decor-3 {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.85;
}

/* Lavender dot top-right */
.services-header-wrapper::before {
    width: 14px;
    height: 14px;
    background: #8f8fff;
    /* Brand Purple */
    top: -5px;
    right: -25px;
    animation: bounceSlow 4s ease-in-out infinite alternate;
}

/* Soft gold dot */
.services-header-wrapper::after {
    width: 20px;
    height: 20px;
    background: #f5bdff;
    /* Brand Pink */
    top: -20px;
    right: -5px;
    animation: bounceSlow 3s ease-in-out infinite alternate-reverse;
}

/* Pink dot */
.services-header-decor-3 {
    width: 12px;
    height: 12px;
    background: #c5c5c5;
    /* Brand Charcoal 30% Tint */
    bottom: -10px;
    left: -20px;
    animation: bounceSlow 5s ease-in-out infinite alternate;
}

.services-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 400;
}

/* Floating badges styling */
.floating-badges-container {
    position: absolute;
    width: 100%;
    height: 100px;
    top: -50px;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 992px) {
    .floating-badges-container {
        display: none;
    }
}

.floating-service-tag {
    position: absolute;
    pointer-events: auto;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    user-select: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-service-tag:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.floating-service-tag.pink {
    background: #ffecf0;
    color: #ff5e7e;
    border: 1px solid rgba(255, 94, 126, 0.15);
    top: 25px;
    left: 32%;
    --rot: -6deg;
    transform: rotate(var(--rot));
    animation-delay: 0s;
}

.floating-service-tag.outline-dark {
    background: #ffffff;
    color: #3d3d3d;
    border: 1px solid rgba(61, 61, 61, 0.2);
    top: -5px;
    left: 36%;
    --rot: 8deg;
    transform: rotate(var(--rot));
    animation-delay: 1.5s;
}

.floating-service-tag.green {
    background: #e3faf2;
    color: #0f9f6e;
    border: 1px solid rgba(15, 159, 110, 0.15);
    top: 20px;
    right: 40%;
    --rot: -4deg;
    transform: rotate(var(--rot));
    animation-delay: 3s;
}

/* Services deck grid styling */
.services-deck {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .services-deck {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-deck {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card visual style */
.service-card {
    position: relative;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Card custom colors based strictly on Brand Color Guidelines */
.service-card.card-purple-10 {
    background: #f4f4ff;
    color: #3d3d3d;
}

.service-card.card-pink-10 {
    background: #fef8ff;
    color: #3d3d3d;
}

.service-card.card-purple-30 {
    background: #ddddff;
    color: #3d3d3d;
}

.service-card.card-charcoal-10 {
    background: #ececec;
    color: #3d3d3d;
}

.service-card.card-pink-30 {
    background: #fcebff;
    color: #3d3d3d;
}

.service-card.card-pink-50 {
    background: #fadeff;
    color: #3d3d3d;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    max-width: 95%;
}

.service-card p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    max-width: 85%;
}

/* Card Button: circular white badge with arrow */
.service-card-btn {
    position: absolute;
    bottom: 35px;
    left: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    z-index: 3;
}

.service-card-btn span {
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

/* Specific colors inside button span based on parent card color */
.service-card.card-purple-10 .service-card-btn {
    color: #8f8fff;
}

.service-card.card-pink-10 .service-card-btn {
    color: #f5bdff;
}

.service-card.card-purple-30 .service-card-btn {
    color: #8f8fff;
}

.service-card.card-charcoal-10 .service-card-btn {
    color: #3d3d3d;
}

.service-card.card-pink-30 .service-card-btn {
    color: #f5bdff;
}

.service-card.card-pink-50 .service-card-btn {
    color: #f5bdff;
}

.service-card:hover .service-card-btn {
    transform: scale(1.08);
    background: #ffffff;
}

.service-card:hover .service-card-btn span {
    transform: rotate(45deg);
}

/* Aligned service cutout image */
.service-card-img-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.service-card-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Blends white background into pastel colors flawlessly */
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-card-img-container img {
    transform: scale(1.04) translateY(0);
}

/* Custom Keyframe Animations */
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-8px) rotate(var(--rot, 0deg));
    }
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


.large-card {
    grid-column: 1 / -1;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .large-card {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}

.play-btn-large {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-btn-large:hover {
    background: #fff;
    color: var(--text-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.small-card {
    min-height: 300px;
}

.wide-card {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

@media (min-width: 768px) {
    .wide-card {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .wide-card {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }
}

.wide-card .card-content {
    position: relative;
    background: none;
    padding: 0;
    color: var(--text-primary);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    background: rgba(138, 79, 255, 0.4);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.bar:hover {
    background: rgba(138, 79, 255, 0.8);
}

.h-60 {
    height: 60%;
}

.h-80 {
    height: 80%;
}

.h-40 {
    height: 40%;
}

.h-90 {
    height: 90%;
}

.h-70 {
    height: 70%;
}

/* Lifestyle Section */
.lifestyle {
    background: var(--bg-main);
}

.lifestyle-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.img-tall {
    grid-row: span 2;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    background: #fff;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(138, 79, 255, 0.1), rgba(244, 178, 234, 0.2));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
}

.step:hover .step-icon {
    background: var(--text-primary);
    color: #fff;
    transform: scale(1.1);
}

.step h3 {
    margin-bottom: 12px;
}

.step.line {
    display: none;
}

@media (min-width: 768px) {
    .step.line {
        display: block;
        height: 2px;
        background: #eee;
        flex: 1;
        margin-top: 30px;
        position: relative;
        z-index: 0;
    }
}

/* ==========================================
   Enhanced Why Choose Section & Custom Cards
   ========================================== */

.why-us-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 50px auto 0;
    justify-content: center;
}

.why-us-card {
    flex: 1 1 300px;
    /* Fits 3 columns on desktop */
    max-width: 380px;
    min-height: 250px;
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

/* On desktop, make the two bottom cards wider and center them */
@media (min-width: 992px) {
    .why-us-card.wide-card {
        flex: 0 1 450px;
        max-width: 480px;
    }
}

/* Circular Icon Badge inside cards */
.why-us-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1);
}

/* Card custom colors based strictly on Brand Color Guidelines */
.why-us-card.card-purple-10 {
    background: #f4f4ff;
    color: #3d3d3d;
}

.why-us-card.card-purple-10 .why-us-icon {
    background: rgba(143, 143, 255, 0.15);
}

.why-us-card.card-pink-10 {
    background: #fef8ff;
    color: #3d3d3d;
}

.why-us-card.card-pink-10 .why-us-icon {
    background: rgba(245, 189, 255, 0.18);
}

.why-us-card.card-charcoal-10 {
    background: #ececec;
    color: #3d3d3d;
}

.why-us-card.card-charcoal-10 .why-us-icon {
    background: rgba(61, 61, 61, 0.1);
}

.why-us-card.card-pink-30 {
    background: #fcebff;
    color: #3d3d3d;
}

.why-us-card.card-pink-30 .why-us-icon {
    background: rgba(245, 189, 255, 0.25);
}

.why-us-card.card-purple-30 {
    background: #ddddff;
    color: #3d3d3d;
}

.why-us-card.card-purple-30 .why-us-icon {
    background: rgba(143, 143, 255, 0.25);
}

.why-us-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.why-us-card p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Sizing Kit Section */
.sizing-kit {
    background: var(--bg-main);
}

.sizing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 5%;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

@media (min-width: 768px) {
    .sizing-content {
        flex-direction: row;
        padding: 60px;
    }
}

.sizing-img {
    flex: 1;
    max-width: 400px;
    width: 100%;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.sizing-text {
    flex: 1;
}

.sizing-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.sizing-text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Vision & Mission Section */
.stress-management {
    background: #fff;
    padding: 100px 5% 60px;
}

.vision-mission-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 50px auto 0;
    justify-content: center;
}

.vision-mission-card {
    flex: 1 1 400px;
    max-width: 480px;
    min-height: 220px;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.vision-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.vision-mission-card.card-purple-10 {
    background: #f4f4ff;
    color: #3d3d3d;
}

.vision-mission-card.card-purple-10 .vision-mission-icon {
    background: rgba(143, 143, 255, 0.15);
    color: #8f8fff;
}

.vision-mission-card.card-pink-10 {
    background: #fef8ff;
    color: #3d3d3d;
}

.vision-mission-card.card-pink-10 .vision-mission-icon {
    background: rgba(245, 189, 255, 0.18);
    color: #f5bdff;
}

.vision-mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.vision-mission-card:hover .vision-mission-icon {
    transform: scale(1.1);
}

.vision-mission-card h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vision-mission-card p {
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Testimonials */
.testimonials {
    background: var(--bg-purple-block);
    /* Match the purple background block */
    margin: 40px 5%;
    border-radius: var(--radius-lg);
    padding: 60px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
}

.testimonial-card img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.testimonial-card:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .offset-up {
        transform: translateY(-40px);
    }
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 100px 5%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(143, 143, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 38, 135, 0.04);
    border-color: rgba(143, 143, 255, 0.3);
}

.faq-item.active {
    border-color: #8f8fff;
    box-shadow: 0 10px 30px rgba(143, 143, 255, 0.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #8f8fff;
}

.faq-question-btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(143, 143, 255, 0.08);
    color: #8f8fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-question-btn-icon {
    background: #8f8fff;
    color: #ffffff;
}

.faq-item.active .faq-question-btn-icon {
    transform: rotate(45deg);
    background: #3d3d3d;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        padding 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 30px;
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 24px;
}

/* Redesigned Final CTA */
.final-cta {
    position: relative;
    padding: 100px 5%;
    background: radial-gradient(circle at 10% 20%, rgba(143, 143, 255, 0.08) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(245, 189, 255, 0.08) 0%, transparent 45%), linear-gradient(rgb(17 17 30 / 33%), rgb(17 17 30 / 41%)), url(images/cta-bg.png);
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

/* Decorative glowing circles in background */
.final-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(143, 143, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 189, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .cta-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.cta-left-content {
    flex: 1.2;
}

.cta-right-content {
    flex: 0.8;
    display: flex;
    justify-content: center;
    width: 100%;
}

.final-cta h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.final-cta h2 span {
    color: #f5bdff;
    /* Highlight word with brand pink */
}

.final-cta-subtitle {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.25rem;
    line-height: 1.6;
}

.cta-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Style the buttons inside dark CTA section */
.cta-btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.cta-btn-call {
    background: #ffffff;
    color: #11111e;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta-btn-call:hover {
    background: #f0effe;
    color: #8f8fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Redesigned Contact Card */
.contact-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(143, 143, 255, 0.25);
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5bdff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-info-value {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

.contact-info-value strong {
    color: #fff;
}

/* Footer */
.main-footer {
    background: #3d3d3d;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 5% 40px;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.footer-brand-section {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-services {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.footer-quote {
    font-family: var(--font-primary);
    font-style: italic;
    color: #7a7a7a;
    font-size: 1.11rem;
    font-weight: 500;
    line-height: 1.6;
    padding: 36px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 680px;
    margin: 40px auto 0;
    position: relative;
}

.footer-quote::before {
    content: 'format_quote';
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3d3d3d;
    padding: 0 18px;
    color: #f5bdff;
    /* Brand Pink */
    font-size: 2.2rem;
    line-height: 1;
}


.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.link-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

.link-column a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.link-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 24px;
}

/* Animations */
@keyframes smoothMesh {
    0% {
        background-position: 100% 0%, 0% 100%, 0% 0%;
    }

    33% {
        background-position: 85% 15%, 15% 85%, 0% 0%;
    }

    66% {
        background-position: 100% 20%, 0% 80%, 0% 0%;
    }

    100% {
        background-position: 95% -5%, -5% 95%, 0% 0%;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }

    33% {
        background-position: 100% 50%;
    }

    66% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   MOBILE HAMBURGER MENU
   ============================================= */

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--text-primary);
}

.mobile-menu-btn span.material-symbols-outlined {
    font-size: 2rem;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.is-open {
    display: flex;
    opacity: 1;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 5%;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-primary);
}

.mobile-nav-cta {
    width: 100%;
    max-width: 340px;
}

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

/* --- Tablet: up to 991px --- */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .header-actions .btn-primary,
    .header-actions .btn-text {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-content h1.hero-title {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }

    .hero-content p.hero-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .stat-label {
        padding-left: 0;
    }

    .hero-image-container {
        order: 1;
        width: 100%;
        max-width: 480px;
        margin: 0 auto 20px;
    }

    .floating-card {
        display: none;
    }

    section {
        padding: 70px 5%;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* --- Mobile: up to 640px --- */
@media (max-width: 640px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-content h1.hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
    }

    .stat {
        align-items: center;
        text-align: center;
    }

    .stat-value {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 4px;
    }

    .stat-label {
        font-size: 0.78rem;
        padding-left: 0;
        text-align: center;
    }

    section {
        padding: 60px 5%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Grids → single column */
    .features-grid,
    .features-grid[style] {
        grid-template-columns: 1fr !important;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step {
        width: 100%;
        max-width: 320px;
    }

    /* About section stacks */
    .sizing-content {
        flex-direction: column !important;
    }

    .sizing-img {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 24px;
    }

    /* Final CTA */
    .final-cta {
        padding: 70px 5%;
    }

    .final-cta h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    /* CTA buttons stack on mobile */
    .cta-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-group .btn-primary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    /* Contact card full-width */
    .contact-card {
        padding: 24px 20px;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

/* =============================================
   JOIN OUR CLINICAL NETWORK SECTION
   ============================================= */
.join-network-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
    position: relative;
    overflow: hidden;
}

.network-pitch-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.network-pitch-text {
    display: flex;
    flex-direction: column;
}

.network-pitch-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.network-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.network-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.network-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.network-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(143, 143, 255, 0.12);
    /* 12% Brand Purple */
    color: #8f8fff;
    /* Brand Purple */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(143, 143, 255, 0.05);
}

.network-benefit-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.network-benefit-text p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.network-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.btn-doctor {
    background: #3d3d3d;
    /* Brand Charcoal */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

.btn-doctor:hover {
    background: #8f8fff;
    /* Brand Purple on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(143, 143, 255, 0.2);
}

.btn-nurse {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-nurse:hover {
    background: #f5bdff;
    /* Brand Pink on hover */
    border-color: #f5bdff;
    color: #3d3d3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 189, 255, 0.25);
}

/* Info Card on Right */
.network-info-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
}

.network-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(143, 143, 255, 0.08);
    border-color: rgba(143, 143, 255, 0.2);
}

.network-info-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(143, 143, 255, 0.15);
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.info-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-card-item span.icon {
    color: #0f9f6e;
    /* Green check */
    font-size: 1.4rem;
    font-weight: 600;
    flex-shrink: 0;
}

.info-card-item-text h5 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.info-card-item-text p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Timeline / Onboarding Journey Styles */
.onboarding-journey-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid rgba(143, 143, 255, 0.1);
    position: relative;
}

.onboarding-journey-container h3 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

/* Progress Tracker Bar styling */
.timeline-progress-container {
    --col-width: calc((100% - 6 * 12px) / 7);
    --gap: 12px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--gap);
    height: 32px;
    margin-bottom: 24px;
    align-items: center;
}

.timeline-progress-line-solid {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(var(--col-width) / 2);
    width: calc(var(--col-width) + var(--gap));
    height: 2.5px;
    background-color: #8f8fff;
    z-index: 1;
}

.timeline-progress-line-dotted {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(1.5 * var(--col-width) + var(--gap));
    right: calc(var(--col-width) / 2);
    height: 0;
    border-top: 2.5px dotted rgba(143, 143, 255, 0.4);
    z-index: 1;
}

.timeline-progress-nodes {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--gap);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.progress-node {
    justify-self: center;
    align-self: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e2ff;
    border: 2px solid #c8c8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px #ffffff;
    transition: all 0.3s ease;
}

.progress-node.active {
    width: 28px;
    height: 28px;
    background: #8f8fff;
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 5px #ffffff, 0 4px 10px rgba(143, 143, 255, 0.3);
}

.progress-node.active span {
    font-size: 16px;
    font-weight: 900;
}

/* Timeline Cards Deck */
.timeline-deck {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    align-items: stretch;
    margin-top: 20px;
    position: relative;
}

.timeline-step-card {
    background: #ffffff;
    /* border: 1px solid rgba(220, 220, 225, 0.85); */
    border-radius: 24px;
    padding: 32px 12px 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s ease;
}

.timeline-step-card.active {
    border: 1.5px solid rgba(143, 143, 255, 0.8);
    box-shadow: 0 10px 30px rgba(143, 143, 255, 0.12);
}

.timeline-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(143, 143, 255, 0.06);
    border-color: rgba(143, 143, 255, 0.35);
}

.timeline-step-card.active:hover {
    border-color: rgba(143, 143, 255, 1);
    box-shadow: 0 14px 32px rgba(143, 143, 255, 0.16);
}

/* Card Header Step Circle and Subtitle */
.step-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(143, 143, 255, 0.08);
    color: #8f8fff;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.timeline-step-card.active .step-num-circle {
    background: #8f8fff;
    color: #ffffff;
}

.step-num-text {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.timeline-step-card.active .step-num-text {
    color: #8f8fff;
}

/* Icons */
.timeline-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(143, 143, 255, 0.06);
    color: #8f8fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, color 0.3s ease;
}

.timeline-step-card:hover .timeline-step-icon {
    transform: scale(1.08);
    background: #8f8fff;
    color: #ffffff;
}

.timeline-step-card h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.step-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.timeline-step-desc {
    font-family: var(--font-secondary);
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.45;
    opacity: 0.85;
    margin: 0 0 24px 0;
}

/* Bottom Status badges */
.step-status-pill {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    flex-shrink: 0;
}

.step-status-pill span {
    font-size: 14px;
}

/* In Progress */
.step-status-pill.in-progress {
    color: #8f8fff;
    background: rgba(143, 143, 255, 0.08);
}

.step-status-pill.in-progress .status-dot {
    width: 6px;
    height: 6px;
    background-color: #8f8fff;
    border-radius: 50%;
    display: inline-block;
}

/* Pending */
.step-status-pill.pending {
    color: #7b7bff;
    background: rgba(143, 143, 255, 0.06);
}

/* Locked */
.step-status-pill.locked {
    color: #0f9f6e;
    background: rgba(15, 159, 110, 0.08);
}

/* Bottom Info Footer */
.onboarding-info-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 24px 32px;
    margin-top: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    align-items: stretch;
}

.onboarding-info-footer .footer-col {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-col-on-your-way {
    padding-right: 24px;
}

.footer-col-need-help {
    padding: 0 24px;
    border-left: 1px solid rgba(143, 143, 255, 0.15);
}

.onboarding-info-footer .footer-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(143, 143, 255, 0.08);
    color: #8f8fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onboarding-info-footer .footer-icon span {
    font-size: 22px;
}

.onboarding-info-footer .footer-icon.lightbulb {
    background: #ffffff;
    color: #8f8fff;
    box-shadow: 0 2px 10px rgba(143, 143, 255, 0.08);
}

.onboarding-info-footer .footer-text h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.onboarding-info-footer .footer-text p {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}

.onboarding-info-footer .support-link {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    color: #8f8fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    transition: var(--transition-fast);
}

.onboarding-info-footer .support-link:hover {
    color: #7b7bff;
}

.onboarding-info-footer .support-link:hover .arrow-symbol {
    transform: translateX(3px);
}

.onboarding-info-footer .support-link .arrow-symbol {
    transition: transform 0.2s ease;
    display: inline-block;
}

.tip-inner-box {
    background: rgba(143, 143, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    width: 100%;
    height: 100%;
    align-items: flex-start;
}

/* =============================================
   RESPONSIVE STYLES FOR ONBOARDING
   ============================================= */
@media (max-width: 1024px) {
    .network-pitch-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-progress-container {
        display: none;
    }

    .timeline-deck {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 550px;
        margin: 40px auto 0;
    }

    .timeline-step-card {
        flex-direction: row;
        text-align: left;
        width: 100%;
        gap: 20px;
        align-items: center;
        background: rgba(255, 255, 255, 0.45);
        padding: 20px 24px;
        border-radius: 20px;
        border: 1px solid rgba(143, 143, 255, 0.08);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    }

    .timeline-step-card:hover {
        transform: translateX(4px);
    }

    .step-header {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-num-text {
        margin-top: 4px;
        font-size: 0.65rem;
    }

    .timeline-step-icon {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .timeline-step-card h4 {
        margin-bottom: 2px;
        font-size: 1.05rem;
    }

    .timeline-step-desc {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .step-status-pill {
        margin-top: 0;
        margin-left: auto;
        flex-shrink: 0;
    }

    .onboarding-info-footer {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        margin-top: 36px;
    }

    .footer-col-on-your-way {
        padding-right: 0;
    }

    .footer-col-need-help {
        padding: 20px 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(143, 143, 255, 0.15);
    }
}

@media (max-width: 640px) {
    .network-pitch-text h2 {
        font-size: 2.1rem;
    }

    .network-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .network-cta-group button,
    .network-cta-group a {
        width: 100%;
        justify-content: center;
    }

    .network-info-card {
        padding: 24px 20px;
    }

    .timeline-step-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 12px;
    }

    .timeline-step-card .step-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
    }

    .timeline-step-card .step-num-circle {
        margin: 0;
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .timeline-step-card .step-num-text {
        margin-top: 0;
    }

    .timeline-step-card .timeline-step-icon {
        margin-bottom: 4px;
    }

    .timeline-step-card h4 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .timeline-step-desc {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .timeline-step-card .step-status-pill {
        margin: 4px auto 0 auto;
    }
}