/* ===================================================== */
/*  VIPER — Spotlight Design System                       */
/*  Dark cinematic theme for Hostinger static deployment  */
/* ===================================================== */

:root {
  --bg:              #0d0d0f;
  --bg-muted:        #111215;
  --glass:           rgba(255, 255, 255, 0.04);
  --glass-lt:        rgba(255, 255, 255, 0.025);
  --glass-heavy:     rgba(255, 255, 255, 0.07);
  --glass-border:    rgba(255, 255, 255, 0.08);
  --glass-border-lt: rgba(255, 255, 255, 0.05);
  --glass-highlight: rgba(255, 255, 255, 0.06);

  --accent:      #11d6de;
  --accent-dim:  rgba(17, 214, 222, 0.1);
  --accent-glow: rgba(17, 214, 222, 0.2);
  --accent-dark: rgba(17, 214, 222, 0.05);

  --text:  #f1efe7;
  --text2: rgba(241, 239, 231, 0.65);
  --text3: rgba(241, 239, 231, 0.35);

  --green:  #34d399;
  --amber:  #f5a623;
  --red:    #f87171;
  --violet: #a78bfa;

  --blur:      blur(28px);
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:     72px;
  --section-y: 100px;
  --max-w:     1160px;
}

/* ===================================================== */
/*  RESET & BASE                                          */
/* ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(241, 239, 231, 0.15);
  border-radius: 4px;
}

/* ===================================================== */
/*  LAYOUT                                                */
/* ===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.section-muted   { background: rgba(255,255,255,0.018); }
.section-dark    { background: #080809; }
.section-accent  {
  background: linear-gradient(160deg, rgba(17,214,222,0.05) 0%, rgba(3,44,74,0.25) 100%);
  border-top: 1px solid rgba(17,214,222,0.09);
  border-bottom: 1px solid rgba(17,214,222,0.09);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.center-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ===================================================== */
/*  AMBIENT ORBS                                          */
/* ===================================================== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: linear-gradient(135deg, rgba(17,214,222,0.15), #032c4a);
  opacity: 0.35;
}
.orb-2 {
  bottom: -180px; left: -180px;
  width: 700px; height: 700px;
  background: linear-gradient(135deg, #032c4a, rgba(17,214,222,0.1));
  opacity: 0.25;
}

/* ===================================================== */
/*  NAV                                                   */
/* ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,15,0.85);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border-lt);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(13,13,15,0.95);
  border-bottom-color: var(--glass-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.nav-logo span {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text3);
  font-weight: 500;
  display: block;
  text-transform: none;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text2);
  padding: 4px;
  line-height: 1;
}
.nav-toggle:hover { color: var(--text); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border-lt);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--text); }

/* ===================================================== */
/*  BUTTONS                                               */
/* ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-accent {
  background: var(--accent);
  color: #0a1a1a;
}
.btn-accent:hover {
  background: #0ec5cc;
  box-shadow: 0 0 28px var(--accent-glow);
}
/* Override nav link color inheritance for accent button */
.nav-links a.btn-accent,
.nav-links a.btn-accent:hover,
.nav-mobile a.btn-accent,
.nav-mobile a.btn-accent:hover {
  color: #0a1a1a;
}
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: var(--glass-heavy);
  border-color: rgba(255,255,255,0.13);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(17,214,222,0.4);
}
.btn-outline:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 16px var(--accent-glow);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* ===================================================== */
/*  GLASS CARDS                                           */
/* ===================================================== */
.glass-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border-lt);
  border-radius: var(--radius);
  padding: 36px;
}
.glass-card-heavy {
  background: var(--glass-heavy);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: inset 0 2px 0 var(--glass-highlight);
}

