:root {
  --navy-950: #061a30;
  --navy-900: #0a2848;
  --navy-800: #10395f;
  --navy-700: #174a79;
  --red-700: #b71f20;
  --red-600: #d62a25;
  --yellow-500: #ffbd16;
  --yellow-400: #ffd14a;
  --cream: #fff5d9;
  --white: #ffffff;
  --ink: #122033;
  --muted: #657285;
  --line: #e7ebf0;
  --surface: #f7f9fb;
  --shadow: 0 24px 60px rgba(6, 26, 48, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 26, 48, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.84);
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a { transition: 0.2s ease; }
.main-nav a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950) !important;
  font-weight: 850;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,189,22,0.08), transparent 42%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 2;
}

.hero-copy { padding: 74px 0; }

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 900;
}

.eyebrow {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 189, 22, 0.12);
  border: 1px solid rgba(255, 209, 74, 0.24);
  color: var(--yellow-400);
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0 22px;
  font-size: clamp(2.8rem, 5.3vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 span { color: var(--yellow-500); }

.hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 1.1rem;
}

.hero-actions,
.location-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions { margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow-500);
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(255,189,22,0.18);
}

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

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.23);
  background: rgba(255,255,255,0.07);
}

.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-info {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.logo-card {
  width: min(480px, 100%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 42px;
  transform: rotate(2.5deg);
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,189,22,0.2), transparent 68%);
  filter: blur(4px);
}

.logo-backdrop {
  position: absolute;
  inset: 7%;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 90%;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.32;
}
.hero-glow-one {
  width: 360px;
  height: 360px;
  background: var(--yellow-500);
  right: 7%;
  top: 18%;
}
.hero-glow-two {
  width: 320px;
  height: 320px;
  background: var(--red-600);
  left: -140px;
  bottom: -130px;
}

.section { padding: 100px 0; }
.section-kicker { color: var(--red-600); margin-bottom: 12px; }
.section-kicker.light { color: var(--yellow-400); }

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.about { background: var(--white); }
.about-copy { max-width: 720px; }
.about-copy p { color: var(--muted); margin: 0 0 18px; }
.about-copy .lead {
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.55;
  font-weight: 650;
}

.products { background: var(--surface); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6,26,48,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(6,26,48,0.08);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 15px;
  background: rgba(255,189,22,0.13);
  color: var(--navy-900);
}
.icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.featured-card {
  color: var(--white);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border-color: transparent;
}
.featured-card p { color: rgba(255,255,255,0.68) !important; }
.featured-card .icon-wrap { color: var(--yellow-500); background: rgba(255,189,22,0.12); }

.product-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.product-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.catalog { padding-top: 0; background: var(--surface); }
.catalog-card {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 54px 60px;
  color: var(--white);
  background: linear-gradient(125deg, var(--red-700), var(--red-600));
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(183,31,32,0.2);
}
.catalog-card > * { position: relative; z-index: 2; }
.catalog-card h2 { margin-bottom: 12px; }
.catalog-card p { margin: 0; color: rgba(255,255,255,0.76); }
.catalog-bolt {
  position: absolute;
  z-index: 1 !important;
  right: 9%;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  font-size: 15rem;
  line-height: 1;
  opacity: 0.08;
}
.btn-light { background: var(--white); color: var(--red-700); }
.btn-light:hover { background: var(--cream); }

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}
.contact-list {
  margin: 34px 0;
  display: grid;
  gap: 22px;
}
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
}
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item p { margin: 0; color: var(--muted); }
.contact-item a:hover { color: var(--red-600); }
.text-link { color: var(--navy-800); font-weight: 800; }
.map-card {
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-card iframe { width: 100%; height: 100%; border: 0; min-height: 500px; }

.final-cta {
  padding: 80px 0;
  color: var(--white);
  background: var(--navy-950);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 8px 0 10px; }
.final-cta p { margin: 0; color: rgba(255,255,255,0.64); }
.mini-label { color: var(--yellow-500); }
.btn-dark { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.12); }
.btn-dark:hover { background: rgba(255,255,255,0.16); }

.site-footer {
  padding: 32px 0;
  color: rgba(255,255,255,0.6);
  background: #041323;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { width: 48px; height: 48px; border-radius: 12px; }
.footer-brand strong { display: block; color: var(--white); }
.footer-brand span { font-size: 0.86rem; }
.footer-copy {
  display: grid;
  justify-items: end;
  gap: 5px;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-radius: 16px;
    background: var(--navy-950);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .nav-cta { text-align: center; margin-top: 6px; }

  .hero-grid { grid-template-columns: 1fr; gap: 10px; padding-bottom: 64px; }
  .hero-copy { padding: 68px 0 20px; }
  .hero-art { min-height: auto; }
  .logo-card { width: min(420px, 88%); }

  .split-grid,
  .location-grid { grid-template-columns: 1fr; gap: 42px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-card { grid-template-columns: 1fr; padding: 44px; }
  .catalog-card .btn { justify-self: start; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand span { font-size: 0.92rem; }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions,
  .location-actions,
  .final-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-info { flex-direction: column; gap: 7px; }

  .section { padding: 76px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .icon-wrap { margin-bottom: 28px; }
  .catalog-card { padding: 34px 26px; }
  .catalog-bolt { font-size: 10rem; }
  .map-card,
  .map-card iframe { min-height: 380px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-copy { justify-items: start; }
}
