/* ================================================================
   QUANTORA — Premium B2B Editorial Dark
   Syne (display) + DM Sans (body)
   Palette: Deep Navy · Warm Gold · Warm White
================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:           #07090F;
    --bg-2:         #0C1120;
    --bg-3:         #111826;
    --accent:       #C99B3A;
    --accent-2:     #E8B84B;
    --accent-dim:   rgba(201, 155, 58, 0.10);
    --accent-border:rgba(201, 155, 58, 0.28);
    --text:         #E6E3DC;
    --text-muted:   #6A7485;
    --text-subtle:  #4A5263;
    --border:       rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --green:        #4ADE80;
    --gradient-gold: linear-gradient(135deg, #C99B3A 0%, #E8C86A 100%);
    --radius-sm:    4px;
    --radius-md:    8px;
    --radius-lg:    14px;
    --radius-pill:  999px;
    --shadow-card:  0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
    --shadow-gold:  0 0 24px rgba(201, 155, 58, 0.18);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -48px;
    left: 0;
    background: var(--accent);
    color: #000;
    padding: 10px 16px;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Scroll Progress ──────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--gradient-gold);
    z-index: 2000;
    transform-origin: left center;
}

/* ── Container ────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Focus Styles ─────────────────────────────────────────── */
:where(a, button, .cta-button, .nav-link):focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ================================================================
   NAVIGATION
================================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 64px;
    max-width: 1180px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-icon svg {
    animation: none;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text);
}

/* Gold Q highlight */
.logo-text::first-letter {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: var(--accent) !important;
    color: #070A12 !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, box-shadow 0.2s ease !important;
}

.contact-btn::after { display: none; }

.contact-btn:hover {
    background: var(--accent-2) !important;
    box-shadow: var(--shadow-gold) !important;
    color: #070A12 !important;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================================================================
   HERO
================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

/* Dark radial background — no distracting gradients */
.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 155, 58, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 15% 80%, rgba(20, 35, 70, 0.6) 0%, transparent 70%),
        var(--bg);
    z-index: 0;
}

/* Subtle dot grid */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.particles { display: none; }
.gradient-overlay { display: none; }

/* Floating geometric accents */
.geometric-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border: 1px solid rgba(201, 155, 58, 0.12);
    border-radius: 0;
}

.shape-1 {
    width: 320px;
    height: 320px;
    top: 8%;
    right: 8%;
    transform: rotate(12deg);
    animation: slowRotate 30s linear infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 6%;
    transform: rotate(-8deg);
    animation: slowRotate 22s linear infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 55%;
    right: 28%;
    border-color: rgba(201, 155, 58, 0.2);
    animation: slowRotate 18s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
    animation: heroReveal 0.9s cubic-bezier(0.22, 0.8, 0.22, 1) both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 28px;
}

.badge-icon {
    width: 13px;
    height: 13px;
    color: var(--accent);
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}

