/* ========================================
   We Made It Inc. — bolt.new Inspired
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #18182a;
    --bg-subtle: #0e0e14;
    --surface: #1a1a2a;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(255, 255, 255, 0.18);
    --text: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.12);
    --amber: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.12);
    --purple: #8b5cf6;
    --teal: #14b8a6;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--text); }
a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* --- Reveal: forced visible (animations removed) --- */
.reveal, .reveal-left, .reveal-right,
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1 !important;
    transform: none !important;
}














/* --- Section Labels --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 2px;
}
.section-label-light { color: var(--amber); }
.section-label-light::before { background: var(--amber); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.04em; }
.section-desc { color: var(--text-secondary); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

.section-title-left {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}


/* --- Navigation --- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700; color: var(--text);
    letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--text); }
.logo-icon-svg {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: block;
}
.logo-full-svg {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
    padding: 8px 16px; border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}
.nav-cta:hover {
    background: var(--accent-light) !important;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4) !important;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--text);
    margin: 5px 0; transition: var(--transition); border-radius: 2px;
}


/* --- Hero --- */
#hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Aurora Background — bolt.new inspired */
.hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
}

.aurora {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(59, 130, 246, 0.15) 0deg,
        rgba(139, 92, 246, 0.12) 60deg,
        rgba(20, 184, 166, 0.08) 120deg,
        rgba(59, 130, 246, 0.05) 180deg,
        rgba(245, 158, 11, 0.06) 240deg,
        rgba(139, 92, 246, 0.1) 300deg,
        rgba(59, 130, 246, 0.15) 360deg
    );
    filter: blur(80px);
    animation: auroraRotate 30s linear infinite;
}
.aurora-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: conic-gradient(
        from 0deg at 40% 60%,
        rgba(139, 92, 246, 0.12) 0deg,
        rgba(20, 184, 166, 0.1) 90deg,
        rgba(59, 130, 246, 0.08) 180deg,
        rgba(245, 158, 11, 0.05) 270deg,
        rgba(139, 92, 246, 0.12) 360deg
    );
    filter: blur(100px);
    animation: auroraRotate 20s linear infinite reverse;
    opacity: 0.7;
}
.aurora-3 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(
        ellipse at center,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(139, 92, 246, 0.08) 40%,
        transparent 70%
    );
    filter: blur(60px);
    animation: auroraPulse 8s ease-in-out infinite;
}

@keyframes auroraRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes auroraPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
}

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

.hero-content { position: relative; max-width: 800px; z-index: 1; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px;
    background: rgba(18, 18, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.78rem; font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    backdrop-filter: blur(16px);
}
.badge-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.4; box-shadow: 0 0 4px rgba(34, 197, 94, 0.2); }
}

.hero-content h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.0;
    margin-bottom: 28px;
}
.hero-line {
    display: block;
}
.hero-gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--purple) 40%, var(--teal) 70%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

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

.hero-stats {
    display: inline-flex; align-items: center; gap: 36px;
    padding: 22px 40px;
    background: rgba(15, 15, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 800; color: var(--text);
}
.hero-stat-suffix { font-size: 1.3rem; font-weight: 700; color: var(--accent-light); }
.hero-stat-label { display: block; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-light); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-size: 0.9rem; font-weight: 600;
    border-radius: var(--radius); border: none;
    cursor: pointer; transition: all var(--transition);
    text-decoration: none; font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}
