/* ============================================================
   MEDHOME MEDICALS — Design System
   Premium Modern UI/UX | 2025
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--dark-900); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* === CSS VARIABLES === */
:root {
    --red-50: #FFF1F2;
    --red-100: #FFE4E6;
    --red-200: #FECDD3;
    --red-300: #FDA4AF;
    --red-400: #FB7185;
    --red-500: #EF4444;
    --red-600: #DC2626;
    --red-700: #B91C1C;
    --red-800: #991B1B;

    --dark-950: #0C0A09;
    --dark-900: #1C1917;
    --dark-800: #292524;
    --dark-700: #44403C;
    --dark-500: #78716C;
    --dark-400: #A8A29E;
    --dark-300: #D6D3D1;
    --dark-200: #E7E5E4;
    --dark-100: #F5F5F4;
    --dark-50: #FAFAF9;
    --white: #FFFFFF;

    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5A;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);

    --text-display: clamp(3rem, 6vw, 5.5rem);
    --text-h1: clamp(2.5rem, 5vw, 4rem);
    --text-h2: clamp(1.8rem, 3.5vw, 2.8rem);
    --text-h3: clamp(1.2rem, 2vw, 1.5rem);
    --text-body: clamp(0.95rem, 1.2vw, 1.1rem);
    --text-small: 0.85rem;
    --text-xs: 0.75rem;

    --container: 1400px;
    --section-pad: clamp(80px, 10vw, 140px);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* === LAYOUT === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}
.section {
    padding: var(--section-pad) 0;
}

/* === CUSTOM CURSOR === */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--red-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.hover {
    width: 48px; height: 48px;
    background: rgba(239, 68, 68, 0.15);
    mix-blend-mode: normal;
}
@media (hover: none) { .cursor-dot { display: none !important; } }

/* ============================================================
   ECG HEARTBEAT LINE LOADER
   ============================================================ */
.loader {
    position: fixed; inset: 0;
    background: #f5f5f5;
    z-index: 10000;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.loader-ecg {
    width: 200px; height: 80px;
}
.loader-ecg svg {
    width: 100%; height: 100%;
    overflow: visible;
}
.ecg-line {
    fill: none;
    stroke: var(--red-500);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px var(--red-500)) drop-shadow(0 0 12px rgba(239, 68, 68, 0.3));
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: ecgDraw 1.8s ease-in-out infinite;
}
.ecg-glow-dot {
    fill: var(--red-400);
    filter: drop-shadow(0 0 8px var(--red-500));
    opacity: 0;
    animation: ecgDot 1.8s ease-in-out infinite;
}
@keyframes ecgDraw {
    0% { stroke-dashoffset: 320; }
    80% { stroke-dashoffset: 0; }
    90%, 100% { stroke-dashoffset: 0; }
}
@keyframes ecgDot {
    0% { opacity: 1; }
    80% { opacity: 1; }
    90%, 100% { opacity: 0; }
}

/* ============================================================
   GLASSMORPHIC NAVIGATION
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 80px;
    display: flex; align-items: center;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}
.nav .container {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo img {
    height: 36px;
    transition: opacity 0.3s;
}
.nav-logo .logo-dark { display: none; }
.nav.scrolled .nav-logo .logo-light { display: none; }
.nav.scrolled .nav-logo .logo-dark { display: block; }

.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--red-500);
    border-radius: 50%;
    opacity: 0; transition: opacity 0.3s;
}
.nav-link.active::after { opacity: 1; }
.nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav.scrolled .nav-link { color: var(--dark-700); }
.nav.scrolled .nav-link:hover { color: var(--red-500); background: var(--red-50); }
.nav.scrolled .nav-link.active::after { opacity: 1; }

.nav-cta {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 24px;
    background: var(--red-500);
    color: var(--white);
    border-radius: var(--radius-full);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}
.nav-cta:hover {
    background: var(--red-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.4);
}

/* Hamburger */
.nav-burger {
    display: none;
    width: 28px; height: 20px;
    flex-direction: column; justify-content: space-between;
    cursor: pointer; z-index: 1100;
    position: relative;
}
.nav-burger span {
    display: block; width: 100%; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}
