/* ============================================================
   Small & Medium Injection Mold Manufacturer — Website Styles
   Trust-first industrial B2B. Deep navy + teal accent.
   ============================================================ */

:root {
  --navy-900: #0f2033;
  --navy-800: #16304a;
  --navy-700: #1e3a5f;
  --navy-500: #3a5a7e;
  --navy-100: #e6ecf3;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f7f9fc;
  --accent:    #0c7a94;
  --accent-2:  #0e8ca9;
  --accent-soft: #e2f2f6;
  --success:   #1f7a4f;
  --white:     #ffffff;
  --shadow-sm: 0 1px 2px rgba(15,32,51,.06), 0 1px 3px rgba(15,32,51,.06);
  --shadow-md: 0 4px 12px rgba(15,32,51,.08), 0 2px 4px rgba(15,32,51,.05);
  --shadow-lg: 0 12px 32px rgba(15,32,51,.10), 0 4px 8px rgba(15,32,51,.06);
  --radius:    6px;
  --radius-lg: 10px;
  --maxw:      1200px;
  --font:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--navy-900);
  font-weight: 650;
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar & nav ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--slate-200);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--slate-200); }
.topbar a:hover { color: var(--white); text-decoration: none; }
.topbar-left span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  order: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-size: 15px;
  color: var(--navy-900);
  font-weight: 700;
}
.brand-text small {
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

.nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  color: var(--slate-700);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
}
.nav a:hover { background: var(--slate-100); color: var(--navy-900); }
.nav a.active { color: var(--navy-900); background: var(--slate-100); }
.nav-cta {
  margin-left: 10px;
  padding: 10px 16px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-2) !important; }

.lang-switcher {
  order: 3;
  position: relative;
  margin-left: 8px;
  z-index: 55;
}
.lang-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(15,32,51,.02);
}
.lang-button:hover,
.lang-switcher.open .lang-button {
  border-color: #b7c4d4;
  background: var(--slate-50);
}
.lang-globe svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.lang-caret {
  color: var(--slate-500);
  font-size: 12px;
  transition: transform .15s ease;
}
.lang-switcher.open .lang-caret { transform: rotate(180deg); }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(520px, calc(100vw - 32px));
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lang-switcher.open .language-menu { display: grid; }
.language-option {
  min-height: 42px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  color: var(--navy-900);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.25;
  text-decoration: none;
}
.language-option:hover {
  background: var(--slate-100);
  color: var(--navy-900);
  text-decoration: none;
}
.language-option.active {
  color: var(--accent);
  background: var(--accent-soft);
}
.language-badge {
  width: 28px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
}
.language-check {
  justify-self: end;
  font-size: 14px;
  color: var(--accent);
}
.google-translate-shell {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}
body { top: 0 !important; }

.nav-toggle {
  order: 4;
  display: none;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--navy-900);
}

@media (max-width: 960px) {
  .site-header .container {
    min-height: 64px;
    gap: 10px;
  }
  .brand { min-width: 0; }
  .brand-text small { display: none; }
  .lang-switcher {
    order: 2;
    margin-left: auto;
  }
  .lang-current { display: none; }
  .lang-button {
    min-width: 42px;
    min-height: 40px;
    justify-content: center;
    padding: 8px 10px;
  }
  .language-menu {
    position: fixed;
    top: 116px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: calc(100dvh - 136px);
    overflow-y: auto;
  }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav {
    order: 4;
    margin-left: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--slate-200);
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 12px; border-radius: var(--radius); }
  .nav-cta { margin: 8px 0 0 !important; text-align: center; }
}