/* Gold accent word */
.hero-title em {
    font-style: normal;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

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

.stat-item .stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 1.5px solid var(--accent-border);
    border-bottom: 1.5px solid var(--accent-border);
    transform: rotate(45deg);
    animation: scrollBounce 2.4s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
    50%       { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ================================================================
   BUTTONS
================================================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.cta-button.primary {
    background: var(--accent);
    color: #07090F;
}

.cta-button.primary:hover {
    background: var(--accent-2);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.cta-button.secondary:hover {
    border-color: var(--accent-border);
    color: var(--accent);
    transform: translateY(-1px);
}

.cta-button.full-width {
    width: 100%;
}

.button-icon {
    width: 16px;
    height: 16px;
}

.button-glow { display: none; }

/* Magnetic class kept for JS compat */
.cta-button.magnetic {
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* ================================================================
   SECTIONS — shared
================================================================ */
section {
    padding: 96px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-align: center;
    margin-bottom: 20px;
    /* Override old gradient */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* ================================================================
   ABOUT
================================================================ */
.about {
    background: var(--bg-2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-3);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.feature-card:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

/* Remove old gradient pseudo */
.feature-icon::before { display: none; }

.feature-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    z-index: 2;
}

.feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    text-align: center;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: center;
}

/* ================================================================
   SERVICES
================================================================ */
.services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-2);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Top accent line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

.service-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}

/* 3D tilt compat */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt .tilt-shadow {
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 200px at var(--mx, 50%) var(--my, 50%), rgba(201,155,58,0.06), transparent 60%);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.service-card.featured {
    border: 1px solid var(--accent-border);
    box-shadow: 0 0 0 1px rgba(201,155,58,0.12);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #07090F;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon .icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.service-card > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.check-icon {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0;
}

/* ================================================================
   RESULTS
================================================================ */
.results {
    background: var(--bg-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

.stat-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.stat-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.3rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    white-space: nowrap;
    /* Override gradient */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.stat-suffix {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    background: none;
    -webkit-text-fill-color: unset;
}

.stat-card p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ================================================================
   WHY US
================================================================ */
.why-us {
    background: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    background: var(--bg-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Left accent bar */
.benefit-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    border-color: var(--accent-border);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.benefit-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   CONTACT
================================================================ */
.contact {
    background: var(--bg-2);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-3);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-subtle);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--bg-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
    border-color: var(--accent-border);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.contact-details h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-details a,
.contact-details span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.825rem;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-alternative {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* ================================================================
   NOTIFICATIONS
================================================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-3);
    color: var(--text);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-hover);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    max-width: 340px;
    box-shadow: var(--shadow-card);
}

.notification.show {
    transform: translateX(0);
}

.notification.success { border-color: rgba(74, 222, 128, 0.4); }
.notification.error   { border-color: rgba(239, 68, 68, 0.4); }
.notification.info    { border-color: var(--accent-border); }

.notification-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.notification span {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
[data-animate] {
    opacity: 0;
    transform: var(--reveal-transform, translateY(24px));
    filter: blur(var(--reveal-blur, 0));
    transition:
        transform 700ms cubic-bezier(0.22, 0.8, 0.22, 1),
        opacity 700ms ease,
        filter 700ms ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

[data-animate="up"]     { --reveal-transform: translateY(28px); }
[data-animate="down"]   { --reveal-transform: translateY(-28px); }
[data-animate="left"]   { --reveal-transform: translateX(28px); }
[data-animate="right"]  { --reveal-transform: translateX(-28px); }
[data-animate="scale"]  { --reveal-transform: scale(0.96); }
[data-animate="rotate"] { --reveal-transform: perspective(800px) rotateX(8deg); transform-origin: top center; }
[data-animate="blur"]   { --reveal-blur: 6px; }

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ================================================================
   CURSOR BLOB
================================================================ */
#cursor-blob {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle at 35% 35%, rgba(201,155,58,0.12), rgba(201,155,58,0.04) 50%, transparent 70%);
    mix-blend-mode: screen;
    filter: blur(40px);
    transform: translate(-50%, -50%);
    opacity: 0.7;
    z-index: 1500;
    transition: transform 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
    #cursor-blob { display: none; }
}

/* ================================================================
   KEYFRAMES (preserved for JS compatibility)
================================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes particleFloat {
    from  { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%   { opacity: 0.6; }
    90%   { opacity: 0.6; }
    to    { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@keyframes glitch {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(-2px); }
    40%  { transform: translateX(2px); }
    60%  { transform: translateX(-1px); }
    80%  { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.animate-spin { animation: spin 1s linear infinite; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-main {
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.contact-cta {
    background: var(--bg-2);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 48px;
}

.contact-cta h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    background: none;
    -webkit-text-fill-color: unset;
}

.contact-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-cta .cta-button {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.825rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.825rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text);
    background: none;
    -webkit-text-fill-color: unset;
}

.footer-copyright {
    color: var(--text-subtle);
    font-size: 0.8rem;
}

/* Business hours */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.business-hours .hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.business-hours .hours-item .day {
    font-weight: 500;
}

.business-hours .hours-item .time {
    color: var(--accent);
}

/* Company info */
.company-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.company-info .company-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.company-info a {
    color: var(--accent);
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

.company-info div {
    margin-bottom: 4px;
}

.company-info strong {
    color: var(--text);
    font-weight: 500;
}

/* ================================================================
   RESPONSIVE — 1024px
================================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-stats {
        gap: 32px;
    }
}

/* ================================================================
   RESPONSIVE — 768px
================================================================ */
@media (max-width: 768px) {
    #cursor-blob { display: none; }

    section { padding: 64px 0; }

    .container { padding: 0 16px; }

    /* Nav mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(7, 9, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-menu.active { display: flex; }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .contact-btn {
        padding: 12px 28px !important;
        font-size: 1rem !important;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
        min-height: 100vh;
        height: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-subtitle { font-size: 1rem; }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding-top: 28px;
    }

    .geometric-shapes { display: none; }

    /* Grids */
    .features-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .form-row { grid-template-columns: 1fr; }

    .contact-alternative { grid-column: auto; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .business-hours .hours-item {
        justify-content: center;
        gap: 12px;
    }

    .contact-cta { padding: 28px 20px; }

    .scroll-indicator { display: none; }
}

/* ================================================================
   RESPONSIVE — 480px
================================================================ */
@media (max-width: 480px) {
    .container { padding: 0 12px; }

    .nav-container { padding: 0 16px; }

    .hero { padding: 100px 0 48px; }

    .hero-title {
        font-size: clamp(1.9rem, 10vw, 2.6rem);
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .feature-card,
    .service-card,
    .stat-card {
        padding: 24px 20px;
    }

    .stat-number { font-size: 2.2rem; }

    .footer { padding: 48px 0 24px; }

    .notification {
        max-width: calc(100% - 24px);
        right: 12px;
    }
}

/* ================================================================
   LANDSCAPE MOBILE
================================================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 48px;
    }
    .hero-stats {
        flex-direction: row;
        gap: 28px;
    }
}
