/* ══════════════════════════════════════════════════════════
   PRISMIQ GLOBAL, Shared Design System
   ══════════════════════════════════════════════════════════ */

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

:root {
    --bg: #050508;
    --bg2: #0c0c14;
    --bg3: #10101c;
    --violet: #8b5cf6;
    --violet-dim: rgba(139, 92, 246, 0.12);
    --violet-border: rgba(139, 92, 246, 0.2);
    --teal: #2dd4bf;
    --magenta: #ec4899;
    --text: #f0f0f8;
    --muted: #8a8aab;
    --card-bg: rgba(139, 92, 246, 0.045);
    --radius: 14px;
    --mx: 50%;
    --my: 50%;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
}

body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.4;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--violet); color: #fff; }

/* focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--teal); outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── CURSOR GLOW & CUSTOM CURSOR (4D FEEL) ── */
#cursorGlow {
    position: fixed; top: 0; left: 0; width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, rgba(45,212,191,0.05) 40%, transparent 70%);
    pointer-events: none; z-index: 2; transform: translate(-50%, -50%);
    mix-blend-mode: screen; will-change: transform;
}
#customCursor {
    position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    background-color: #fff; border-radius: 50%;
    pointer-events: none; z-index: 99999; transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    will-change: transform;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}
#customCursorTrail {
    position: fixed; top: 0; left: 0; width: 18px; height: 18px;
    border: 1.5px solid rgba(139, 92, 246, 0.5); border-radius: 50%;
    pointer-events: none; z-index: 99998; transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.1, 0.8, 0.2, 1), height 0.25s cubic-bezier(0.1, 0.8, 0.2, 1), border-color 0.25s ease, background-color 0.25s ease;
    will-change: transform;
}
body.cursor-hovering #customCursor {
    width: 8px; height: 8px; background-color: var(--teal);
    box-shadow: 0 0 8px var(--teal);
}
body.cursor-hovering #customCursorTrail {
    width: 26px; height: 26px;
    border-color: var(--teal);
    background-color: rgba(45, 212, 191, 0.03);
}
@media (hover: hover) and (pointer: fine) {
    body, a, button, select, input, textarea, .tilt, .faq-q, .shot-tab, .mobile-toggle {
        cursor: none !important;
    }
}
@media (max-width: 900px), (hover: none) { 
    #cursorGlow, #customCursor, #customCursorTrail { display: none !important; }
    body, a, button, select, input, textarea, .tilt, .faq-q, .shot-tab, .mobile-toggle { cursor: auto !important; }
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--violet-border);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-text {
    font-family: 'Manrope', sans-serif; font-size: 19px; font-weight: 900; letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff 0%, #c084fc 55%, #2dd4bf 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color 0.25s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-drop { position: relative; }
.nav-drop-panel {
    position: absolute; top: 130%; left: 50%; transform: translateX(-50%);
    background: var(--bg3); border: 1px solid var(--violet-border); border-radius: 12px;
    padding: 10px; min-width: 220px; display: none; flex-direction: column; gap: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 10;
}
.nav-drop:hover .nav-drop-panel { display: flex; }
.nav-drop-panel a { padding: 9px 12px; border-radius: 8px; font-size: 13px; }
.nav-drop-panel a:hover { background: var(--violet-dim); color: var(--text); }
.nav-cta {
    display: flex; align-items: center; gap: 8px; padding: 9px 20px;
    background: linear-gradient(135deg, var(--violet), #6d28d9);
    border: none; border-radius: 8px; color: #fff; font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all 0.3s; cursor: pointer; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,92,246,0.35); }
.nav-cta i { width: 14px; height: 14px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }

/* ── PAGE HERO (subpages) ── */
.page-hero { padding: 150px 5% 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero .hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--violet); }
.page-hero h1 {
    font-family: 'Manrope', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 900;
    letter-spacing: -2px; margin-bottom: 18px; line-height: 1.1; position: relative; z-index: 1;
    background: linear-gradient(160deg, #ffffff 0%, #e2d9f3 35%, #a78bfa 65%, #2dd4bf 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p.lead { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 16.5px; line-height: 1.75; position: relative; z-index: 1; }
.page-hero .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; position: relative; z-index: 1; }

/* ── HERO (home) ── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 150px 5% 80px; position: relative; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; transition: transform 0.2s cubic-bezier(0.1, 0.8, 0.2, 1); }
.orb1 { width: 500px; height: 500px; top: -150px; left: 50%; transform: translate(calc(-50% + var(--orb-x, 0px)), var(--orb-y, 0px)); background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); }
.orb2 { width: 300px; height: 300px; bottom: 100px; right: 5%; transform: translate(var(--orb-x, 0px), var(--orb-y, 0px)); background: radial-gradient(circle, rgba(45,212,191,0.12) 0%, transparent 70%); }
.orb3 { width: 260px; height: 260px; bottom: -60px; left: 2%; transform: translate(var(--orb-x, 0px), var(--orb-y, 0px)); background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%); }
.hero-inner { max-width: 1280px; width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 50px; font-size: 12px; color: #a78bfa; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 28px; }
.hero-badge i { width: 13px; height: 13px; }
h1 { font-family: 'Manrope', sans-serif; font-size: clamp(38px, 5.2vw, 64px); font-weight: 900; line-height: 1.08; letter-spacing: -2.5px; margin-bottom: 22px; background: linear-gradient(160deg, #ffffff 0%, #e2d9f3 35%, #a78bfa 65%, #2dd4bf 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad { background: linear-gradient(135deg, #c084fc 0%, #818cf8 40%, #2dd4bf 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17.5px; color: var(--muted); margin-bottom: 38px; max-width: 560px; line-height: 1.75; font-weight: 400; letter-spacing: 0.1px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 55px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: linear-gradient(135deg, var(--violet), #6d28d9); border: none; border-radius: 10px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(139,92,246,0.4); }
.btn-primary i { width: 16px; height: 16px; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: transparent; border: 1px solid var(--violet-border); border-radius: 10px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--violet); background: var(--violet-dim); }
.btn-outline i { width: 16px; height: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.trust-bar { display: flex; gap: 0; flex-wrap: wrap; }
.trust-item { padding: 10px 28px 10px 0; text-align: left; border-right: 1px solid var(--violet-border); margin-right: 28px; }
.trust-item:last-child { border-right: none; margin-right: 0; }
.trust-number { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 900; background: linear-gradient(135deg, #c084fc, #2dd4bf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 3px; }
.trust-label { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── 3D HERO VISUAL ── */
.hero-3d-wrap { position: relative; height: 480px; perspective: 1400px; display: flex; align-items: center; justify-content: center; }
.hero-3d-stage { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.15s ease-out; }
.glass-card { position: absolute; width: 230px; padding: 22px; background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(139,92,246,0.05)); border: 1px solid var(--violet-border); border-radius: 18px; backdrop-filter: blur(18px); box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08); animation: float 6s ease-in-out infinite; }
.glass-card .gc-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.glass-card .gc-icon i { width: 20px; height: 20px; color: #fff; }
.glass-card h4 { font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 800; margin-bottom: 4px; }
.glass-card p { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.gc-1 { top: 8%; left: 4%; transform: translateZ(60px) rotate(-6deg); z-index: 3; animation-delay: 0s; }
.gc-1 .gc-icon { background: linear-gradient(135deg, var(--violet), #6d28d9); }
.gc-2 { top: 32%; right: 0%; transform: translateZ(120px) rotate(4deg); z-index: 4; animation-delay: 1.5s; }
.gc-2 .gc-icon { background: linear-gradient(135deg, var(--teal), #0d9488); }
.gc-3 { bottom: 6%; left: 14%; transform: translateZ(20px) rotate(3deg); z-index: 2; animation-delay: 3s; }
.gc-3 .gc-icon { background: linear-gradient(135deg, var(--magenta), #be185d); }
.gc-4 { bottom: 26%; right: 16%; transform: translateZ(90px) rotate(-4deg); z-index: 5; animation-delay: 4.2s; width: 170px; padding: 16px; }
.gc-4 .gc-icon { background: linear-gradient(135deg, #f59e0b, #b45309); width: 32px; height: 32px; }
.gc-4 .gc-icon i { width: 16px; height: 16px; }
.hero-core { position: absolute; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(139,92,246,0.9), rgba(45,212,191,0.5) 60%, transparent 80%); filter: blur(6px); transform: translateZ(-20px); animation: pulse 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateZ(var(--z,60px)) translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateZ(var(--z,60px)) translateY(-14px) rotate(var(--r,0deg)); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: translateZ(-20px) scale(1); } 50% { opacity: 0.8; transform: translateZ(-20px) scale(1.15); } }
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-desc { margin-inline: auto; }
    .hero-btns { justify-content: center; }
    .trust-bar { justify-content: center; }
    .hero-3d-wrap { height: 320px; margin-top: 20px; }
    .glass-card { width: 160px; padding: 14px; }
}

/* ── MARQUEE (generic) ── */
.marquee-section { padding: 26px 0; border-top: 1px solid var(--violet-border); border-bottom: 1px solid var(--violet-border); overflow: hidden; background: var(--bg2); }
.marquee-track { display: flex; width: max-content; animation: scrollMarquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track.rev { animation-direction: reverse; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 34px; white-space: nowrap; color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: 0.3px; }
.marquee-item i { width: 15px; height: 15px; color: var(--violet); }
.marquee-item::after { content: '•'; margin-left: 34px; color: var(--violet-border); }
@keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── TECH STACK LOGOS ── */
.tech-marquee-wrap { max-width: 1200px; margin: 0 auto; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); overflow: hidden; }
.tech-track { display: flex; width: max-content; gap: 16px; animation: scrollMarquee 40s linear infinite; }
.tech-track:hover { animation-play-state: paused; }
.tech-chip { display: flex; align-items: center; gap: 10px; padding: 14px 22px; border: 1px solid var(--violet-border); border-radius: 12px; background: var(--card-bg); white-space: nowrap; transition: all 0.25s; }
.tech-chip:hover { border-color: var(--violet); background: var(--violet-dim); transform: translateY(-3px); }
.tech-chip i { width: 18px; height: 18px; color: var(--violet); }
.tech-chip svg {
    width: 18px; height: 18px;
    vertical-align: middle;
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: grayscale(1) brightness(1.3) opacity(0.75);
}
.tech-chip:hover svg {
    filter: none;
    transform: scale(1.15);
}
.social-link svg {
    width: 18px; height: 18px;
    fill: currentColor;
    vertical-align: middle;
    transition: transform 0.25s ease;
}
.social-link:hover svg {
    transform: scale(1.12);
}
.tech-disclaimer { max-width: 780px; margin: 34px auto 0; text-align: center; font-size: 11.5px; color: var(--muted); line-height: 1.7; opacity: 0.8; }

/* ── SECTIONS ── */
section { padding: 90px 5%; position: relative; }
.alt-bg { background: var(--bg2); }
.section-header { max-width: 680px; margin: 0 auto 55px; text-align: center; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 50px; font-size: 11px; color: #a78bfa; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.section-tag i { width: 12px; height: 12px; }
h2 { font-family: 'Manrope', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1.1; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── 3D TILT (shared) ── */
.tilt { transform-style: preserve-3d; transition: transform 0.3s cubic-bezier(.1,.73,.1,1), box-shadow 0.3s; position: relative; overflow: hidden; }
.tilt::before { content: ''; position: absolute; inset: 0; background: radial-gradient(320px circle at var(--mx) var(--my), rgba(255,255,255,0.09), transparent 55%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.tilt:hover::before { opacity: 1; }

.tilt-sheen {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(255,255,255,0.03) 100%);
    pointer-events: none; z-index: 5; opacity: 0; transition: opacity 0.3s;
    mix-blend-mode: overlay;
}
.tilt:hover .tilt-sheen {
    opacity: 1;
}

/* 4D Inner Depth layers */
.tilt .serve-icon, .tilt .svc-icon, .tilt .why-icon, .tilt .product-icon, .tilt .erp-icon, .tilt .fc-icon, .tilt .success-icon {
    transform: translateZ(35px);
    transition: transform 0.25s cubic-bezier(.1,.73,.1,1);
}
.tilt h3, .tilt h4 {
    transform: translateZ(28px);
    transition: transform 0.25s cubic-bezier(.1,.73,.1,1);
}
.tilt p, .tilt .erp-support-badge, .tilt .product-badge, .tilt .product-tagline {
    transform: translateZ(16px);
    transition: transform 0.25s cubic-bezier(.1,.73,.1,1);
}
.tilt .card-link, .tilt .svc-footer, .tilt .erp-bottom, .tilt .erp-features, .tilt .product-cta, .tilt .erp-meta {
    transform: translateZ(24px);
    transition: transform 0.25s cubic-bezier(.1,.73,.1,1);
}

/* ── GENERIC CARD GRIDS ── */
.serve-grid, .services-grid, .products-grid, .case-grid, .blog-grid, .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; max-width: 1200px; margin: 0 auto; }
.serve-card, .service-card, .case-card, .blog-card, .future-card { padding: 28px 26px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); transition: all 0.3s; }
.serve-card:hover, .service-card:hover, .case-card:hover, .blog-card:hover, .future-card:hover { transform: translateY(-4px); border-color: var(--violet); box-shadow: 0 16px 45px rgba(139,92,246,0.18); }
.serve-icon, .svc-icon, .why-icon, .contact-card-icon, .product-icon, .erp-icon { width: 46px; height: 46px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--violet); }
.serve-icon i, .svc-icon i, .why-icon i, .contact-card-icon i, .product-icon i, .erp-icon i { width: 22px; height: 22px; }
.serve-card h3, .service-card h3, .case-card h3, .blog-card h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.serve-card p, .service-card p, .case-card p, .blog-card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: #a78bfa; font-size: 13px; font-weight: 700; text-decoration: none; }
.card-link i { width: 14px; height: 14px; }
.card-link:hover { color: var(--teal); }

.svc-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--violet-border); margin-top: 18px; }
.svc-price { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: var(--violet); }
.svc-btn { display: inline-flex; align-items: center; gap: 5px; padding: 8px 16px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 7px; color: #a78bfa; font-size: 12px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.25s; font-family: 'Plus Jakarta Sans', sans-serif; }
.svc-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.svc-btn i { width: 12px; height: 12px; }

/* ── ERP CARDS ── */
.erp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.erp-card { padding: 32px 28px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); transition: all 0.3s; }
.erp-card:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: 0 20px 55px rgba(139,92,246,0.22); }
.erp-icon { width: 52px; height: 52px; border-radius: 14px; }
.erp-icon i { width: 26px; height: 26px; }
.erp-card h3 { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.erp-support-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.25); border-radius: 50px; font-size: 11px; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.erp-support-badge i { width: 11px; height: 11px; }
.erp-card > p { color: var(--muted); font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.erp-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 20px; }
.erp-features span { padding: 7px 10px; background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.1); border-radius: 7px; color: var(--muted); font-size: 11.5px; display: flex; align-items: center; gap: 5px; }
.erp-features span i { width: 11px; height: 11px; color: var(--violet); flex-shrink: 0; }
.erp-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--violet-border); }
.erp-meta strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 3px; }
.erp-meta span { font-size: 13px; font-weight: 600; }
.erp-cta { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 8px; color: #a78bfa; font-size: 12px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.25s; font-family: 'Plus Jakarta Sans', sans-serif; }
.erp-cta:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.erp-cta i { width: 13px; height: 13px; }
.erp-note { text-align: center; max-width: 640px; margin: 30px auto 0; font-size: 13px; color: var(--muted); }
.erp-note strong { color: var(--text); }

/* ── PRODUCTS / FUTURE VISION ── */
.products-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.product-card { padding: 34px 30px; background: linear-gradient(160deg, rgba(139,92,246,0.09), rgba(45,212,191,0.04)); border: 1px solid var(--violet-border); border-radius: var(--radius); position: relative; grid-column: span 1; }
.product-card:hover { border-color: var(--violet); box-shadow: 0 22px 55px rgba(139,92,246,0.2); transform: translateY(-4px); }
.product-badge { position: absolute; top: 24px; right: 24px; padding: 4px 12px; border-radius: 50px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.badge-live { background: rgba(45,212,191,0.12); border: 1px solid rgba(45,212,191,0.3); color: var(--teal); }
.badge-soon { background: rgba(139,92,246,0.12); border: 1px solid var(--violet-border); color: #a78bfa; }
.product-icon { width: 56px; height: 56px; border-radius: 14px; }
.product-icon i { width: 28px; height: 28px; }
.product-card h3 { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 900; margin-bottom: 4px; letter-spacing: -0.4px; }
.product-tagline { font-size: 12.5px; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.product-card p.pdesc { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.product-cta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: linear-gradient(135deg, var(--violet), #6d28d9); border: none; border-radius: 8px; color: #fff; font-size: 12.5px; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.25s; font-family: 'Plus Jakarta Sans', sans-serif; margin-right: 8px; }
.product-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(139,92,246,0.35); }
.product-cta.ghost { background: transparent; border: 1px solid var(--violet-border); color: var(--text); }
.product-cta i { width: 13px; height: 13px; }
.products-footnote { text-align: center; color: var(--muted); font-size: 13px; margin-top: 34px; }

.future-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 900px; margin: 40px auto 0; }
.future-card { text-align: center; padding: 26px 20px; opacity: 0.85; }
.future-card .fc-icon { width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 10px; background: var(--violet-dim); border: 1px dashed var(--violet-border); display: flex; align-items: center; justify-content: center; color: var(--violet); }
.future-card .fc-icon i { width: 20px; height: 20px; }
.future-card h4 { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.future-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.future-label { text-align: center; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin: 50px 0 -10px; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; position: relative; }
.process-step { padding: 28px 22px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); position: relative; transition: all 0.3s; }
.process-step:hover { border-color: var(--violet); transform: translateY(-4px); }
.process-num { font-family: 'Manrope', sans-serif; font-size: 34px; font-weight: 900; background: linear-gradient(135deg, #c084fc, #2dd4bf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; display: block; }
.process-step h3 { font-family: 'Manrope', sans-serif; font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── WHY / TESTIMONIALS ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.why-card { padding: 30px 26px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); transition: all 0.3s; }
.why-card:hover { border-color: var(--violet); box-shadow: 0 20px 50px rgba(139,92,246,0.18); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; }
.why-icon i { width: 23px; height: 23px; }
.why-card h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.testi-card { padding: 30px 26px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #f59e0b; }
.testi-stars i { width: 15px; height: 15px; fill: #f59e0b; }
.testi-card p.quote { font-size: 14.5px; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--violet-border); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--teal)); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.testi-person strong { display: block; font-size: 13.5px; }
.testi-person span { font-size: 12px; color: var(--muted); }
.testi-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 30px; opacity: 0.8; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.stat-card { text-align: center; padding: 26px 14px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); }
.stat-icon { width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 10px; background: var(--violet-dim); border: 1px solid var(--violet-border); display: flex; align-items: center; justify-content: center; color: var(--violet); }
.stat-icon i { width: 19px; height: 19px; }
.stat-number { display: block; font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 900; background: linear-gradient(135deg, #c084fc, #2dd4bf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; }
.stat-label { font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--violet-border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: var(--card-bg); }
.faq-q { width: 100%; padding: 20px 24px; background: transparent; border: none; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q i { width: 18px; height: 18px; color: var(--violet); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 260px; padding: 0 24px 20px; }
.faq-a p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.price-card { padding: 32px 26px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); text-align: center; }
.price-card.featured { border-color: var(--violet); background: linear-gradient(160deg, rgba(139,92,246,0.1), rgba(45,212,191,0.04)); position: relative; }
.price-card.featured::after { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--violet), #6d28d9); padding: 4px 14px; border-radius: 50px; font-size: 10.5px; font-weight: 700; white-space: nowrap; }
.price-card h3 { font-family: 'Manrope', sans-serif; font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.price-tag { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 900; color: var(--violet); margin-bottom: 6px; }
.price-card > p.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--muted); padding: 6px 0; }
.price-features li i { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ── SCREENSHOT SHOWCASE ── */
.shot-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.shot-tab { padding: 9px 18px; border-radius: 8px; border: 1px solid var(--violet-border); background: var(--card-bg); color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.25s; font-family: 'Plus Jakarta Sans', sans-serif; }
.shot-tab:hover { color: var(--text); }
.shot-tab.active { background: var(--violet); color: #fff; border-color: var(--violet); }
.shot-frame { max-width: 1100px; margin: 0 auto; border: 1px solid var(--violet-border); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,0.5); background: var(--bg3); }
.shot-frame .browser-bar { display: flex; gap: 6px; padding: 12px 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--violet-border); }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); opacity: 0.4; }
.shot-panel { display: none; }
.shot-panel.active { display: block; }
.shot-panel img { width: 100%; display: block; }

/* ── ABOUT / TEAM ── */
.about-block { max-width: 900px; margin: 0 auto; }
.about-block h2 { margin-bottom: 18px; }
.about-block p { color: var(--muted); font-size: 15.5px; line-height: 1.85; margin-bottom: 18px; }
.founder-card { display: flex; gap: 26px; align-items: center; padding: 32px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); max-width: 700px; margin: 0 auto; flex-wrap: wrap; }
.founder-avatar { width: 88px; height: 88px; border-radius: 20px; background: linear-gradient(135deg, var(--violet), var(--teal)); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 32px; color: #fff; flex-shrink: 0; }
.founder-card h3 { font-family: 'Manrope', sans-serif; font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.founder-card .role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.founder-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.founder-card a.li-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: #a78bfa; text-decoration: none; font-weight: 600; }
.founder-card a.li-link:hover { color: var(--teal); }
.founder-card a.li-link i { width: 14px; height: 14px; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 1000px; margin: 40px auto 0; }
.value-card { padding: 24px; text-align: center; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); }
.value-card .v-icon { width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 12px; background: var(--violet-dim); border: 1px solid var(--violet-border); display: flex; align-items: center; justify-content: center; color: var(--violet); }
.value-card .v-icon i { width: 21px; height: 21px; }
.value-card h4 { font-family: 'Manrope', sans-serif; font-size: 15.5px; font-weight: 800; margin-bottom: 8px; }
.value-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── BLOG ── */
.blog-card { display: flex; flex-direction: column; }
.blog-tag { display: inline-block; padding: 3px 10px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 50px; font-size: 10.5px; color: #a78bfa; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; width: fit-content; }
.blog-meta { font-size: 12px; color: var(--muted); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--violet-border); }

/* ── CONTACT ── */
.contact-wrap { max-width: 760px; margin: 0 auto; }
.contact-top { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 12px; }
.contact-card { padding: 24px; background: var(--card-bg); border: 1px solid var(--violet-border); border-radius: var(--radius); text-align: center; }
.contact-card-icon { width: 44px; height: 44px; margin: 0 auto 12px; }
.contact-card h4 { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 14.5px; }
.contact-card a:hover { color: var(--violet); }
.social-links { display: flex; justify-content: center; gap: 12px; }
.social-link { width: 42px; height: 42px; border-radius: 50%; background: var(--violet-dim); border: 1px solid var(--violet-border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.25s; text-decoration: none; }
.social-link:hover { background: var(--violet); color: #fff; border-color: var(--violet); transform: translateY(-3px); }
.social-link i { width: 18px; height: 18px; }

/* ── CTA BANNER ── */
.cta-banner { max-width: 1000px; margin: 0 auto; padding: 50px 40px; background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(45,212,191,0.06)); border: 1px solid var(--violet-border); border-radius: 22px; text-align: center; }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: var(--muted); font-size: 15px; margin-bottom: 26px; max-width: 560px; margin-inline: auto; }
.cta-banner .hero-btns { justify-content: center; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(5,5,8,0.8); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { background: var(--bg3); border: 1px solid var(--violet-border); border-radius: 18px; padding: 36px 32px; max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 34px; height: 34px; border-radius: 50%; background: var(--violet-dim); border: 1px solid var(--violet-border); display: flex; align-items: center; justify-content: center; color: var(--muted); cursor: pointer; transition: all 0.25s; }
.modal-close:hover { background: var(--violet); color: #fff; }
.modal-close i { width: 16px; height: 16px; }
.modal-title { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; padding-right: 30px; }
.modal-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; line-height: 1.6; }
.modal-service-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; background: var(--violet-dim); border: 1px solid var(--violet-border); border-radius: 50px; font-size: 11.5px; color: #a78bfa; font-weight: 600; margin-bottom: 18px; }
.modal-service-tag i { width: 12px; height: 12px; }
.antispam-note { display: flex; gap: 10px; padding: 12px 14px; background: rgba(45,212,191,0.06); border: 1px solid rgba(45,212,191,0.18); border-radius: 10px; margin-bottom: 22px; }
.antispam-note i { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.antispam-note span { font-size: 12px; color: var(--muted); line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--violet-border); border-radius: 9px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; transition: border-color 0.25s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--violet); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group select { cursor: pointer; }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.checkbox-group input { margin-top: 3px; accent-color: var(--violet); }
.checkbox-group label { font-size: 12px; color: var(--muted); line-height: 1.6; }
.form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--violet), #6d28d9); border: none; border-radius: 10px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,92,246,0.35); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-submit i { width: 16px; height: 16px; }
.form-success { display: none; text-align: center; padding: 30px 20px; }
.form-success .success-icon { width: 60px; height: 60px; background: rgba(45,212,191,0.1); border: 2px solid rgba(45,212,191,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--teal); }
.form-success .success-icon i { width: 28px; height: 28px; }
.form-success h3 { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--bg); padding: 55px 5% 24px; border-top: 1px solid var(--violet-border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; max-width: 1280px; margin: 0 auto 40px; }
.footer-brand h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 900; background: linear-gradient(135deg, #c084fc, #2dd4bf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; letter-spacing: -0.3px; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--violet); }
.footer-col ul li span.soon-tag { font-size: 9.5px; color: var(--teal); border: 1px solid rgba(45,212,191,0.3); padding: 1px 6px; border-radius: 50px; margin-left: 6px; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--violet-border); }
.footer-bottom p { color: var(--muted); font-size: 12px; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: linear-gradient(135deg, #25d366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s; color: #fff; text-decoration: none; }
.wa-float:hover { transform: scale(1.1) translateY(-2px); }
.wa-float i { width: 28px; height: 28px; }

/* ── LOADING ── */
.loading-screen { position: fixed; inset: 0; background: var(--bg); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.5s; }
.loading-screen.gone { opacity: 0; pointer-events: none; }
.loader-ring { width: 44px; height: 44px; border: 3px solid var(--violet-border); border-top-color: var(--violet); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .erp-grid, .why-grid, .two-col { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,5,8,0.98); flex-direction: column; padding: 24px 5%; gap: 16px; align-items: flex-start; max-height: 80vh; overflow-y: auto; }
    .nav-links.open { display: flex; }
    .nav-drop-panel { position: static; display: none; background: none; border: none; padding: 6px 0 0 14px; box-shadow: none; }
    .nav-drop.open .nav-drop-panel { display: flex; }
    .mobile-toggle { display: flex; }
    .nav-cta { display: none; }
    .contact-top, .footer-grid, .form-row, .process-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .modal { padding: 24px 20px; }
    h1 { letter-spacing: -1px; }
    .founder-card { flex-direction: column; text-align: center; justify-content: center; }
}