@media (max-width: 520px) {
  .language-menu {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px;
  }
  .language-option {
    min-height: 40px;
    font-size: 14px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .05s ease, background .15s ease, color .15s ease, border .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-2); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--slate-200);
}
.btn-outline:hover { border-color: var(--navy-700); color: var(--navy-900); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.10); color: var(--white); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
section.alt { background: var(--slate-50); }
section.dark {
  background: var(--navy-900);
  color: var(--slate-200);
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--white); }
section.dark a { color: #6dd6e7; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
section.dark .eyebrow { color: #6dd6e7; }

.section-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--slate-600); font-size: 17px; }
section.dark .section-head p { color: var(--slate-200); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  padding: 88px 0 96px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(15,32,51,.92) 0%, rgba(15,32,51,.78) 45%, rgba(15,32,51,.55) 100%),
    url('../images/hero-mold-machine.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6dd6e7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero p.lead {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 22px;
  max-width: 620px;
}
.hero-trust li {
  list-style: none;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.hero-trust li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px;
  border-left: 2px solid #6dd6e7;
  border-bottom: 2px solid #6dd6e7;
  transform: rotate(-45deg);
}
.hero-side {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.hero-side h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.spec-list {
  list-style: none; padding: 0; margin: 0;
}
.spec-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list li span:last-child {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}

@media (max-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page hero (secondary) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 56px 0 48px;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 720px; font-size: 17px; margin: 0; }
.crumbs {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: var(--white); }
.crumbs .sep { margin: 0 8px; color: rgba(255,255,255,.4); }

/* ---------- Grid layouts ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .05s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-200); }
.card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.card p { color: var(--slate-600); font-size: 15px; margin: 0; }
.card .icon {
  width: 42px; height: 42px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card .img {
  aspect-ratio: 16 / 10;
  background: var(--slate-100);
  overflow: hidden;
}
.service-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card .body { padding: 22px 22px 24px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--slate-600); font-size: 15px; margin: 0 0 14px; }
.service-card .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Capability snapshot ---------- */
.stat {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
}
.stat .value {
  font-size: 1.4rem;
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.stat .label {
  font-size: 13px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

section.dark .stat {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
section.dark .stat .value { color: var(--white); }
section.dark .stat .label { color: rgba(255,255,255,.65); }

/* ---------- Process flow ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}
.flow .step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  position: relative;
  min-height: 100%;
}
.flow .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.flow .step h4 {
  font-size: 14.5px;
  margin-bottom: 4px;
}
.flow .step p {
  font-size: 13px;
  color: var(--slate-500);
  margin: 0;
}
@media (max-width: 1024px) { .flow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .flow { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Case cards ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .case-grid { grid-template-columns: 1fr; } }

.case {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .05s ease;
}
.case:hover { box-shadow: var(--shadow-md); }
.case .img {
  aspect-ratio: 4/3;
  background: var(--slate-100);
  position: relative;
  overflow: hidden;
}
.case .img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.case .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(15,32,51,.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.case .body { padding: 18px 20px 22px; }
.case h3 { font-size: 1.02rem; margin-bottom: 10px; }
.case .meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 13.5px;
  color: var(--slate-600);
}
.case .meta dt { color: var(--slate-500); font-weight: 500; }
.case .meta dd { margin: 0; color: var(--slate-700); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  align-items: center;
  gap: 24px;
}
.cta-banner h2 { color: var(--white); margin: 0 0 8px; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
}

/* ---------- Feature list ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  padding: 10px 14px 10px 38px;
  background: var(--slate-50);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  position: relative;
  color: var(--slate-700);
  font-size: 15px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 14px; top: 15px;
  width: 12px; height: 12px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.check-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 8px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 12px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Split media ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .media { order: 2; }
.split .media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .media { order: 0; }
}

/* ---------- Table ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  font-size: 15px;
}
.spec-table th, .spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}
.spec-table thead th {
  background: var(--slate-50);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-600);
  font-weight: 600;
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child {
  font-weight: 600;
  color: var(--navy-900);
  width: 42%;
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-grid label .req { color: #c93b3b; margin-left: 3px; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(12,122,148,.15);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-grid input[type="file"] {
  padding: 8px;
  background: var(--slate-50);
}
.form-note {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 6px;
}
.form-trust {
  background: var(--accent-soft);
  border: 1px solid #b4dce4;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-size: 14.5px;
}
.form-trust strong { color: var(--navy-900); }
.form-trust ul { margin: 8px 0 0; padding-left: 20px; }

.form-status {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  margin-top: 16px;
  display: none;
}
.form-status.ok { background: #e8f5ee; color: #1f7a4f; border: 1px solid #b8e0c8; display: block; }
.form-status.err { background: #fdecec; color: #a1273a; border: 1px solid #f2c4c9; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--slate-200);
  padding: 56px 0 24px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--white); text-decoration: none; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 320px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 24px; }
.muted { color: var(--slate-500); font-size: 14px; }
.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.divider {
  border: 0;
  border-top: 1px solid var(--slate-200);
  margin: 32px 0;
}

.note-box {
  padding: 16px 18px;
  background: #fff8e6;
  border-left: 3px solid #d69a1c;
  border-radius: 4px;
  color: #6a4a08;
  font-size: 14.5px;
}
.note-box strong { color: #4c3405; }

@media (max-width: 720px) {
  .container > .grid[style*="grid-template-columns: 1.4fr 1fr"],
  .card > .grid[style*="grid-template-columns: .7fr 1.3fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .form-trust,
  .note-box,
  .card {
    padding: 18px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    width: 100%;
  }

  .form-grid input[type="file"] {
    font-size: 13px;
  }
}