.nav.scrolled .nav-burger span { background: var(--dark-900); }
.nav-burger.open span { background: var(--dark-900) !important; }
.nav-burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Sliding sidebar mobile nav */
.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; bottom: 0; right: 0;
    width: 300px; max-width: 85vw;
    background: #f5f5f5;
    z-index: 1050;
    display: flex; flex-direction: column;
    padding: 80px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark-900); font-size: 1.1rem;
    cursor: pointer; transition: all 0.25s var(--ease);
}
.mobile-menu-close:hover {
    background: var(--red-500); border-color: var(--red-500); color: var(--white);
}
.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-900);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.2s;
}
.mobile-menu.open a {
    opacity: 1; transform: translateX(0);
}
.mobile-menu.open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu a:hover { color: var(--red-500); }
.mobile-menu-btns {
    display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 28px;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.3s var(--ease) 0.25s, transform 0.3s var(--ease) 0.25s;
}
.mobile-menu.open .mobile-menu-btns { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.35s var(--ease);
    cursor: pointer; border: none;
    position: relative;
}
.btn-primary {
    background: var(--red-500); color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}
.btn-primary:hover {
    background: var(--red-600);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.35);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white); color: var(--dark-900);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark-300);
    color: var(--dark-900);
}
.btn-outline-dark:hover {
    border-color: var(--red-500);
    color: var(--red-500);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: var(--whatsapp); color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 22px; font-size: 0.82rem;
}

/* Magnetic button wrapper */
[data-magnetic] {
    transition: transform 0.3s var(--ease);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-overline {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red-500);
    margin-bottom: 16px;
}
.sec-overline::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--red-500);
}
.sec-overline.light { color: var(--red-300); }
.sec-overline.light::before { background: var(--red-300); }
.sec-title {
    font-size: var(--text-h1);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.sec-title em {
    font-style: normal; color: var(--red-500);
}
.sec-desc {
    font-size: var(--text-body);
    color: var(--dark-500);
    max-width: 560px;
    line-height: 1.8;
}
.sec-head { margin-bottom: 64px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin: 0 auto; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
    min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: var(--dark-950);
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(239, 68, 68, 0.06) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite alternate;
}
.page-hero .breadcrumb {
    font-size: var(--text-small);
    color: var(--dark-500);
    margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--dark-400); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--red-400); }
.page-hero h1 {
    font-size: var(--text-h1);
    color: var(--white);
    font-weight: 800;
}
.page-hero p {
    font-size: var(--text-body);
    color: var(--dark-400);
    margin-top: 12px;
    max-width: 480px;
    margin-left: auto; margin-right: auto;
}

