/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:        #0B2341;
  --navy-dark:   #071830;
  --orange:      #FF6A13;
  --orange-dark: #E55A00;
  --white:       #F8F9FB;
  --carbon:      #1B1D21;
  --steel:       #5E6773;
  --steel-light: #8B96A0;

  --bg-base:  #FFFFFF;
  --bg-soft:  #F8F9FB;
  --bg-muted: #F0F2F5;

  --border:       rgba(11, 35, 65, 0.10);
  --border-med:   rgba(11, 35, 65, 0.16);

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --gutter:    clamp(1.25rem, 4vw, 2rem);
  --section-py: clamp(4rem, 8vw, 6rem);
  --header-h:  72px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm:        0 1px 3px rgba(11,35,65,0.07), 0 1px 2px rgba(11,35,65,0.05);
  --shadow-card:      0 2px 10px rgba(11,35,65,0.08);
  --shadow-card-hover:0 8px 28px rgba(11,35,65,0.14);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--carbon);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img  { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-wrap: balance;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
::selection { background: var(--orange); color: #fff; }
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -120px; left: 1rem;
  padding: .5rem 1rem; background: var(--navy); color: #fff;
  z-index: 9999; border-radius: 4px; font-weight: 600; font-size: .875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}

/* =============================================================
   4. Typography
   ============================================================= */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: rgba(255,106,19,0.9); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}
