:root {
  --blue: #292f86;
  --blue-dark: #171d62;
  --orange: #f15a24;
  --orange-dark: #d84613;
  --ink: #18202b;
  --muted: #5f6875;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #dfe4ec;
  --shadow: 0 18px 50px rgba(18, 30, 64, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: .9rem;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar a:hover { color: #ffd2c1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223,228,236,.9);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo img { width: 230px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-weight: 700;
  color: #293044;
  position: relative;
  padding: 28px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 3px;
  background: var(--orange);
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { right: 0; }
.site-nav .nav-cta {
  color: var(--white);
  background: var(--orange);
  padding: 12px 20px;
  border-radius: 999px;
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--orange-dark); }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--light);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.4rem;
}

.hero {
  min-height: 640px;
  position: relative;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10,18,51,.88) 0%, rgba(10,18,51,.67) 47%, rgba(10,18,51,.25) 100%),
    url('images/banner-1.jpg') center/cover no-repeat;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.25));
  pointer-events: none;
}
.hero-content { max-width: 760px; position: relative; z-index: 1; padding: 90px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero .eyebrow { color: #ffb395; }
.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 690px; color: #f2f4ff; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border-color: rgba(255,255,255,.75); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); }

.trust-strip { position: relative; margin-top: -42px; z-index: 4; }
.trust-grid {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-item { padding: 26px; text-align: center; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--blue); font-size: 1.15rem; }
.trust-item span { color: var(--muted); font-size: .92rem; }

.section { padding: 92px 0; }
.section-light { background: var(--light); }
.section-title { max-width: 760px; margin-bottom: 42px; }
.section-title.center { margin-inline: auto; text-align: center; }
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 10px 0 16px;
  color: var(--blue-dark);
}
.section-title p { color: var(--muted); font-size: 1.08rem; }

.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; min-height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  background: var(--orange);
  color: white;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 800;
  max-width: 210px;
}
.about-content h2 { color: var(--blue-dark); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.12; margin: 12px 0 20px; }
.about-content p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.check-list li::before { content: "✓"; color: var(--orange); font-weight: 900; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff0e9;
  color: var(--orange);
  font-size: 1.55rem;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0; }

.split-banner {
  background:
    linear-gradient(90deg, rgba(24,29,98,.93), rgba(24,29,98,.72)),
    url('images/banner-2.jpg') center/cover no-repeat;
  color: var(--white);
  border-radius: 26px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  box-shadow: var(--shadow);
}
.split-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0 0 12px; }
.split-banner p { color: #e9ecff; margin: 0; max-width: 720px; }

.page-hero {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(13,20,64,.93), rgba(13,20,64,.62)),
    url('images/banner-2.jpg') center/cover no-repeat;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.7rem); margin: 10px 0; line-height: 1.05; }
.page-hero p { max-width: 700px; font-size: 1.12rem; color: #edf0ff; }
.breadcrumb { color: #d7dcff; font-weight: 700; font-size: .95rem; }
.breadcrumb span { color: #ff9b73; }

.supplier-intro { max-width: 850px; margin: 0 auto 48px; text-align: center; }
.supplier-sections { display: grid; gap: 26px; }
.supplier-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
}
.supplier-box h2 { margin: 0 0 20px; color: var(--blue-dark); font-size: 1.65rem; }
.supplier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.supplier-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 10px;
  background: var(--light);
  color: #333b50;
  font-weight: 700;
  border: 1px solid transparent;
}
.supplier-link:hover { border-color: var(--orange); color: var(--orange-dark); background: #fff8f5; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-card {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.contact-card h2 { margin-top: 0; font-size: 2rem; }
.contact-item { padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-item:last-of-type { border-bottom: 0; }
.contact-item small { display: block; color: #aeb6df; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.contact-item a, .contact-item p { margin: 5px 0 0; font-size: 1.05rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 12px; }
.hours td { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.hours td:last-child { text-align: right; }
.form-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(18,30,64,.07);
}
.form-panel h2 { margin-top: 0; color: var(--blue-dark); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 800; font-size: .92rem; margin-bottom: 7px; color: #303849; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd6e1;
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfe;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,47,134,.12); }
textarea { min-height: 145px; resize: vertical; }
.form-note { color: var(--muted); font-size: .88rem; }
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 42px;
  background: var(--light);
}

.site-footer { background: #111632; color: #dce0f4; padding-top: 62px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 50px; padding-bottom: 45px; }
.footer-logo { width: 220px; filter: drop-shadow(0 0 1px rgba(255,255,255,.4)); margin-bottom: 18px; }
.site-footer h3 { color: var(--white); margin-top: 0; }
.site-footer p { color: #bac1e0; }
.footer-links { display: grid; gap: 11px; }
.footer-links a:hover { color: #ff9e79; }
.copyright { border-top: 1px solid rgba(255,255,255,.11); padding: 20px 0; color: #9fa8cf; font-size: .9rem; }
.copyright .container { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 18px;
    box-shadow: var(--shadow);
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { text-align: center; margin-top: 7px; }
  .hero { min-height: 580px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .supplier-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar .container { justify-content: center; min-height: 42px; }
  .topbar .hide-mobile { display: none; }
  .logo img { width: 190px; }
  .nav-wrap { min-height: 72px; }
  .site-nav { top: 72px; }
  .hero { min-height: 620px; background-position: 58% center; }
  .hero-content { padding: 70px 0 100px; }
  .hero h1 { font-size: 3rem; }
  .trust-strip { margin-top: -55px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .about-image img { min-height: 330px; }
  .about-badge { position: static; margin: -28px 18px 0; max-width: none; text-align: center; }
  .cards, .supplier-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .split-banner { padding: 38px 28px; grid-template-columns: 1fr; }
  .supplier-box, .form-panel, .contact-card { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .copyright .container { flex-direction: column; text-align: center; }
}