/* Decorative ECG in hero bg */
.hero-ecg-bg {
    position: absolute; bottom: 20%; left: 0; right: 0;
    height: 60px;
    opacity: 0.04;
    overflow: visible;
}
.hero-ecg-bg svg { width: 100%; height: 100%; }
.hero-ecg-bg .ecg-line {
    stroke: var(--red-400);
    stroke-width: 2;
    filter: none;
    animation: ecgDraw 4s ease-in-out infinite;
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: var(--dark-950);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(239, 68, 68, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(239, 68, 68, 0.04) 0%, transparent 70%);
    animation: meshShift 10s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-2%, 2%); }
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 820px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red-300);
    margin-bottom: 28px;
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: var(--radius-full);
}
.hero-tag .pulse-dot {
    width: 6px; height: 6px;
    background: var(--red-500);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.hero h1 {
    font-size: var(--text-display);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}
.hero h1 .text-glow {
    color: var(--red-400);
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}
/* Text split animation */
.hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero h1 .word.visible {
    opacity: 1; transform: translateY(0);
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--dark-400);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-btns {
    display: flex; gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex; gap: 48px; justify-content: center;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat span {
    font-size: var(--text-xs);
    color: var(--dark-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-section {
    background: var(--red-500);
    padding: 0;
    overflow: hidden;
    transform: skewY(-1.5deg);
    margin: -20px 0;
    position: relative;
    z-index: 5;
}
.marquee-section .marquee-inner-wrap {
    transform: skewY(1.5deg);
    padding: 18px 0;
}
.marquee-row {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}
.marquee-track {
    display: inline-flex; gap: 48px;
    animation: marqueeScroll 30s linear infinite;
    padding-right: 48px;
}
.marquee-row.reverse .marquee-track {
    animation-direction: reverse;
    animation-duration: 35s;
}
.marquee-item {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.marquee-item i { font-size: 0.8rem; opacity: 0.7; }
.marquee-sep {
    display: inline-flex; align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.5rem;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   BENTO GRID (Why Choose Us)
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.bento-card {
    background: var(--white);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
/* Feature card (red gradient) */
.bento-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-700) 100%);
    border-color: transparent;
    color: var(--white);
}
.bento-card.featured .bento-ic { background: rgba(255, 255, 255, 0.15); }
.bento-card.featured .bento-ic i { color: var(--white); }
.bento-card.featured p { color: rgba(255, 255, 255, 0.8); }

/* Dark card */
.bento-card.dark {
    grid-row: span 2;
    background: var(--dark-900);
    border-color: transparent;
    color: var(--white);
    display: flex; flex-direction: column; justify-content: center;
}
.bento-card.dark .bento-ic { background: rgba(239, 68, 68, 0.15); }
.bento-card.dark .bento-ic i { color: var(--red-400); }
.bento-card.dark p { color: var(--dark-400); }

.bento-ic {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--red-50);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s var(--ease);
}
.bento-ic i { font-size: 1.3rem; color: var(--red-500); transition: 0.35s; }
.bento-card:not(.featured):not(.dark):hover .bento-ic {
    background: var(--red-500);
}
.bento-card:not(.featured):not(.dark):hover .bento-ic i {
    color: var(--white);
}
.bento-card h3 {
    font-size: var(--text-h3);
    font-weight: 700;
    margin-bottom: 8px;
}
.bento-card p {
    font-size: var(--text-small);
    color: var(--dark-500);
    line-height: 1.7;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-visual-inner {
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-700) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    display: flex; align-items: center; justify-content: center;
    min-height: 400px;
    clip-path: polygon(0 0, 100% 3%, 97% 100%, 0% 95%);
}
.about-visual-inner img { height: 52px; }
.about-badge {
    position: absolute;
    bottom: -16px; left: -16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    transform: rotate(-3deg);
}
.about-badge strong {
    display: block; font-size: 2.2rem; font-weight: 800; color: var(--red-500);
}
.about-badge span {
    font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--dark-500);
}
.about-text p {
    font-size: var(--text-body);
    color: var(--dark-500);
    line-height: 1.8;
    margin-bottom: 20px;
}
.check-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0;
}
.check-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--red-100);
    font-size: var(--text-small);
    font-weight: 600;
    transition: all 0.25s var(--ease);
    background: var(--dark-50);
}
.check-item:hover {
    border-left-color: var(--red-500);
    background: var(--red-50);
    transform: translateX(4px);
}
.check-item i { color: var(--red-500); font-size: 0.85rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.srv-card {
    background: var(--white);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.srv-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-500), var(--red-300));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.srv-card:hover::after { transform: scaleX(1); }
.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.srv-card.featured-srv {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
    border-color: transparent;
}
.srv-card.featured-srv .srv-ic { background: rgba(255, 255, 255, 0.15); }
.srv-card.featured-srv .srv-ic i { color: var(--white); }
.srv-card.featured-srv p { color: rgba(255, 255, 255, 0.8); }
.srv-card.featured-srv::after { display: none; }
.srv-ic {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--red-50);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--ease);
}
.srv-ic i { font-size: 1.3rem; color: var(--red-500); transition: 0.4s; }
.srv-card:not(.featured-srv):hover .srv-ic {
    background: var(--red-500); transform: rotate(-6deg) scale(1.1);
}
.srv-card:not(.featured-srv):hover .srv-ic i { color: var(--white); }
.srv-card h3 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.srv-card p {
    font-size: var(--text-small); color: var(--dark-500); line-height: 1.7;
}

/* ============================================================
   STATS RIBBON
   ============================================================ */
