/* ==========================================================================
   LaravelOps — frontend-home.css  v2
   Premium dark+light alternating sections, white navbar, fixed FAQ
   ========================================================================== */

/* ── CSS Custom Properties ─────────────────────────────────────────── */
:root {
    /* Dark section palette */
    --dark-bg:       #0d0d0d;
    --dark-bg-alt:   #141414;
    --dark-card:     #1a1a1a;
    --dark-border:   rgba(255,255,255,0.08);

    /* Light section palette */
    --light-bg:      #f8f9fb;
    --light-bg-alt:  #ffffff;
    --light-card:    #ffffff;
    --light-border:  #e5e7eb;
    --light-text:    #111827;
    --light-muted:   #6b7280;

    /* Brand */
    --primary:       #ca1212;
    --primary-dark:  #a00e0e;
    --primary-glow:  rgba(202,18,18,0.25);
    --accent:        #f59e0b;

    /* Text */
    --text-on-dark:  #f5f5f5;
    --text-muted-dark: #a3a3a3;
    --text-dim:      #555;

    /* Misc */
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-head:  'Poppins', sans-serif;
    --font-body:  'Inter', sans-serif;
}

/* ── Global Reset ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }

/* ==========================================================================
   GLOBAL THEME GRADIENTS
   ========================================================================== */
.global-gradient-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.global-gradient-right {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, rgba(202,18,18,0.01) 40%, transparent 70%);
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    filter: blur(60px);
}
.global-gradient-left {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,18,18,0.03) 0%, rgba(202,18,18,0.01) 50%, transparent 70%);
    top: -10%;
    left: -15%;
    filter: blur(70px);
}

/* Alternate inversion for section variations */
.alt-gradient .global-gradient-right {
    right: auto;
    left: -15%;
}
.alt-gradient .global-gradient-left {
    left: auto;
    right: -15%;
}

body.page-home {
    background: #fdfdfd;
    color: #0f172a;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; display:block; }

/* ── Layout ────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-block { padding: 6rem 0; position: relative; }

/* ── Section alternating backgrounds ─────────────────────────────── */
/* DARK sections: Hero, Problems, Why Us, Tech Stack, FAQ, Final CTA */
.hero-section,
.problems-section,
.why-section,
.tech-section,
.faq-section,
.final-cta-section {
    background: var(--dark-bg);
    color: var(--text-on-dark);
}

/* LIGHT sections: Trust Strip, Services, Pricing, Process, Stats, Testimonials */
.trust-strip,
.services-section,
.pricing-section,
.process-section,
.testimonials-section {
    background: var(--light-bg);
    color: var(--light-text);
}

.premium-stats-section {
    background: var(--light-bg-alt);
    color: var(--light-text);
}

/* ── Scroll Reveal ─────────────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].animate-in { opacity:1; transform:none; }

/* ── Shared Section Header ──────────────────────────────────────────── */
.section-header { text-align:center; margin-bottom:3.5rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(202,18,18,0.1);
    border: 1px solid rgba(202,18,18,0.3);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.95rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}
.section-label i { font-size: 0.7rem; }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.9rem;
    color: #0f172a;
}
.section-sub {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
    color: #475569;
}

/* ── Text Gradient ──────────────────────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, #ca1212, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-red { color: var(--primary); }

/* ── Shared Buttons ─────────────────────────────────────────────────── */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-red:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 24px var(--primary-glow);
    transform: translateY(-2px);
    color: #fff;
}


/* ==========================================================================
   LARAVEL UPGRADE PAGE — distinct custom UI
   ========================================================================== */
.upg-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.upg-hero-card {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 28px;
    padding: 2.25rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}
.upg-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 0.85rem;
}
.upg-breadcrumb a { color: #64748b; text-decoration: none; }
.upg-breadcrumb span { color: #0f172a; font-weight: 600; }
.upg-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.upg-hero-copy h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0.9rem 0 1rem;
    color: #0f172a;
}
.upg-hero-copy h1 span { color: var(--primary); }
.upg-hero-copy p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 1.25rem;
}
.upg-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.upg-btn-primary,
.upg-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    text-decoration: none;
}
.upg-btn-primary { background: var(--primary); color: #fff; }
.upg-btn-outline { border: 1px solid #cbd5e1; color: #0f172a; background: #fff; }
.upg-version-track {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: #64748b;
}
.upg-version-track span {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    background: #fff;
}
.upg-version-track .upg-current {
    border-color: rgba(202,18,18,0.4);
    color: #b91c1c;
    background: #fef2f2;
}
.upg-hero-media img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.upg-risk-section {
    background: #ffffff;
    padding: 4.5rem 0;
}
.upg-headline h2 {
    font-family: var(--font-head);
    color: #0f172a;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.upg-headline p {
    color: #64748b;
    margin-top: 0.5rem;
}
.upg-headline--center { text-align: center; margin-bottom: 2rem; }
.upg-risk-grid {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.upg-risk-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1rem 0.95rem;
}
.upg-risk-item h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.55rem;
}
.upg-risk-item ul {
    margin: 0;
    padding-left: 1rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
}

.upg-roadmap-section {
    background: #f8fafc;
    padding: 4.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.upg-roadmap {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 0.9rem;
    list-style: none;
    padding: 0;
}
.upg-roadmap li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0.9rem;
    align-items: start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.9rem 1rem;
}
.upg-step-num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fee2e2;
    color: #b91c1c;
    font-weight: 800;
}
.upg-roadmap h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}
.upg-roadmap p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.upg-apps-section {
    background: #ffffff;
    padding: 4rem 0 3.25rem;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}
.upg-app-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.upg-app-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1rem 0.95rem;
}
.upg-app-card h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.upg-app-card h3 i {
    color: var(--primary);
}
.upg-app-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}
.upg-app-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.upg-app-tags span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.upg-inquiry-section {
    background: #f8fafc;
    padding: 4.5rem 0 5rem;
}
.upg-inquiry-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
}
.upg-inquiry-copy {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem;
}
.upg-inquiry-copy h2 {
    font-family: var(--font-head);
    color: #0f172a;
    margin: 0.75rem 0 0.6rem;
}
.upg-inquiry-copy p {
    color: #64748b;
    line-height: 1.7;
}
.upg-inquiry-copy ul {
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: #334155;
    line-height: 1.6;
}
.upg-inquiry-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem;
}
.upg-inquiry-form h3 {
    font-family: var(--font-head);
    color: #0f172a;
    margin-bottom: 1rem;
}
.upg-form-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 0.35rem;
}

@media (max-width: 1050px) {
    .upg-hero-card {
        grid-template-columns: 1fr;
    }
    .upg-risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .upg-inquiry-wrap {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .upg-hero {
        padding-top: 5rem;
    }
    .upg-hero-card {
        padding: 1.2rem;
        border-radius: 18px;
    }
    .upg-risk-grid {
        grid-template-columns: 1fr;
    }
    .upg-app-grid {
        grid-template-columns: 1fr;
    }
    .upg-roadmap li {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   NAVBAR — White, Compact, Sticky, Mega Menu
   ========================================================================== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff !important;
    border-bottom: 1px solid #e8eaed;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
    padding: 0 !important; /* Override style.css */
    backdrop-filter: none !important; /* Fixes position: fixed context */
    -webkit-backdrop-filter: none !important;
}
#site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 80px; /* Increased from 65px to fit larger logo */
}

/* Logo */
.header-logo img {
    height: 55px !important; /* Increased from 42px */
    width: auto !important;
    display: block;
    flex-shrink: 0;
}

/* Nav list */
nav#main-nav { flex: 1; }
.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: flex-end; /* Align links to the right */
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: #374151;
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
}
.nav-link:hover,
.nav-link--active {
    color: #ca1212;
    background: rgba(202,18,18,0.06);
}

.nav-chevron {
    font-size: 0.6rem;
    margin-top: 1px;
    transition: transform 0.25s ease;
}
.nav-item--mega:hover .nav-chevron,
.nav-item--mega.open .nav-chevron {
    transform: rotate(180deg);
}

/* ── Mega Menu ──────────────────────────────────────────────────── */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 820px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 999;
}
.nav-item--mega:hover .mega-menu,
.nav-item--mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Arrow pointer on top of mega menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: translateX(-50%) rotate(45deg);
}

/* Invisible bridge to maintain hover state across the gap */
.mega-menu::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.mega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 220px;
    gap: 0;
    padding: 1.5rem;
}

.mega-col {
    padding: 0 1rem;
    border-right: 1px solid #f3f4f6;
}
.mega-col:last-of-type { border-right: none; }

