/* ============================================================
   MINH VĨNH — Corporate Website
   Design System v3 — White / Red / Orange (Domestic Transport & Logistics)
   ============================================================ */
:root{
  --white:      #FFFFFF;
  --navy:       #1B1815;   /* headlines, nav, primary text (warm near-black) */
  --navy-soft:  #241F1B;   /* footer / dark band gradient end */
  --navy-deep:  #120F0D;   /* footer / dark band gradient start */
  --blue:       #D62828;   /* RED — brand, CTA, links */
  --blue-hover: #B31F1F;
  --blue-tint:  #FDECEA;   /* soft red tint background (icons, badges) */
  --orange:     #F0740A;   /* ORANGE — accent / motion / operating flow */
  --orange-hover:#D3650A;
  --orange-tint:#FFF1E2;
  --muted:      #5B5551;   /* body copy (warm charcoal-gray) */
  --muted-2:    #8A8380;   /* faint captions on light */
  --muted-dark: #C9C2BD;   /* captions on dark band */
  --line:       #ECE6E3;   /* hairline dividers on white */
  --line-dark:  rgba(255,255,255,0.14); /* hairline on dark band */
  --bg-soft:    #FAF7F4;   /* secondary background — light warm gray */

  --font-head: "Manrope", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --container: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--white);
  line-height: 1.7;
  font-size: 17.5px;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 22px; height:1px;
  background: var(--blue);
  display:block;
}

