﻿/* 
   SheEO — Mobile-First Redesigned CSS
   Complete rewrite with clean responsive logic
   No duplicate media queries, no conflicting rules
*/

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
    --bg-cream: #FDF9F6;
    --bg-pink-soft: #FDE8ED;
    --bg-pink-light: #fce6ec;
    --bg-white: #ffffff;

    --text-dark-blue: #1C334A;
    --text-rose: #EA4876;
    --text-white: #ffffff;

    --rose-dark: #cc3662;
    --pink-light: #fad6e2;
    --pink-border: #f7cbd9;
    --pink-dark: #f0a3bd;

    --font-inter: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-caveat: 'Caveat', cursive;

    --container-max: 1200px;
    --transition: all 0.3s ease;
    --shadow-pink: 0 10px 40px rgba(234, 72, 118, 0.12);

    --glass-bg: rgba(255, 255, 255, 0.30);
    --glass-border: rgba(255, 255, 255, 0.68);
}

/* ================================================
   RESET & BASE
   ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    background-image:
        radial-gradient(circle at 80% 10%, rgba(253, 232, 237, 0.9) 0%, transparent 40%),
        radial-gradient(circle at 10% 60%, rgba(254, 247, 222, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(253, 232, 237, 0.7) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-dark-blue);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Subtle paper texture — pointer-events none so it never blocks clicks */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: 9998;
}

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

/* ================================================
   TYPOGRAPHY UTILITIES
   ================================================ */
.font-playfair {
    font-family: var(--font-playfair);
}

.font-inter {
    font-family: var(--font-inter);
}