.mega-col-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.18s ease;
    margin-bottom: 0.25rem;
}
.mega-link:hover { background: #f9fafb; }
.mega-link--all { border-top: 1px solid #f3f4f6; margin-top: 0.5rem; padding-top: 0.85rem; }

.mega-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mega-link div strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}
.mega-link div span {
    display: block;
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}
.mega-link:hover div strong { color: #ca1212; }

/* CTA column */
.mega-cta-col { padding-left: 1.25rem; }
.mega-cta-card {
    background: linear-gradient(135deg, #0d0d0d, #1a0505);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}
.mega-cta-icon {
    width: 40px; height: 40px;
    background: rgba(202,18,18,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca1212;
    font-size: 1rem;
}
.mega-cta-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.mega-cta-card p {
    font-size: 0.78rem;
    color: #a3a3a3;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ca1212;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    width: fit-content;
}
.mega-cta-btn:hover {
    background: #a00e0e;
    transform: translateY(-1px);
    color: #fff;
}

/* ── Header CTA button ──────────────────────────────────────────── */
.header-cta-wrap { flex-shrink: 0; }
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ca1212;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-header-cta:hover {
    background: #a00e0e;
    box-shadow: 0 0 16px rgba(202,18,18,0.3);
    transform: translateY(-1px);
    color: #fff;
}
.btn-header-cta i { font-size: 0.7rem; }

/* ── Mobile Hamburger ───────────────────────────────────────────── */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    border-radius: 6px;
}
.mobile-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-hamburger.open span:nth-child(2) { opacity: 0; }
.mobile-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .mobile-hamburger { display: flex !important; }
    .header-cta-wrap  { display: none !important; }

    nav#main-nav {
        display: block !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: calc(100vh - 80px) !important;
        background: #ffffff !important;
        overflow-y: auto !important;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 998;
        padding: 1rem 0 5rem !important;
        border: none !important;
        box-shadow: none !important;
    }
    nav#main-nav.open { transform: translateX(0) !important; }

    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 1.5rem !important;
        gap: 0 !important;
    }
    .nav-item { width: 100% !important; border-bottom: 1px solid #f3f4f6 !important; }
    .nav-link {
        display: flex !important;
        width: 100% !important;
        padding: 1.2rem 0 !important;
        font-size: 1.1rem !important;
        border-radius: 0 !important;
        color: #111827 !important;
    }

    /* Mobile mega menu: show inline */
    .mega-menu {
        position: static !important;
        transform: none !important;
        min-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none !important;
        background: #f9fafb !important;
        padding: 0.5rem 0 1.5rem !important;
        margin-top: 0 !important;
    }
    .nav-item--mega.open .mega-menu { display: block !important; }
    .mega-menu::before { display: none !important; }

    .mega-inner { display: flex !important; flex-direction: column !important; padding: 0 !important; gap: 0 !important; }
    .mega-col { padding: 0.5rem 0 !important; border-right: none !important; border-bottom: 1px solid #e5e7eb !important; }
    .mega-col-title { padding: 0.5rem 0 !important; margin: 0 !important; font-size: 0.8rem !important; }
    .mega-link { padding: 0.75rem 0 !important; border-radius: 0 !important; align-items: center !important; }
    .mega-cta-col { padding: 1rem 0 0 !important; }
    .mega-cta-card { border-radius: 12px !important; margin: 0 !important; }
}


/* ==========================================================================
   SECTION 1 — HERO  (LIGHT & ANIMATED)
   ========================================================================== */
/* ==========================================================================
   SECTION 1 — HERO  (DARK PREMIUM)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Dark grid background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(202,18,18,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202,18,18,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Glow blobs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-glow-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(202,18,18,0.1) 0%, transparent 70%);
    top: -10%; right: -10%;
    animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    bottom: 0; left: -5%;
    animation: glowPulse 12s ease-in-out infinite alternate-reverse;
}
.hero-glow-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(202,18,18,0.06) 0%, transparent 70%);
    top: 30%; left: 40%;
    animation: glowPulse 10s ease-in-out infinite;
}
@keyframes glowPulse {
    0%   { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.15) translate(30px, -30px); }
}

/* Particles */
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hero Layout */
.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual-col { display: none; }
}

/* Live Badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(202,18,18,0.06);
    border: 1px solid rgba(202,18,18,0.18);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    width: fit-content;
    letter-spacing: 0.02em;
    animation: fadeSlideDown 0.6s ease both;
}
.hero-live-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 4px var(--primary); }
    50%     { box-shadow: 0 0 14px var(--primary); }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.12;
    color: #0f172a;
    letter-spacing: -0.03em;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}
.hero-title-accent {
    display: inline-block;
    background: linear-gradient(135deg, #ca1212, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero-title-sub {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #64748b;
    font-weight: 600;
}

/* Rotating Words */
.hero-rotating-words {
    position: relative;
    display: inline-block;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
    min-width: 280px;
}
.rotating-word {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
}
.rotating-word.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Description */
.hero-description {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.85;
    max-width: 520px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}
.hero-description strong {
    color: #1e293b;
    font-weight: 600;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}
.hero-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(202,18,18,0.3);
}
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(202,18,18,0.4);
    color: #fff;
}
.hero-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    border-radius: 50px;
}
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.hero-btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.hero-btn-secondary i { transition: transform 0.3s ease; }
.hero-btn-secondary:hover i { transform: translateX(4px); }

/* Trust Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.4s both;
    padding-top: 0.5rem;
}
.hero-metric { display: flex; flex-direction: column; align-items: center; }
.hero-metric-num {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}
.hero-metric-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-metric-sep { width:1px; height:32px; background: rgba(0,0,0,0.1); }

/* Visual Column */
.hero-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideUp 0.9s ease 0.2s both;
}