.section{ padding: 128px 0; }
.section--tight{ padding: 96px 0; }
.section--soft{ background: var(--bg-soft); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ============================================================
   Scroll reveal (subtle, progressive enhancement)
   Content is visible by default; JS opts into the animated state
   so nothing depends on IntersectionObserver firing correctly.
   ============================================================ */
.js .reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .js .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary{ background: var(--blue); color: var(--white); }
.btn-primary:hover{ background: var(--blue-hover); }

.btn-outline-light{
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-navy{
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-outline-navy:hover{ border-color: var(--navy); }

.btn-arrow{ transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 92px;
}
.logo{ display:flex; align-items:center; }
.logo img{ height: 46px; width:auto; display:block; }

.nav{ display:flex; align-items:center; gap: 48px; }
.nav a{
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
}
.nav a.is-active{ color: var(--blue); }
.nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:2px;
  width:0; height:1px;
  background: var(--blue);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:26px; }
.header-cta{ padding: 12px 24px; font-size:14.5px; }
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone svg{ flex-shrink:0; }
.header-phone:hover{ color: var(--blue); }

.nav-toggle{
  display:none;
  width: 42px; height:42px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor:pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  position:absolute;
  left:11px; right:11px;
  height:1px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle span{ top:20px; }
.nav-toggle span::before{ top:-6px; }
.nav-toggle span::after{ top:6px; }
.nav-toggle.is-open span{ background: transparent; }
.nav-toggle.is-open span::before{ transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after{ transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero — full-bleed photography
   ============================================================ */
.hero{
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display:flex;
  align-items:flex-end;
  background-size: cover;
  background-position: center;
  padding: 0 0 96px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,20,39,0.55) 0%, rgba(7,20,39,0.30) 38%, rgba(7,20,39,0.78) 100%);
  z-index:0;
}
.hero-inner{
  position: relative;
  z-index:1;
  max-width: 680px;
}
.hero .eyebrow{ color:#FFB577; }
.hero .eyebrow::before{ background:#FFB577; }
.hero h1{
  color: var(--white);
  font-size: clamp(44px, 6.4vw, 80px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero .subtitle{
  font-size: 21px;
  color: #EAE2DC;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 34px; }

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-tags span{
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #D9D0C8;
}

.scroll-cue{
  position:absolute;
  left:50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index:1;
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,0.3);
  overflow:hidden;
}
.scroll-cue::after{
  content:"";
  position:absolute;
  left:0; top:-46px;
  width:100%; height:46px;
  background: var(--white);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(92px); }
}
@media (prefers-reduced-motion: reduce){
  .scroll-cue::after{ animation:none; top:0; }
}

/* Page hero (interior pages) — shorter photo band */
.page-hero{
  position:relative;
  overflow:hidden;
  background-size: cover;
  background-position: center;
  min-height: 46vh;
  display:flex;
  align-items:flex-end;
  padding: 0 0 64px;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(7,20,39,0.60) 0%, rgba(7,20,39,0.35) 35%, rgba(7,20,39,0.82) 100%);
  z-index:0;
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero .eyebrow{ color:#FFB577; }
.page-hero .eyebrow::before{ background:#FFB577; }
.page-hero h1{
  color: var(--white);
  font-size: clamp(36px, 4.8vw, 54px);
  max-width: 640px;
  letter-spacing: -0.015em;
}
.page-hero p{
  color: #DED5CD;
  max-width: 540px;
  margin-top: 16px;
  font-size: 18px;
}

/* ============================================================
   Introduction — text / image, minimal
   ============================================================ */
.intro{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items:start;
}
.intro h2{
  font-size: clamp(31px, 3.2vw, 40px);
  margin-bottom: 22px;
}
.intro-body p{
  font-size: 18.5px;
  line-height: 1.75;
  max-width: 460px;
}
.text-link{
  color: var(--blue);
  font-weight: 600;
  font-size: 16.5px;
  display: inline-block;
  margin-top: 6px;
  transition: opacity 0.2s ease;
}
.text-link:hover{ opacity: 0.75; }
.intro-image{
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.intro-image img{ width:100%; height:100%; object-fit:cover; }

/* ============================================================
   Services — typography-driven list (no cards)
   ============================================================ */
.services-list{ border-top: 1px solid var(--line); }
.service-row{
  display:grid;
  grid-template-columns: 44px 56px 1fr auto;
  align-items:center;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.service-row:hover{ padding-left: 12px; }
.service-row .icon{
  width: 44px; height:44px;
  border-radius: 50%;
  background: var(--blue-tint);
  flex-shrink:0;
  overflow: hidden;
}
.service-row .icon img{ width:100%; height:100%; object-fit:cover; display:block; }
.service-row .num{
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted-2);
  transition: color 0.3s var(--ease);
}
.service-row:hover .num{ color: var(--blue); }
.service-row .service-text h3{
  font-size: 24px;
  margin-bottom: 6px;
  transition: color 0.3s var(--ease);
}
.service-row:hover .service-text h3{ color: var(--blue); }
.service-row .service-text p{
  font-size: 16.5px;
  color: var(--muted);
  max-width: 520px;
}
.service-row .row-arrow{
  font-size: 22px;
  color: var(--muted-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-row:hover .row-arrow{ opacity:1; transform:translateX(0); color: var(--blue); }

/* Services page — image + text rows */
.service-detail-rows{ display:flex; flex-direction:column; }
.service-detail-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items:start;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.service-detail-row:first-child{ padding-top:0; }
.service-detail-row:last-child{ border-bottom:none; padding-bottom:0; }
.service-detail-row:nth-child(even) .detail-photo{ order:2; }
.detail-photo{
  aspect-ratio: 4/3;
  overflow:hidden;
  border-radius: var(--radius);
}
.detail-photo img{ width:100%; height:100%; object-fit:cover; }
.detail-text .num{
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  display:block;
}
.detail-text h3{ font-size: 30px; margin-bottom: 16px; }
.detail-text p{ font-size: 18px; max-width: 460px; }

/* ============================================================
   Why MINH VĨNH — editorial horizontal layout
   ============================================================ */
.why-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}
.why-item{
  padding: 0 40px;
  border-left: 1px solid var(--line);
}
.why-item:first-child{ padding-left:0; border-left:none; }
.why-item .why-index{
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  display:block;
}
.why-item h3{
  font-size: 28px;
  margin-bottom: 14px;
}
.why-item p{ font-size: 17px; max-width: 300px; }

/* ============================================================
   Logistics flow — signature section (network-style)
   ============================================================ */
.flow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  position:relative;
  padding-top: 8px;
}
.flow::before{
  content:"";
  position:absolute;
  top: 21px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 14px);
}
.flow-step{
  position:relative;
  z-index:1;
  flex: 1;
  text-align:center;
  padding: 0 12px;
}
.flow-step .dot{
  width: 42px; height:42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--orange);
  margin: 0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}
.flow-step:first-child .dot{ background: var(--orange); color: var(--white); }
.flow-step .label{
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.flow-step .sub{
  font-size: 14px;
  color: var(--muted-2);
  margin-top: 6px;
}
.flow-note{
  margin-top: 56px;
  font-size: 14.5px;
  color: var(--muted-2);
  max-width: 520px;
}

/* ============================================================
   Capability stats (explicitly illustrative — not verified data)
   ============================================================ */
.stats-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-item{
  background: var(--white);
  padding: 30px 24px;
  text-align:center;
}
.stat-item .stat-value{
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.stat-item .stat-value sup{ font-size: 15px; color: var(--muted-2); font-weight: 700; top:-0.6em; }
.stat-item .stat-label{
  font-size: 13.5px;
  color: var(--muted-2);
  margin-top: 6px;
}
.stats-footnote{
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
}

/* ============================================================
   Tag pills (regions, criteria, capability tags on light bg)
   ============================================================ */
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.tag-pill{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ============================================================
   Regions / route list (Real Operating Network)
   ============================================================ */
.region-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-bottom: 48px;
}
.region-col h4{
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.region-col ul li{
  font-size: 15.5px;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.region-col ul li:first-child{ padding-top:0; }

.route-list{
  display:flex;
  flex-wrap:wrap;
  gap: 12px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.route-item{
  display:flex;
  align-items:center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}
.route-item .route-arrow{ color: var(--blue); font-weight: 400; }

/* ============================================================
   Tracking stub (UI-ready, no simulated data)
   ============================================================ */
.tracking-box{
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  display:flex;
  align-items:flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.tracking-box .form-group{ flex:1; min-width:240px; margin-bottom:0; }
.tracking-note{
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted-2);
}

/* ============================================================
   Contact snippet band (before footer)
   ============================================================ */
.contact-snippet{
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-snippet-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-snippet h3{ font-size: 22px; margin-bottom: 6px; }
.contact-snippet p{ font-size: 15px; color: var(--muted); }
.contact-snippet-links{ display:flex; gap: 28px; flex-wrap:wrap; }
.contact-snippet-links a{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.contact-snippet-links a:hover{ color: var(--blue); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  padding: 148px 0;
  text-align:center;
}
.cta-band h2{
  color: var(--white);
  font-size: clamp(33px, 4.2vw, 50px);
  max-width: 640px;
  margin: 0 auto 36px;
  letter-spacing: -0.015em;
}

/* ============================================================
   Footer — slim and clean
   ============================================================ */
.site-footer{
  background: var(--navy-deep);
  color: var(--muted-dark);
  padding: 72px 0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-logo{ display:inline-block; margin-bottom: 18px; }
.footer-logo img{ height: 44px; width:auto; }
.footer-top > div:first-child p{
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4{
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li{ margin-bottom: 13px; font-size: 15.5px; }
.footer-col ul li a:hover{ color: var(--white); }
.footer-col address{ font-style:normal; font-size:15.5px; line-height:1.9; }
.footer-bottom{
  padding-top: 26px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 13.5px;
  color: #8A8078;
}

/* ============================================================
   News page — editorial
   ============================================================ */
.news-list{ border-top: 1px solid var(--line); }
.news-row{
  display:grid;
  grid-template-columns: 140px 1fr auto;
  align-items:center;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.news-row .news-date{
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.news-row h3{ font-size: 21px; margin-bottom: 8px; }
.news-row p{ font-size: 15.5px; color: var(--muted); }
.news-row .news-tag{
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display:block;
  margin-bottom: 8px;
}
.news-row .row-arrow{
  font-size: 22px;
  color: var(--muted-2);
}

.news-notice{
  margin-top: 56px;
  padding: 28px 0 0;
  font-size: 15.5px;
  color: var(--muted-2);
}

/* ============================================================
   Article page (News detail)
   ============================================================ */
.article-header{ padding: 64px 0 48px; border-bottom: 1px solid var(--line); }
.article-meta{
  display:flex;
  align-items:center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.article-meta .article-tag{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-meta .dot{ width:3px; height:3px; border-radius:50%; background: var(--muted-2); }
.article-header h1{
  font-size: clamp(31px, 3.8vw, 46px);
  max-width: 780px;
  letter-spacing: -0.015em;
}

.article-body{
  max-width: 720px;
  padding: 64px 0 0;
}
.article-body p{
  font-size: 18.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 26px;
}
.article-body h2{
  font-size: 24px;
  margin: 48px 0 18px;
}
.article-body ul{
  margin: 0 0 26px;
  padding-left: 0;
}
.article-body ul li{
  font-size: 18.5px;
  line-height: 1.8;
  color: var(--muted);
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
}
.article-body ul li::before{
  content:"";
  position:absolute;
  left:0; top:11px;
  width:6px; height:1px;
  background: var(--blue);
}
.article-footer{
  max-width: 720px;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.back-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.back-link:hover{ color: var(--blue); }
.back-link .arrow-back{ transition: transform 0.25s var(--ease); }
.back-link:hover .arrow-back{ transform: translateX(-3px); }

/* ============================================================
   About page
   ============================================================ */
.about-lead{
  font-size: 24px;
  color: var(--navy);
  font-weight: 500;
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 88px;
}
.about-lead strong{ font-weight: 700; }

.pillars-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar{
  padding: 0 36px;
  border-left: 1px solid var(--line);
}
.pillar:first-child{ padding-left:0; border-left:none; }
.pillar h3{ font-size: 21px; margin-bottom: 12px; }
.pillar p{ font-size: 16.5px; max-width: 280px; }

.tax-strip{
  margin-top: 88px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display:flex;
  gap: 56px;
  flex-wrap: wrap;
}
.tax-item h4{
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.tax-item p{ font-size: 17px; color: var(--navy); font-weight: 600; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items:start;
}
.contact-info-item{
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-child{ padding-top:0; }
.contact-info-item h4{
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-info-item p, .contact-info-item a{ font-size: 18px; color: var(--navy); font-weight: 500; }

.map-wrap{
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}
.map-wrap iframe{ width:100%; height:100%; border:0; filter: grayscale(0.15); }

.contact-form h3{ margin-bottom:10px; font-size: 24px; }
.contact-form > p{ font-size:16.5px; margin-bottom:32px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group{ margin-bottom: 24px; }
.form-group label{
  display:block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-group input, .form-group textarea, .form-group select{
  width:100%;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 17px;
  background: transparent;
  color: var(--navy);
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235C6672' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}
.form-group select:invalid{ color: var(--muted-2); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus{
  border-color: var(--blue);
  outline: none;
}
.form-group textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: 14px; color: var(--muted-2); margin-top: 8px; }

.data-required{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size: 13px;
  font-weight: 600;
  color: #A16207;
  background: #FEF3E2;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px){
  .intro{ grid-template-columns: 1fr; gap: 44px; }
  .intro-image{ order:-1; aspect-ratio: 16/10; }
  .why-row{ grid-template-columns: 1fr; gap: 40px; }
  .why-item{ border-left:none; padding-left:0; border-top: 1px solid var(--line); padding-top: 32px; }
  .why-item:first-child{ border-top:none; padding-top:0; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 56px; }
  .pillars-row{ grid-template-columns: 1fr; gap: 32px; }
  .pillar{ border-left:none; padding-left:0; border-top: 1px solid var(--line); padding-top: 28px; }
  .pillar:first-child{ border-top:none; padding-top:0; }
  .service-detail-row{ grid-template-columns: 1fr; gap: 32px; }
  .service-detail-row:nth-child(even) .detail-photo{ order:0; }
  .flow{ flex-direction:column; align-items:flex-start; gap: 28px; }
  .flow::before{ display:none; }
  .flow-step{ text-align:left; padding-left: 0; border-left:none; display:flex; align-items:center; gap:16px; }
  .flow-step .dot{ margin: 0; flex-shrink:0; }
  .header-phone{ display:none; }
  .region-grid{ grid-template-columns: 1fr; gap: 28px; }
  .stats-row{ grid-template-columns: repeat(2, 1fr); }
  .tracking-box{ flex-direction:column; align-items:stretch; }
  .contact-snippet-inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 760px){
  .container{ padding: 0 22px; }
  .section{ padding: 84px 0; }
  .section--tight{ padding: 68px 0; }

  .header-inner{ height: 76px; }
  .logo img{ height: 38px; }
  .nav{
    position: fixed;
    top: 76px; left:0; right:0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 20px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav.is-open{ opacity:1; visibility:visible; transform: translateY(0); }
  .nav a{ width:100%; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav a::after{ display:none; }
  .header-cta{ padding: 10px 16px; font-size: 13px; }
  .nav-toggle{ display:block; }

  .hero{ min-height: 78vh; padding-bottom: 64px; }
  .hero .subtitle{ font-size: 18.5px; }
  .hero-tags{ gap: 8px 16px; }
  .hero-tags span{ font-size: 12.5px; }
  .scroll-cue{ display:none; }

  .service-row{ grid-template-columns: 40px 1fr; gap: 14px; }
  .service-row .num{ display:none; }
  .service-row .row-arrow{ display:none; }

  .footer-top{ grid-template-columns: 1fr; gap: 36px; }
  .news-row{ grid-template-columns: 1fr; gap: 10px; }
  .news-row .row-arrow{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
  .tax-strip{ gap: 28px; }
  .cta-band{ padding: 96px 0; }
  .stats-row{ grid-template-columns: 1fr; }
  .region-grid{ grid-template-columns: 1fr; }
}