.section-title.light { color: #fff; }

.section-body {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.8;
  max-width: 58ch;
  margin-bottom: 1rem;
}
.section-body.light { color: rgba(255,255,255,0.75); }
.section-body + .section-body { margin-top: 0; }

.section-intro {
  font-size: 1.0625rem;
  color: var(--steel);
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
  margin-top: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-header .section-title { margin-inline: auto; }

/* =============================================================
   5. Components — Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.65rem 1.4rem;
  border-radius: 5px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    color      0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    transform  0.15s var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 4px 14px rgba(255,106,19,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-med);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-lg {
  font-size: 0.9375rem;
  padding: 0.8rem 1.75rem;
}

/* =============================================================
   6a. Header
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.site-header.scrolled {
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo {
  height: 60px;
  width: auto;
  display: block;
}
.logo-fallback {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.175rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  gap: 0;
}
.logo-fallback-iron  { color: #fff; }
.logo-fallback-ferry { color: var(--orange); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-cta {
  font-size: 0.8125rem;
  padding: 0.55rem 1.2rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border-radius: 4px;
  transition: background 0.18s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }

.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.18s;
}
.nav-toggle.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   6b. Hero
   ============================================================= */
.hero {
  background: var(--bg-soft);
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(to bottom left, rgba(255,106,19,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(11,35,65,0.07);
  padding: 0.35rem 0.875rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.hero-body {
  font-size: 1.0625rem;
  color: var(--steel);
  line-height: 1.8;
  max-width: 54ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* Hero visual — supply chain SVG */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logistics-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
}

/* Hero info card */
.hero-card {
  background: var(--bg-base);
  border: 1px solid var(--border-med);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(11,35,65,0.025);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-card-header::before {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.card-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero-card-body { padding: 0; }

.hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.hero-card-row:last-child { border-bottom: none; }

.row-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel-light);
  text-transform: uppercase;
  padding-top: 1px;
}

.row-value {
  font-size: 0.8125rem;
  color: var(--carbon);
  line-height: 1.5;
  font-weight: 500;
}

.card-link {
  color: var(--orange);
  font-weight: 500;
}
.card-link:hover { text-decoration: underline; }

/* =============================================================
   6c. Credibility bar
   ============================================================= */
.cred-bar {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
}

.cred-bar-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cred-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.375rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid var(--border);
  transition: background 0.18s;
}
.cred-bar-item:last-child { border-right: none; }
.cred-bar-item:hover { background: var(--bg-soft); }

.cred-icon {
  color: var(--orange);
  flex-shrink: 0;
}

/* =============================================================
   6d. About
   ============================================================= */
.about {
  background: var(--bg-base);
  padding: var(--section-py) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.about-content .section-body:last-of-type { margin-bottom: 0; }

.about-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.about-card-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}
.about-card-item:last-child { border-bottom: none; }
.about-card-item:hover { background: rgba(11,35,65,0.025); }

.about-card-accent {
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 44px;
}

.about-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.about-card-text strong {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.about-card-text span {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.6;
}

/* =============================================================
   6e. Services
   ============================================================= */
.services {
  background: var(--bg-muted);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 7px;
  padding: 1.75rem 1.5rem 1.625rem;
  transition:
    box-shadow 0.25s var(--ease-out),
    transform  0.2s  var(--ease-out);
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 40px; height: 40px;
  background: rgba(11,35,65,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1.125rem;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-card-icon {
  background: rgba(255,106,19,0.1);
  color: var(--orange);
}

.service-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.service-card-body {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.7;
}

/* =============================================================
   6g. Product Focus
   ============================================================= */
.products {
  background: var(--bg-base);
  padding: var(--section-py) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.125rem;
}

.product-category {
  text-align: center;
  padding: 1.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-soft);
  cursor: default;
  transition:
    border-color 0.2s,
    box-shadow 0.25s var(--ease-out),
    transform   0.2s  var(--ease-out);
}
.product-category:hover {
  border-color: rgba(255,106,19,0.35);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.product-cat-icon {
  width: 46px; height: 46px;
  background: rgba(11,35,65,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 0.875rem;
  transition: background 0.2s, color 0.2s;
}
.product-category:hover .product-cat-icon {
  background: rgba(255,106,19,0.1);
  color: var(--orange);
}

.product-category h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* =============================================================
   6h. Contact
   ============================================================= */
.contact {
  background: var(--bg-muted);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  background: var(--bg-base);
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9375rem 1.375rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail-row:last-child { border-bottom: none; }

.contact-row-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(11,35,65,0.06);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 1px;
}

.contact-row-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-row-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
}
.contact-row-value {
  font-size: 0.9375rem;
  color: var(--carbon);
  font-weight: 500;
  line-height: 1.45;
}
.contact-row-value a {
  color: var(--orange);
  transition: text-decoration 0.15s;
}
.contact-row-value a:hover { text-decoration: underline; }

.contact-cta { margin-top: 2rem; }

.address-card {
  background: var(--bg-base);
  border: 1px solid var(--border-med);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  overflow: hidden;
}

.address-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(11,35,65,0.025);
}
.address-card-title {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.address-card-body {
  padding: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--carbon);
  font-weight: 400;
}

.address-note {
  padding: 0.875rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--steel);
  line-height: 1.6;
  background: rgba(11,35,65,0.02);
}

/* =============================================================
   6i. Footer
   ============================================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 3.75rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 0.875rem;
  display: block;
}
.footer-logo-text {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.logo-iron  { color: #fff; }
.logo-ferry { color: var(--orange); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-location svg { flex-shrink: 0; }

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.18s;
  line-height: 1.4;
}
.footer-nav a:hover { color: var(--orange); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-contact p,
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
  transition: color 0.18s;
}
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================================
   7. Effects — Scroll reveals
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] {
  opacity: 1;
  transform: none;
}
html:not(.is-ready) .reveal {
  opacity: 1;
  transform: none;
}

/* =============================================================
   8. Responsive
   ============================================================= */

/* Large desktop tweak */
@media (min-width: 1280px) {
  .hero-card-row { grid-template-columns: 140px 1fr; }
}

/* Tablet landscape */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .hero-visual { display: none; }
  .hero-body { max-width: 100%; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card { max-width: 600px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .products-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-cards-row { grid-template-columns: 1fr; gap: 2rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet portrait / mobile */
@media (max-width: 720px) {
  :root { --header-h: 64px; }

  .site-nav { position: relative; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg-base);
    flex-direction: column;
    gap: 0;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(11,35,65,0.1);
    z-index: 95;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    font-size: 0.9375rem;
  }
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  .cred-bar-list { grid-template-columns: repeat(2, 1fr); }
  .cred-bar-item { border-bottom: 1px solid var(--border); }
  .cred-bar-item:nth-child(2n) { border-right: none; }
  .cred-bar-item:nth-last-child(-n+2) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }

  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.1rem, 9vw, 2.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-card-row { grid-template-columns: 1fr; gap: 0.2rem; }
  .row-label { font-size: 0.625rem; }

  .cred-bar-list { grid-template-columns: 1fr; }
  .cred-bar-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cred-bar-item:last-child { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr 1fr; }

  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* =============================================================
   9. Reduced-motion — only gate intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