.font-caveat {
    font-family: var(--font-caveat);
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.font-bold {
    font-weight: 800;
}

.font-normal {
    font-weight: 400;
}

.line-height-tight {
    line-height: 1.1;
}

.line-height-relaxed {
    line-height: 1.8;
}

.text-rose {
    color: var(--text-rose);
}

.text-dark-blue {
    color: var(--text-dark-blue);
}

.text-white {
    color: var(--text-white);
}

.text-pink-dark {
    color: var(--pink-dark);
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-md {
    font-size: 1.125rem;
}

.text-lg {
    font-size: 1.25rem;
}

.text-xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 2.5rem;
}

.text-4xl {
    font-size: 3.5rem;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hover-text-rose:hover {
    color: var(--text-rose) !important;
}

.hover-text-dark:hover {
    color: var(--text-dark-blue) !important;
}

.hover-bg-pink-light:hover {
    background-color: var(--pink-light) !important;
}

.hover-opacity-100:hover {
    opacity: 1;
}

/* ================================================
   COLOR / BG UTILITIES
   ================================================ */
.bg-cream {
    background-color: var(--bg-cream);
}

.bg-pink-light {
    background-color: var(--pink-light);
}

.bg-pink-soft {
    background-color: var(--bg-pink-soft);
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-transparent {
    background-color: transparent;
}

.bg-dark-blue {
    background-color: var(--text-dark-blue);
}

.shadow-pink {
    box-shadow: var(--shadow-pink);
}

/* ================================================
   BORDER UTILITIES
   ================================================ */
.border {
    border: 1px solid var(--pink-dark);
}

.border-t {
    border-top: 1px solid var(--pink-border);
}

.border-b {
    border-bottom: 1px solid var(--pink-border);
}

.border-y {
    border-top: 1px solid var(--pink-border);
    border-bottom: 1px solid var(--pink-border);
}

.border-l {
    border-left: 2px solid var(--pink-dark);
}

.border-none {
    border: none;
}

.border-pink-light {
    border-color: var(--pink-border);
}

.border-pink-dark {
    border-color: var(--pink-dark);
}

.border-white {
    border-color: var(--bg-white);
}

/* ================================================
   SPACING UTILITIES
   ================================================ */
.m-0 {
    margin: 0;
}

.mt-xs {
    margin-top: 8px;
}

.mt-sm {
    margin-top: 16px;
}

.mt-md {
    margin-top: 24px;
}

.mt-lg {
    margin-top: 32px;
}

.mt-xl {
    margin-top: 48px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-xs {
    margin-bottom: 8px;
}

.mb-sm {
    margin-bottom: 16px;
}

.mb-md {
    margin-bottom: 24px;
}

.mb-lg {
    margin-bottom: 32px;
}

.mb-xl {
    margin-bottom: 48px;
}

.ml-md {
    margin-left: 24px;
}

.ml-lg {
    margin-left: 32px;
}

.mr-md {
    margin-right: 24px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-0 {
    padding: 0;
}

.p-xs {
    padding: 4px;
}

.p-sm {
    padding: 8px;
}

.p-md {
    padding: 24px;
}

.p-xl {
    padding: 40px;
}

.py-xs {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-sm {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-md {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-lg {
    padding-top: 48px;
    padding-bottom: 48px;
}

.py-xl {
    padding-top: 56px;
    padding-bottom: 56px;
}

.py-xxl {
    padding-top: 80px;
    padding-bottom: 80px;
}

.px-sm {
    padding-left: 16px;
    padding-right: 16px;
}

.px-md {
    padding-left: 24px;
    padding-right: 24px;
}

.px-lg {
    padding-left: 32px;
    padding-right: 32px;
}

.px-xl {
    padding-left: 48px;
    padding-right: 48px;
}

.pt-lg {
    padding-top: 48px;
}

.pt-xl {
    padding-top: 56px;
}

.pt-xxl {
    padding-top: 80px;
}

.pb-md {
    padding-bottom: 24px;
}

.pb-lg {
    padding-bottom: 48px;
}

.pb-xl {
    padding-bottom: 56px;
}

.pb-xxl {
    padding-bottom: 80px;
}

.pl-md {
    padding-left: 24px;
}

.pl-lg {
    padding-left: 32px;
}

.pl-xl {
    padding-left: 48px;
}

.pr-md {
    padding-right: 24px;
}

.pr-lg {
    padding-right: 48px;
}

.pr-xl {
    padding-right: 64px;
}

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.max-w-md {
    max-width: 650px;
}

.max-w-lg {
    max-width: 900px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.min-w-100 {
    min-width: 100px;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.align-start {
    align-items: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

.flex-col {
    flex-direction: column;
}

.gap-xs {
    gap: 8px;
}

.gap-sm {
    gap: 16px;
}

.gap-md {
    gap: 24px;
}

.gap-lg {
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

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

.rounded-lg {
    border-radius: 16px;
}

.rounded-xl {
    border-radius: 24px;
}

.rounded-pill {
    border-radius: 999px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.right-10 {
    right: 10%;
}

.bottom-0 {
    bottom: 0;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.pointer-events-none {
    pointer-events: none;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-100 {
    opacity: 1;
}

.hidden {
    display: none !important;
}

.cursor-pointer {
    cursor: pointer;
}

.outline-none {
    outline: none;
}

/* ================================================
   HIDDEN / VISIBLE HELPERS
   ================================================ */
.hidden-mobile {
    /* shown on desktop, hidden on mobile — toggled in media queries */
}

.mobile-only {
    display: none;
}

/* shown only on mobile */

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-inter);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.btn-primary {
    background: var(--pink-light);
    color: var(--text-rose);
}

.btn-primary:hover {
    background: var(--pink-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-pink {
    background: var(--text-rose);
    color: white;
}

.btn-primary-pink:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text-dark-blue);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-circle:hover {
    transform: scale(1.1);
    background: var(--text-rose);
}

.btn-circle-outline {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--pink-dark);
    color: var(--text-rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-circle-outline:hover {
    background: var(--text-rose);
    border-color: var(--text-rose);
    color: white;
    transform: scale(1.1);
}

/* ================================================
   ICONS
   ================================================ */
.icon-xs {
    width: 14px;
    height: 14px;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 80px;
    height: 80px;
}

.inline-icon {
    vertical-align: text-bottom;
    margin-right: 4px;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 249, 246, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(247, 203, 217, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 64px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

.logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pink-border);
}

.logo-bold {
    font-family: var(--font-playfair);
    font-weight: 700;
    color: var(--text-dark-blue);
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark-blue);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-rose);
}

/* Dropdown */
.group:hover .group-hover-block {
    display: block !important;
}

.group-hover-block {
    display: none;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--text-dark-blue);
    cursor: pointer;
    padding: 8px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
}

.mobile-link {
    transition: color 0.2s;
}

.mobile-link:hover {
    color: var(--text-rose) !important;
}

/* ================================================
   SECTION TITLES
   ================================================ */
.section-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-family: var(--font-playfair);
    line-height: 1.1;
    font-weight: 400;
}

.section-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 96px;
    /* navbar clearance */
    padding-bottom: 48px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 1.05;
    font-weight: 400;
}

.hero-desc {
    font-size: 17px;
    max-width: 680px;
    color: #4A5568;
}

/* Floating card — desktop only */
.floating-hero-card {
    position: absolute;
    top: 12%;
    right: 2%;
    width: 280px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 24px;
    text-align: left;
    font-size: 13px;
    color: var(--text-dark-blue);
    line-height: 1.6;
    font-weight: 500;
    box-shadow: var(--shadow-pink);
}

.floating-hero-card .btn-circle {
    position: absolute;
    bottom: -20px;
    right: 24px;
}

/* ================================================
   STATS / CIRCLES SECTION
   ================================================ */
.stats-section {
    position: relative;
    z-index: 1;
    padding: 48px 0;
}

/* Desktop: side-by-side flex row */
.circles-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
    flex-wrap: nowrap;
}

/* Wrapper */
.circle-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 600px;
    transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Desktop sizes */
.circle-wrap.sm {
    width: 200px;
    height: 200px;
    transform: rotate3d(1, -0.2, 0.1, 8deg);
    margin-right: -24px;
}

.circle-wrap.md {
    width: 260px;
    height: 260px;
    transform: rotate3d(1, 0.2, -0.1, 6deg);
    margin-right: -30px;
    z-index: 2;
}

.circle-wrap.xl {
    width: 380px;
    height: 380px;
    transform: rotate3d(1, -0.15, 0.05, 5deg);
    z-index: 3;
}

.circle-wrap.md2 {
    width: 260px;
    height: 260px;
    transform: rotate3d(1, 0.25, -0.1, 7deg);
    margin-left: -18px;
    z-index: 4;
}

/* Rings */
.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.ring-outer {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
        linear-gradient(135deg, rgba(234, 72, 118, 0.9) 0%, rgba(234, 72, 118, 0.3) 40%, rgba(255, 200, 215, 0.6) 70%, rgba(234, 72, 118, 0.9) 100%) border-box;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.6),
        0 6px 30px rgba(234, 72, 118, 0.22),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.ring-fill {
    inset: 8px;
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 240, 245, 0.3) 50%, rgba(250, 225, 232, 0.15) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ring-depth {
    inset: -4px;
    background: transparent;
    border: 6px solid rgba(234, 72, 118, 0.07);
    box-shadow: 0 16px 50px rgba(180, 80, 110, 0.18), 0 4px 12px rgba(234, 72, 118, 0.1);
    transform: translateZ(-8px) scaleX(0.96) scaleY(0.94);
}

.ring-shine {
    position: absolute;
    top: 8%;
    left: 12%;
    width: 38%;
    height: 22%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, transparent 65%);
    border-radius: 50%;
    transform: rotate(-30deg);
    pointer-events: none;
}

.circle-wrap:hover .ring-outer {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7), 0 18px 55px rgba(234, 72, 118, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.circle-wrap:hover {
    transform: rotate3d(0, 0, 0, 0deg) translateY(-12px) scale(1.04) !important;
    z-index: 10 !important;
}

.circle-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-num {
    font-family: var(--font-playfair);
    font-style: italic;
    font-weight: 700;
    color: var(--text-rose);
    line-height: 1;
    margin-bottom: 10px;
}

.circle-wrap.sm .stat-num {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.circle-wrap.md .stat-num {
    font-size: clamp(2.5rem, 5.5vw, 3.4rem);
}

.circle-wrap.xl .stat-num {
    font-size: clamp(3rem, 7vw, 4.4rem);
}

.circle-wrap.md2 .stat-num {
    font-size: clamp(2.4rem, 5.5vw, 3.3rem);
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark-blue);
    line-height: 1.4;
}

.circle-wrap.sm .stat-label {
    font-size: clamp(0.6rem, 1.2vw, 0.72rem);
}

.circle-wrap.md .stat-label {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
}

.circle-wrap.xl .stat-label {
    font-size: clamp(0.7rem, 1.4vw, 0.82rem);
}

.circle-wrap.md2 .stat-label {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
}

/* Count-up done pulse */
@keyframes numPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.stat-num.done {
    animation: numPulse 0.4s ease;
}

/* Circle entrance animations */
.circle-wrap {
    animation: circleIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.circle-wrap:nth-child(1) {
    animation-name: c1in;
    animation-delay: 0.05s;
}

.circle-wrap:nth-child(2) {
    animation-name: c2in;
    animation-delay: 0.18s;
}

.circle-wrap:nth-child(3) {
    animation-name: c3in;
    animation-delay: 0.32s;
}

.circle-wrap:nth-child(4) {
    animation-name: c4in;
    animation-delay: 0.46s;
}

@keyframes c1in {
    from {
        opacity: 0;
        transform: scale(0.75) translateX(-50px);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, -0.2, 0.1, 8deg);
    }
}

@keyframes c2in {
    from {
        opacity: 0;
        transform: scale(0.75) translateY(50px);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, 0.2, -0.1, 6deg);
    }
}

@keyframes c3in {
    from {
        opacity: 0;
        transform: scale(0.75) translateY(50px);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, -0.15, 0.05, 5deg);
    }
}

@keyframes c4in {
    from {
        opacity: 0;
        transform: scale(0.75) translateX(50px);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, 0.25, -0.1, 7deg);
    }
}

/* ================================================
   REASONS / GLASSMORPHISM CARDS SECTION
   ================================================ */
.reasons-section {
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.atmospheric-layers,
.silk-streaks {
    pointer-events: none;
}

/* Bokeh */
.bokeh span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    animation: bokehFloat ease-in-out infinite;
    pointer-events: none;
}

.bokeh span:nth-child(1) {
    width: 9px;
    height: 9px;
    top: 8%;
    left: 18%;
    animation-duration: 9s;
    animation-delay: 0s;
    opacity: .6;
}

.bokeh span:nth-child(2) {
    width: 5px;
    height: 5px;
    top: 22%;
    left: 78%;
    animation-duration: 12s;
    animation-delay: 2s;
    opacity: .4;
}

.bokeh span:nth-child(3) {
    width: 13px;
    height: 13px;
    top: 58%;
    left: 8%;
    animation-duration: 14s;
    animation-delay: 1s;
    opacity: .3;
}

.bokeh span:nth-child(4) {
    width: 6px;
    height: 6px;
    top: 72%;
    left: 58%;
    animation-duration: 10s;
    animation-delay: 3s;
    opacity: .55;
}

.bokeh span:nth-child(5) {
    width: 10px;
    height: 10px;
    top: 38%;
    left: 92%;
    animation-duration: 11s;
    animation-delay: .5s;
    opacity: .35;
}

.bokeh span:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 88%;
    left: 28%;
    animation-duration: 13s;
    animation-delay: 4s;
    opacity: .5;
}

.bokeh span:nth-child(7) {
    width: 8px;
    height: 8px;
    top: 14%;
    left: 52%;
    animation-duration: 8s;
    animation-delay: 1.5s;
    opacity: .45;
}

.bokeh span:nth-child(8) {
    width: 11px;
    height: 11px;
    top: 64%;
    left: 82%;
    animation-duration: 15s;
    animation-delay: 2.5s;
    opacity: .3;
}

.bokeh span:nth-child(9) {
    width: 5px;
    height: 5px;
    top: 4%;
    left: 88%;
    animation-duration: 7s;
    animation-delay: 3.5s;
    opacity: .6;
}

.bokeh span:nth-child(10) {
    width: 15px;
    height: 15px;
    top: 92%;
    left: 62%;
    animation-duration: 16s;
    animation-delay: .8s;
    opacity: .25;
}

.bokeh span:nth-child(11) {
    width: 7px;
    height: 7px;
    top: 32%;
    left: 40%;
    animation-duration: 10s;
    animation-delay: 2.2s;
    opacity: .4;
}

.bokeh span:nth-child(12) {
    width: 4px;
    height: 4px;
    top: 76%;
    left: 14%;
    animation-duration: 9s;
    animation-delay: 1.8s;
    opacity: .5;
}

@keyframes bokehFloat {

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

    50% {
        transform: translateY(-28px) scale(1.3);
    }
}

/* Cards Grid */
.cards-scene {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    perspective: 1400px;
    perspective-origin: 50% 30%;
    margin-top: 40px;
}

.cw {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cw:nth-child(1) {
    margin-top: 0;
    transform: rotate3d(1, -0.4, 0.15, 7deg) rotateZ(-3deg);
}

.cw:nth-child(2) {
    margin-top: 60px;
    transform: rotate3d(1, 0.5, -0.12, 6deg) rotateZ(2.5deg);
}

.cw:nth-child(3) {
    margin-top: -10px;
    transform: rotate3d(1, -0.35, 0.2, 7.5deg) rotateZ(-2.8deg);
}

.cw:nth-child(4) {
    margin-top: 28px;
    transform: rotate3d(1, 0.4, -0.1, 5.5deg) rotateZ(2deg);
}

.cw:nth-child(5) {
    margin-top: 0;
    grid-column: 1;
    transform: rotate3d(1, -0.3, 0.15, 6.5deg) rotateZ(-2deg);
}

/* Card entrance animations */
.cw:nth-child(1) {
    animation: card1in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.cw:nth-child(2) {
    animation: card2in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.cw:nth-child(3) {
    animation: card3in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.31s both;
}

.cw:nth-child(4) {
    animation: card4in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

.cw:nth-child(5) {
    animation: card5in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.57s both;
}

@keyframes card1in {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.88);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, -0.4, 0.15, 7deg) rotateZ(-3deg);
    }
}

@keyframes card2in {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.88);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, 0.5, -0.12, 6deg) rotateZ(2.5deg);
    }
}

@keyframes card3in {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.88);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, -0.35, 0.2, 7.5deg) rotateZ(-2.8deg);
    }
}

@keyframes card4in {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.88);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, 0.4, -0.1, 5.5deg) rotateZ(2deg);
    }
}

