:root {
  --blue: #073b82;
  --blue-dark: #04275a;
  --orange: #f26a12;
  --orange-dark: #d94f00;
  --text: #102033;
  --muted: #667085;
  --bg: #f6f9ff;
  --white: #ffffff;
  --border: #dce7f7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover { color: var(--orange); }

.whatsapp {
  padding: 12px 20px;
  border: 1px solid #25d366;
  background-color: #25d366;
  color: var(--text);
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3 { line-height: 1.1; margin: 0; }

h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.05em;
  color: var(--blue-dark);
}

h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 6px;
  margin-top: 20px;
  background: var(--orange);
  border-radius: 999px;
}

.hero-text {
  max-width: 580px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary { background: var(--orange); color: var(--white); }
.primary:hover { background: var(--orange-dark); }
.secondary { border-color: var(--blue); color: var(--blue); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}

.hero-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 30px 80px rgba(7, 59, 130, .25);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% 12%;
  height: 42%;
  background: var(--orange);
  transform: rotate(-10deg);
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: 110%;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.25));
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h2, .about h2, .contact h2, .brands h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--blue-dark);
  letter-spacing: -0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  padding: 30px;
  border-radius: 24px;
  background: #eef6ff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin: -10px 0 16px;
  display: block;
}

.category-card.orange-card { background: #fff3eb; }
.category-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--blue);
  border-radius: 50%;
  font-size: 24px;
}
.category-card.orange-card .icon { background: var(--orange); }
.category-card h3 { color: var(--blue); font-size: 24px; }
.category-card ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }

.benefits {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.light h2 { color: var(--white); }
.benefit-grid {
  width: min(1080px, 100%);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}
.benefit-grid > div { padding: 20px; }
.benefit-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--white);
  border-radius: 50%;
  font-size: 30px;
}
.benefit-grid p { color: #d8e8ff; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about p { color: var(--muted); margin: 22px 0 28px; }

.warehouse-card {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(7,59,130,.18);
}

.warehouse-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.warehouse-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,39,90,0) 35%, rgba(4,39,90,.9));
}

.warehouse-card div {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.warehouse-card span { text-transform: uppercase; font-weight: 800; color: #ffd6bd; }
.warehouse-card strong { font-size: 34px; line-height: 1.1; margin-top: 8px; }

.brands {
  padding: 58px 20px;
  background: var(--bg);
  text-align: center;
}
.brand-image {
  width: min(980px, 100%);
  margin: 30px auto 0;
  display: block;
  object-fit: contain;
}

.brand-row {
  width: min(1080px, 100%);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.brand-row span {
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: stretch;
}
.contact-info {
  padding: 40px;
  border-radius: 28px;
  background: var(--blue);
  color: var(--white);
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: #d8e8ff; }
.contact-info a, .contact-info span {
  display: block;
  margin-top: 14px;
  font-weight: 700;
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  display: grid;
  gap: 14px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
}
textarea { resize: vertical; }

footer {
  padding: 28px 20px;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero, .about, .contact { grid-template-columns: 1fr; }
  .hero-card { min-height: 420px; }
  .cards, .benefit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, 1180px); }
  .whatsapp { display: none; }
  .hero, .section { width: min(100% - 28px, 1180px); }
  .hero { margin-top: 8px; }
  .hero-card { min-height: 360px; border-radius: 24px; }
  .product-grid { padding: 50px 20px 28px; gap: 10px; }
  .product { font-size: 12px; min-height: 90px; }
  .product.tall { min-height: 210px; }
  .contact-form, .contact-info, .category-card { padding: 26px; }
}