.btn-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--accent), var(--purple), var(--teal));
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
    filter: blur(12px);
}
.btn:hover .btn-glow { opacity: 0.5; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #4f8ff7);
    color: var(--white);
    box-shadow: 0 0 24px rgba(59,130,246,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(59,130,246,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-glass {
    background: rgba(20, 20, 40, 0.7);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}
.btn-glass:hover {
    background: rgba(30, 30, 55, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}
.btn-full { width: 100%; }


/* --- About --- */
#about { padding: 140px 0; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    margin-bottom: 72px;
}
.about-lead { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.about-body { color: var(--text-muted); line-height: 1.8; font-size: 1rem; }
.about-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-highlight-card {
    background: linear-gradient(145deg, #13132a, #10101e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.about-highlight-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 30px rgba(59, 130, 246, 0.06);
}
.about-highlight-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}
.about-highlight-icon svg { width: 22px; height: 22px; color: var(--accent-light); }
.about-highlight-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.about-highlight-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }

.capabilities-strip {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.capability {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 28px 16px;
    background: linear-gradient(160deg, #141428, #0f0f1c);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.capability::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}
.capability:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.capability:hover::before { opacity: 1; }
.capability-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    position: relative;
}
.capability-icon svg { width: 22px; height: 22px; color: var(--accent-light); }
.capability span { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); position: relative; }


/* --- Services --- */
#services { padding: 140px 0; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.service-card {
    position: relative;
    background: linear-gradient(145deg, #13132a, #10101e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    transition-delay: calc(var(--delay, 0) * 0.08s);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-light), var(--purple), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #181838, #141428);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(59, 130, 246, 0.08);
}
.service-card:hover::before { opacity: 1; }

.service-number {
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 24px;
    position: relative;
}
.service-icon-wrap {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
}
.service-icon-wrap svg { width: 24px; height: 24px; color: var(--accent-light); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; position: relative; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; position: relative; }

.service-card-cta {
    background: linear-gradient(135deg, #111130, #15102a);
    border-color: rgba(59,130,246,0.2);
}
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--accent-light);
    position: relative;
}
.service-link:hover { color: var(--white); gap: 10px; }


/* --- Equipment --- */
#equipment { padding: 40px 0 140px; }
.equipment-banner {
    position: relative;
    background: linear-gradient(135deg, #0c1929, #0f172a 50%, #1a0f2e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 72px 56px;
    overflow: hidden;
    margin-top: 80px;
}
.equipment-aurora {
    position: absolute; inset: -20%;
    width: 140%; height: 140%;
    background: conic-gradient(
        from 220deg at 40% 50%,
        rgba(59, 130, 246, 0.14) 0deg,
        rgba(245, 158, 11, 0.1) 90deg,
        rgba(139, 92, 246, 0.08) 180deg,
        rgba(20, 184, 166, 0.06) 270deg,
        rgba(59, 130, 246, 0.14) 360deg
    );
    filter: blur(60px);
    animation: auroraRotate 35s linear infinite;
}
.equipment-content { position: relative; margin-bottom: 44px; }
.equipment-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700; letter-spacing: -0.04em;
}
.equipment-cards {
    position: relative;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.equip-item {
    padding: 28px 24px;
    background: rgba(20, 25, 50, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.equip-item:hover {
    background: rgba(25, 30, 60, 0.7);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.equip-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--amber-glow);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}
.equip-icon svg { width: 20px; height: 20px; color: var(--amber); }
.equip-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.equip-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }


/* --- Brands --- */
#brands { padding: 140px 0; }
.brands-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.brand-card {
    display: grid; grid-template-columns: 340px 1fr;
    background: linear-gradient(145deg, #131325, #0f0f1c);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.brand-image {
    position: relative; overflow: hidden;
    min-height: 240px;
}
.brand-preview { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.brand-card:hover .brand-preview { transform: scale(1.06); }
.brand-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), transparent 70%);
}
.brand-logo {
    position: absolute; top: 16px; left: 16px;
    max-width: 110px; max-height: 44px; object-fit: contain;
    background: rgba(255,255,255,0.92);
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.brand-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.brand-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.brand-header h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-tag {
    font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tag-color, var(--accent-light));
    background: color-mix(in srgb, var(--tag-color, var(--accent)) 12%, transparent);
    padding: 4px 12px;
    border-radius: 100px;
}
.brand-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.brand-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.brand-link-primary {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--accent-light);
    padding: 8px 0;
}
.brand-link-primary:hover { color: var(--white); }
.brand-link-secondary {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-muted);
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all var(--transition);
}
.brand-link-secondary:hover { color: var(--text); border-color: var(--border-hover); }


/* --- Marketing --- */
#marketing { padding: 140px 0; }
.marketing-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.marketing-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }

.client-showcase { margin-top: 32px; }
.client-label {
    display: block; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted); margin-bottom: 12px;
}
.client-links { display: flex; flex-direction: column; gap: 4px; }
.client-links a {
    color: var(--text-secondary); font-weight: 500; font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.client-links a:hover { color: var(--accent-light); padding-left: 8px; }

.marketing-card {
    display: flex; gap: 16px;
    padding: 24px;
    background: linear-gradient(150deg, #131328, #0f0f1c);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.marketing-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--purple));
    opacity: 0;
    transition: opacity var(--transition);
}
.marketing-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(150deg, #181838, #141428);
    transform: translateX(4px);
}
.marketing-card:hover::before { opacity: 1; }
.marketing-card-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 12px;
}
.marketing-card-icon svg { width: 22px; height: 22px; color: var(--accent-light); }
.marketing-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.marketing-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }


/* --- Contact --- */
#contact { padding: 140px 0; }
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.contact-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail {
    display: flex; align-items: center; gap: 16px;
    color: var(--text);
    text-decoration: none;
}
.contact-detail-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: #141428;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent-light); }
.contact-detail-label {
    display: block; font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted); margin-bottom: 2px;
}
.contact-detail-value { font-size: 0.95rem; font-weight: 500; color: var(--text); }

.contact-brand-links { padding-top: 24px; border-top: 1px solid var(--border); }
.contact-brand-row { display: flex; gap: 12px; margin-top: 8px; }
.contact-brand-row a {
    font-size: 0.88rem; font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    background: #141428;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all var(--transition);
}
.contact-brand-row a:hover { color: var(--accent-light); border-color: rgba(59,130,246,0.3); }

.contact-form {
    background: linear-gradient(150deg, #131328, #0e0e1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius);
    background: rgba(10, 10, 20, 0.6); color: var(--text);
    font-family: var(--font-body); transition: all var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 0 20px var(--accent-glow);
    background: rgba(15, 15, 30, 0.8);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.form-status {
    margin-top: 12px; padding: 12px 16px; border-radius: var(--radius);
    font-size: 0.9rem; display: none;
}
.form-status.success { display: block; background: rgba(34,197,94,0.08); color: #4ade80; border: 1px solid rgba(34,197,94,0.15); }
.form-status.error { display: block; background: rgba(239,68,68,0.08); color: #f87171; border: 1px solid rgba(239,68,68,0.15); }


/* --- Section Aurora Backgrounds --- */
#services, #brands, #contact {
    position: relative;
    overflow: hidden;
}

.section-aurora {
    position: absolute;
    inset: -30%;
    width: 160%;
    height: 160%;
    pointer-events: none;
    overflow: hidden;
}

/* Each section gets a rotating conic aurora — same technique as hero but unique colors */

/* Services — blue/purple rotating aurora */
.section-aurora-orb-1 {
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 90deg at 60% 40%,
        rgba(59, 130, 246, 0.18) 0deg,
        rgba(139, 92, 246, 0.14) 90deg,
        rgba(20, 184, 166, 0.08) 180deg,
        rgba(59, 130, 246, 0.04) 270deg,
        rgba(59, 130, 246, 0.18) 360deg
    );
    filter: blur(70px);
    animation: auroraRotate 40s linear infinite;
}
.section-aurora-orb-2 {
    position: absolute;
    inset: 10%;
    background: radial-gradient(
        ellipse at 30% 70%,
        rgba(139, 92, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.1) 40%,
        transparent 70%
    );
    filter: blur(50px);
    animation: auroraPulse 8s ease-in-out infinite;
}

/* Brands — amber/purple rotating aurora */
.section-aurora-orb-3 {
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 200deg at 40% 60%,
        rgba(245, 158, 11, 0.16) 0deg,
        rgba(184, 134, 11, 0.12) 90deg,
        rgba(139, 92, 246, 0.1) 180deg,
        rgba(232, 119, 34, 0.06) 270deg,
        rgba(245, 158, 11, 0.16) 360deg
    );
    filter: blur(70px);
    animation: auroraRotate 35s linear infinite reverse;
}
.section-aurora-orb-4 {
    position: absolute;
    inset: 10%;
    background: radial-gradient(
        ellipse at 70% 30%,
        rgba(108, 99, 172, 0.2) 0%,
        rgba(245, 158, 11, 0.1) 40%,
        transparent 70%
    );
    filter: blur(50px);
    animation: auroraPulse 10s ease-in-out infinite;
}

/* Contact — teal/blue rotating aurora */
.section-aurora-orb-5 {
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 320deg at 55% 45%,
        rgba(20, 184, 166, 0.18) 0deg,
        rgba(59, 130, 246, 0.14) 90deg,
        rgba(139, 92, 246, 0.1) 180deg,
        rgba(20, 184, 166, 0.06) 270deg,
        rgba(20, 184, 166, 0.18) 360deg
    );
    filter: blur(70px);
    animation: auroraRotate 30s linear infinite;
}
.section-aurora-orb-6 {
    position: absolute;
    inset: 10%;
    background: radial-gradient(
        ellipse at 25% 60%,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(20, 184, 166, 0.1) 40%,
        transparent 70%
    );
    filter: blur(50px);
    animation: auroraPulse 7s ease-in-out infinite;
}

