@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #eef3f9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --ink: #0b1f56;
  --ink-soft: #173979;
  --muted: #5c6e90;
  --line: rgba(11, 31, 86, 0.11);
  --blue: #0b1e59;
  --blue-2: #145fa3;
  --gold: #f5ab0f;
  --gold-2: #ffd04d;
  --hero-text: rgba(245, 248, 255, 0.88);
  --success: #1c7c54;
  --error: #b5473c;
  --shadow: 0 24px 60px rgba(9, 29, 88, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(238, 243, 249, 0.98)),
    radial-gradient(circle at top left, rgba(20, 95, 163, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245, 171, 15, 0.18), transparent 26%),
    var(--bg);
  position: relative;
}

a {
  color: inherit;
}

.background-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.background-glow-left {
  top: -8rem;
  left: -8rem;
  background: rgba(20, 95, 163, 0.22);
}

.background-glow-right {
  right: -8rem;
  bottom: 4rem;
  background: rgba(245, 171, 15, 0.2);
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(176px, 22vw, 232px);
  display: block;
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-cta {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0f224d;
  box-shadow: 0 16px 36px rgba(245, 171, 15, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(11, 31, 86, 0.12);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  margin-top: 8px;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 77, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(11, 30, 89, 0.98), rgba(17, 77, 139, 0.96));
  box-shadow: 0 30px 70px rgba(8, 27, 82, 0.2);
  color: white;
}

.hero-copy {
  padding-right: 12px;
}

.eyebrow,
.section-label,
.panel-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.panel-label {
  color: rgba(255, 216, 96, 0.92);
}

.section-label {
  color: var(--blue-2);
}

.hero h1,
.section h2,
.process-card h3,
.value-card h3,
.category-card h3,
.contact-card h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.hero h1 {
  margin: 14px 0 16px;
  max-width: 9ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--hero-text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-point,
.card,
.hero-panel {
  border-radius: 24px;
}

.hero-point {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-point span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 216, 96, 0.95);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.hero-point strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-point p {
  margin: 0;
  color: rgba(245, 248, 255, 0.76);
  line-height: 1.65;
}

.hero-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

.hero-panel h2 {
  margin: 14px 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.panel-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 248, 255, 0.9);
}

.panel-note {
  margin: 20px 0 0;
  color: rgba(245, 248, 255, 0.74);
  line-height: 1.75;
}

.section {
  margin-top: 30px;
}

.intro-grid,
.request-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.statement-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
}

.highlight-card {
  background: linear-gradient(135deg, rgba(245, 171, 15, 0.07), rgba(20, 95, 163, 0.07));
  display: grid;
  gap: 16px;
}

.highlight-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.highlight-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.highlight-item span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.highlight-item strong {
  color: var(--ink-soft);
  line-height: 1.5;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2,
.statement-card h2,
.request-copy h2,
.contact-card h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.statement-card p,
.request-copy p,
.contact-card p,
.privacy-card p,
.value-card p,
.category-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.75;
}

.process-grid,
.value-grid,
.category-grid {
  display: grid;
  gap: 16px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid,
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-card h3,
.value-card h3,
.category-card h3 {
  margin: 6px 0 10px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.value-section .section-heading,
.request-copy {
  max-width: 780px;
}

.form-card {
  background: var(--surface-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 86, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 95, 163, 0.24);
  box-shadow: 0 18px 36px rgba(11, 31, 86, 0.08);
}

.choice-card input {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 18px;
  height: 18px;
}

.choice-card strong {
  display: block;
  padding-right: 24px;
  color: var(--ink-soft);
}

.choice-card small {
  color: var(--muted);
  line-height: 1.55;
}

.choice-card:has(input:checked) {
  border-color: rgba(20, 95, 163, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.98));
  box-shadow: 0 18px 40px rgba(20, 95, 163, 0.1);
}

.conditional-block {
  display: block;
}

.conditional-block.hidden {
  display: none;
}

.inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid span {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 86, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(20, 95, 163, 0.36);
  box-shadow: 0 0 0 4px rgba(20, 95, 163, 0.08);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin: 14px 2px 0;
  min-height: 24px;
  font-size: 0.95rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

@media (max-width: 1100px) {
  .hero,
  .intro-grid,
  .request-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .links {
    gap: 12px 16px;
  }

  .shell {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    padding: 22px;
    border-radius: 28px;
  }

  .card,
  .hero-panel {
    padding: 22px;
  }

  .process-grid,
  .value-grid,
  .category-grid,
  .form-grid,
  .choice-grid,
  .inline-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}
