
:root {
  --navy: #061a33;
  --navy2: #0b2d55;
  --blue: #114b83;
  --yellow: #f7c600;
  --yellow2: #ffe27a;
  --cream: #fff8df;
  --white: #ffffff;
  --text: #142033;
  --muted: #667085;
  --line: #e8dfbd;
  --shadow: 0 18px 50px rgba(6, 26, 51, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf4 0%, var(--cream) 100%);
  line-height: 1.65;
}
a { color: var(--blue); }
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 26, 51, .98);
  border-bottom: 5px solid var(--yellow);
  box-shadow: 0 10px 30px rgba(6, 26, 51, .25);
}
.nav-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  color: white;
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .2px;
  white-space: nowrap;
}
.logo span { color: var(--yellow); }
.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a:hover { background: var(--yellow); color: var(--navy); }
.main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 44px 24px;
}
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 8%, rgba(247,198,0,.33), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, #123e70 100%);
  padding: 58px;
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 34px;
  box-shadow: var(--shadow);
}
.hero:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(247,198,0,.38);
  border-radius: 50%;
  right: -90px;
  bottom: -90px;
}
.hero > * { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow.dark { color: var(--blue); }
h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -1.2px;
}
h2 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
}
h3 { color: var(--navy); margin-top: 0; }
.lead {
  color: #e5edf7;
  font-size: 19px;
  max-width: 820px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
}
.btn-yellow {
  background: linear-gradient(180deg, var(--yellow2), var(--yellow));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(247,198,0,.22);
}
.btn-outline {
  color: white;
  border: 2px solid var(--yellow);
}
.hero-card {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(247,198,0,.55);
  border-top: 8px solid var(--yellow);
  color: var(--navy);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.hero-card ul { padding-left: 20px; }
.hero-card li { margin-bottom: 9px; }
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.trust div {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 15px;
}
.trust strong { display: block; color: var(--yellow); }
.trust span { color: #dce7f4; font-size: 13px; }
.section {
  margin-top: 58px;
}
.section-head {
  max-width: 850px;
  margin-bottom: 26px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card, .panel, .form-card, .map-card, .process-card, .category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card {
  border-top: 6px solid var(--yellow);
}
.icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}
.band {
  background: var(--navy);
  color: white;
  border-radius: 28px;
  padding: 36px;
  border-bottom: 7px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.band h2 { color: white; }
.band p { color: #dbe7f5; max-width: 760px; }
.page-title {
  background:
    radial-gradient(circle at 80% 12%, rgba(247,198,0,.25), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 30px;
  padding: 44px;
  border-bottom: 7px solid var(--yellow);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}
.page-title h1 { color: white; }
.page-title p { color: #dfe9f5; font-size: 18px; max-width: 880px; }
.yellow-panel {
  background: #fff1b8;
  border-left: 8px solid var(--yellow);
}
.supplier-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.supplier-list div {
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 20px;
  font-weight: 900;
  border-bottom: 5px solid var(--yellow);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  border-top: 6px solid var(--yellow);
}
.process-card span {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 14px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--navy);
  color: white;
  border-bottom: 6px solid var(--yellow);
  font-weight: 900;
}
.category-card span {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  margin-bottom: 7px;
}
.form-card {
  border-top: 8px solid var(--yellow);
}
.form-note { color: var(--muted); margin-top: -6px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
input, textarea, select {
  width: 100%;
  display: block;
  margin-top: 7px;
  border: 1px solid #cbd5e1;
  background: #fffdf3;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 4px solid rgba(247,198,0,.32);
  border-color: var(--navy);
}
.hidden { display: none !important; }
.contact-note {
  background: #fff1b8;
  border-radius: 16px;
  padding: 18px;
  margin: 20px 0;
}
.map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  height: 320px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer {
  margin-top: 58px;
  background: var(--navy);
  color: white;
  border-top: 6px solid var(--yellow);
}
.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.footer a { color: var(--yellow); }
.footer-brand {
  font-size: 24px;
  font-weight: 900;
}
.footer-brand span { color: var(--yellow); }
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.success-box {
  max-width: 720px;
  margin: 80px auto;
  background: white;
  border-radius: 26px;
  padding: 42px;
  border-top: 8px solid var(--yellow);
  box-shadow: var(--shadow);
}
@media (max-width: 980px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .process-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .band { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .main { padding: 28px 18px; }
  .hero, .page-title { padding: 28px; }
  .category-grid, .form-grid, .supplier-list { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
}