@keyframes card5in {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.88);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, -0.3, 0.15, 6.5deg) rotateZ(-2deg);
    }
}

@media (hover: hover) {
    .cw:nth-child(1):hover {
        transform: rotate3d(1, -0.4, 0.15, 7deg) rotateZ(-3deg) translateY(-10px) scale(1.04);
    }

    .cw:nth-child(2):hover {
        transform: rotate3d(1, 0.5, -0.12, 6deg) rotateZ(2.5deg) translateY(-10px) scale(1.04);
    }

    .cw:nth-child(3):hover {
        transform: rotate3d(1, -0.35, 0.2, 7.5deg) rotateZ(-2.8deg) translateY(-10px) scale(1.04);
    }

    .cw:nth-child(4):hover {
        transform: rotate3d(1, 0.4, -0.1, 5.5deg) rotateZ(2deg) translateY(-10px) scale(1.04);
    }

    .cw:nth-child(5):hover {
        transform: rotate3d(1, -0.3, 0.15, 6.5deg) rotateZ(-2deg) translateY(-10px) scale(1.04);
    }
}

/* Glass Card */
.glass-card {
    position: relative;
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-radius: 22px;
    padding: 28px 30px 26px;
    text-align: left;
    backdrop-filter: blur(24px) saturate(1.6) brightness(1.09);
    -webkit-backdrop-filter: blur(24px) saturate(1.6) brightness(1.09);
    box-shadow:
        0 14px 45px rgba(175, 90, 115, 0.24),
        0 2px 0 rgba(255, 255, 255, 0.88) inset,
        0 -2px 0 rgba(200, 140, 160, 0.18) inset,
        3px 0 0 rgba(255, 255, 255, 0.35) inset;
    overflow: hidden;
    height: 100%;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -35px;
    width: 160px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, transparent 55%);
    border-radius: 50%;
    pointer-events: none;
}

.glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 48%;
    background: linear-gradient(135deg, transparent 40%, rgba(215, 145, 165, 0.13));
    border-radius: 0 0 22px 0;
    pointer-events: none;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #edaabf 0%, #c2637a 100%);
    color: #fff;
    font-family: var(--font-playfair);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 6px 22px;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(194, 99, 122, 0.42), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.glass-card-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.glass-card-body {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: var(--text-dark-blue);
    line-height: 1.72;
    margin-bottom: 16px;
}

.glass-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-inter);
    font-size: 0.78rem;
    font-weight: 700;
    color: #c2637a;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap 0.25s ease, color 0.25s ease;
}

.glass-card-link:hover {
    gap: 12px;
    color: var(--text-dark-blue);
}

/* ================================================
   FOUNDER SECTION
   ================================================ */
.founder-section {
    padding: 64px 0;
}

.founder-circle-img {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--pink-dark);
    padding: 10px;
    background: white;
    box-shadow: var(--shadow-pink);
}

.founder-content {
    padding-left: 16px;
}

.greeting-handrawn {
    font-family: var(--font-caveat);
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--text-rose);
    transform: rotate(-10deg);
    line-height: 1;
    display: inline-block;
    margin-top: -10px;
}

.founder-greeting {
    font-family: var(--font-playfair);
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    color: var(--text-dark-blue);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0.9;
    margin-left: -4px;
}

