/* ==========================================================================
   sections.css — hero, trust bar, about, catalogue, why, services, quality,
                  contact
   ========================================================================== */

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .84);
  background:
    radial-gradient(1200px 520px at 82% 12%, rgba(23, 169, 79, .22), transparent 60%),
    linear-gradient(135deg, #061630 0%, #0d2a5e 48%, #123a7e 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 30% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  padding: clamp(56px, 7vw, 92px) 0;
}
.hero h1 { color: #fff; margin-bottom: 14px; text-transform: uppercase; }
.hero h1 span { color: var(--green-500); }
.hero__tagline {
  display: inline-block; margin-bottom: 18px;
  padding: 8px 18px; border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; font-size: .9rem; color: #fff;
}
.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.25; font-weight: 600;
  color: #fff; text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 16px;
}
.hero__text { max-width: 54ch; margin-bottom: 26px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; }

.hero__panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero__panel-figure {
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #0b1f3f;
}
.hero__panel-figure img { width: 100%; display: block; }
.hero__panel-list { display: grid; gap: 14px; }
.hero__panel-list li { display: flex; gap: 12px; align-items: center; }
.hero__panel-list strong { display: block; color: #fff; font-size: .98rem; }
.hero__panel-list span { font-size: .85rem; color: rgba(255, 255, 255, .68); }

/* Trust bar -------------------------------------------------------------- */
.trustbar { background: var(--navy-900); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.trustbar__item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--green-500); flex: none; }
.trustbar__item strong {
  display: block; font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.15;
}
.trustbar__item span { font-size: .82rem; color: rgba(255, 255, 255, .62); }

/* About ------------------------------------------------------------------ */
.about__media { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.about__media figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: var(--surface-tint);
}
.about__media figure:first-child { grid-column: 1 / -1; }
.about__media img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; aspect-ratio: 16 / 9;
  transition: transform .5s var(--ease);
}
.about__media figure:first-child img { aspect-ratio: 21 / 9; }
.about__media figure:hover img { transform: scale(1.04); }
.about__features { display: grid; gap: 22px; margin-top: 28px; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 40px;
}
.stat {
  padding: 22px; text-align: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--navy-700); line-height: 1;
}
.stat span { font-size: .85rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* Catalogue index -------------------------------------------------------- */
.index-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.index-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line);
  font-weight: 600; font-size: .92rem; color: var(--ink);
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.index-item:hover { transform: translateY(-3px); border-color: var(--navy-600); box-shadow: var(--shadow-sm); color: var(--navy-700); }
.index-item b {
  display: grid; place-items: center; flex: none;
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--navy-700); color: #fff;
  font-family: var(--font-display); font-size: .95rem;
}

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

/* Why choose ------------------------------------------------------------- */
.why { position: relative; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why__card { padding: 26px; height: 100%; }
.why__card .icon-badge { margin-bottom: 16px; }
.why__card h3 { font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; }
.why__card p { font-size: .94rem; margin: 0; color: var(--muted); }

.pledge {
  display: grid; place-items: center; text-align: center;
  padding: 34px; border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: #fff; box-shadow: var(--shadow);
}
.pledge h3 { color: #fff; font-size: 1.7rem; letter-spacing: .06em; text-transform: uppercase; }
.pledge p { color: rgba(255, 255, 255, .78); margin-bottom: 18px; }

/* Services --------------------------------------------------------------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service { display: flex; gap: 16px; padding: 24px; height: 100%; }
.service h3 { font-size: 1.08rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.service p { font-size: .93rem; color: var(--muted); margin: 0; }

/* Quality ---------------------------------------------------------------- */
.quality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.quality__note {
  margin-top: 22px; padding: 18px 20px;
  border-left: 3px solid var(--green-500);
  background: rgba(255, 255, 255, .06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: rgba(255, 255, 255, .78); font-size: .95rem;
}

.quality__media {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow-lg);
}
.quality__media img { width: 100%; display: block; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  color: #fff; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255, 255, 255, .88); margin: 0; }
.cta-band .btn { --btn-bg: #fff; --btn-fg: var(--green-700); }

/* Contact ---------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact__cards { display: grid; gap: 16px; }
.contact__form { padding: clamp(22px, 3vw, 32px); }
.contact__form h3 { font-size: 1.35rem; margin-bottom: 4px; }
.contact__form > p { color: var(--muted); font-size: .93rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.map-frame {
  margin-top: 16px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--surface-soft);
}
.map-frame iframe { display: block; width: 100%; height: 260px; border: 0; }

/* Facade shown until the visitor asks for the map - loading Google's embed
   up front costs more than the rest of the page put together. */
.map-facade {
  display: grid; place-items: center; gap: 10px;
  min-height: 260px; padding: 24px; text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(26, 79, 160, .10), transparent 60%),
    repeating-linear-gradient(0deg, var(--surface-soft) 0 22px, #eef2f8 22px 23px),
    repeating-linear-gradient(90deg, var(--surface-soft) 0 22px, #eef2f8 22px 23px);
  color: var(--navy-700);
}
.map-facade svg { width: 34px; height: 34px; }
.map-facade p { margin: 0; font-size: .95rem; color: var(--body); }
.map-facade strong { color: var(--ink); }
.map-facade__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