.stats-section {
    background: var(--dark-900);
    color: var(--white);
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.stat-item strong {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--red-400);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item span {
    font-size: var(--text-small);
    color: var(--dark-400);
    font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
}
.testi-card::before {
    content: '\201C';
    position: absolute; top: 24px; right: 28px;
    font-size: 5rem; font-weight: 800;
    color: var(--red-100);
    line-height: 1;
    font-family: Georgia, serif;
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}
.testi-stars {
    color: #F59E0B;
    font-size: 0.8rem;
    margin-bottom: 16px;
    display: flex; gap: 2px;
}
.testi-card blockquote {
    font-size: 0.95rem;
    color: var(--dark-700);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative; z-index: 2;
}
.testi-author {
    display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-400), var(--red-600));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 800; font-size: 1rem;
}
.testi-author strong { font-size: 0.92rem; display: block; }
.testi-author span { font-size: var(--text-xs); color: var(--dark-500); }
.testi-carousel-dots { display: none; }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-section {
    background: var(--red-500);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1), transparent 50%);
    animation: meshShift 8s ease-in-out infinite alternate;
}
.cta-section.dark-cta { background: var(--dark-900); }
.cta-inner {
    text-align: center;
    position: relative; z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-inner p {
    font-size: var(--text-body);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.7;
}
.cta-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
    position: relative;
}
.map-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--dark-950), transparent);
    z-index: 2;
    pointer-events: none;
}
.map-section iframe {
    width: 100%; height: 400px;
    border: 0; display: block;
}

/* ============================================================
   FEATURE SPLIT SECTIONS
   ============================================================ */
.feat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feat-split.reversed > :first-child { order: 2; }
.feat-split.reversed > :last-child { order: 1; }
.feat-split h2 {
    font-size: var(--text-h2); font-weight: 800; margin-bottom: 16px;
}
.feat-split h2 em { font-style: normal; color: var(--red-500); }
.feat-split > div > p {
    font-size: var(--text-body); color: var(--dark-500); line-height: 1.8; margin-bottom: 24px;
}
.feat-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem; font-weight: 500;
}
.feat-list li i { color: var(--red-500); width: 20px; text-align: center; }

.feat-visual {
    width: 100%; max-width: 380px; margin: 0 auto;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--red-50), var(--red-100));
    border-radius: var(--radius-xl);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.feat-visual i { font-size: 4rem; color: var(--red-400); opacity: 0.6; }
.feat-visual::after {
    content: '';
    position: absolute; inset: -8px;
    border: 2px dashed var(--red-200);
    border-radius: calc(var(--radius-xl) + 8px);
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 36px; left: 16.5%; right: 16.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--red-200), var(--red-500), var(--red-200));
    z-index: 0;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.step-num {
    width: 52px; height: 52px;
    margin: 0 auto 18px;
    background: var(--red-500);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 800; font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: var(--text-small); color: var(--dark-500); line-height: 1.7; }

/* ============================================================
   MVV CARDS (Mission/Vision/Values)
   ============================================================ */
.mvv-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
    background: var(--white);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}
.mvv-card.dark-card {
    background: var(--dark-900); color: var(--white); border-color: transparent;
}
.mvv-card.dark-card p { color: var(--dark-400); }
.mvv-card.dark-card .mvv-ic { background: rgba(239, 68, 68, 0.15); }
.mvv-card.dark-card .mvv-ic i { color: var(--red-400); }
.mvv-card.red-border { border-top: 3px solid var(--red-500); }
.mvv-ic {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    border-radius: var(--radius-md);
    background: var(--red-50);
    display: flex; align-items: center; justify-content: center;
    transition: 0.35s var(--ease);
}
.mvv-ic i { font-size: 1.2rem; color: var(--red-500); transition: 0.35s; }
.mvv-card:not(.dark-card):hover .mvv-ic { background: var(--red-500); }
.mvv-card:not(.dark-card):hover .mvv-ic i { color: var(--white); }
.mvv-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.mvv-card p { font-size: var(--text-small); color: var(--dark-500); line-height: 1.7; }

/* ============================================================
   TRUST NUMBERS
   ============================================================ */
.trust-section { background: var(--dark-950); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.4s var(--ease);
}
.trust-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.2);
}
.trust-card strong {
    font-size: 2.6rem; font-weight: 800;
    color: var(--red-400); display: block; margin-bottom: 6px;
}
.trust-card span {
    font-size: var(--text-small); color: var(--dark-400); font-weight: 500;
}

/* ============================================================
   FEATURE MINI GRID
   ============================================================ */