/* ================================================
   EVENTS SECTION
   ================================================ */
.events-section {
    padding: 48px 0;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--pink-dark);
    border-radius: 16px;
    transition: background 0.3s;
}

.event-row:hover {
    background: rgba(255, 255, 255, 0.45);
}

.event-date {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 90px;
    flex-shrink: 0;
}

.date-num {
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    line-height: 0.9;
    font-weight: 400;
    color: var(--text-rose);
}

.event-details {
    flex-grow: 1;
    padding: 0 16px;
}

.event-title {
    font-family: var(--font-playfair);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-rose);
    margin-bottom: 6px;
    font-weight: 400;
}

.event-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    letter-spacing: 0.05em;
}

/* Badge */
.badge {
    border: 1px solid var(--pink-dark);
    background: var(--pink-light);
    color: var(--text-rose);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ================================================
   PARTNERSHIP SECTION
   ================================================ */
.partnership-section {
    padding: 64px 0;
}

.underline-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--text-dark-blue);
    background: transparent;
    padding: 14px 0;
    font-family: var(--font-inter);
    color: var(--text-dark-blue);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s;
}

.underline-input::placeholder {
    color: rgba(28, 51, 74, 0.4);
    font-style: italic;
    font-family: var(--font-playfair);
    font-weight: 400;
    font-size: 17px;
}

