/* ============================================
   PALINEX — Design System
   Modern industrial / tech-forward aesthetic
   ============================================ */

:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;

    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --cyan-400: #22d3ee;
    --blue-600: #2563eb;

    --gradient-brand: linear-gradient(135deg, var(--sky-400), var(--cyan-400));
    --gradient-brand-r: linear-gradient(135deg, var(--cyan-400), var(--sky-400));
    --gradient-dark: linear-gradient(180deg, var(--slate-950) 0%, var(--slate-900) 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 60px rgba(56,189,248,0.15);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--slate-950);
    color: var(--slate-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-950); }
::-webkit-scrollbar-thumb { background: var(--slate-700); border-radius: 3px; }

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--slate-950);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56,189,248,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
}
.btn-ghost:hover {
    border-color: var(--sky-400);
    color: var(--sky-400);
    background: rgba(56,189,248,0.05);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(56,189,248,0.08);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--slate-950);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--slate-100);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate-400);
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--slate-100); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 1px;
}

.nav-cta {
    background: var(--gradient-brand) !important;
    color: var(--slate-950) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 6px 20px rgba(56,189,248,0.3); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 26px; height: 2px; background: var(--sky-400); transition: 0.3s; border-radius: 2px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(56,189,248,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(34,211,238,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 50% 90%, rgba(37,99,235,0.05) 0%, transparent 50%);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 {
    width: 400px; height: 400px;
    background: rgba(56,189,248,0.08);
    top: 10%; left: 5%;
}
.hero-orb-2 {
    width: 300px; height: 300px;
    background: rgba(34,211,238,0.06);
    bottom: 10%; right: 10%;
    animation-delay: -10s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sky-400);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--sky-400);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-50);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--slate-400);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-800);
    border: 2px solid var(--slate-950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sky-400);
    margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.trust-text {
    font-size: 0.85rem;
    color: var(--slate-500);
}
.trust-text strong {
    color: var(--slate-300);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(56,189,248,0.08);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.4s;
}
.stat-card:hover {
    border-color: rgba(56,189,248,0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.stat-card.featured {
    border-color: rgba(56,189,248,0.2);
    background: rgba(56,189,248,0.05);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
    padding: 6rem 0;
}
.section-sm {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header.compact { margin-bottom: 2rem; }

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sky-400);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--slate-100);
    margin-bottom: 0.8rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   CAPABILITIES
   ============================================ */
.capabilities {
    background: var(--slate-900);
    position: relative;
}
.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.15), transparent);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cap-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.cap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.cap-card:hover {
    border-color: rgba(56,189,248,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.cap-card:hover::before { transform: scaleX(1); }

.cap-icon {
    width: 48px;
    height: 48px;
    background: rgba(56,189,248,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--sky-400);
}

.cap-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 0.6rem;
}

.cap-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cap-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sky-400);
    transition: 0.3s;
}
.cap-link:hover { color: var(--cyan-400); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    background: var(--slate-950);
    overflow: hidden;
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 35s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    padding: 0.9rem 2rem;
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-500);
    white-space: nowrap;
    transition: all 0.3s;
}
.marquee-item:hover {
    border-color: rgba(56,189,248,0.2);
    color: var(--sky-400);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    background: var(--slate-900);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.why-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--slate-100);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-left > p {
    color: var(--slate-500);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.metric-bar {
    height: 6px;
    background: var(--slate-800);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.metric-fill {
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.metric-info span { color: var(--slate-500); }
.metric-info strong { color: var(--sky-400); }

.why-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-card {
    background: rgba(2,6,23,0.5);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all 0.3s;
}
.why-card:hover {
    border-color: rgba(56,189,248,0.15);
    background: rgba(56,189,248,0.03);
}

.why-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 0.3rem;
}
.why-card p {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--slate-950);
}

.cta-box {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border: 1px solid rgba(56,189,248,0.1);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(56,189,248,0.05), transparent 60%);
}

.cta-content { position: relative; z-index: 1; }

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--slate-100);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--slate-500);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-900);
    border-top: 1px solid rgba(56,189,248,0.06);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--slate-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--slate-800);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--slate-500);
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--sky-400);
    color: var(--sky-400);
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-400);
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    font-size: 0.9rem;
    color: var(--slate-600);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--sky-400); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(56,189,248,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--slate-600); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: var(--slate-600); transition: color 0.3s; }
.footer-legal a:hover { color: var(--sky-400); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE-SPECIFIC: About
   ============================================ */
.page-hero {
    padding: 10rem 0 5rem;
    position: relative;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(56,189,248,0.06) 0%, transparent 60%),
        var(--slate-950);
}
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--slate-50);
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.15rem;
    color: var(--slate-500);
    max-width: 600px;
}
.page-hero.center { text-align: center; }
.page-hero.center p { margin: 0 auto; }

/* About content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-100);
    margin-bottom: 1.2rem;
}
.about-text p {
    color: var(--slate-500);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: 0.3s;
}
.value-card:hover { border-color: rgba(56,189,248,0.15); }
.value-card h4 {
    font-size: 0.95rem;
    color: var(--slate-200);
    margin-bottom: 0.3rem;
}
.value-card p {
    font-size: 0.82rem;
    color: var(--slate-500);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 11px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sky-400), transparent);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--sky-400);
    border-radius: 50%;
    border: 3px solid var(--slate-950);
}
.timeline-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--sky-400);
    margin-bottom: 0.2rem;
}
.timeline-item p {
    font-size: 0.9rem;
    color: var(--slate-500);
}

/* ============================================
   PAGE-SPECIFIC: Products
   ============================================ */
.product-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.product-detail-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s;
}
.product-detail-card:hover {
    border-color: rgba(56,189,248,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-detail-header {
    background: linear-gradient(135deg, rgba(56,189,248,0.06), rgba(34,211,238,0.03));
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(56,189,248,0.06);
}
.product-detail-icon {
    font-size: 2.5rem;
}
.product-detail-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-100);
}

.product-detail-body {
    padding: 1.5rem 2rem 2rem;
}
.product-detail-body p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-features li {
    font-size: 0.85rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sky-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   PAGE-SPECIFIC: Industries
   ============================================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.industry-card:hover {
    border-color: rgba(56,189,248,0.15);
    transform: translateY(-6px);
}
.industry-card:hover::after { transform: scaleX(1); }

.industry-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 0.6rem;
}
.industry-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}
.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   PAGE-SPECIFIC: Contact
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ci-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ci-item h4 {
    font-size: 0.9rem;
    color: var(--slate-300);
    margin-bottom: 0.15rem;
}
.ci-item p, .ci-item a {
    font-size: 0.88rem;
    color: var(--slate-500);
    transition: color 0.3s;
}
.ci-item a:hover { color: var(--sky-400); }

.contact-form-box {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(56,189,248,0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}
.contact-form-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: var(--slate-100);
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--slate-500);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(2,6,23,0.6);
    border: 1px solid rgba(56,189,248,0.08);
    border-radius: var(--radius-sm);
    color: var(--slate-200);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sky-400);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
}
.form-group select option {
    background: var(--slate-900);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-brand);
    color: var(--slate-950);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56,189,248,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-left { text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-right { margin-top: 2rem; }
    .stats-grid { max-width: 450px; margin: 0 auto; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-content { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2,6,23,0.98);
        backdrop-filter: blur(16px);
        padding: 2rem;
        border-bottom: 1px solid rgba(56,189,248,0.08);
        gap: 1.2rem;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2.2rem; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .product-grid-full { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}