.feat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feat-mini {
    display: flex; align-items: center; gap: 14px;
    padding: 16px;
    background: var(--dark-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--dark-200);
    transition: all 0.25s var(--ease);
}
.feat-mini:hover {
    background: var(--red-50);
    border-left-color: var(--red-500);
    transform: translateX(4px);
}
.feat-mini-ic {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--red-50);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    transition: 0.35s;
}
.feat-mini:hover .feat-mini-ic { background: var(--red-500); }
.feat-mini-ic i { font-size: 1rem; color: var(--red-500); transition: 0.35s; }
.feat-mini:hover .feat-mini-ic i { color: var(--white); }
.feat-mini span { font-weight: 600; font-size: var(--text-small); }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-block {
    max-width: 720px; margin: 0 auto; text-align: center;
}
.community-block p {
    font-size: 1.1rem; color: var(--dark-500); line-height: 1.8; margin-bottom: 32px;
}

/* ============================================================
   CONTACT — INFO CARDS
   ============================================================ */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -56px;
    position: relative; z-index: 10;
}
.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}
.info-card-ic {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    background: var(--red-50);
    display: flex; align-items: center; justify-content: center;
    transition: 0.35s;
}
.info-card-ic i { font-size: 1.2rem; color: var(--red-500); transition: 0.35s; }
.info-card:hover .info-card-ic { background: var(--red-500); }
.info-card:hover .info-card-ic i { color: var(--white); }
.info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: var(--text-small); color: var(--dark-500); line-height: 1.7; }
.info-card a { color: var(--red-500); font-weight: 600; }
.info-card a:hover { color: var(--red-700); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}
.form-box {
    background: var(--white);
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.form-box > p { color: var(--dark-500); font-size: var(--text-small); margin-bottom: 28px; }
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
}
.form-grp { position: relative; margin-bottom: 14px; }
.form-grp label {
    position: absolute;
    top: 14px; left: 16px;
    font-size: 0.88rem; font-weight: 500;
    color: var(--dark-400);
    pointer-events: none;
    transition: all 0.25s var(--ease);
    background: var(--white);
    padding: 0 4px;
}
.form-grp input,
.form-grp select,
.form-grp textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--dark-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--dark-900);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--white);
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
    border-color: var(--red-500);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.06);
}
.form-grp input:focus + label,
.form-grp input:not(:placeholder-shown) + label,
.form-grp select:focus + label,
.form-grp select:not([value=""]) + label,
.form-grp textarea:focus + label,
.form-grp textarea:not(:placeholder-shown) + label {
    top: -8px; left: 12px;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--red-500);
}
.form-grp textarea { min-height: 110px; resize: vertical; }
.form-submit {
    width: 100%; padding: 16px;
    background: var(--red-500); color: var(--white);
    border: none; border-radius: var(--radius-full);
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover {
    background: var(--red-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(239, 68, 68, 0.3);
}

/* Sidebar */
.sidebar h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.sidebar > p { color: var(--dark-500); font-size: var(--text-small); margin-bottom: 28px; }
.sb-item {
    display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start;
}
.sb-ic {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--red-50);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
}
.sb-ic i { font-size: 1rem; color: var(--red-500); }
.sb-text h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.sb-text p { font-size: var(--text-small); color: var(--dark-500); }
.sb-text a { color: var(--red-500); font-weight: 500; }
.sb-text a:hover { color: var(--red-700); }

/* ============================================================
   WHATSAPP ORDER SECTION
   ============================================================ */
.wa-section { text-align: center; }
.wa-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: waPulse 2s ease-in-out infinite;
}
.wa-icon i { font-size: 2.2rem; color: var(--white); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}
.wa-steps {
    display: flex; justify-content: center; gap: 32px;
    margin: 40px 0; flex-wrap: wrap;
}
.wa-step { text-align: center; max-width: 180px; }
.wa-step-n {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    background: var(--red-50);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: var(--red-500); font-size: 1.1rem;
}
.wa-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.wa-step p { font-size: var(--text-xs); color: var(--dark-500); }
.wa-arrow {
    display: flex; align-items: center;
    color: var(--dark-300); font-size: 1rem; padding-top: 16px;
}

/* ============================================================
   PILL STRIP (Services highlights)
   ============================================================ */
