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

:root {
    color-scheme: dark;
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --electric: #00d4ff;
    --neon: #00ffcc;
    --purple: #7c3aed;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(15, 15, 15, 0.7);
    --glass-border: rgba(100, 150, 255, 0.15);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 24px;
    background: linear-gradient(135deg, var(--electric), var(--neon));
    color: #000;
    padding: 10px 20px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--electric);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* -------------------------- */
/* --- PARTICLE BACKGROUND --- */
/* -------------------------- */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--electric);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle linear infinite;
    filter: blur(0.5px);
    will-change: transform;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity:0; }
    10% { opacity:0.6; }
    90% { opacity:0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity:0; }
}

/* -------------------------- */
/* --- GLASSMORPHISM UTIL --- */
/* -------------------------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glow-electric {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3), inset 0 0 15px rgba(0, 212, 255, 0.05);
}

.glow-neon {
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.3), inset 0 0 15px rgba(0, 255, 204, 0.05);
}

/* -------------------------- */
/* ---------- NAVBAR --------- */
/* -------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: contain;
    /* Optional: Add a glow effect to your logo */
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric) 0%, var(--neon) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-sub {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
    content: '';
    position: absolute; bottom: -6px; left: 0; width:0%; height:2px;
    background: linear-gradient(90deg, var(--electric), var(--neon));
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width:100%; }

.mobile-toggle {
    display: none;
    background: none; border: none; color: var(--text-primary);
    font-size: 22px; cursor: pointer;
}

.mobile-menu {
    display: none; padding-top: 20px; border-top: 1px solid var(--glass-border);
    animation: slideDown 0.3s ease-out;
}
.mobile-menu.active {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap:16px; }
.mobile-menu a { color: var(--text-secondary); text-decoration: none; font-size:16px; padding: 8px 0; display: block; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--electric); }

