/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a2332;
  background: #fff;
}

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

/* ─── Tokens ────────────────────────────────────────────────────────────── */
:root {
  --primary:      #1565c0;
  --primary-dark: #0d47a1;
  --dark:         #0a1628;
  --text:         #1a2332;
  --muted:        #6b7280;
  --light:        #f4f6f9;
  --border:       #e5e7eb;
  --radius:       8px;
}

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at center, #2a5298 0%, #1a3a6b 45%, #0a1628 100%);
  color: #fff;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 84px 0 76px;
  text-align: center;
}

.hero-logo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-logo {
  width: 160px;
  height: auto;
  margin: 0;
  transform: translateY(-12px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.175rem);
  color: #b8c9de;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ─── Scroll Indicator ──────────────────────────────────────────────────── */
.scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
  transition: opacity 0.2s;
}

.scroll-indicator:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn:hover { background: var(--primary-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-white { background: #fff; }
.section-dark  { background: var(--dark); color: #fff; }

.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.section-dark h2 { color: #fff; }

/* ─── Cards (2-col grid) ────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ─── Steps ─────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.step p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--border);
  align-self: center;
  margin-bottom: 50px; /* visually align with step number row */
}

/* ─── CTA Section ───────────────────────────────────────────────────────── */
.cta-inner {
  text-align: center;
}

.cta-inner p {
  color: #b8c9de;
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: #060e1c;
  padding: 28px 0;
}

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

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0cce0;
  letter-spacing: 0.01em;
}

.footer-brand a {
  color: #c0cce0;
  font-weight: 400;
}

.footer-brand a:hover { color: #fff; }

.footer-copy {
  color: #4b5563;
  font-size: 0.85rem;
}

/* ─── Contact Form ──────────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.contact-form__group label {
  font-size: .875rem;
  font-weight: 600;
  color: #c0cce0;
}

.contact-form__group input,
.contact-form__group textarea {
  padding: .625rem .875rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 1rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 100%;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder { color: rgba(255,255,255,0.35); }

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
}

.contact-form__group textarea { resize: vertical; min-height: 110px; }

.contact-form__consent label {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  cursor: pointer;
}

.contact-form__consent input[type=checkbox] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
}

.contact-form__consent span {
  font-size: .8rem;
  color: #8fa8c8;
  line-height: 1.5;
}

.contact-form__consent a {
  color: #a8c4e8;
  text-decoration: underline;
}

.contact-form__status {
  font-size: .875rem;
  padding: .625rem .875rem;
  border-radius: var(--radius);
  display: none;
}
.contact-form__status:not(:empty) { display: block; }
.contact-form__status--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.contact-form__status--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.contact-form .btn { align-self: flex-start; }

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 48px 0;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .step { max-width: 100%; }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0;
    align-self: center;
  }

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

  .nav-phone { font-size: 0.875rem; }
}
