/* ==========================================================================
   Select Fashion Ltd — stylesheet
   Built for an Elementor rebuild: flex containers only, no CSS grid.
   Every layout block below maps to a native Elementor widget.
   ========================================================================== */

:root {
  /* Brand */
  --ink:        #0C1E26;
  --ink-2:      #122C36;
  --ink-3:      #1B3B47;
  --teal:       #4ABFAC;
  --teal-deep:  #16776A;   /* AA-contrast teal for text/links on light */
  --teal-soft:  #E7F5F2;
  --paper:      #F7F9F8;
  --white:      #FFFFFF;
  --slate:      #4A5A5F;
  --slate-soft: #5A757A;   /* AA on light grounds; re-tokenised on ink below */
  --line:       #E2E9E8;
  --line-dark:  rgba(255,255,255,.14);

  /* Type */
  --f-head: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --gap: 32px;
  --sec-y: 104px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

h1 { font-size: clamp(2.35rem, 5.2vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.18rem, 1.9vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------- layout */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: var(--sec-y) 0; }
.section-sm { padding: 68px 0; }

/* Flex row — the Elementor "container, direction row, wrap on" equivalent */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-start;
}
.row-center { align-items: center; }
.row-tight  { --gap: 20px; gap: var(--gap); }
.row-wide   { --gap: 56px; gap: var(--gap); }

/* Columns. Each maps to an Elementor child container with a set width %,
   and the breakpoints below mirror Elementor's desktop / tablet / mobile
   width controls. Widths are capped so a wrapped final row keeps the same
   column width instead of stretching to fill. */
.col-half, .col-third, .col-quarter {
  flex: 1 1 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 620px) {
  .col-third,
  .col-quarter {
    flex-basis: calc(50% - var(--gap) / 2);
    max-width:  calc(50% - var(--gap) / 2);
  }
}

@media (min-width: 900px) {
  .col-half {
    flex-basis: calc(50% - var(--gap) / 2);
    max-width:  calc(50% - var(--gap) / 2);
  }
}

@media (min-width: 940px) {
  .col-third {
    flex-basis: calc((100% - 2 * var(--gap)) / 3);
    max-width:  calc((100% - 2 * var(--gap)) / 3);
  }
  .col-quarter {
    flex-basis: calc((100% - 3 * var(--gap)) / 4);
    max-width:  calc((100% - 3 * var(--gap)) / 4);
  }
}

/* ------------------------------------------------------------ dark bands */

.band-ink {
  background: var(--ink);
  color: rgba(233, 243, 241, .82);
}
/* Muted text has to lighten on dark grounds to stay above 4.5:1. */
.band-ink, .page-hero, .site-footer { --slate-soft: #93A9AD; }
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--white); }
.band-ink a:not(.btn) { color: var(--teal); }  /* .btn keeps its own colour;
   an unscoped rule here beats .btn-primary on specificity and makes
   teal buttons render teal-on-teal. */
.band-ink strong { color: var(--white); }
.band-soft { background: var(--teal-soft); --slate-soft: #556E73; }
.band-white { background: var(--white); }

/* --------------------------------------------------------------- eyebrow */

.eyebrow {
  font-family: var(--f-head);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--teal);
  flex: none;
}
.band-ink .eyebrow { color: var(--teal); }

.lead { font-size: 1.18rem; line-height: 1.66; color: var(--slate); }
.band-ink .lead { color: rgba(233,243,241,.86); }

.section-head { max-width: 720px; margin-bottom: 54px; }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.btn-primary:hover { background: #3aab99; border-color: #3aab99; color: var(--ink); }

.btn-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-3); border-color: var(--ink-3); color: var(--white); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.band-ink .btn-ghost { color: var(--white); border-color: var(--line-dark); }
.band-ink .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-sm { padding: 12px 22px; font-size: .875rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link with arrow */
.link-arrow {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247,249,248,.94);
  border-bottom: 1px solid var(--line);
}

/* backdrop-filter establishes a containing block for fixed-position
   descendants, which would trap the mobile nav panel inside the header.
   Apply it only where the panel is not fixed. */
@media (min-width: 992px) {
  .site-header {
    backdrop-filter: saturate(1.4) blur(10px);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; flex: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.brand-tag {
  font-size: .69rem;
  color: var(--slate-soft);
  letter-spacing: .045em;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--f-head);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
}
.nav a:hover { background: var(--teal-soft); text-decoration: none; color: var(--teal-deep); }
.nav a.is-current { color: var(--teal-deep); font-weight: 600; }

/* The in-nav CTA exists for the mobile panel only; the header has its own. */
@media (min-width: 992px) {
  .nav > .btn { display: none; }
  .nav a { white-space: nowrap; padding: 9px 11px; }
}

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */

.hero { padding: 96px 0 88px; background: var(--paper); overflow: hidden; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { max-width: 560px; margin-bottom: 36px; }

.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); width: 100%; }

