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

:root {
  --navy:    #0a1628;
  --navy-2:  #0f1e37;
  --blue:    #1a56db;
  --blue-h:  #1d4ed8;
  --cyan:    #06b6d4;
  --muted:   #94a3b8;
  --text:    #cbd5e1;
  --white:   #e2e8f0;
  --border:  rgba(26,86,219,0.18);
  --surface: rgba(26,86,219,0.05);
  --radius:  10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border: 0.5px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-h); border-color: var(--blue-h); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.65); }

.btn-lg { font-size: 1rem; padding: 0.8rem 1.9rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  flex: 1;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta { margin-left: auto; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid var(--border);
}
.nav-mobile a {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 0.5px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .btn { margin: 1rem 1.5rem; width: calc(100% - 3rem); }

.nav-mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(6,182,212,0.1);
  border: 0.5px solid rgba(6,182,212,0.3);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.32rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  max-width: 680px;
  margin: 0 auto 1.4rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section { padding: 4.5rem 0; }
.section-alt { background: rgba(26,86,219,0.03); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ===== CARDS GRID ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: rgba(26,86,219,0.45); }

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(6,182,212,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.tag {
  display: inline-block;
  background: rgba(26,86,219,0.15);
  border: 0.5px solid rgba(26,86,219,0.3);
  color: #93c5fd;
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== FEATURES GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.feature {
  padding: 1.4rem 1.2rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.2s;
}
.feature:hover { border-color: var(--cyan); }

.feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}
.feature p {
  font-size: 0.825rem;
  color: var(--muted);
  font-weight: 300;
}

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(26,86,219,0.45);
  min-width: 2.5rem;
  line-height: 1;
  margin-top: 2px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.step p { font-size: 0.875rem; color: var(--muted); font-weight: 300; }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(26,86,219,0.15), rgba(6,182,212,0.07));
  border-top: 0.5px solid rgba(26,86,219,0.25);
  border-bottom: 0.5px solid rgba(26,86,219,0.25);
}
.cta-band h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.65rem; }
.cta-band p { color: var(--muted); font-size: 0.95rem; font-weight: 300; }

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  border-top: 0.5px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer p { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ===== FORM PAGE ===== */
.page-form {
  min-height: 100vh;
  padding: 5rem 0 4rem;
}
.form-header { text-align: center; margin-bottom: 2.5rem; }
.form-header h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 0.55rem; }
.form-header p { color: var(--muted); font-size: 0.925rem; font-weight: 300; }

.form-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

label { font-size: 0.8rem; font-weight: 500; color: #cbd5e1; letter-spacing: 0.02em; }
.required { color: var(--cyan); margin-left: 2px; }

input, select, textarea {
  background: rgba(15,30,55,0.8);
  border: 0.5px solid rgba(26,86,219,0.25);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #475569; }
input:focus, select:focus, textarea:focus { border-color: rgba(26,86,219,0.7); }
input.error, select.error, textarea.error { border-color: rgba(239,68,68,0.55); }
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
select option { background: #0f1e37; }
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.error-msg { font-size: 0.75rem; color: #f87171; display: none; }
.error-msg.visible { display: block; }

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
  padding: 1rem;
  background: rgba(26,86,219,0.06);
  border: 0.5px solid rgba(26,86,219,0.15);
  border-radius: 8px;
}
.privacy-row input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--blue); padding: 0;
}
.privacy-row label { font-size: 0.8rem; color: var(--muted); font-weight: 400; letter-spacing: 0; cursor: pointer; line-height: 1.55; }
.privacy-row a { color: var(--cyan); }

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--blue-h); transform: translateY(-1px); }
.btn-submit:disabled { background: #334155; color: #64748b; cursor: not-allowed; transform: none; }

.form-note {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 640px;
  margin: 1.75rem auto 0;
}
.info-item {
  text-align: center;
  padding: 1rem;
  border: 0.5px solid var(--border);
  border-radius: 10px;
}
.info-item i { font-size: 20px; color: var(--cyan); display: block; margin-bottom: 0.4rem; }
.info-item span { font-size: 0.78rem; color: var(--muted); }

.success-state {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.success-icon {
  width: 60px; height: 60px;
  background: rgba(6,182,212,0.1);
  border: 0.5px solid rgba(6,182,212,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 24px; color: var(--cyan);
}
.success-state h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.55rem; }
.success-state p { color: var(--muted); font-size: 0.9rem; font-weight: 300; }

/* ===== LEGAL PAGES ===== */
.page-legal { padding: 5rem 0 4rem; max-width: 720px; margin: 0 auto; }
.legal-header { border-bottom: 0.5px solid var(--border); padding-bottom: 2rem; margin-bottom: 2.5rem; }
.legal-header h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.4rem; }
.legal-meta { font-size: 0.8rem; color: #475569; }

.legal-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 0.5px solid var(--border);
}
.legal-body p { font-size: 0.9rem; color: var(--text); font-weight: 300; margin-bottom: 0.85rem; }
.legal-body strong { color: var(--white); font-weight: 500; }
.legal-body ul { padding-left: 1.25rem; margin-bottom: 0.85rem; }
.legal-body li { font-size: 0.9rem; color: var(--text); font-weight: 300; margin-bottom: 0.3rem; }
.legal-body a { color: var(--cyan); }

.data-card {
  background: rgba(6,182,212,0.05);
  border: 0.5px solid rgba(6,182,212,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.875rem;
}
.data-card p { margin-bottom: 0.3rem; color: var(--muted); }
.data-card strong { color: var(--cyan); }

.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.25rem; font-size: 0.82rem; }
.legal-table th { background: rgba(26,86,219,0.15); color: #93c5fd; font-weight: 500; padding: 0.6rem 0.9rem; text-align: left; border: 0.5px solid rgba(26,86,219,0.2); font-size: 0.78rem; }
.legal-table td { padding: 0.6rem 0.9rem; border: 0.5px solid rgba(26,86,219,0.15); color: var(--text); vertical-align: top; font-weight: 300; }
.legal-table tr:nth-child(even) td { background: rgba(26,86,219,0.03); }

.highlight-box {
  background: rgba(26,86,219,0.07);
  border: 0.5px solid rgba(26,86,219,0.2);
  border-left: 2px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3rem 0; }
}

/* ===== LOGO ===== */
.nav-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img img {
  height: 63px;
  width: auto;
}

/* ===== SECTOR CARDS ===== */
.sector-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.sector-card:hover {
  border-color: rgba(6,182,212,0.45);
  transform: translateY(-2px);
}
.sector-soon {
  opacity: 0.6;
  cursor: default;
}
.sector-soon:hover {
  transform: none;
  border-color: var(--border);
}
.sector-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
}