.container { max-width: 1200px; margin:0 auto; padding:0 24px; }
section { padding: 60px 0; }
.gradient {
    background: linear-gradient(135deg, var(--electric), var(--neon), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title { font-size:42px; font-weight:800; text-align:center; margin-bottom:12px; line-height:1.2; }
.section-subtitle { text-align:center; color:var(--text-secondary); font-size:18px; margin-bottom:60px; }

/* -------------------------- */
/* ---------- HERO ---------- */
/* -------------------------- */
.hero {
    min-height: auto; display:flex; align-items:center; padding-top:130px; padding-bottom:30px; position:relative;
}
.hero-grid { display:grid; grid-template-columns:1fr; gap:40px; align-items:center; text-align:center; max-width:800px; margin:0 auto; }
.hero-text h1 { font-size:56px; font-weight:900; line-height:1.1; margin-bottom:24px; }
.hero-text p { font-size:18px; color:var(--text-secondary); margin-bottom:40px; max-width:520px; margin-left:auto; margin-right:auto; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

.btn {
    padding:14px 32px; border-radius:12px; font-weight:700; cursor:pointer; border:none;
    transition: all 0.3s ease; font-size:15px; display:inline-block; text-decoration:none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--electric), var(--neon));
    color:#000; box-shadow: 0 8px 25px rgba(0,212,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,212,255,0.35); }
.btn-secondary { background:transparent; color:var(--text-primary); border:1px solid var(--glass-border); }
.btn-secondary:hover { border-color:var(--electric); background: rgba(0,212,255,0.05); }

/* 3D CUBE */
.cube-container {
    perspective: 1200px; width:380px; height:380px; margin:0 auto; position:relative;
    cursor: grab;
    touch-action: none;
}
.cube-container:active { cursor: grabbing; }
.cube {
    width: 220px; height:220px; position:absolute; left:50%; top:50%;
    transform: translate(-50%,-50%) rotateX(-15deg) rotateY(0deg);
    transform-style: preserve-3d;
}
.cube-face {
    position:absolute; width:220px; height:220px; display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:10px; background: rgba(15,15,15,0.85);
    border:1px solid var(--glass-border);
    box-shadow: inset 0 0 30px rgba(0,212,255,0.15);
}
.cube-face i { font-size:36px; color:var(--electric); }
.cube-face span { font-size:14px; font-weight:700; }
.cube-face.front  { transform: translateZ(110px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(110px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(110px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(110px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(110px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(110px); }

/* -------------------------- */
/* --- BUILD SHOWCASE ------- */
/* -------------------------- */
.build-showcase {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    padding-top: 40px;
}
.build-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.build-showcase-col .section-title,
.build-showcase-col .section-subtitle {
    text-align: center;
}
.build-showcase-col .section-subtitle {
    margin-bottom: 30px;
}
.build-booking-nav {
    text-align: center;
    margin-top: 24px;
}
.build-booking-nav .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* -------------------------- */
/* ---- SERVICES HUB -------- */
/* -------------------------- */
.services-hub {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    touch-action: none;
}
.services-hub:active {
    cursor: grabbing;
}
.services-hub-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.25) 0%, rgba(0,0,0,0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 3s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.center-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

/* Rotating Ring Container */
.services-hub-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.05s linear;
}

/* Each Service Item (positioned around circle) */
.service-hub-item {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(15,15,15,0.9);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    touch-action: none;
    /* This counter-rotates so items stay upright */
    will-change: transform;
}

.service-hub-item .learn-more {
    display: none;
}

.service-hub-item:hover {
    transform: scale(1.1);
    border-color: var(--electric);
    box-shadow: 0 0 30px rgba(0,212,255,0.5);
}
.service-hub-item i {
    font-size: 26px;
    color: var(--electric);
}
.service-hub-item span {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 20px var(--electric)); }
    50% { filter: drop-shadow(0 0 40px var(--neon)); }
}

/* Animated Grid Background */
.animated-grid {
    position: absolute; top:0; left:0; right:0; bottom:0;
    background-image: linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px; opacity:0.4; pointer-events:none;
}

/* -------------------------- */
/* --- SERVICE DETAIL PAGE -- */
/* -------------------------- */
.service-detail-page {
    padding-top: 120px;
    padding-bottom: 40px;
}
.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 40px;
}
.service-detail-icon i {
    font-size: 52px;
    color: var(--electric);
}
.service-detail-header h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}
.service-detail-timeline {
    color: var(--neon);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}
.service-detail-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
}
.service-detail-header .btn {
    margin-left: auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-detail-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-detail-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-detail-card:hover {
    border-color: var(--electric);
    transform: translateY(-4px);
}
.service-detail-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--neon);
}
.service-detail-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.back-nav-btn {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* -------------------------- */
/* --- SOP SECTION ---------- */
/* -------------------------- */
.sop-section {
    background: var(--bg-secondary);
}
.sop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.sop-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.sop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--electric), var(--neon), var(--purple));
}
.sop-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}
.sop-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}
.sop-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.sop-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* -------------------------- */
/* ----- BEFORE / AFTER ----- */
/* -------------------------- */
.comparison-container {
    /* Removed deprecated before/after slider CSS */
}
/* Service Card Styles */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    cursor: pointer;
    outline: none;
}
.service-card:hover, .service-card:focus-visible {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.service-card:focus-visible {
    outline: 2px solid var(--electric);
    outline-offset: 2px;
}
.service-card .learn-more {
    margin-top: 12px;
    background: var(--electric);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}
.service-card .learn-more:hover {
    background: #00b3e6;
}

.btn:focus-visible {
    outline: 2px solid var(--electric);
    outline-offset: 2px;
}

.service-hub-item:focus-visible {
    outline: 2px solid var(--electric);
    outline-offset: 2px;
}

.service-hub-item:focus {
    outline: none;
}

.comparison-container:hover .comparison-slider-handle {
    transform:translate(-50%,-50%) scale(1.15);
    box-shadow:0 6px 35px rgba(0,0,0,0.45), inset 0 2px 0 rgba(255,255,255,0.9);
}
.comparison-slider-handle i {
    font-size: 22px;
}

/* -------------------------- */
/* --- WHY CHOOSE US ------- */
/* -------------------------- */
.features-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.feature-card { padding:28px; border-radius:18px; text-align:center; background:var(--glass-bg); border:1px solid var(--glass-border); }
.feature-card i { font-size:36px; color:var(--electric); margin-bottom:16px; }
.feature-card h4 { font-size:17px; font-weight:800; margin-bottom:6px; }
.feature-card p { font-size:14px; color:var(--text-secondary); }

/* -------------------------- */
/* ----- FINAL CTA ---------- */
/* -------------------------- */
.final-cta { text-align:center; padding:120px 0; }
.final-cta h2 { font-size:52px; font-weight:900; margin-bottom:16px; }
.final-cta p { font-size:19px; color:var(--text-secondary); margin-bottom:40px; }

/* -------------------------- */
/* ------- FOUNDERS --------- */
/* -------------------------- */
.founders { background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary)); }
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}
.founder-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}
.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric), var(--neon), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin: 0 auto 20px;
}
.founder-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}
.founder-role {
    color: var(--electric);
    font-weight: 700;
    margin-bottom: 15px;
}
.founder-contact {
    color: var(--text-secondary);
    font-size: 14px;
}