/* floating stat card over the hero image */
.hero-badge {
  background: var(--ink);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  max-width: 260px;
  margin: -56px 0 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge .num {
  font-family: var(--f-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-badge .lbl {
  font-size: .8rem;
  color: rgba(233,243,241,.72);
  margin-top: 8px;
  line-height: 1.45;
}

/* page hero (interior pages) */
.page-hero { padding: 78px 0 66px; background: var(--ink); color: rgba(233,243,241,.82); }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; }
.page-hero .lead { max-width: 760px; }

/* -------------------------------------------------------- entity / quote */

.entity {
  border-left: 3px solid var(--teal);
  padding: 6px 0 6px 30px;
  font-size: 1.22rem;
  line-height: 1.66;
  color: var(--ink);
  font-family: var(--f-body);
}
.band-ink .entity { color: rgba(255,255,255,.92); }

/* ----------------------------------------------------------------- cards */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color .2s ease, transform .2s ease;
  height: 100%;
}
.card:hover { border-color: var(--teal); transform: translateY(-3px); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .96rem; margin-bottom: 0; }

.band-ink .card {
  background: var(--ink-2);
  border-color: var(--line-dark);
}
.band-ink .card:hover { border-color: var(--teal); }

.card-media { padding: 0; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card-media .card-body { padding: 26px 28px 30px; }

/* icon box — maps to Elementor Icon Box widget */
.iconbox { display: flex; gap: 18px; align-items: flex-start; }
.iconbox .ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1rem;
}
.band-ink .iconbox .ico { background: rgba(74,191,172,.16); color: var(--teal); }
.iconbox h3 { font-size: 1.08rem; margin-bottom: 8px; }
.iconbox p { font-size: .95rem; margin-bottom: 0; }

/* numbered step */
.step { position: relative; }
.step .step-n {
  font-family: var(--f-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 14px;
}
.band-ink .step .step-n { color: var(--teal); }
.step::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--line);
  margin-bottom: 22px;
}
.band-ink .step::before { background: var(--line-dark); }
.step h3 { margin-bottom: 10px; }
.step-title {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}
.step-title a { color: inherit; }
.band-ink .step-title { color: var(--white); }
.step p { font-size: .96rem; margin-bottom: 0; }

/* ----------------------------------------------------------------- stats */

.stat { text-align: left; }
.stat .num {
  font-family: var(--f-head);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--teal-deep);   /* legible on light grounds */
  display: block;
  margin-bottom: 12px;
}
.band-ink .stat .num { color: var(--teal); }   /* and on dark */
.stat .lbl { font-size: .93rem; line-height: 1.5; }
.stat .sub { font-size: .82rem; color: var(--slate-soft); margin-top: 6px; }

/* --------------------------------------------------------------- feature */

.feature-img img { border-radius: var(--radius); width: 100%; }

/* ------------------------------------------------------------ tick lists */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding: 0 0 16px 32px;
  font-size: 1rem;
}
.ticks li:last-child { padding-bottom: 0; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.ticks strong { display: block; }

.ticks-x li::before {
  background: transparent;
  border-left: 2px solid #C86B5E;
  border-bottom: 2px solid #C86B5E;
  width: 9px; height: 9px;
  border-radius: 0;
  transform: rotate(-45deg) translateY(-2px);
}

/* ----------------------------------------------------------------- table */
/* Rendered as flex rows so it reflows on mobile and maps to Elementor. */

.dtable { border-top: 2px solid var(--ink); }
.dtable-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.dtable-row > div { flex: 1 1 130px; min-width: 0; font-size: .93rem; }
.dtable-row > div:first-child { flex: 1 1 190px; font-weight: 600; color: var(--ink); }
.dtable-head {
  font-family: var(--f-head);
  font-size: .75rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-soft);
  padding: 14px 0;
}
.dtable-head > div { font-size: .75rem !important; font-weight: 600 !important; color: var(--slate-soft) !important; }
/* Inside a narrow card the spec rows read better as label-left / value-right
   than as a wrapped two-line pair. */
.card .dtable-row { padding: 11px 0; gap: 12px; }
.card .dtable-row > div,
.card .dtable-row > div:first-child { flex: 0 1 auto; font-size: .88rem; }
.card .dtable-row > div:first-child {
  flex: 1 1 auto;
  font-weight: 400;
  color: var(--slate);
}
.card .dtable-row > div:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.dt-label {
  display: none;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 3px;
}

/* ------------------------------------------------------------- accordion */
/* Maps to the native Elementor Accordion widget. */