.underline-input:focus {
    border-bottom-color: var(--text-rose);
    border-bottom-width: 2px;
}

/* ================================================
   TESTIMONIAL SECTION
   ================================================ */
.testimonial-section {
    padding: 48px 0;
}

.testimo-desc {
    font-size: 0.9rem;
    line-height: 1.9;
}

/* ================================================
   FAQS SECTION
   ================================================ */
.faqs-section {
    padding: 64px 0 48px;
}

.accordion-item {
    transition: background 0.3s;
}

.accordion-header {
    transition: opacity 0.3s;
}

.accordion-content {
    transition: all 0.3s ease;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    padding: 64px 0 32px;
}

.ig-slider-container {
    position: relative;
    padding: 0 56px;
    max-width: 1200px;
    margin: 0 auto;
}

.ig-slider-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    gap: 20px;
}

.ig-slider-track::-webkit-scrollbar {
    display: none;
}

.ig-slide {
    flex: 0 0 clamp(260px, 55vw, 340px);
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
}

.ig-embed-wrapper {
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f7, #fffdf8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ig-embed-wrapper blockquote.instagram-media {
    background: transparent !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--pink-dark);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--pink-dark);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===========================================================
   ████████████████████ RESPONSIVE BREAKPOINTS ████████████████
   Single-pass, no conflicts, mobile-first approach
   =========================================================== */