/* Terminal Card */
.hero-terminal {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow:
        0 30px 60px rgba(15,23,42,0.15),
        0 0 50px rgba(202,18,18,0.06);
    position: relative;
    z-index: 2;
}
.hero-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dots { display: flex; gap: 0.4rem; }
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot--red    { background: #ff5f57; }
.terminal-dot--yellow { background: #febc2e; }
.terminal-dot--green  { background: #28c840; }
.terminal-title {
    flex: 1;
    color: #64748b;
    font-size: 0.78rem;
    font-family: 'Courier New', monospace;
}
.terminal-lang {
    background: rgba(202,18,18,0.2);
    color: #f87171;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.hero-terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    line-height: 2.1;
}
.terminal-line { white-space: nowrap; }
.terminal-line--blank { height: 0.6em; }
.t-comment  { color: #4b5563; }
.t-var      { color: #79c0ff; }
.t-op       { color: #94a3b8; }
.t-class    { color: #c792ea; }
.t-fn       { color: #d2a8ff; }
.t-punct    { color: #94a3b8; }
.t-string   { color: #7ee787; }
.t-number   { color: #f59e0b; }
.t-keyword  { color: #f97316; }
.hero-terminal-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(34,197,94,0.05);
    border-top: 1px solid rgba(34,197,94,0.12);
    color: #4ade80;
    font-size: 0.78rem;
    font-family: 'Courier New', monospace;
}
.terminal-footer-time { margin-left: auto; color: #4b5563; }
.terminal-status-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: dotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* Floating Badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 0.8rem 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: #1e293b;
    z-index: 5;
    width: max-content;
    max-width: 220px;
}
.hero-float-badge--top    { top: -20px; right: -6px; animation: floatY 3.5s ease-in-out infinite; }
.hero-float-badge--left   { bottom: 60px; left: -6px; animation: floatY 4s ease-in-out infinite reverse; }
.hero-float-badge--bottom { bottom: -20px; right: 20px; animation: floatY 3s ease-in-out infinite 1s; }
.float-badge-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.float-badge-icon--red   { background: rgba(202,18,18,0.25);  color: #f87171; }
.float-badge-icon--green { background: rgba(34,197,94,0.25);  color: #4ade80; }
.float-badge-icon--amber { background: rgba(245,158,11,0.25); color: #fbbf24; }
.hero-float-badge div strong { display: block; font-size: 0.82rem; font-weight: 700; color: #0f172a; }
.hero-float-badge div small  { display: block; font-size: 0.72rem; color: #64748b; }
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(15,23,42,0.2);
    font-size: 1rem;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
    text-decoration: none;
    transition: color 0.3s;
}
.hero-scroll-hint:hover { color: var(--primary); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%     { transform: translateX(-50%) translateY(8px); }
}

/* Fade-in animations */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HERO — BUBBLE ANIMATIONS
   ========================================================================== */
.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(202, 18, 18, 0.06);
    animation: bubbleFloat linear infinite;
}
.hero-bubble--1  { width:80px;  height:80px;  left:10%;  animation-duration:14s; animation-delay:0s;    background:rgba(202,18,18,0.07); }
.hero-bubble--2  { width:50px;  height:50px;  left:25%;  animation-duration:10s; animation-delay:2s;    background:rgba(249,115,22,0.05); }
.hero-bubble--3  { width:120px; height:120px; left:40%;  animation-duration:18s; animation-delay:1s;    background:rgba(202,18,18,0.04); }
.hero-bubble--4  { width:35px;  height:35px;  left:55%;  animation-duration:12s; animation-delay:3s;    background:rgba(249,115,22,0.08); }
.hero-bubble--5  { width:65px;  height:65px;  left:65%;  animation-duration:16s; animation-delay:0.5s;  background:rgba(202,18,18,0.05); }
.hero-bubble--6  { width:90px;  height:90px;  left:75%;  animation-duration:11s; animation-delay:2.5s;  background:rgba(249,115,22,0.06); }
.hero-bubble--7  { width:45px;  height:45px;  left:85%;  animation-duration:13s; animation-delay:1.5s;  background:rgba(202,18,18,0.07); }
.hero-bubble--8  { width:100px; height:100px; left:5%;   animation-duration:20s; animation-delay:4s;    background:rgba(202,18,18,0.03); }
@keyframes bubbleFloat {
    0%   { transform: translateY(110vh) scale(0.5); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.8; }
    100% { transform: translateY(-10vh) scale(1.1); opacity: 0; }
}

/* Hero section reset / overrides */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 1.1rem; }

/* Live Badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(202,18,18,0.06);
    border: 1px solid rgba(202,18,18,0.18);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    width: fit-content;
}
.hero-live-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: liveDotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes liveDotPulse {
    0%,100% { box-shadow: 0 0 4px var(--primary); }
    50%     { box-shadow: 0 0 12px var(--primary); }
}

/* Hero Heading */
.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.18;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0;
}
.hero-accent {
    background: linear-gradient(135deg, #ca1212 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero sub text */
.hero-sub {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 520px;
    margin: 0;
}
.hero-sub strong { color: #1e293b; font-weight: 600; }

/* CTA row */
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(202,18,18,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(202,18,18,0.35);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-hero-secondary i { transition: transform 0.3s ease; }
.btn-hero-secondary:hover i { transform: translateX(4px); }

/* Trust metrics */
.hero-trust-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; align-items: center; }
.hero-trust-num  { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: #0f172a; }
.hero-trust-label { font-size: 0.7rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-trust-divider { width: 1px; height: 34px; background: rgba(0,0,0,0.1); }

/* Visual (Terminal) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-terminal {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 30px 60px rgba(15,23,42,0.18), 0 0 50px rgba(202,18,18,0.06);
    position: relative;
    z-index: 2;
}
.hero-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dots { display: flex; gap: 0.4rem; }
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot--red    { background: #ff5f57; }
.terminal-dot--yellow { background: #febc2e; }
.terminal-dot--green  { background: #28c840; }
.terminal-title {
    flex: 1;
    color: #64748b;
    font-size: 0.78rem;
    font-family: 'Courier New', monospace;
}
.terminal-lang {
    background: rgba(202,18,18,0.2);
    color: #f87171;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.hero-terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    line-height: 2.1;
}
.terminal-line { white-space: nowrap; }
.terminal-line--blank { height: 0.5em; }
.t-comment  { color: #4b5563; }
.t-var      { color: #79c0ff; }
.t-op       { color: #94a3b8; }
.t-class    { color: #c792ea; }
.t-fn       { color: #d2a8ff; }
.t-punct    { color: #94a3b8; }
.t-string   { color: #7ee787; }
.t-number   { color: #f59e0b; }
.t-keyword  { color: #f97316; }
.hero-terminal-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(34,197,94,0.05);
    border-top: 1px solid rgba(34,197,94,0.12);
    color: #4ade80;
    font-size: 0.78rem;
    font-family: 'Courier New', monospace;
}
.terminal-footer-time { margin-left: auto; color: #4b5563; }
.terminal-status-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: liveDotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* Floating Badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    color: #1e293b;
    z-index: 5;
    width: max-content;
    max-width: 210px;
}
.hero-float-badge--top    { top: -18px;  right: -6px; animation: floatUpDown 3.5s ease-in-out infinite; }
.hero-float-badge--left   { bottom: 50px; left: -6px; animation: floatUpDown 4s ease-in-out infinite reverse; }
.hero-float-badge--bottom { bottom: -18px; right: 10px; animation: floatUpDown 3s ease-in-out infinite 1s; }
.float-badge-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.float-badge-icon--red   { background: rgba(202,18,18,0.12); color: var(--primary); }
.float-badge-icon--green { background: rgba(34,197,94,0.12);  color: #16a34a; }
.float-badge-icon--amber { background: rgba(245,158,11,0.12); color: #d97706; }
.hero-float-badge strong { display: block; font-size: 0.82rem; font-weight: 700; color: #0f172a; }
.hero-float-badge small  { display: block; font-size: 0.72rem; color: #64748b; }
@keyframes floatUpDown {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}

/* Slider Pagination */
.hero-swiper { width: 100%; padding-bottom: 2.5rem; }
.hero-swiper-pagination.swiper-pagination { bottom: 0.5rem; }
.hero-swiper-pagination .swiper-pagination-bullet {
    background: #cbd5e1; opacity: 1; width: 10px; height: 10px; transition: all 0.3s;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary); width: 26px; border-radius: 5px;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(15,23,42,0.25);
    font-size: 1rem; z-index: 10;
    text-decoration: none;
    transition: color 0.3s;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-hint:hover { color: var(--primary); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%     { transform: translateX(-50%) translateY(8px); }
}


.hero-blob {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.hero-blob-1 {
    /* Massive vibrant gradient strictly on the right side */
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,18,18,0.06) 0%, rgba(202,18,18,0.02) 40%, transparent 70%);
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    filter: blur(60px);
    animation: blobFloat 15s infinite alternate ease-in-out;
}
.hero-blob-2 {
    /* Matching gradient on the left side to envelop the section in theme color */
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,18,18,0.05) 0%, rgba(202,18,18,0.01) 50%, transparent 70%);
    top: -10%;
    left: -15%;
    filter: blur(70px);
    animation: blobFloat 20s infinite alternate-reverse ease-in-out;
}
.hero-blob-3 {
    display: none; /* Removed for a cleaner look */
}
@keyframes blobFloat {
    0% { transform: translate(0, -50%) scale(1); }
    100% { transform: translate(40px, calc(-50% + 60px)) scale(1.1); }
}

/* Swiper Slider Styles */
.hero-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem; /* Space for pagination bullets */
}
.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    opacity: 0 !important;
}
.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
}
.hero-swiper .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { display:flex; flex-direction:column; gap:1.75rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(202, 18, 18, 0.06); /* Soft red tint, no border */
    border: none;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    width: fit-content;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 4px var(--primary); }
    50%     { box-shadow: 0 0 12px var(--primary); }
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b; /* Dark Slate (Matches reference solid dark text) */
    letter-spacing: -0.02em;
}
.hero-text-accent {
    color: var(--primary); /* Solid brand red like the reference blue */
}

.hero-sub { color: #475569; font-size: 1.1rem; line-height: 1.8; max-width: 540px; }

.hero-cta-row { display:flex; gap:1rem; flex-wrap:wrap; }

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: 50px; /* Pill shaped like reference */
    box-shadow: 0 10px 20px rgba(202, 18, 18, 0.2);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(202, 18, 18, 0.3);
    transform: translateY(-3px);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px; /* Pill shaped like reference */
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-hero-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-hero-secondary i { transition: transform var(--transition); }
.btn-hero-secondary:hover i { transform: translateX(4px); }

.hero-trust-row { display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.hero-trust-item { display:flex; flex-direction:column; align-items:center; }
.hero-trust-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a; /* Slate 900 */
}
.hero-trust-label {
    font-size: 0.72rem;
    color: #64748b; /* Slate 500 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-trust-divider { width:1px; height:36px; background: rgba(0,0,0,0.1); }

/* Code card */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-code-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 40px rgba(202,18,18,0.08);
    position: relative;
    z-index: 2;
}
.code-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.code-dots { display:flex; gap:0.4rem; }
.dot { width:12px; height:12px; border-radius:50%; }
.dot-red    { background:#ff5f57; }
.dot-yellow { background:#febc2e; }
.dot-green  { background:#28c840; }
.code-filename { color:var(--text-muted-dark); font-size:0.78rem; font-family:'Courier New',monospace; }
.code-card-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    line-height: 2;
}
.code-line { white-space: nowrap; }
.code-comment { color:#6a737d; }
.code-keyword { color:#79c0ff; }
.code-op      { color:var(--text-muted-dark); }
.code-fn      { color:#d2a8ff; }
.code-punct   { color:var(--text-muted-dark); }
.code-string  { color:#7ee787; }
.code-number  { color:var(--accent); }
.code-card-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(34,197,94,0.06);
    border-top: 1px solid rgba(34,197,94,0.15);
    color: #22c55e;
    font-size: 0.78rem;
}
.code-status-dot {
    width:8px; height:8px;
    background:#22c55e;
    border-radius:50%;
    box-shadow:0 0 6px #22c55e;
    animation: dotPulse 1.5s ease-in-out infinite;
}

/* Floating Badges */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: none; /* Removed border to match reference */
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06); /* Softer shadow */
    color: #0f172a;
    z-index: 3;
    animation: floating 6s ease-in-out infinite;
    width: max-content; /* Ensure it doesn't stretch horizontally */
    height: max-content; /* Ensure it doesn't stretch vertically */
    max-width: 250px;
}
.float-badge i {
    font-size: 1.1rem;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}
.float-badge div strong { display:block; font-size:0.85rem; font-weight:700; color:#0f172a; }
.float-badge div small  { display:block; font-size:0.75rem; color:#64748b; }
.float-badge-1 { top:-16px; right:-20px; animation: floatY 3.5s ease-in-out infinite; }
.float-badge-1 i { background:rgba(202,18,18,0.15); color:var(--primary); }
.float-badge-2 { bottom:40px; left:-20px; animation:floatY 4s ease-in-out infinite reverse; }
.float-badge-2 i { background:rgba(245,158,11,0.15); color:var(--accent); }
.float-badge-3 { bottom:-16px; right:10px; animation:floatY 3s ease-in-out infinite 1s; }
.float-badge-3 i { background:rgba(34,197,94,0.15); color:#22c55e; }
@keyframes floatY {
    0%,100% { transform:translateY(0); }
    50%     { transform:translateY(-10px); }
}


/* ==========================================================================
   SECTION 2 — TRUST STRIP  (LIGHT)
   ========================================================================== */
.trust-strip {
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
}
.trust-marquee-track { overflow: hidden; }
.trust-marquee-inner {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.trust-marquee-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    white-space: nowrap;
    margin: 0 0.5rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    cursor: default;
}
.trust-badge:hover { color:var(--primary); border-color:rgba(202,18,18,0.35); background:#fff; }
.trust-badge i { color:var(--primary); font-size:0.75rem; }


/* ==========================================================================
   SECTION 3 — PROBLEMS  (LIGHT THEME)
   ========================================================================== */
.problems-section {
    background: #f8fafc;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.problems-section .section-title { color: #0f172a !important; }
.problems-section .section-sub { color: #475569 !important; }

/* Animated Bubbles Background */
.bubbles-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle, rgba(202, 18, 18, 0.04) 0%, rgba(202, 18, 18, 0.01) 70%, transparent 100%);
    border-radius: 50%;
    animation: riseUp 15s infinite ease-in;
}
.bubble-1 { width: 120px; height: 120px; left: 10%; animation-duration: 12s; }
.bubble-2 { width: 200px; height: 200px; left: 30%; animation-duration: 18s; animation-delay: 2s; }
.bubble-3 { width: 80px; height: 80px; left: 50%; animation-duration: 10s; animation-delay: 4s; }
.bubble-4 { width: 150px; height: 150px; left: 70%; animation-duration: 16s; animation-delay: 1s; }
.bubble-5 { width: 100px; height: 100px; left: 85%; animation-duration: 14s; animation-delay: 3s; }
.bubble-6 { width: 250px; height: 250px; left: 20%; animation-duration: 20s; animation-delay: 5s; }

@keyframes riseUp {
    0% { bottom: -200px; transform: translateX(0) scale(0.8); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { bottom: 100%; transform: translateX(80px) scale(1.2); opacity: 0; }
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}
.problem-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
    z-index: 1;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
.problem-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(202,18,18,0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.problem-card:hover {
    border-color: #e2e8f0;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(202,18,18,0.08), 0 10px 20px rgba(15,23,42,0.04);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover::after { opacity: 1; }

.problem-icon-wrap {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid rgba(202,18,18,0.15);
    box-shadow: 0 8px 16px rgba(202,18,18,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.4s ease;
}
.problem-card:hover .problem-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(202,18,18,0.25);
    border-color: var(--primary);
}
.problem-title { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:#0f172a; margin-bottom:0.5rem; }
.problem-desc  { font-size:0.9rem; color:#475569; line-height:1.6; }
.problems-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(202,18,18,0.06);
    position: relative;
    z-index: 2;
}
.problems-cta-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.problems-cta-text i {
    color: var(--primary);
    font-size: 1.5rem;
}


/* ==========================================================================
   SECTION 4 — SERVICES  (LIGHT)
   ========================================================================== */
.services-section { background: var(--light-bg); padding: 6rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content:'';
    position: absolute;
    bottom:0; left:0; right:0;
    height: 3px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: var(--svc-color, var(--primary));
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,0.1); border-color: var(--svc-color, var(--primary)); }
.service-card:hover::after { transform:scaleX(1); }

.service-card--red    { --svc-color: #ca1212; }
.service-card--amber  { --svc-color: #f59e0b; }
.service-card--blue   { --svc-color: #3b82f6; }
.service-card--green  { --svc-color: #22c55e; }
.service-card--purple { --svc-color: #a855f7; }
.service-card--cyan   { --svc-color: #06b6d4; }

.service-card-icon {
    width:50px; height:50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(0,0,0,0.04);
    color: var(--svc-color, var(--primary));
}
.service-card-title { font-family:var(--font-head); font-size:1.15rem; font-weight:700; color:#111827; }
.service-card-desc  { font-size:0.87rem; color:#6b7280; line-height:1.7; flex:1; }
.service-card-arrow {
    width:34px; height:34px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    align-self: flex-start;
}
.service-card:hover .service-card-arrow {
    background: var(--svc-color, var(--primary));
    border-color: var(--svc-color, var(--primary));
    color: #fff;
    transform: translateX(4px);
}


/* ==========================================================================
   SECTION 5 — PRICING  (LIGHT)
   ========================================================================== */
.pricing-section { background: var(--light-bg-alt); padding: 6rem 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 1.5rem;
    align-items: start;
}
.pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,0.1); }
.pricing-card--featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(202,18,18,0.03) 0%, #fff 60%);
    box-shadow: 0 0 0 1px var(--primary), 0 12px 40px rgba(202,18,18,0.1);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pricing-plan-name { font-family:var(--font-head); font-size:1.45rem; font-weight:700; color:#111827; }
.pricing-plan-sub  { font-size:0.85rem; color:#6b7280; margin-top:0.25rem; }
.pricing-price-row { display:flex; flex-direction:column; gap:0.5rem; margin-top:0.5rem; }
.pricing-price     { display:flex; align-items:baseline; gap:0.25rem; }
.pricing-currency  { font-size:1.3rem; font-weight:700; color:#6b7280; }
.pricing-amount {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}
.pricing-card--featured .pricing-amount {
    background: linear-gradient(135deg,#ca1212,#f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-cycle { font-size:0.85rem; color:#6b7280; }
.pricing-hours { display:flex; align-items:center; gap:0.45rem; font-size:0.85rem; color:#6b7280; }
.pricing-hours i { color:var(--accent); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:0.75rem; flex:1; }
.pricing-features li { display:flex; align-items:flex-start; gap:0.7rem; font-size:0.87rem; color:#374151; }
.pricing-features li i { color:#22c55e; flex-shrink:0; margin-top:0.2rem; }
.pricing-features li span { line-height:1.5; }
.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid #d1d5db;
    color: #374151;
    background: #fff;
    transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.pricing-cta:hover { border-color:var(--primary); color:var(--primary); transform:translateY(-2px); }
.pricing-cta--featured { background:var(--primary); border-color:var(--primary); color:#fff; }
.pricing-cta--featured:hover { background:var(--primary-dark); border-color:var(--primary-dark); color:#fff; box-shadow:0 0 24px var(--primary-glow); }
.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pricing-note a { color:var(--primary); font-weight:600; }
.pricing-note a:hover { text-decoration:underline; }


/* ==========================================================================
   SECTION 6 — WHY CHOOSE US  (LIGHT THEME)
   ========================================================================== */
.why-section { background: #fdfdfd; padding: 6rem 0; position: relative; overflow: hidden; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.why-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.why-card:hover {
    border-color: #e2e8f0;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(202,18,18,0.08);
}
.why-icon-wrap {
    width:48px; height:48px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid rgba(202,18,18,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    box-shadow: 0 8px 16px rgba(202,18,18,0.06);
}
.why-title { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:#0f172a; }
.why-desc  { font-size:0.9rem; color:#475569; line-height:1.7; }


/* ==========================================================================
   SECTION 7 — PROCESS  (LIGHT)
   ========================================================================== */
.process-section { background: var(--light-bg); padding: 6rem 0; overflow:hidden; }

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.process-timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary) 15%, var(--primary) 85%, transparent);
    transform: translateX(-50%);
    opacity: 0.25;
}

.process-step {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
}
.process-step--left {
    grid-template-columns: 1fr 72px 1fr;
    grid-template-areas: "content number empty";
}
.process-step--right {
    grid-template-columns: 1fr 72px 1fr;
    grid-template-areas: "empty number content";
}
.process-step--left  .process-step-content { grid-area:content; text-align:right; }
.process-step--right .process-step-content { grid-area:content; text-align:left; }
.process-step--left  .process-step-number  { grid-area:number; }
.process-step--right .process-step-number  { grid-area:number; }

.process-step-number {
    width: 64px; height: 64px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    transition: background var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-step-number {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.process-step-content { max-width: 340px; }
.process-step--left  .process-step-content { margin-left:auto; }
.process-step--right .process-step-content { margin-right:auto; }

.process-step-title { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:#111827; margin-bottom:0.4rem; }
.process-step-desc  { font-size:0.84rem; color:#6b7280; line-height:1.65; }


/* ==========================================================================
   SECTION 8 — TECH STACK  (LIGHT THEME)
   ========================================================================== */
.tech-section { background: #ffffff; padding: 6rem 0; position: relative; overflow: hidden; }

.tech-grid { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; position: relative; z-index: 2; }

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    transition: all var(--transition);
    cursor: default;
}
.tech-pill:hover {
    border-color: var(--tech-color, var(--primary));
    color: var(--tech-color, var(--primary));
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.tech-pill i { font-size:1.1rem; }


/* ==========================================================================
   SECTION 9 — STATS  (LIGHT)
   ========================================================================== */
.premium-stats-section {
    background: #fdfdfd;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .premium-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .premium-stats-grid { grid-template-columns: 1fr; }
}

.premium-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.premium-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(202,18,18,0.2);
    box-shadow: 0 15px 30px rgba(202,18,18,0.06), 0 5px 15px rgba(15,23,42,0.04);
}
.premium-stat-icon-wrap {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 0.75rem auto;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.premium-stat-card:hover .premium-stat-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}
.premium-stat-icon--red    { background:rgba(202,18,18,0.08);   color:#ca1212; }
.premium-stat-icon--blue   { background:rgba(59,130,246,0.08);  color:#2563eb; }
.premium-stat-icon--green  { background:rgba(34,197,94,0.08);   color:#16a34a; }
.premium-stat-icon--amber  { background:rgba(245,158,11,0.08);  color:#d97706; }

.premium-stat-number {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ca1212, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.15rem;
}
.premium-stat-suffix {
    font-size: 1.1rem;
}
.premium-stat-label  {
    font-size: 0.7rem;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.premium-stat-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: radial-gradient(circle at 50% 120%, rgba(202,18,18,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.premium-stat-card:hover .premium-stat-glow {
    opacity: 1;
    animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}


/* ==========================================================================
   SECTION 10 — TESTIMONIALS  (LIGHT)
   ========================================================================== */
.testimonials-section { background: var(--light-bg); padding: 6rem 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 4px solid transparent;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(202,18,18,0.15);
    border-top-color: var(--primary);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.testimonial-quote-icon { color:var(--primary); font-size:1.5rem; opacity:0.4; }
.testimonial-rating { display:flex; gap:0.2rem; }
.star-filled { color:var(--accent); }
.star-empty  { color:#d1d5db; }
.testimonial-content { font-size:0.92rem; color:#374151; line-height:1.75; font-style:italic; flex:1; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}
.testimonial-avatar { width:44px; height:44px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.testimonial-avatar img { width:100%; height:100%; object-fit:cover; }
.testimonial-avatar-initials {
    width:100%; height:100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}
.testimonial-name { display:block; font-size:0.9rem; font-weight:700; color:#111827; }
.testimonial-role { display:block; font-size:0.78rem; color:#9ca3af; }


/* ==========================================================================
   SECTION 11 — FAQ  (LIGHT THEME)
   ========================================================================== */
.faq-section { background: #fdfdfd; padding: 6rem 0; position: relative; overflow: hidden; }

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}
.faq-item:hover {
    box-shadow: 0 10px 25px rgba(202,18,18,0.05);
}
.faq-item--active { border-color: rgba(202,18,18,0.2); background: #fdfdfd; }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #0f172a;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item--active .faq-question { color:var(--primary); }

.faq-icon {
    width:28px; height:28px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #64748b;
    font-size: 0.75rem;
    transition: all var(--transition);
}
.faq-item--active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ── FAQ Answer: controlled by JS max-height only ── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-muted-dark);
    line-height: 1.75;
}


/* ==========================================================================
   SECTION 12 — FINAL CTA  (LARGE LIGHT THEME)
   ========================================================================== */
.final-cta-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: #fdfdfd;
    border-top: 1px solid #f1f5f9;
}
.final-cta-inner {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03), 0 0 0 1px rgba(226, 232, 240, 0.5), inset 0 0 30px rgba(255,255,255,0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.final-cta-inner-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}
.final-cta-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid rgba(202,18,18,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    animation: floatY 4s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(202,18,18,0.08);
}
.final-cta-heading {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    max-width: 750px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
}
.final-cta-sub { color: #475569; font-size: 1.05rem; max-width: 600px; line-height: 1.6; }
.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(202,18,18,0.25);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    margin-top: 0.5rem;
}
.btn-final-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 20px 45px rgba(202,18,18,0.35);
    transform: translateY(-4px);
    color: #fff;
}
.final-cta-footnote { font-size: 0.85rem; color: #64748b; display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.final-cta-footnote i { color:#22c55e; }


/* ==========================================================================
   FOOTER (DARK THEME)
   ========================================================================== */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #e11d48, #f97316);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 2.4fr 0.85fr 1.15fr;
    gap: 3rem 2.5rem;
    padding: 5rem 0 2rem 0;
    align-items: start;
}
.footer-services-col {
    min-width: 0;
}
.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.25rem;
}
.footer-services-group-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-list--compact {
    gap: 0.65rem;
}
.footer-list--compact .footer-link {
    font-size: 0.88rem;
    line-height: 1.45;
}
.footer-all-services {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap var(--transition), color var(--transition);
}
.footer-all-services:hover {
    color: #f87171;
    gap: 0.65rem;
}
.footer-col-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-list { list-style:none; display:flex; flex-direction:column; gap:0.85rem; padding: 0; }
.footer-link { font-size:0.95rem; color:#94a3b8; transition:all var(--transition); display: inline-flex; align-items: center; text-decoration: none; }
.footer-link::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: #475569;
    transition: all var(--transition);
}
.footer-link:hover { color:var(--primary); transform: translateX(3px); }
.footer-link:hover::before { color:var(--primary); }

.footer-socials { display:flex; gap:0.75rem; margin-bottom:1.5rem; }
.social-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #cbd5e1;
    transition: all var(--transition);
    text-decoration: none;
}
.social-icon:hover {
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
    transform: translateY(-3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    transition: color var(--transition);
    text-decoration: none;
}
.footer-contact-item:hover { color:#ffffff; }

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(202,18,18,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon i {
    color:var(--primary);
    font-size: 1.1rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* Tablet */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns:1fr; gap:3rem; }
    .hero-visual { display:none; }

    .process-timeline-line { display:none; }
    .process-step {
        grid-template-columns: 56px 1fr !important;
        grid-template-areas: "number content" !important;
    }
    .process-step--left .process-step-content,
    .process-step--right .process-step-content {
        text-align: left;
        margin: 0;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-services-col { grid-column: 1 / -1; }
    .footer-services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
    .section-block  { padding: 4rem 0; }
    .container      { padding: 0 1.25rem; }
    .hero-section   { padding: 7rem 0 4rem; min-height: auto; }
    .hero-heading   { font-size: 2rem; }
    .hero-cta-row   { flex-direction: column; }
    .btn-hero-primary,
    .btn-hero-secondary { width:100%; justify-content:center; }
    .hero-trust-row { gap:1rem; justify-content:center; }
    .hero-trust-divider { display:none; }

    .problems-grid  { grid-template-columns: 1fr; }
    .services-grid  { grid-template-columns: 1fr; }
    .pricing-grid   { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid    { grid-template-columns: 1fr; gap:2rem; }
    .footer-services-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .problems-cta   { flex-direction:column; text-align:center; }
    .final-cta-heading { font-size:1.8rem; }
    .btn-final-cta  { width:100%; justify-content:center; }
    .premium-stats-grid { grid-template-columns: 1fr 1fr; }

    .process-step   { grid-template-columns: 48px 1fr !important; }
}

/* Large desktop */
@media (min-width: 1400px) {
    .container { max-width:1320px; }
    .services-grid { grid-template-columns:repeat(3,1fr); }
}

/* Section title color overrides for light sections */
.services-section .section-title,
.pricing-section .section-title,
.process-section .section-title,
.testimonials-section .section-title { color: #111827; }

.services-section .section-sub,
.pricing-section .section-sub,
.process-section .section-sub,
.testimonials-section .section-sub,
.premium-stats-section .section-sub { color: #6b7280; }

.services-section .section-label,
.pricing-section .section-label,
.process-section .section-label,
.testimonials-section .section-label,
.premium-stats-section .section-label {
    background: rgba(202,18,18,0.08);
    border-color: rgba(202,18,18,0.25);
}

/* ==========================================================================
   SECTION 10.5 — BLOGS
   ========================================================================== */
.blogs-section {
    position: relative;
    padding: 6rem 0;
    background: #fdfdfd;
    overflow: hidden;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(202,18,18,0.25);
    box-shadow: 0 20px 40px rgba(202,18,18,0.08), 0 10px 20px rgba(15,23,42,0.04);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f8fafc;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #cbd5e1;
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(202,18,18,0.3);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card:hover .blog-card-title a {
    color: var(--primary);
}

.blog-card-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap var(--transition);
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   SECTION 11.5 — CONTACT
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: #fdfdfd;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

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

.contact-card-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 575px) {
    .contact-card-list { grid-template-columns: 1fr; }
}

.home-contact-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.home-contact-card:hover {
    transform: translateY(-5px);
    border-color: #e2e8f0;
    box-shadow: 0 15px 30px rgba(202,18,18,0.05), 0 5px 15px rgba(15,23,42,0.02);
}

.contact-form-panel {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(15,23,42,0.04);
}

.home-contact-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}
.home-contact-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.6rem;
}
.home-contact-form .form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background: #f8fafc;
    color: #0f172a;
    transition: all var(--transition);
}
.home-contact-form .form-control:focus {
    outline: none;
    border-color: rgba(202,18,18,0.4);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(202,18,18,0.08);
}
.home-contact-form .error-text {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: block;
    font-weight: 500;
}
.success-alert {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #15803d;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.error-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Fix Contact Card Typography */
.home-contact-card .contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.home-contact-card .contact-card-icon--red { background: rgba(202,18,18,0.08); color: #ca1212; }
.home-contact-card .contact-card-icon--green { background: rgba(34,197,94,0.08); color: #16a34a; }
.home-contact-card .contact-card-icon--blue { background: rgba(59,130,246,0.08); color: #2563eb; }
.home-contact-card .contact-card-icon--amber { background: rgba(245,158,11,0.08); color: #d97706; }

.home-contact-card .contact-card-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.4rem;
}
.home-contact-card .contact-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.home-contact-card .contact-card-sub {
    font-size: 0.9rem;
    color: #475569;
}

/* Captcha Styling for Light Form */
.home-contact-form .captcha-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.home-contact-form .captcha-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.home-contact-form .captcha-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.home-contact-form .btn-refresh-captcha {
    background: rgba(202,18,18,0.1);
    color: var(--primary);
    border: none;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    transition: all var(--transition);
}
.home-contact-form .btn-refresh-captcha:hover {
    background: var(--primary);
    color: #fff;
}
.home-contact-form .captcha-instruction {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 1rem;
    font-weight: 500;
}
.home-contact-form #captcha-main-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}
.home-contact-form .captcha-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.home-contact-form .captcha-option {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 0.7rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #475569;
    cursor: pointer;
    transition: all var(--transition);
    flex: 1;
    text-align: center;
}
.home-contact-form .captcha-option:hover {
    border-color: rgba(202,18,18,0.5);
    color: var(--primary);
    background: rgba(202,18,18,0.02);
}
.home-contact-form .captcha-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(202,18,18,0.25);
}

/* ==========================================================================
   FLOATING CONTACT ICONS (WhatsApp & Call)
   ========================================================================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}
.float-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}
.float-btn-call {
    background: #007bff; /* Blue for call */
}
.float-btn-call:hover {
    background: #0069d9;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
.float-btn-whatsapp {
    background: #25d366; /* WhatsApp Green */
}
.float-btn-whatsapp:hover {
    background: #20bd5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   HERO — RESPONSIVE MEDIA QUERIES (FORCED TO BOTTOM FOR SPECIFICITY)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .hero-visual {
        display: none !important;
    }
    .hero-float-badge {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        display: block !important;
        padding: 6.5rem 0 3.5rem !important; /* Clearance for sticky navbar */
        min-height: auto !important;
        overflow: hidden !important;
        max-width: 100vw !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 1.25rem !important;
    }
    .hero-swiper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding-bottom: 3.5rem !important;
        height: auto !important;
    }
    .hero-swiper .swiper-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-swiper .swiper-slide {
        display: block !important; /* Block layout prevents height collapse and lets width be 100% */
        box-sizing: border-box !important;
        height: auto !important;
    }
    .hero-grid {
        display: block !important; /* Standard block layout inside slide */
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .hero-live-badge {
        font-size: 0.78rem !important;
        padding: 0.4rem 1rem !important;
        margin: 0 auto !important;
    }
    .hero-heading {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
        word-wrap: break-word !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    .hero-heading br {
        display: none !important;
    }
    .hero-sub {
        font-size: 0.98rem !important;
        line-height: 1.75 !important;
        max-width: 560px !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .hero-cta-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0.5rem auto 0 !important;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.9rem 1.8rem !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
    }

    /* Trust Metrics Grid Layout (Fixes wrapping & overflow) */
    .hero-trust-divider {
        display: none !important;
    }
    .hero-trust-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.2rem 0.8rem !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 1.5rem auto 0 !important;
    }
    .hero-trust-item {
        flex: 0 1 calc(50% - 0.4rem) !important; /* Two items per row */
        text-align: center !important;
        background: rgba(15, 23, 42, 0.02) !important;
        border: 1px solid rgba(15, 23, 42, 0.05) !important;
        padding: 0.75rem 0.5rem !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }
    .hero-trust-num {
        font-size: 1.35rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.2rem !important;
    }
    .hero-trust-label {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        color: #64748b !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5.5rem 0 3rem !important; /* Slightly less clearance for smaller sticky navbar */
    }
    .hero-heading {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 400px) {
    .hero-heading {
        font-size: 1.6rem !important;
    }
    .hero-trust-item {
        flex: 0 1 100% !important; /* Stack single column on extremely narrow screens */
        max-width: 240px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 340px) {
    .hero-heading {
        font-size: 1.45rem !important;
    }
}

/* ==========================================================================
   ABOUT PAGE — REDESIGN & LIGHT-THEME MODERNIZATION (NO INLINE OR INTERNAL STYLES)
   ========================================================================== */
.about-hero-section {
    position: relative;
    padding: 7rem 0 4.5rem;
    background: #ffffff; /* Clean pure white background */
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.about-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.about-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.about-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.about-hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.5rem;
}
.about-cta-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(202,18,18,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.about-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(202,18,18,0.35);
}
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 1.02rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s;
    text-decoration: none;
}
.about-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.about-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-hero-media-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
    animation: floatUpDown 4s ease-in-out infinite; /* Premium, smooth floating animation */
}
.about-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.about-stats-section {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 4.5rem 0;
}
.about-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}
.about-stats-card {
    position: relative;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
}
.about-stats-card:hover {
    transform: translateY(-4px);
}
.about-stats-number {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #ca1212;
    line-height: 1;
    background: linear-gradient(135deg, #ca1212 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.about-stats-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.about-stats-divider {
    position: absolute;
    right: -1.25rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #cbd5e1;
}

/* Section Common Styles */
.about-eyebrow {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.about-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}
.about-section-sub {
    font-size: 1.05rem;
    color: #475569;
    max-width: 650px;
}
.about-section-sub.center {
    margin: 0 auto 4rem;
    text-align: center;
}

/* Our Story Section */
.about-story-section {
    padding: 5.5rem 0;
    background: #ffffff;
}
.about-story-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}
.about-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 2rem;
}
.about-text strong {
    color: #0f172a;
}

/* Why We Exist Section */
.about-exist-section {
    padding: 5.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.about-exist-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}
.about-exist-left {
    display: flex;
    flex-direction: column;
}
.about-exist-media-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}
.about-exist-media-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* What Makes Us Different Grid */
.about-diff-section {
    padding: 5.5rem 0;
    background: #ffffff;
}
.about-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}
.about-diff-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
}
.about-diff-card:hover {
    transform: translateY(-6px);
    border-color: rgba(202,18,18,0.25);
    box-shadow: 0 20px 40px rgba(15,23,42,0.05), 0 1px 3px rgba(202,18,18,0.05);
}
.about-diff-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(202,18,18,0.05);
    border: 1px solid rgba(202,18,18,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.about-diff-card-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
}
.about-diff-card-text {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.65;
}

/* Industries We Serve */
.about-ind-section {
    padding: 5.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.about-ind-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.about-ind-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.3s;
}
.about-ind-card:hover {
    transform: translateY(-4px);
    border-color: rgba(202,18,18,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.about-ind-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-ind-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

/* Our Approach Steps */
.about-approach-section {
    padding: 5.5rem 0;
    background: #ffffff;
}
.about-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.about-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: all 0.3s;
}
.about-step-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(202,18,18,0.03);
}
.about-step-number {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.about-step-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

/* Tech Stack Section */
.about-tech-section {
    padding: 5.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.about-tech-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-tech-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #475569;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    transition: all 0.3s;
}
.about-tech-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(202,18,18,0.05);
}

/* Global Support Section */
.about-support-section {
    padding: 5.5rem 0;
    background: #ffffff;
}
.about-support-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-support-left {
    display: flex;
    flex-direction: column;
}
.about-support-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-top: 2rem;
}
.about-support-feat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 16px;
}
.about-support-feat-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}
.about-support-feat-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}
.about-support-media-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}
.about-support-media-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial Cards Section */
.about-test-section {
    padding: 8rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.about-test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.about-test-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    transition: all 0.3s;
}
.about-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
.about-test-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.about-test-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    margin-bottom: 2rem;
}
.about-test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.about-test-avatar {
    width: 48px;
    height: 48px;
    background: rgba(202,18,18,0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}
.about-test-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}
.about-test-role {
    font-size: 0.85rem;
    color: #64748b;
}

/* Final CTA Section */
.about-final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ca1212 0%, #a50e0e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-final-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    pointer-events: none;
}
.about-final-cta-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}
.about-final-cta-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
}
.about-final-cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.about-final-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: #ca1212;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.about-final-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}
.about-final-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    text-decoration: none;
}
.about-final-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .about-stats-divider {
        display: none;
    }
    .about-hero-grid, .about-story-row, .about-exist-row, .about-support-row {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .about-hero-grid {
        text-align: left;
    }
    .about-hero-sub {
        max-width: 100%;
    }
    .about-cta-row {
        justify-content: flex-start;
    }
    .about-exist-row {
        display: flex;
        flex-direction: column-reverse;
    }
    .about-support-row {
        display: flex;
        flex-direction: column;
    }
    .about-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-test-grid, .about-mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .about-hero-grid {
        text-align: center;
    }
    .about-cta-row {
        justify-content: center;
        flex-direction: column;
    }
    .about-btn-primary, .about-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .about-stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-diff-grid, .about-ind-grid, .about-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-support-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-hero-section {
        padding: 8rem 0 4rem;
    }
    .about-story-section, .about-exist-section, .about-diff-section,
    .about-ind-section, .about-approach-section, .about-tech-section,
    .about-support-section, .about-test-section, .about-mvv-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   MISSION, VISION, VALUES SECTION (LIGHT THEME)
   ========================================================================== */
.about-mvv-section {
    padding: 5.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.about-mvv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.about-mvv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(202,18,18,0.25);
    box-shadow: 0 20px 40px rgba(15,23,42,0.05), 0 1px 3px rgba(202,18,18,0.03);
}
.about-mvv-icon {
    width: 60px;
    height: 60px;
    background: rgba(202,18,18,0.05);
    border: 1px solid rgba(202,18,18,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all 0.3s;
}
.about-mvv-card:hover .about-mvv-icon {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.05) rotate(5deg);
}
.about-mvv-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.2rem;
}
.about-mvv-text {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 2rem;
    flex: 1;
}
.about-mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}
.about-mvv-list li {
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.about-mvv-list li i {
    color: #22c55e;
    font-size: 1rem;
}

/* ==========================================================================
   CONTACT PAGE — REDESIGN & LIGHT-THEME MODERNIZATION
   ========================================================================== */
.contact-hero-section {
    position: relative;
    padding: 7rem 0 4.5rem;
    background: #ffffff; /* Clean pure white background */
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.contact-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.contact-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.contact-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.contact-hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.5rem;
}

/* Redesigned Info Area & Main Grid spacing */
.contact-main-section {
    padding: 6rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.contact-details-panel {
    display: flex;
    flex-direction: column;
}
.contact-page-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}
.contact-page-sub {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Light form container */
.contact-page-form-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(15,23,42,0.03);
}
.contact-page-form-panel .form-label {
    color: #475569 !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
}
.contact-page-form-panel .form-control {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
.contact-page-form-panel .form-control:focus {
    border-color: rgba(202,18,18,0.4) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(202,18,18,0.08) !important;
}

/* Map area tweaks for Light Theme */
.contact-map-section {
    padding: 6rem 0;
    background: #ffffff;
}
.contact-map-container {
    padding: 1rem;
    border-radius: 2rem;
    overflow: hidden;
    height: 500px;
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
}
.contact-map-iframe-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
}
.contact-map-container:hover .contact-map-iframe-wrapper {
    filter: none;
}
.contact-location-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    padding: 2rem;
    max-width: 320px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}
.contact-location-overlay h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
}
.contact-location-overlay p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569 !important;
}

@media (max-width: 1024px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .contact-hero-sub {
        max-width: 100%;
    }
    .contact-location-overlay {
        position: static !important;
        margin: 2rem auto 0;
        max-width: 100% !important;
    }
    .contact-map-container {
        height: auto !important;
        padding-bottom: 2rem !important;
    }
    .contact-map-iframe-wrapper {
        height: 350px !important;
    }
}

/* Light-theme breadcrumb overrides for About, Contact & Services pages */
.about-hero-section .breadcrumb a,
.contact-hero-section .breadcrumb a,
.services-hero-section .breadcrumb a {
    color: #64748b !important;
    font-weight: 500 !important;
}
.about-hero-section .breadcrumb a:hover,
.contact-hero-section .breadcrumb a:hover,
.services-hero-section .breadcrumb a:hover {
    color: var(--primary) !important;
    text-decoration: underline !important;
}
.about-hero-section .breadcrumb-current,
.contact-hero-section .breadcrumb-current,
.services-hero-section .breadcrumb-current {
    color: #0f172a !important;
    font-weight: 600 !important;
}
.about-hero-section .breadcrumb-sep,
.contact-hero-section .breadcrumb-sep,
.services-hero-section .breadcrumb-sep {
    color: #94a3b8 !important;
}

/* ==========================================================================
   THANK YOU PAGE — REDESIGN & LIGHT-THEME MODERNIZATION
   ========================================================================== */
.thank-you-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.thank-you-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.thank-you-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.thank-you-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    box-shadow: 0 20px 50px rgba(15,23,42,0.04);
    position: relative;
    z-index: 2;
}
.success-icon-wrapper {
    margin-bottom: 2.5rem;
}
.success-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(202, 18, 18, 0.05);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}
.success-icon-circle i {
    font-size: 3rem;
    color: var(--primary);
    animation: check-bounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.success-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(202, 18, 18, 0.25);
    animation: pulse-glow 2s infinite;
}
.thank-you-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.thank-you-subtitle {
    font-size: 1.05rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}
.thank-you-step-card {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}
.thank-you-step-card:hover {
    transform: translateY(-3px);
}
.step-card-num {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.step-card-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.step-card-text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}
.thank-you-cta-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.thank-you-btn-ghost {
    display: inline-flex;
    align-items: center;
    color: #475569;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}
.thank-you-btn-ghost:hover {
    color: var(--primary);
    transform: translateX(5px);
}

@keyframes check-bounce {
    0% { transform: scale(0.3) rotate(45deg); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

@media (max-width: 640px) {
    .thank-you-card {
        padding: 3rem 1.5rem;
    }
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BLOG & BLOG DETAILS PAGES — REDESIGN & LIGHT-THEME MODERNIZATION
   ========================================================================== */
.blog-hero-section {
    position: relative;
    padding: 7rem 0 4.5rem;
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.blog-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.blog-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.blog-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.blog-hero-header {
    text-align: left;
    position: relative;
    z-index: 2;
}
.blog-hero-header .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.blog-hero-header .breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-hero-header .breadcrumb a:hover {
    color: var(--primary);
}
.blog-hero-header .breadcrumb-sep {
    color: #cbd5e1;
    font-size: 0.75rem;
}
.blog-hero-header .breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}
.blog-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.blog-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0;
}
.blog-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}
.blog-hero-media-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
    animation: floatUpDown 4s ease-in-out infinite; /* Premium, smooth floating animation */
}
.blog-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .blog-hero-media {
        display: none;
    }
}

.blog-main-section {
    background: #f8fafc;
    padding: 6rem 0;
}

/* Blog grid styling */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3.5rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(202, 18, 18, 0.15);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}
.blog-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-category {
    display: inline-block;
    /* color: var(--primary); */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.blog-card-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.blog-card:hover .blog-card-title {
    color: var(--primary);
}
.blog-card-excerpt {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}
.blog-card-date {
    font-size: 0.85rem;
    color: #64748b;
}
.blog-card-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Sidebar elements in light theme */
.blog-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}
.blog-sidebar-widget-title {
    font-family: var(--font-head);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0f172a;
    margin-bottom: 1.75rem;
    font-weight: 800;
    border-left: 3px solid var(--primary);
    padding-left: 0.75rem;
}
.blog-sidebar-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #475569;
    font-size: 0.92rem;
    transition: color 0.2s, padding-left 0.2s;
}
.blog-sidebar-cat-link:hover {
    color: var(--primary);
    padding-left: 5px;
}
.blog-sidebar-cat-count {
    background: rgba(202, 18, 18, 0.06);
    color: var(--primary);
    font-size: 0.75rem;
    padding: 0.2rem 0.60rem;
    border-radius: 100px;
    font-weight: 700;
}
.blog-sidebar-post {
    display: block;
    padding: 1.1rem 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
}
.blog-sidebar-post-title {
    font-size: 0.92rem;
    color: #1e293b;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}
.blog-sidebar-post:hover .blog-sidebar-post-title {
    color: var(--primary);
}
.blog-sidebar-post-date {
    font-size: 0.78rem;
    color: #64748b;
}

/* Sidebar form details */
.blog-sidebar-widget .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}
.blog-sidebar-widget .form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
}
.blog-sidebar-widget .form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.92rem;
    background: #f8fafc;
    color: #0f172a;
    transition: all 0.3s;
}
.blog-sidebar-widget .form-control:focus {
    outline: none;
    border-color: rgba(202,18,18,0.4);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(202,18,18,0.08);
}
.blog-sidebar-widget .btn-submit {
    width: 100%;
    margin-top: 1.5rem;
}

/* Blog Content Details Styling */
.blog-featured-img {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}
.blog-featured-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.blog-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 3.5rem;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}
.blog-content-card h2, .blog-content-card h3, .blog-content-card h4 {
    color: #0f172a;
    font-family: var(--font-head);
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}
.blog-content-card h2 { font-size: 1.75rem; }
.blog-content-card h3 { font-size: 1.45rem; }
.blog-content-card p {
    margin-bottom: 1.6rem;
}
.blog-content-card ul, .blog-content-card ol {
    margin-bottom: 1.6rem;
    padding-left: 1.5rem;
}
.blog-content-card li {
    margin-bottom: 0.6rem;
}
.blog-content-card blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #475569;
    margin: 2rem 0;
}
.blog-content-card pre, .blog-content-card code {
    font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
    font-size: 0.9rem;
    background: #f1f5f9;
    color: #ca1212;
    border-radius: 6px;
    padding: 0.2rem 0.4rem;
}
.blog-content-card pre {
    padding: 1.5rem;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 16px;
    overflow-x: auto;
    margin: 2rem 0;
}
.blog-content-card pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.blog-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
}
.blog-footer-meta-share-btn {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s;
}
.blog-footer-meta-share-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(202,18,18,0.02);
}

.blog-back-btn {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.blog-back-btn:hover {
    transform: translateX(-5px);
}

/* Accordion in light theme */
.blog-faq-section {
    margin-top: 6rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 6rem;
}
.blog-faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}
.blog-faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
}
.blog-faq-accordion .accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.blog-faq-accordion .accordion-header:hover {
    color: var(--primary);
}
.blog-faq-accordion .accordion-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.3s;
}
.blog-faq-accordion .accordion-item--active .accordion-icon,
.blog-faq-accordion .faq-item--active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.blog-faq-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.3s ease-out, padding-bottom 0.3s ease-out;
}
.blog-faq-accordion .accordion-item--active .accordion-content,
.blog-faq-accordion .faq-item--active .accordion-content {
    padding-bottom: 1.5rem;
}
.blog-faq-accordion .accordion-content p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Light Theme Pagination overrides */
.blog-main-section .pagination .page-link {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
}
.blog-main-section .pagination .page-item.active .page-link {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px -5px rgba(202, 18, 18, 0.2) !important;
}
.blog-main-section .pagination .page-link:hover:not(.active) {
    background: #f1f5f9 !important;
    color: var(--primary) !important;
    border-color: rgba(202, 18, 18, 0.15) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   PRICING PAGE — REDESIGN & LIGHT-THEME MODERNIZATION
   ========================================================================== */
.pricing-hero-section {
    position: relative;
    padding: 4.5rem 0 3rem;
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.pricing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.pricing-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.03) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.pricing-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(15,23,42,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.012) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.pricing-hero-header {
    text-align: left;
    position: relative;
    z-index: 2;
}
.pricing-hero-header .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    font-weight: 500;
}
.pricing-hero-header .breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.pricing-hero-header .breadcrumb a:hover {
    color: var(--primary);
}
.pricing-hero-header .breadcrumb-sep {
    color: #cbd5e1;
    font-size: 0.75rem;
}
.pricing-hero-header .breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}
.pricing-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}
.pricing-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
}
.pricing-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}
.pricing-hero-media-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 30px rgba(15,23,42,0.05);
    animation: floatUpDown 4s ease-in-out infinite; /* Premium, smooth floating animation */
}
.pricing-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 960px) {
    .pricing-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .pricing-hero-media {
        display: none;
    }
    .pricing-hero-section {
        padding: 3.5rem 0 2.5rem;
    }
}

.pricing-main-section {
    background: #f8fafc;
    padding: 4.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}
.pricing-section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.pricing-section-header h2 {
    font-family: var(--font-head);
    font-weight: 800;
    color: #0f172a;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Premium Pricing Cards */
.premium-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #94a3b8; /* Default top border indicator */
    border-radius: 16px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.premium-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}
.premium-pricing-card.featured {
    border-top: 5px solid var(--primary);
    box-shadow: 0 8px 25px rgba(202,18,18,0.04);
}
.premium-pricing-card.featured:hover {
    box-shadow: 0 18px 35px rgba(202,18,18,0.08);
}
.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    box-shadow: 0 3px 8px rgba(202,18,18,0.2);
}

.pricing-card-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.pricing-plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: background 0.3s ease;
}
.premium-pricing-card:hover .pricing-plan-icon {
    background: rgba(202,18,18,0.05);
}
.premium-pricing-card.featured .pricing-plan-icon {
    background: rgba(202,18,18,0.05);
}

.pricing-card-top {
    margin-bottom: 1.5rem;
}
.pricing-plan-name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}
.pricing-plan-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.45;
    min-height: 38px;
    margin: 0;
}
.pricing-price-container {
    margin-top: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}
.pricing-amount-inr {
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.pricing-amount-cycle {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}
.pricing-hours-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(202,18,18,0.05);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    margin-top: 0.85rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}
.pricing-features-list li {
    font-size: 0.88rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.4;
}
.pricing-features-list li i {
    color: #22c55e;
    font-size: 0.9rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.pricing-card-btn {
    text-align: center;
}

/* SEO Friendly Benefits Section */
.pricing-benefits-section {
    background: #ffffff;
    padding: 4.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}
.pricing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.benefit-item {
    text-align: left;
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(202,18,18,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.benefit-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.benefit-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .pricing-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Beautiful Custom CTA Section at the bottom */
.pricing-cta-section {
    background: #f8fafc;
    padding: 4.5rem 0;
}
.pricing-cta-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,0.15);
}
.pricing-cta-card-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(202,18,18,0.12) 0%, transparent 70%);
    bottom: -50%;
    right: -10%;
    filter: blur(50px);
    pointer-events: none;
}
.pricing-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}
.pricing-cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}
.pricing-cta-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Accordion in light theme pricing */
.pricing-faq-section {
    padding: 4.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

/* ==========================================================================
   SERVICES PAGE — light hero + catalog grid (matches About / Contact)
   ========================================================================== */
.services-hero-section {
    position: relative;
    padding: 7rem 0 4.5rem;
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.services-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.services-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.services-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.services-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.services-hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.5rem;
}
.services-hero-media-frame {
    position: relative;
}
.services-hero-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
.services-hero-badge i {
    color: var(--primary);
}

.services-grid-section {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
    background: var(--light-bg);
    border-bottom: 1px solid #e2e8f0;
    overflow: visible;
    min-height: 200px;
}
/* Services catalog: always visible (no scroll-reveal hide) */
.services-grid-section [data-animate],
.services-grid-section .services-page-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
.services-grid-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.services-grid-section .section-title {
    color: var(--light-text);
}
.services-grid-section .section-sub {
    color: var(--light-muted);
}
.services-grid-section .section-label {
    color: var(--primary);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    width: 100%;
    position: relative;
    z-index: 2;
}
.services-page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.services-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15,23,42,0.1);
    border-color: rgba(202,18,18,0.25);
}
.services-page-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.services-page-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}
.services-page-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.services-page-card:hover .services-page-card__media img {
    transform: scale(1.05);
}
.services-page-card__icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
}
.services-page-card__icon--red    { color: #ca1212; }
.services-page-card__icon--amber  { color: #d97706; }
.services-page-card__icon--blue   { color: #2563eb; }
.services-page-card__icon--green  { color: #16a34a; }
.services-page-card__icon--purple { color: #9333ea; }
.services-page-card__icon--cyan   { color: #0891b2; }

.services-page-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
    position: relative;
}
.services-page-card__title {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}
.services-page-card__excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.services-page-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    padding: 0.75rem 1.1rem;
    border-radius: 50px;
    background: var(--primary);
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.services-page-card:hover .services-page-card__btn {
    background: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(202,18,18,0.28);
}
.services-page-card__btn i {
    transition: transform 0.25s ease;
}
.services-page-card:hover .services-page-card__btn i {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 640px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    .services-hero-section {
        padding: 5.5rem 0 3rem;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGES — light theme (all /services/{slug} blades)
   ========================================================================== */
.svc-detail-hero {
    position: relative;
    padding: 7rem 0 4.5rem;
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.svc-detail-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.svc-detail-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202,18,18,0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.svc-detail-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.svc-detail-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.svc-detail-hero-sub {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.25rem;
}
.svc-detail-hero-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
.svc-detail-hero-badge i { color: var(--primary); }

.svc-detail-hero .breadcrumb a,
.services-hero-section .breadcrumb a {
    color: #64748b !important;
    font-weight: 500 !important;
}
.svc-detail-hero .breadcrumb a:hover {
    color: var(--primary) !important;
}
.svc-detail-hero .breadcrumb-current {
    color: #0f172a !important;
    font-weight: 600 !important;
}
.svc-detail-hero .breadcrumb-sep { color: #94a3b8 !important; }
.svc-detail-hero .about-eyebrow i { margin-right: 0.35rem; }

.svc-detail-section {
    padding: 5.5rem 0;
}
.svc-detail-deliverables {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.svc-detail-process {
    background: var(--light-bg);
    border-bottom: 1px solid #e2e8f0;
}
.svc-detail-faq {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.svc-detail-inquiry {
    background: #f8fafc;
}

.svc-detail-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
}
.svc-detail-split__media { order: 0; }
.svc-detail-split__content { order: 1; }

.svc-detail-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.svc-detail-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.svc-detail-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(202,18,18,0.08);
    border: 1px solid rgba(202,18,18,0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.svc-detail-feature__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
}
.svc-detail-feature__text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.svc-detail-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.svc-detail-process-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-detail-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.08);
    border-color: rgba(202,18,18,0.2);
}
.svc-detail-process-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 800;
    color: #cbd5e1;
}
.svc-detail-process-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(202,18,18,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.svc-detail-process-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.svc-detail-process-text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.svc-detail-faq-list { max-width: 820px; margin: 0 auto; }
/* Light FAQ: support main.js .active class on accordion-item */
.blog-faq-accordion.svc-detail-faq-list .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.blog-faq-accordion.svc-detail-faq-list .accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
    max-height: 500px;
}

.svc-detail-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.svc-detail-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}
.svc-detail-checklist i {
    color: var(--primary);
    margin-top: 0.15rem;
}

.contact-page-form-panel .error-text,
.svc-detail-inquiry .error-text {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

@media (max-width: 1100px) {
    .svc-detail-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .svc-detail-hero-grid,
    .svc-detail-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .svc-detail-split__media { order: -1; }
}
@media (max-width: 640px) {
    .svc-detail-process-grid { grid-template-columns: 1fr; }
    .svc-detail-hero { padding: 5.5rem 0 3rem; }
}

/* QA service page refinements */
.qa-lifecycle-section {
    padding-top: 4.5rem;
}
.qa-lifecycle-grid .svc-detail-process-card {
    min-height: 240px;
}

.qa-inquiry-grid {
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 2rem !important;
    align-items: start;
}
.qa-inquiry-grid .contact-details-panel {
    padding-right: 0.5rem;
}
.qa-inquiry-grid .contact-page-sub {
    margin-bottom: 1.25rem;
}
.qa-inquiry-grid .contact-page-form-panel {
    padding: 2.25rem 2rem;
}
.qa-inquiry-grid .form-group {
    margin-bottom: 0.9rem;
}
.qa-inquiry-mini-stats {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.qa-mini-stat {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.7rem 0.65rem;
    text-align: center;
}
.qa-mini-stat__num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}
.qa-mini-stat__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Upgrade form section balance */
.upgrade-inquiry-grid .contact-details-panel {
    display: flex;
    flex-direction: column;
}
.upgrade-mini-stats {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.upgrade-mini-stat {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.7rem 0.65rem;
    text-align: center;
}
.upgrade-mini-stat__num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}
.upgrade-mini-stat__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.upgrade-next-steps {
    margin-top: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
}
.upgrade-next-steps h4 {
    margin: 0 0 0.5rem;
    color: #0f172a;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.upgrade-next-steps h4 i {
    color: var(--primary);
}
.upgrade-next-steps ul {
    margin: 0;
    padding-left: 1rem;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .qa-inquiry-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .qa-inquiry-grid .contact-page-form-panel {
        padding: 2rem 1.25rem;
    }
    .upgrade-mini-stats {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .qa-inquiry-mini-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== ADDITIONAL RESPONSIVE OPTIMIZATIONS FOR INNER PAGES (ABOUT & SERVICES) ===== */
@media (max-width: 1024px) {
    .about-mvv-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    .about-mvv-grid .about-mvv-card:nth-child(3) {
        grid-column: span 2 !important;
    }
}

@media (max-width: 768px) {
    .about-hero-title,
    .services-hero-title {
        font-size: clamp(1.8rem, 8vw, 2.3rem) !important;
        line-height: 1.2 !important;
        letter-spacing: -0.02em !important;
    }
    .about-hero-sub,
    .services-hero-sub {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    .about-section-title,
    .services-section-title {
        font-size: clamp(1.5rem, 6vw, 1.85rem) !important;
        line-height: 1.3 !important;
    }
    .about-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Optimize card paddings on mobile to maximize horizontal spacing */
    .about-diff-card,
    .about-ind-card,
    .about-step-card,
    .about-mvv-card {
        padding: 1.5rem 1.25rem !important;
    }
    
    .about-hero-section,
    .services-hero-section {
        padding: 5rem 0 3rem !important;
    }

    /* Ensure Mission Vision Values grid stacks nicely on mobile */
    .about-mvv-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .about-mvv-grid .about-mvv-card:nth-child(3) {
        grid-column: span 1 !important;
    }
}