/* --- Aurora Dividers between sections --- */
.aurora-divider {
    display: flex;
    justify-content: center;
    padding: 0;
    height: 1px;
    position: relative;
}
.aurora-divider-line {
    width: 60%;
    max-width: 700px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 15%,
        rgba(139, 92, 246, 0.4) 35%,
        rgba(20, 184, 166, 0.35) 55%,
        rgba(245, 158, 11, 0.25) 75%,
        rgba(59, 130, 246, 0.15) 90%,
        transparent 100%
    );
    box-shadow:
        0 0 12px rgba(59, 130, 246, 0.15),
        0 0 30px rgba(139, 92, 246, 0.08);
    animation: dividerPulse 4s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}


/* --- Footer --- */
footer {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
}
.footer-top {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; color: var(--text);
    margin-bottom: 12px;
}
.footer-logo:hover { color: var(--text); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); color: var(--text-secondary);
    transition: color var(--transition), border-color var(--transition);
}
.footer-social-link:hover { color: var(--accent-light); border-color: var(--accent-light); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-col a {
    display: block; font-size: 0.88rem; font-weight: 400;
    color: var(--text-secondary); padding: 4px 0;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
    text-align: center; padding-top: 24px;
    font-size: 0.75rem; color: var(--text-muted);
}


/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-highlights { grid-template-columns: 1fr 1fr; }
    .capabilities-strip { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-card { grid-template-columns: 260px 1fr; }
    .marketing-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .equipment-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 100px 0; }
    #hero { padding: 100px 24px 60px; min-height: 100svh; }
    .hero-content h1 { font-size: clamp(2.5rem, 10vw, 3.8rem); }
    .hero-stats { flex-direction: row; gap: 24px; padding: 18px 28px; }
    .hero-stat-divider { width: 1px; height: 32px; }

    .nav-links {
        display: none; flex-direction: column; gap: 0;
        position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(10,10,10,0.95);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        padding: 8px;
    }
    .nav-links.open { display: flex; }
    .nav-links li a {
        display: block; padding: 14px 20px; border-radius: var(--radius);
    }
    .nav-toggle { display: block; }

    .services-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .capabilities-strip { grid-template-columns: repeat(3, 1fr); }
    .equipment-banner { padding: 40px 24px; }
    .equipment-cards { grid-template-columns: 1fr; }
    .brand-card { grid-template-columns: 1fr; }
    .brand-image { min-height: 200px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-brand-row { flex-wrap: wrap; }

    .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
    .capabilities-strip { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .hero-stat-divider { display: none; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
}
