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

:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --accent: #2255e0;
  --accent2: #1a3fc0;
  --accent-glow: rgba(34,85,224,0.35);
  --text: #f0f0f0;
  --muted: #888;
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 2rem;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34,85,224,0.2);
  gap: 1.5rem;
}
.nav-logo { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.3px; color: var(--text); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nav-logo .logo-blue { color: var(--accent); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--muted); text-decoration: none; font-size: 0.875rem;
  font-weight: 500; padding: 0.5rem 0.75rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 0.3rem; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links > li > a.active { color: var(--text); }
.caret { font-size: 0.6rem; opacity: 0.5; transition: transform 0.2s; }
.nav-links > li:hover > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #161616; border: 1px solid rgba(34,85,224,0.25);
  border-radius: 10px; min-width: 220px; padding: 0.4rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300; box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.65rem 1.1rem; color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.15s, background 0.15s; white-space: nowrap; }
.dropdown a:hover { color: var(--text); background: rgba(34,85,224,0.12); }

.nav-cta { background: var(--accent); color: #fff; font-weight: 700; padding: 0.55rem 1.2rem; border-radius: 6px; text-decoration: none; font-size: 0.875rem; transition: background 0.2s, transform 0.15s; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 61px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); padding: 1rem 0;
  flex-direction: column; z-index: 199; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a, .mm-parent-label { color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 600; padding: 0.85rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.04); display: block; }
.mm-parent-label { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; padding-top: 1.25rem; padding-bottom: 0.4rem; border-bottom: none; }
.mm-sub a { display: block; padding: 0.65rem 2.5rem; color: var(--muted); text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.03); transition: color 0.15s; }
.mm-sub a:hover { color: var(--accent); }
.mobile-menu .nav-cta { margin: 1rem 2rem; text-align: center; padding: 0.85rem; border-radius: 8px; }

@media (max-width: 900px) {
  .nav-links, nav > .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: #000;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(34,85,224,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #6699ff; margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 1rem; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* ── SHARED ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #6699ff; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 560px; }

.btn-primary { background: var(--accent); color: #fff; font-weight: 800; padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1rem; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-secondary { border: 1.5px solid rgba(34,85,224,0.45); color: var(--text); padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1rem; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-secondary:hover { border-color: var(--accent); color: #6699ff; transform: translateY(-2px); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── DIVIDER ── */
.spray-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); position: relative; overflow: visible; }
.spray-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent-glow); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0.6; } }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.services-grid .service-card:nth-child(1), .services-grid .service-card:nth-child(2) { grid-column: span 3; }
.services-grid .service-card:nth-child(3), .services-grid .service-card:nth-child(4), .services-grid .service-card:nth-child(5) { grid-column: span 2; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } .services-grid .service-card:nth-child(n) { grid-column: span 1; } .services-grid .service-card:nth-child(5) { grid-column: span 2; } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } .services-grid .service-card:nth-child(n) { grid-column: span 1; } }

.service-card { background: var(--bg3); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 2rem; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.service-card:hover { border-color: rgba(34,85,224,0.5); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.service-tag { display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 600; color: #6699ff; background: rgba(34,85,224,0.12); border-radius: 4px; padding: 0.2rem 0.6rem; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 3rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; border: 1px solid rgba(255,255,255,0.06); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .photo-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff; font-size: 0.8rem; font-weight: 600; padding: 1.5rem 1rem 0.75rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .photo-label { opacity: 1; }

/* ── WHY FEATURES ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.why-visual-inner { background: linear-gradient(135deg, rgba(34,85,224,0.1) 0%, rgba(0,20,60,0.25) 100%); border: 1px solid rgba(34,85,224,0.2); border-radius: var(--radius); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(34,85,224,0.12); border: 1px solid rgba(34,85,224,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.why-feature p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── AREAS ── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
@media (max-width: 600px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-card { background: var(--bg3); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; transition: border-color 0.25s, transform 0.25s; }
.area-card:hover { border-color: rgba(34,85,224,0.45); transform: translateY(-2px); }
.area-card span { font-size: 1.25rem; }
.area-card p { font-size: 0.9rem; font-weight: 600; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; text-decoration: none; color: var(--text); }
.contact-detail:hover .contact-detail-text { color: var(--accent); }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(34,85,224,0.1); border: 1px solid rgba(34,85,224,0.22); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail-text { font-weight: 700; font-size: 1rem; transition: color 0.2s; }
.contact-form { background: var(--bg3); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.75rem 1rem; color: var(--text); font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,85,224,0.15); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #1a1a1a; }
.form-submit { width: 100%; background: var(--accent); color: #fff; font-weight: 800; font-size: 1rem; padding: 0.9rem; border: none; border-radius: 8px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.form-submit:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question { width: 100%; background: none; border: none; text-align: left; color: var(--text); font-size: 1rem; font-weight: 700; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: inherit; transition: color 0.2s; }
.faq-question:hover { color: #6699ff; }
.faq-chevron { font-size: 0.75rem; transition: transform 0.3s; flex-shrink: 0; color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { font-size: 0.925rem; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; padding: 1.5rem 1rem; position: relative; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(34,85,224,0.12); border: 2px solid rgba(34,85,224,0.4); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 900; color: var(--accent); margin: 0 auto 1.25rem; }
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
@media (min-width: 769px) { .step:not(:last-child)::after { content: ''; position: absolute; top: 2.1rem; left: 75%; width: 50%; height: 2px; background: linear-gradient(90deg, rgba(34,85,224,0.35), transparent); } }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 2rem; text-align: center; }
.footer-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--accent); }
footer p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin: 1rem 0; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── TOAST ── */
#toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; background: #1a2e1a; border: 1px solid #2ecc71; color: #2ecc71; padding: 1rem 1.5rem; border-radius: 10px; font-weight: 600; font-size: 0.9rem; transform: translateY(100px); opacity: 0; transition: all 0.4s ease; pointer-events: none; }
#toast.show { transform: translateY(0); opacity: 1; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, rgba(34,85,224,0.15), rgba(0,20,80,0.3)); border-top: 1px solid rgba(34,85,224,0.2); border-bottom: 1px solid rgba(34,85,224,0.2); padding: 4rem 2rem; text-align: center; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 0.75rem; }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }
.cta-banner .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