.pill-strip {
    background: var(--dark-900);
    padding: 20px 0;
}
.pill-row {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.pill-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: var(--red-500);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-small);
    font-weight: 700;
}
.pill-item i { font-size: 0.85rem; opacity: 0.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark-900);
    color: var(--dark-400);
    padding: 72px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-500), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
    font-size: var(--text-small); line-height: 1.8; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
    background: var(--red-500); border-color: var(--red-500);
    transform: translateY(-3px);
}
.footer h5 {
    color: var(--white); font-size: 1rem; font-weight: 700;
    margin-bottom: 20px;
}
.footer-links a {
    display: block; font-size: var(--text-small); padding: 6px 0;
    transition: all 0.25s var(--ease);
}
.footer-links a:hover { color: var(--red-400); padding-left: 6px; }
.footer-contact li {
    display: flex; gap: 12px; font-size: var(--text-small);
    padding: 7px 0; align-items: center;
}
.footer-contact li:first-child {
    align-items: flex-start;
}
.footer-contact li i {
    color: var(--red-400); width: 18px; min-width: 18px;
    font-size: 0.9rem; text-align: center;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-contact li:first-child i {
    margin-top: 3px;
}
.footer-contact a { color: var(--dark-400); }
.footer-contact a:hover { color: var(--red-400); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0;
    font-size: var(--text-xs);
    opacity: 0.5;
}
.back-to-top {
    width: 36px; height: 36px;
    background: var(--red-500);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.8rem;
    transition: all 0.3s var(--ease);
    opacity: 1;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab-wrap {
    position: fixed; bottom: 28px; right: 24px;
    display: flex; flex-direction: column; gap: 12px;
    z-index: 900;
}
.fab {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.fab .fab-text {
    position: absolute;
    right: 54px;
    white-space: nowrap;
    background: inherit;
    padding: 8px 16px 8px 20px;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
}
.fab:hover .fab-text {
    opacity: 1; transform: translateX(0);
}
.fab:hover { transform: scale(1.08); }
.fab-wa {
    background: var(--whatsapp);
    animation: fabPulse 3s ease-in-out infinite;
}
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}
.fab-call { background: var(--red-500); }
.fab-call:hover { box-shadow: 0 6px 28px rgba(239, 68, 68, 0.4); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}
/* Stagger delays */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }
[data-reveal-delay="7"] { transition-delay: 0.7s; }
[data-reveal-delay="8"] { transition-delay: 0.8s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .hero h1 .word { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
    .hero { min-height: auto; padding: 160px 0 80px; }
    .hero-stats { gap: 32px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.featured { grid-column: span 2; }
    .bento-card.dark { grid-row: span 1; }
    .about-split { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .feat-split { grid-template-columns: 1fr; }
    .feat-split.reversed > :first-child { order: 1; }
    .feat-split.reversed > :last-child { order: 2; }
    .mvv-row { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; margin-right: 15px; }
    .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .hero { padding: 140px 0 60px; }
    .page-hero { padding: 120px 0 60px; min-height: 40vh; }
    .section { padding: clamp(60px, 8vw, 100px) 0; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.featured, .bento-card.dark { grid-column: span 1; }
    .testi-grid {
        display: block;
    }
    .testi-grid .testi-card {
        display: none;
    }
    .testi-grid .testi-card.carousel-active {
        display: block;
        animation: carouselFadeIn 0.45s ease both;
    }
    @keyframes carouselFadeIn {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .testi-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    .testi-carousel-dots span {
        width: 10px; height: 10px;
        border-radius: 50%;
        background: var(--dark-200);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .testi-carousel-dots span.active {
        background: var(--red-500);
        transform: scale(1.2);
    }
    .mvv-row { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .steps-row::before { display: none; }
    .trust-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; margin-top: -32px; }
    .form-row { grid-template-columns: 1fr; }
    .wa-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .fab-wrap { bottom: 20px; right: 16px; display: flex !important; z-index: 900; }
    .fab { width: 48px; height: 48px; font-size: 1.1rem; }
    .marquee-section { transform: skewY(0); margin: 0; }
    .marquee-section .marquee-inner-wrap { transform: skewY(0); }
    .check-grid { grid-template-columns: 1fr; }
    .feat-mini-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .srv-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-item::after { display: none; }
    .pill-row { flex-direction: column; align-items: center; }
    .cta-btns { flex-direction: column; }
    .cta-btns .btn { width: 100%; justify-content: center; }
    .mobile-menu-btns { flex-direction: column; width: 80%; }
    .mobile-menu-btns .btn { justify-content: center; }
}
