/* =========================================================
   ROOT + THEME
========================================================= */

:root {
  --bg: #070b12;
  --bg-elevated: #0d1424;
  --bg-glass: rgba(20, 30, 60, 0.55);
  --border: rgba(80, 120, 255, 0.18);

  --text: #e8ecff;
  --muted: #a7b0e0;

  --brand: #4da3ff;
  --brand-soft: #9fc9ff;
  --brand-glow: rgba(77, 163, 255, 0.5);

  --radius: 22px;
}

[data-theme="light"] {
  --bg: #f4f7ff;
  --bg-elevated: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border: rgba(0, 0, 0, 0.08);

  --text: #0b1020;
  --muted: #556;

  --brand: #2563eb;
  --brand-soft: #4f7df3;
  --brand-glow: rgba(37, 99, 235, 0.4);
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(77,163,255,0.12), transparent),
    radial-gradient(800px 500px at 80% 10%, rgba(120,80,255,0.12), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.4s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.section { padding: 80px 0; }

/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: linear-gradient(
    180deg,
    rgba(20,30,60,0.85),
    rgba(10,15,30,0.65)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand);
  text-shadow: 0 0 20px var(--brand-glow);
}

.brand-subtitle {
  font-size: 13px;
  margin-top: 4px;
  color: var(--brand-soft);
  letter-spacing: 0.4px;
}

.nav { display: flex; align-items: center; gap: 26px; }

.nav-link {
  position: relative;
  font-weight: 500;
  opacity: 0.9;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  left: 0;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 48px;        /* Adjust if needed */
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(77,163,255,0.45));
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.h1 { font-size: 1.8rem; max-width: 900px; }

.h2 {
  font-size: 2.1rem;
  color: var(--brand);
  margin-bottom: 12px;
}

.lead { margin-top: 1.2rem; max-width: 720px; color: var(--muted); }

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* =========================================================
   GLASS CARDS
========================================================= */

.glass {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass:hover::before { opacity: 1; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
  margin-top: 46px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #6d8bff);
  color: #04070d;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow:
    0 10px 30px rgba(77,163,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(77,163,255,0.6);
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.trust-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item strong { display: block; }

.direct-contact { margin-top: 3rem; }

.brand-link {
  color: var(--brand);
  text-decoration: none;
}

.brand-link:hover { text-decoration: underline; }

/* =========================================================
   FORM
========================================================= */

.form-field { margin-bottom: 1.4rem; }

.form-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(10, 15, 35, 0.6);
  color: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

/* =========================================================
   FAQ PAGE
========================================================= */

.faq-section { max-width: 900px; margin: 0 auto; }

.faq-item {
  background: var(--bg-glass);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.faq-item h3 {
  margin-bottom: 8px;
  color: var(--brand);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

/* =========================================================
   ANIMATIONS
========================================================= */

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
/* =========================================================
   ROOT + THEME
========================================================= */

:root {
  --bg: #070b12;
  --bg-elevated: #0d1424;
  --bg-glass: rgba(20, 30, 60, 0.55);
  --border: rgba(80, 120, 255, 0.18);

  --text: #e8ecff;
  --muted: #a7b0e0;

  --brand: #4da3ff;
  --brand-soft: #9fc9ff;
  --brand-glow: rgba(77, 163, 255, 0.5);

  --radius: 22px;
}

[data-theme="light"] {
  --bg: #f4f7ff;
  --bg-elevated: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border: rgba(0, 0, 0, 0.08);

  --text: #0b1020;
  --muted: #556;

  --brand: #2563eb;
  --brand-soft: #4f7df3;
  --brand-glow: rgba(37, 99, 235, 0.4);
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(77,163,255,0.12), transparent),
    radial-gradient(800px 500px at 80% 10%, rgba(120,80,255,0.12), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.4s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* =========================================================
   HEADER
========================================================= */
.site-header {
  background: linear-gradient(
    180deg,
    rgba(20,30,60,0.85),
    rgba(10,15,30,0.65)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(77,163,255,0.45));
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  font-weight: 500;
  opacity: 0.9;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  left: 0;
  width: 100%;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
.h1 { font-size: 1.8rem; max-width: 900px; }
.h2 { font-size: 2.1rem; color: var(--brand); margin-bottom: 12px; }
.lead { margin-top: 1.2rem; max-width: 720px; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* =========================================================
   GLASS CARDS
========================================================= */
.glass {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass:hover::before { opacity: 1; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
  margin-top: 46px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #6d8bff);
  color: #04070d;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow:
    0 10px 30px rgba(77,163,255,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(77,163,255,0.6);
}

/* =========================================================
   CONTACT FORM
========================================================= */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(10,15,35,0.6);
  color: var(--text);
  font-size: 1rem;
  resize: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.contact-card button {
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand), #6d8bff);
  color: #04070d;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(77,163,255,0.6);
}

/* =========================================================
   FAQ
========================================================= */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.faq-item {
  background: var(--bg-glass);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.faq-item h3 { margin-bottom: 8px; color: var(--brand); }
.faq-item p { color: var(--muted); line-height: 1.5; }

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

/* =========================================================
   ANIMATIONS
========================================================= */
.animate-in { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   MOBILE FIXES
========================================================= */
@media (max-width: 768px) {

  body { font-size: 15px; line-height: 1.6; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  .header-inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }

  .brand { justify-content: center; width: 100%; }
  .brand-logo { height: 42px; width: auto; margin: 0; }

  .nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 6px;
  }

  .hero { padding: 56px 16px 40px; text-align: center; }
  .hero h1 { font-size: 1.4rem; line-height: 1.4; max-width: 100%; }
  .cta-row { margin-top: 20px; }

  .grid-3 { grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
  .glass { padding: 18px; border-radius: 18px; }
  #snapshot { margin-top: 24px; }

  .faq-section { padding: 48px 16px; }
  .faq-item { padding: 16px; }
  .faq-item h3 { font-size: 1.05rem; }

  .contact-card { padding: 20px; margin: 0; border-radius: 18px; }
  .contact-card input,
  .contact-card textarea,
  .contact-card button { font-size: 0.95rem; }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