/* ===================================================== */
/*  ICON BADGE                                            */
/* ===================================================== */
.icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(17,214,222,0.22);
  border-radius: 100px;
  margin-bottom: 20px;
}
.icon-badge svg {
  width: 15px; height: 15px;
  color: var(--accent);
  stroke: var(--accent);
  flex-shrink: 0;
}
.icon-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===================================================== */
/*  TYPOGRAPHY                                            */
/* ===================================================== */
.hero-title {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.page-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.body-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text2);
}
.body-text + .body-text { margin-top: 16px; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #a0eff2 55%, #e8e6df 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text2); }
.text-dim    { color: var(--text3); }

.section-mb { margin-bottom: 56px; }
.section-mb-sm { margin-bottom: 40px; }

/* ===================================================== */
/*  FEATURE LIST                                          */
/* ===================================================== */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.55;
}
.feature-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: var(--accent-dim);
  border: 1px solid rgba(17,214,222,0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2311d6de' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===================================================== */
/*  PROMISE CARDS                                         */
/* ===================================================== */
.promise-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-lt);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.promise-card:hover {
  border-color: rgba(17,214,222,0.22);
  box-shadow: 0 4px 32px rgba(17,214,222,0.08);
  transform: translateY(-2px);
}
.promise-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(17,214,222,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.promise-icon svg {
  width: 20px; height: 20px;
  color: var(--accent);
  stroke: var(--accent);
}

/* ===================================================== */
/*  STAT BOX                                              */
/* ===================================================== */
.stat-box {
  background: linear-gradient(135deg, rgba(17,214,222,0.06), rgba(3,44,74,0.2));
  border: 1px solid rgba(17,214,222,0.15);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.stat-number {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.stat-sub {
  font-size: 0.875rem;
  color: var(--text3);
}

/* ===================================================== */
/*  HERO — HOME                                           */
/* ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,15,0.82) 0%,
    rgba(13,13,15,0.70) 45%,
    rgba(13,13,15,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 120px 0 80px;
  margin: 0 auto;
  text-align: center;
  animation: heroFadeIn 1s ease forwards;
}
.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-kicker-line {
  width: 32px; height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}
.hero-kicker-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text3);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
  letter-spacing: 0.01em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text3);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 16px; height: 16px; stroke: var(--text3); }

/* PAGE HERO (inner pages) */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 110px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border-lt);
}
.page-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text2);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ===================================================== */
/*  CONTACT                                               */
/* ===================================================== */
.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-lt);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.contact-card:hover {
  border-color: rgba(17,214,222,0.18);
  box-shadow: 0 8px 48px rgba(17,214,222,0.07);
  transform: translateY(-3px);
}
.contact-icon-wrap {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(17,214,222,0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-icon-wrap svg {
  width: 24px; height: 24px;
  color: var(--accent); stroke: var(--accent);
}
.contact-card h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

/* Quote */
.quote-card {
  background: var(--glass-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  box-shadow: inset 0 2px 0 var(--glass-highlight);
}
.quote-mark {
  font-size: 6rem;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.35;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 20px;
  display: block;
}
.quote-text {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 32px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-avatar {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(17,214,222,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
}
.quote-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}
.quote-role-label {
  font-size: 0.8125rem;
  color: var(--text3);
  margin-top: 2px;
}

/* ===================================================== */
/*  FORM                                                  */
/* ===================================================== */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text3); }
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(17,214,222,0.4);
  box-shadow: 0 0 0 3px rgba(17,214,222,0.08);
  background: rgba(255,255,255,0.05);
}
.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.form-success {
  padding: 40px 24px;
  text-align: center;
  color: var(--accent);
  font-size: 1.0625rem;
}

/* ===================================================== */
/*  CTA SECTION                                           */
/* ===================================================== */
.cta-section {
  background: linear-gradient(135deg,
    rgba(17,214,222,0.07) 0%,
    rgba(3,44,74,0.35) 50%,
    rgba(13,13,15,0.9) 100%);
  border-top: 1px solid rgba(17,214,222,0.12);
  text-align: center;
}

/* ===================================================== */
/*  FOOTER                                                */
/* ===================================================== */
.footer {
  position: relative;
  z-index: 1;
  background: #060608;
  border-top: 1px solid var(--glass-border-lt);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.footer-brand-full {
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text3);
  line-height: 1.7;
}
.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text3);
  transition: color 0.2s;
  margin-bottom: 10px;
}
.footer-contact-link:hover { color: var(--accent); }
.footer-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--glass-border-lt);
  padding-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text3);
}
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  margin-bottom: 64px;
}

/* ===================================================== */
/*  ANIMATIONS                                            */
/* ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===================================================== */
/*  RESPONSIVE                                            */
/* ===================================================== */
@media (max-width: 900px) {
  :root { --section-y: 72px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col.reverse > :first-child { order: 0; }
  .two-col.reverse > :last-child  { order: 0; }

  .three-col { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .hero-content { padding: 100px 0 72px; }

  .glass-card, .glass-card-heavy { padding: 28px 24px; }
  .quote-card { padding: 36px 28px; }
  .contact-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  :root { --section-y: 60px; }
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .three-col { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 20px; }
  .stat-box { padding: 40px 24px; }
}

/* ===================================================== */
/*  PRINT                                                 */
/* ===================================================== */
@media print {
  :root {
    --bg: #fff !important;
    --text: #000 !important;
    --text2: #333 !important;
  }
  .orb, .orb-1, .orb-2, .nav, .hero-scroll { display: none !important; }
  body { background: #fff !important; }
}