.acc { border-top: 1px solid var(--line); }
.band-ink .acc { border-color: var(--line-dark); }

.acc-item { border-bottom: 1px solid var(--line); }
.band-ink .acc-item { border-color: var(--line-dark); }

.acc-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: none;
  border: 0;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--f-head);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.band-ink .acc-btn { color: var(--white); }
.acc-btn:hover { color: var(--teal-deep); }
.band-ink .acc-btn:hover { color: var(--teal); }

.acc-btn .acc-ico {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
  margin-top: 4px;
}
.acc-btn .acc-ico::before,
.acc-btn .acc-ico::after {
  content: "";
  position: absolute;
  background: var(--teal-deep);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .22s ease, opacity .22s ease;
}
.band-ink .acc-btn .acc-ico::before,
.band-ink .acc-btn .acc-ico::after { background: var(--teal); }
.acc-btn .acc-ico::before { width: 14px; height: 2px; }
.acc-btn .acc-ico::after  { width: 2px; height: 14px; }
.acc-btn[aria-expanded="true"] .acc-ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.acc-panel { display: none; padding: 0 0 28px; max-width: 780px; }
.acc-panel.is-open { display: block; }
.acc-panel p { font-size: 1rem; }

/* ------------------------------------------------------------------ form */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--f-head);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field .req { color: #B44B3F; }
.field .hint { font-size: .8rem; color: var(--slate-soft); margin-top: 6px; font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,191,172,.18);
}
.field input[type="file"] { padding: 12px; background: var(--white); cursor: pointer; }

.form-note {
  background: var(--teal-soft);
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  font-size: .92rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
}

.form-success {
  display: none;
  background: var(--teal-soft);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 26px;
}
.form-success.is-open { display: block; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { font-size: .96rem; }

/* -------------------------------------------------------------- contacts */

.contact-block { font-style: normal; }
.contact-block dt {
  font-family: var(--f-head);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 6px;
}
.contact-block dd { margin: 0 0 24px; font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.band-ink .contact-block dd { color: rgba(255,255,255,.9); }
.contact-block dd:last-child { margin-bottom: 0; }

.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* --------------------------------------------------------- certification */

.cert-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-chip {
  font-family: var(--f-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  background: var(--white);
}
.band-ink .cert-chip {
  border-color: var(--line-dark);
  color: rgba(255,255,255,.88);
  background: transparent;
}

/* ---------------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: rgba(233,243,241,.68); padding: 76px 0 0; }
.site-footer h2 {
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer a { color: rgba(233,243,241,.72); font-size: .95rem; }
.site-footer a:hover { color: var(--teal); text-decoration: none; }

.footer-brand { flex: 1 1 300px; min-width: 0; }
.footer-col   { flex: 1 1 165px; min-width: 0; }

.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 11px; }

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: var(--slate-soft); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 60px;
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: .86rem;
  color: var(--slate-soft);
}

/* ------------------------------------------------------- whatsapp button */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #06301A;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(12,30,38,.24);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-3px); text-decoration: none; color: #06301A; }
.wa-float svg { width: 20px; height: 20px; flex: none; }

/* -------------------------------------------------------------- utilities */

.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-sm { font-size: .93rem; }
.muted { color: var(--slate-soft); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.band-ink .divider { background: var(--line-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ----------------------------------------------------------- breakpoints */

@media (max-width: 991px) {
  :root { --sec-y: 76px; --gap: 26px; }

  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .nav {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 28px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s ease;
    border-top: 1px solid var(--line);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    padding: 17px 4px;
    font-size: 1.12rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav a:hover { background: transparent; }
  .nav .btn {
    margin-top: 26px;
    border-bottom: 0;
    font-size: .95rem;
    padding: 16px 30px;
  }
  body.nav-open { overflow: hidden; }

  .hero { padding: 60px 0 66px; }
  .hero-badge { margin: -40px 0 0 auto; }
  .page-hero { padding: 58px 0 52px; }
  .form-card { padding: 30px 24px; }

  .dtable-head { display: none; }
  .dtable-row { padding: 22px 0; gap: 14px 24px; }
  .dtable-row > div,
  .dtable-row > div:first-child { flex: 1 1 140px; }
  /* Card spec rows stay label-left / value-right even on mobile. */
  .card .dtable-row > div,
  .card .dtable-row > div:first-child { flex: 0 1 auto; }
  .card .dtable-row > div:first-child { flex: 1 1 auto; }

  .dt-label { display: block; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  :root { --sec-y: 62px; }
  .wrap { padding: 0 20px; }
  .hero-badge { max-width: none; margin: 22px 0 0; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
  .brand-tag { display: none; }
  .entity { padding-left: 20px; font-size: 1.1rem; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
  .form-card { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
