:root {
  --navy:     #0d1b2a;
  --navy-mid: #1b2838;
  --gold:     #f0a500;
  --gold-dim: #c8871a;
  --cream:    #faf8f4;
  --ink:      #1a1a2e;
  --muted:    #6b7280;
  --border:   #e5e0d8;
  --white:    #ffffff;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  background: var(--navy);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.nav__logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.hero__stat:first-child { padding-left: 0; }

.hero__stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 140px;
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* hero visual */
.hero__visual {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.hero__clock {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--navy);
  position: relative;
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.25);
}

.hero__clock-face {
  position: absolute;
  inset: 0;
}

.hero__clock-tick {
  position: absolute;
  width: 2px;
  height: 8px;
  background: rgba(240, 165, 0, 0.4);
  left: calc(50% - 1px);
  top: 12px;
  transform-origin: 50% calc(110px - 12px);
}

.hero__clock-tick--12,
.hero__clock-tick--3,
.hero__clock-tick--6,
.hero__clock-tick--9 {
  width: 3px;
  height: 12px;
  background: var(--gold);
  left: calc(50% - 1.5px);
  top: 8px;
  transform-origin: 50% calc(110px - 8px);
}

.hero__clock-tick--1  { transform: rotate(30deg); }
.hero__clock-tick--2  { transform: rotate(60deg); }
.hero__clock-tick--4  { transform: rotate(120deg); }
.hero__clock-tick--5  { transform: rotate(150deg); }
.hero__clock-tick--7  { transform: rotate(210deg); }
.hero__clock-tick--8  { transform: rotate(240deg); }
.hero__clock-tick--10 { transform: rotate(300deg); }
.hero__clock-tick--11 { transform: rotate(330deg); }

.hero__clock-center {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
}

.hero__clock-hand {
  position: absolute;
  bottom: 50%;
  left: calc(50% - 1px);
  transform-origin: bottom center;
  border-radius: 4px;
}

.hero__clock-hand--hour {
  width: 4px;
  height: 55px;
  background: var(--gold);
  transform: rotate(210deg);
}

.hero__clock-hand--minute {
  width: 3px;
  height: 80px;
  background: rgba(240, 165, 0, 0.5);
  transform: rotate(45deg);
}

/* pulse rings */
.hero__pulse {
  position: absolute;
  top: -20px;
  right: -20px;
}

.hero__pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse-out 2.5s ease-out infinite;
}

.hero__pulse-ring--1 { width: 40px; height: 40px; animation-delay: 0s; }
.hero__pulse-ring--2 { width: 70px; height: 70px; animation-delay: 0.8s; }
.hero__pulse-ring--3 { width: 100px; height: 100px; animation-delay: 1.6s; }

@keyframes pulse-out {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* ── DIFFERENTIATION ── */
.diff {
  background: var(--navy);
  padding: 80px 48px;
}

.diff__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.diff__item {
  padding: 32px 32px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 32px;
}

.diff__item:last-child { border-right: none; }

.diff__icon {
  color: var(--gold);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  background: rgba(240, 165, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff__title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.diff__body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.services__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.services__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.1;
}

.services__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.services__card {
  background: var(--white);
  padding: 36px 28px;
}

.services__card-icon {
  color: var(--navy);
  margin-bottom: 20px;
}

.services__card-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.services__card-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CHAIN ── */
.chain {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}

.chain__inner {
  max-width: 800px;
  margin: 0 auto;
}

.chain__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.chain__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.chain__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.chain__divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 48px 0;
}

/* ── CLOSING ── */
.closing {
  background: var(--navy);
  padding: 96px 48px;
}

.closing__inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 40px;
}

.closing__rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 40px;
}

.closing__vision {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-mid);
  padding: 40px 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-mark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 12px;
  background: var(--gold);
  color: var(--navy);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px 56px; }
  .hero__visual { display: none; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .diff__item:nth-child(2) { border-right: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { border-radius: 12px; }
  .chain, .services, .diff, .closing, .nav { padding-left: 24px; padding-right: 24px; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__stat-divider { display: none; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav__tagline { display: none; }
  .diff__grid { grid-template-columns: 1fr; }
  .diff__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; margin-bottom: 24px; }
  .diff__item:last-child { border-bottom: none; margin-bottom: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .hero__stat { padding: 0; }
  .hero { padding: 48px 20px 40px; }
  .chain, .services, .diff, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .closing, .diff { padding-top: 64px; padding-bottom: 64px; }
}

/* ── NAV CTA ── */
.nav__cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.2px;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.nav__cta:hover { background: var(--gold-dim); transform: translateY(-1px); }

/* ── HERO CTA ── */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(240,165,0,0.25);
}
.hero__cta:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,0.3);
}
.hero__cta-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 180px;
}

/* ── REQUEST FORM SECTION ── */
.request-form {
  background: var(--navy);
  padding: 96px 48px;
}
.request-form__inner {
  max-width: 860px;
  margin: 0 auto;
}
.request-form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.request-form__headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.request-form__sub {
  font-size: 16px;
  color: rgba(250,248,244,0.6);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── FORM FIELDS ── */
.rform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rform__field { display: flex; flex-direction: column; gap: 6px; }
.rform__field--full { grid-column: 1 / -1; }

.rform__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,248,244,0.75);
  letter-spacing: 0.01em;
}
.rform__req { color: var(--gold); }

.rform__input,
.rform__select,
.rform__textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.rform__input::placeholder,
.rform__textarea::placeholder { color: rgba(255,255,255,0.25); }
.rform__input:focus,
.rform__select:focus,
.rform__textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.rform__input--invalid,
.rform__select.rform__input--invalid,
.rform__textarea.rform__input--invalid {
  border-color: #f87171;
}
.rform__select {
  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='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.rform__select option { background: var(--navy-mid); color: var(--white); }
.rform__textarea { resize: vertical; min-height: 96px; }

.rform__error {
  font-size: 12px;
  color: #f87171;
  min-height: 16px;
  display: block;
}

/* ── SUBMIT ── */
.rform__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.rform__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.rform__submit:hover:not(:disabled) { background: var(--gold-dim); transform: translateY(-1px); }
.rform__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.rform__submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(13,27,42,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  display: none;
  animation: rfspin 0.6s linear infinite;
}
.rform__submit--loading .rform__submit-spinner { display: block; }
.rform__submit--loading .rform__submit-text { opacity: 0.6; }
@keyframes rfspin { to { transform: rotate(360deg); } }

.rform__privacy {
  font-size: 12px;
  color: rgba(250,248,244,0.4);
  line-height: 1.5;
  max-width: 280px;
}

/* ── SUCCESS + ERROR STATES ── */
.rform__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 24px;
}
.rform__success-icon {
  color: #34d399;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rform__success-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.rform__success-body {
  font-size: 15px;
  color: rgba(250,248,244,0.7);
  line-height: 1.65;
}
.rform__error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
  color: #fca5a5;
  font-size: 14px;
}

/* ── RESPONSIVE: form ── */
@media (max-width: 640px) {
  .request-form { padding: 64px 20px; }
  .rform__grid { grid-template-columns: 1fr; }
  .rform__footer { flex-direction: column; align-items: flex-start; }
  .rform__submit { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .nav__cta { display: none; }
}