/* -------------------------- */
/* ------- CONTACT ---------- */
/* -------------------------- */
.contact { background:var(--bg-secondary); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1000px; margin:0 auto; }
.contact-info-cards { display:flex; flex-direction:column; gap:18px; }
.contact-info-card { padding:22px; border-radius:16px; display:flex; gap:16px; align-items:center; background:var(--glass-bg); border:1px solid var(--glass-border); }
.contact-info-card i { font-size:28px; }
.contact-info-card .label { font-size:12px; color:var(--text-secondary); }
.contact-info-card .value { font-weight:700; font-size:15px; }
.contact-form { padding:28px; border-radius:18px; background:var(--glass-bg); border:1px solid var(--glass-border); }

.form-group { margin-bottom:18px; }
.form-group label { display:block; margin-bottom:8px; color:var(--text-secondary); font-size:13px; font-weight:600; }
.form-group input, .form-group textarea, .form-group select {
    width:100%; padding:12px 16px; border-radius:12px; background:var(--bg-primary); color:var(--text-primary);
    border:1px solid var(--glass-border); outline:none; font-size:14px; font-family:inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--electric); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* -------------------------- */
/* ------- FOOTER ----------- */
/* -------------------------- */
footer { border-top:1px solid var(--glass-border); padding:50px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:40px; }
.footer-brand h3 { font-size:18px; font-weight:800; background: linear-gradient(135deg, var(--electric), var(--neon), var(--purple)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:10px; }
.footer-brand p { font-size:14px; color:var(--text-secondary); }
.footer-col h4 { font-weight:800; font-size:14px; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a { color:var(--text-secondary); text-decoration:none; font-size:14px; }
.footer-col a:hover { color:var(--text-primary); }
.footer-bottom { text-align:center; margin-top:40px; padding-top:24px; border-top:1px solid var(--glass-border); color:var(--text-secondary); font-size:13px; }

/* -------------------------- */
/* --- BOOKING MODAL -------- */
/* -------------------------- */
.booking-modal { display:none; position:fixed; top:0; left:0; right:0; bottom:0; z-index:2000; align-items:center; justify-content:center; padding:20px; background: rgba(0,0,0,0.85); }
.booking-modal.active { display:flex; }
.modal-inner { background:var(--bg-primary); border-radius:24px; max-width:600px; width:100%; max-height:88vh; overflow-y:auto; border:1px solid var(--glass-border); padding:32px; }
.modal-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:24px; }
.modal-header h3 { font-size:22px; font-weight:900; background: linear-gradient(135deg, var(--electric), var(--neon)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.close-modal { background:none; border:none; color:var(--text-secondary); font-size:24px; cursor:pointer; padding:6px; }
.close-modal:hover { color:var(--text-primary); }
.service-badge { display:flex; justify-content:space-between; align-items:center; padding:14px 18px; background: rgba(0,212,255,0.12); border:1px solid rgba(0,212,255,0.25); border-radius:12px; margin-bottom:20px; }
.service-badge .name { font-weight:800; }
.service-badge .price { font-weight:900; background: linear-gradient(135deg, var(--electric), var(--neon)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; font-size:18px; }
.success-screen { text-align:center; padding:20px 0; }
.success-screen i { font-size:56px; color:var(--neon); margin-bottom:12px; }
.success-screen h4 { font-size:22px; margin-bottom:8px; }
.success-screen p { color:var(--text-secondary); }


/* -------------------------- */
/* --- FAQ ACCORDION -------- */
/* -------------------------- */
.faq-section {
    background: var(--bg-primary);
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-card {
    transition: all 0.3s ease;
    overflow: hidden;
}
.faq-card:hover {
    border-color: var(--electric);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.1);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--electric);
}
.faq-question i {
    font-size: 16px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}
.faq-question:focus-visible {
    outline: 2px solid var(--electric);
    border-radius: 12px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.faq-card.active {
    border-color: var(--electric);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
}
.faq-card.active .faq-question {
    color: var(--electric);
}
.faq-card.active .faq-question i {
    transform: rotate(45deg);
    color: var(--electric);
}

/* -------------------------- */
/* ----- RESPONSIVE --------- */
/* -------------------------- */
@media (max-width: 992px) {
    .sop-grid { grid-template-columns: 1fr; }
    .build-showcase-grid { grid-template-columns: 1fr; gap: 60px; }
    .services-hub { max-width: 380px; }
    .services-hub-logo { width: 100px; height: 100px; }
    .center-logo { width: 58px; height: 58px; }
    .service-hub-item { width: 75px; height:75px; }
    .service-hub-item i { font-size: 22px; }
    .service-hub-item span { font-size: 10px; }
    .service-detail-header { flex-direction: column; }
    .service-detail-header .btn { margin-left: 0; width: 100%; justify-content: center; }
    .features-grid { grid-template-columns:1fr 1fr; }
    .section-title { font-size:34px; }
    .contact-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .nav-links { display:none; }
    .mobile-toggle { display:block; }
    .logo-icon { width: 38px; height: 38px; border-radius: 10px; }
    .logo-icon span { font-size: 15px; }
    .logo-main { font-size: 15px; }
    .logo-sub { font-size: 9px; }
    .hero {
        padding-top: 110px;
        padding-bottom: 20px;
    }
    .hero-text h1 { font-size:32px; line-height: 1.2; }
    .hero-text h1 br { display: none; }
    .hero-text p { font-size: 15px; margin-bottom: 28px; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 24px;
    }
    .services-hub {
        width: 100%;
        max-width: 280px;
    }
    .services-hub-logo {
        width: 80px;
        height: 80px;
    }
    .center-logo {
        width: 48px;
        height: 48px;
    }
    .service-hub-item {
        width: 65px;
        height: 65px;
    }
    .service-hub-item i {
        font-size: 20px;
    }
    .service-hub-item span {
        font-size: 9px;
    }
    .cube-container { width:300px; height:300px; }
    .cube { width:160px; height:160px; }
    .cube-face { width:160px; height:160px; }
    .cube-face.front  { transform: translateZ(80px); }
    .cube-face.back   { transform: rotateY(180deg) translateZ(80px); }
    .cube-face.right  { transform: rotateY(90deg) translateZ(80px); }
    .cube-face.left   { transform: rotateY(-90deg) translateZ(80px); }
    .cube-face.top    { transform: rotateX(90deg) translateZ(80px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(80px); }
    .features-grid { grid-template-columns:1fr; }
    .section-title { font-size:28px; }
    .footer-grid { grid-template-columns:1fr; text-align:center; }
    .logo-img { width: 38px; height: 38px; border-radius: 10px; }
    .logo-main { font-size: 15px; }
    .logo-sub { font-size: 9px; }
}