/* ── TABLET (≤ 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {

    .container {
        padding: 0 20px;
    }

    /* Hide desktop-only decorative elements */
    .hidden-mobile,
    .floating-hero-card,
    .reasons-images {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .menu-btn {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    /* Grid → single column */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Hero */
    .hero {
        padding-top: 88px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 7vw, 3.8rem);
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-desc br {
        display: none;
    }

    /* Stats — 2 × 2 grid on tablet */
    .circles-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 32px 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .circle-wrap.sm,
    .circle-wrap.md,
    .circle-wrap.xl,
    .circle-wrap.md2 {
        width: 100% !important;
        max-width: 260px;
        height: 240px !important;
        margin: 0 auto !important;
        transform: rotate3d(1, 0, 0.05, 4deg) rotateZ(0deg) !important;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
    }

    /* Cards stay 2-col on tablet */
    .cw:nth-child(2) {
        margin-top: 28px;
    }

    /* Founder */
    .founder-section .grid-2 {
        gap: 32px;
    }

    .founder-circle-img {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .founder-content {
        padding-left: 0;
        text-align: center;
    }

    .founder-greeting-container {
        justify-content: center;
        padding-left: 0 !important;
    }

    .founder-content .section-tag {
        text-align: center;
        padding-left: 0 !important;
    }

    .founder-content .border-l {
        border-left: none;
        padding-left: 0;
    }

    .founder-content .text-dark-blue {
        text-align: left;
    }

    /* Events */
    .event-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .event-details {
        padding: 0;
    }

    /* Partnership */
    .partner-left {
        padding-right: 0;
    }

    .partner-right {
        padding-left: 0;
    }

    /* Footer */
    .ig-slider-container {
        padding: 0 40px;
    }

    .footer-bottom-grid {
        gap: 32px;
    }
}

/* ── MOBILE (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    /* Brand logo */
    .brand-logo {
        height: 58px;
    }

    /* Navbar */
    .navbar {
        padding: 14px 0;
    }

    .mobile-menu {
        top: 74px;
    }

    /* Section title */
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    /* Hero — clean, no stacking padding */
    .hero {
        padding-top: 88px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero .container {
        padding-top: 0 !important;
    }

    /* Stats — single column, compact */
    .stats-section {
        padding: 32px 0;
    }

    .circles-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 420px;
        padding: 20px 0;
    }

    .circle-wrap.sm,
    .circle-wrap.md,
    .circle-wrap.xl,
    .circle-wrap.md2 {
        max-width: 185px;
        height: 185px !important;
    }

    .stat-num {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.6rem !important;
        padding: 0 12px;
    }

    /* Cards → single column */
    .cards-scene {
        grid-template-columns: 1fr;
        gap: 20px;
        perspective: 800px;
        perspective-origin: 50% 50%;
        margin-top: 28px;
    }

    .cw:nth-child(n) {
        margin-top: 0 !important;
        grid-column: 1 !important;
    }

    .cw:nth-child(odd) {
        transform: rotate3d(1, -0.2, 0.1, 4deg) rotateZ(-1.5deg) !important;
    }

    .cw:nth-child(even) {
        transform: rotate3d(1, 0.2, -0.1, 4deg) rotateZ(1.5deg) !important;
    }

    @media (hover: hover) {
        .cw:nth-child(odd):hover {
            transform: rotate3d(1, -0.2, 0.1, 4deg) rotateZ(-1.5deg) translateY(-8px) scale(1.03) !important;
        }

        .cw:nth-child(even):hover {
            transform: rotate3d(1, 0.2, -0.1, 4deg) rotateZ(1.5deg) translateY(-8px) scale(1.03) !important;
        }
    }

    .glass-card {
        padding: 22px 20px 20px;
    }

    .glass-badge {
        font-size: 1.1rem;
        padding: 5px 18px;
    }

    /* Founder */
    .founder-section {
        padding: 48px 0;
    }

    .founder-circle-img {
        width: 240px;
        height: 240px;
    }

    .greeting-handrawn {
        font-size: clamp(2.8rem, 9vw, 3.5rem);
    }

    .founder-greeting {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    /* Events */
    .events-section {
        padding: 36px 0;
    }

    .events-section .flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 12px;
    }

    .event-date {
        min-width: unset;
    }

    .date-num {
        font-size: 2.2rem;
    }

    .event-details {
        padding: 0;
        width: 100%;
    }

    .event-meta {
        gap: 8px;
        font-size: 0.75rem;
    }

    .btn-circle-outline {
        align-self: flex-end;
    }

    /* Partnership */
    .partnership-section {
        padding: 48px 0;
    }

    .partner-left {
        padding-right: 0;
    }

    .partner-right {
        padding-left: 0;
    }

    /* Testimonial */
    .testimonial-section .grid-2 {
        gap: 32px;
    }

    .testimo-text {
        padding-right: 0;
    }

    .testimo-video {
        padding-left: 0;
        width: 100%;
        overflow: hidden;
    }

    .testimo-video blockquote.instagram-media {
        min-width: unset !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* FAQs */
    .faqs-section {
        padding: 48px 0 36px;
    }

    .faqs-section h2 {
        margin-left: 0 !important;
        text-align: center !important;
        font-size: 2.2rem !important;
    }

    .accordion-header {
        font-size: 0.95rem;
        padding: 14px 16px !important;
    }

    .accordion-content {
        padding: 0 16px 14px !important;
    }

    .accordion-content p {
        font-size: 0.85rem;
    }

    /* Footer */
    .site-footer {
        padding: 48px 0 24px;
    }

    .site-footer h2 {
        font-size: 2rem !important;
    }

    .ig-slider-container {
        padding: 0 12px;
    }

    .ig-slide {
        flex: 0 0 82vw;
        max-width: 340px;
    }

    .ig-slider-btn {
        display: flex !important;
        background-color: var(--pink-dark) !important;
        width: 36px !important;
        height: 36px !important;
        opacity: 0.9 !important;
    }

    .ig-slider-btn i {
        width: 20px !important;
        height: 20px !important;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .contact-col {
        padding-left: 0 !important;
        text-align: left !important;
    }

    .contact-col .flex-center {
        justify-content: flex-start !important;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-copyright .flex {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* Global spacing reduction on mobile */
    .py-xxl {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .py-xl {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .py-lg {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .pt-xxl {
        padding-top: 48px;
    }

    .pt-xl {
        padding-top: 36px;
    }

    .pb-xxl {
        padding-bottom: 48px;
    }
}

/* ── SMALL MOBILE (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {

    .container {
        padding: 0 14px;
    }

    .brand-logo {
        height: 50px;
    }

    .navbar {
        padding: 12px 0;
    }

    .mobile-menu {
        top: 70px;
    }

    .hero {
        padding-top: 86px;
        padding-bottom: 32px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
        line-height: 1.25;
    }

    .hero-desc {
        font-size: 13px;
    }

    .section-title {
        font-size: clamp(1.5rem, 7.5vw, 1.9rem);
    }

    /* Stats — still 2-col but very compact */
    .circles-row {
        gap: 12px;
        max-width: 360px;
    }

    .circle-wrap.sm,
    .circle-wrap.md,
    .circle-wrap.xl,
    .circle-wrap.md2 {
        max-width: 160px;
        height: 160px !important;
    }

    .stat-num {
        font-size: 1.6rem !important;
    }

    .stat-label {
        font-size: 0.55rem !important;
        padding: 0 8px;
    }

    .glass-card {
        padding: 18px 16px 16px;
    }

    .glass-badge {
        font-size: 1rem;
        padding: 4px 14px;
    }

    .glass-card-title {
        font-size: 0.85rem;
    }

    .glass-card-body {
        font-size: 0.85rem;
    }

    .founder-circle-img {
        width: 200px;
        height: 200px;
    }

    .date-num {
        font-size: 2rem;
    }

    .event-title {
        font-size: 1.1rem !important;
    }

    .btn-lg {
        padding: 13px 28px;
        font-size: 11px;
    }

    .faqs-section h2 {
        font-size: 1.9rem !important;
    }

    .accordion-header {
        font-size: 0.88rem;
        padding: 12px 12px !important;
    }

    .ig-slide {
        flex: 0 0 88vw;
    }

    .footer-copyright .flex {
        gap: 10px;
    }

    .py-xxl {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .py-xl {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

/* ── TINY PHONES (≤ 375px) ──────────────────────────────── */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .brand-logo {
        height: 46px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .circles-row {
        max-width: 300px;
        gap: 10px;
    }

    .circle-wrap.sm,
    .circle-wrap.md,
    .circle-wrap.xl,
    .circle-wrap.md2 {
        max-width: 136px;
        height: 136px !important;
    }

    .stat-num {
        font-size: 1.4rem !important;
    }

    .stat-label {
        font-size: 0.5rem !important;
    }

    .glass-badge {
        font-size: 0.9rem;
        padding: 4px 12px;
    }

    .accordion-header {
        font-size: 0.82rem;
        padding: 11px 10px !important;
    }
}