/* ── Home Page Styles ── */

/* Hero */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5ff 0%, #ede7f6 60%, #f3e8ff 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15), transparent 70%);
}

.s1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.s2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.10), transparent 70%);
}

.s3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 25%;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.08), transparent 70%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin: 14px 0 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-desc em {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    width: fit-content;
}

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

.stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    flex: 0 0 500px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-card-blob {
    width: 460px;
    height: 460px;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.08), rgba(147, 51, 234, 0.12));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    position: relative;
    animation: blobMove 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes blobMove {

    0%,
    100% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }

    50% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }
}

.pill-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    padding: 30px;
}

.pill-item {
    padding: 18px 20px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
}

.p1 {
    background: linear-gradient(135deg, #6b21a8, #9333ea);
    color: #fff;
    animation-delay: 0s;
}

.p2 {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    animation-delay: 0.4s;
}

.p3 {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    animation-delay: 0.8s;
}

.p4 {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    animation-delay: 1.2s;
}

.p5 {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #fff;
    animation-delay: 1.6s;
}

.p6 {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    animation-delay: 2.0s;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    font-size: 0.85rem;
}

.hero-badge span {
    font-size: 1.6rem;
}

.hero-badge strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-badge small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Marquee */
.marquee-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--surface);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(107, 33, 168, 0.25);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feat-card {
    background: var(--surface);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feat-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(var(--c), 0.1);
    color: var(--c);
    margin-bottom: 12px;
    border: 1px solid rgba(107, 33, 168, 0.15);
    background-color: color-mix(in srgb, var(--c) 12%, transparent);
    color: var(--c);
}

.feat-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.feat-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.feat-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--surface2);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Therapy Grid */
.therapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
}

.therapy-item {
    background: var(--surface);
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.therapy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(107, 33, 168, 0.25);
}

.therapy-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.therapy-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Strip */
.contact-strip {
    background: var(--surface);
}

.strip-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

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

.strip-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.strip-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.strip-item a,
.strip-item span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.strip-item a:hover {
    color: var(--primary);
}

.strip-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* ══════════════════════════════════════
   ACHIEVEMENTS COUNTER
══════════════════════════════════════ */
.achievements-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.achievements-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.achievements-section .section-title {
    color: #fff;
}

.achievements-section .section-title span {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
}

.achievements-section .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.ach-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.ach-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ach-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.ach-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.ach-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

/* ══════════════════════════════════════
   PRODUCT CATEGORIES
══════════════════════════════════════ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cat);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cat);
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-card:hover .cat-arrow {
    transform: translateX(6px);
    color: var(--cat);
}

.cat-icon-big {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}

.cat-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.cat-card p {
    font-size: 0.88rem;
    color: var(--cat);
    font-weight: 700;
    margin-bottom: 10px;
}

.cat-examples {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px dashed var(--border);
    padding-top: 10px;
    margin-top: 10px;
    line-height: 1.5;
}

.cat-arrow {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 14px;
    transition: var(--transition);
}

.cat-all {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.04), rgba(147, 51, 234, 0.07));
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testi-card {
    background: var(--surface);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(107, 33, 168, 0.2);
}

.testi-quote {
    font-size: 3rem;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    opacity: 0.4;
}

.testi-text {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.testi-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ══════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════ */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.how-step {
    text-align: center;
    padding: 24px 20px;
    position: relative;
}

.how-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(107, 33, 168, 0.12);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.how-line {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--border));
    z-index: 0;
}

.how-line.last-line {
    display: none;
}

.how-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(107, 33, 168, 0.25);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.how-step:hover .how-icon {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 10px 28px rgba(107, 33, 168, 0.35);
}

.how-step h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   CERTIFICATIONS & TRUST
══════════════════════════════════════ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.cert-item {
    background: var(--surface);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(107, 33, 168, 0.2);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--cc) 12%, #fff);
    border: 3px solid var(--cc);
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--cc);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.cert-item h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.cert-item p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.trust-banner {
    background: linear-gradient(135deg, #f8f5ff, #ede7f6);
    border: 2px solid rgba(107, 33, 168, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
}

.trust-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-emoji {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.trust-banner-content div {
    flex: 1;
}

.trust-banner-content strong {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.trust-banner-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        min-height: auto;
        padding-top: 100px;
    }

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

    .hero-desc,
    .hero-actions {
        margin-left: auto;
        width: fit-content;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    .hero-card-blob {
        width: 280px;
        height: 280px;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .strip-divider {
        display: none;
    }
}