/* Auztec V1 Design Parity Overlay
   Purpose: Align the live HTML/CSS build more closely to the React canvas "Auztec Professional Website V1"
   Load AFTER css/styles.css
*/

:root{
  /* V1 sizing + rhythm */
  --container: 1152px;                /* max-w-6xl */
  --radius-sm: 6px;                   /* rounded-md */
  --radius: 16px;                     /* rounded-2xl */
  --radius-xl: 16px;
  --radius-card-inner: 12px;          /* rounded-xl */
  --shadow-sm: 0 1px 2px rgba(0, 43, 92, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 43, 92, 0.10);

  /* Type scale (V1-inspired) */
  --fs-nav: 14px;
  --fs-badge: 13px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --fs-h1-mobile: 30px;               /* text-3xl */
  --fs-h1-desktop: 48px;              /* text-5xl */
  --fs-h2-mobile: 24px;               /* text-2xl */
  --fs-h2-desktop: 36px;              /* text-4xl */
  --fs-h3: 18px;

  --lh-tight: 1.15;
  --lh-body: 1.6;
  --lh-relaxed: 1.625;
  --tracking-tight: -0.02em;
}

/* Base typography */
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container parity (px-4 mobile / px-6 desktop) */
.container{width:min(var(--container), calc(100% - 2rem))}
@media (min-width: 768px){
  .container{width:min(var(--container), calc(100% - 3rem))}
}

/* Header parity */
.site-header{
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(8px);
}
.header-inner{
  min-height: 80px; /* h-20 */
  gap: 16px;
}
.brand-logo{height: 40px}
.brand-tagline{
  font-size: 12px;    /* text-xs */
  line-height: 1;
  color: var(--charcoal);
}
.site-nav{
  gap: 24px;          /* gap-6 */
}
.site-nav a{
  font-size: var(--fs-nav);
  font-weight: 500;
  color: var(--navy);
}
.header-cta{
  height: 36px;       /* h-9 */
  padding-inline: 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* Buttons parity */
.btn{
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  min-height: 40px;   /* typical shadcn h-10 */
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0;
}
.btn-primary{
  background: var(--teal);
  color: var(--navy);
  border: 0;
}
.btn-primary:hover{
  background: var(--teal-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-secondary{
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.btn-secondary:hover{
  color: var(--navy);
  border-color: #d4d9e1;
  box-shadow: var(--shadow-md);
}
.hero-actions .btn{
  min-height: 40px;
  padding: 8px 16px;
}

/* Hero parity */
.hero-bar{height: 8px; opacity: .12}
.hero-grid{
  grid-template-columns: 1fr 1fr;
  gap: 40px;          /* gap-10 */
  align-items: center;
  padding: 64px 0;    /* py-16 */
}
.eyebrow{
  margin-bottom: 16px;
  font-size: var(--fs-badge);
  font-weight: 600;
  padding: 4px 12px;  /* px-3 py-1 */
  border-radius: 9999px;
  line-height: 1.3;
}
h1{
  font-size: var(--fs-h1-mobile);
  line-height: 1.15;  /* leading-tight feel */
  letter-spacing: var(--tracking-tight);
  font-weight: 600;
  color: var(--navy);
}
.hero-text{
  margin-top: 20px;   /* mt-5 */
  max-width: 36rem;   /* max-w-xl */
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--charcoal);
}
.hero-actions{margin-top: 24px; gap: 12px}
.hero-pills{
  margin-top: 24px;
  gap: 8px;
}
.pill{
  font-size: 14px;
  padding: 4px 12px;  /* px-3 py-1 */
  border-radius: 9999px;
  min-height: 30px;
  color: var(--charcoal);
}

/* Hero card + theme grid parity */
.hero-card{
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 24px;      /* p-6 */
}
.hero-card-head{
  margin-bottom: 20px; /* mb-5 */
  gap: 16px;
}
.mini-title{
  font-size: 14px;     /* text-sm */
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}
.mini-sub{
  font-size: 12px;     /* text-xs */
  line-height: 1.4;
  color: var(--charcoal);
}
.arch-logo-small{height: 40px} /* h-10 */
.themes-grid{
  gap: 16px;           /* gap-4 */
}
.theme-card{
  border-radius: 12px; /* rounded-xl */
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 16px;       /* p-4 */
}
.theme-card h3{
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;    /* font-medium */
  color: var(--navy);
  margin-bottom: 4px;
}
.theme-card p{
  font-size: 12px;
  line-height: var(--lh-relaxed);
  color: var(--charcoal);
}

/* Section spacing + headings parity */
.section{
  padding: 64px 0;     /* py-16 */
}
.section-head{
  margin-bottom: 40px; /* mb-10 */
}
.section-head h2{
  font-size: var(--fs-h2-mobile);
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
  font-weight: 600;
  color: var(--navy);
}
.section-head p{
  margin-top: 12px;    /* mt-3 */
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  max-width: 48rem;    /* close to max-w-3xl */
  color: var(--charcoal);
}

/* Cards parity */
.info-card{
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: none; /* V1 uses subtle border + light shadow feel */
  background: #fff;
  padding: 20px;       /* p-5 equivalent default */
}
.cards-2{gap: 16px}
#pilot .cards-2,
#contact .cards-2{gap: 24px} /* V1 pilot/contact uses gap-6 */
.cards-3,.cards-4{gap: 16px}

.info-card h3{
  font-size: 18px;     /* text-lg */
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
.info-card p,
.info-card li{
  font-size: 14px;     /* text-sm in most cards */
  line-height: var(--lh-relaxed);
  color: var(--charcoal);
}
.card-label{
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.dot{
  width: 10px;
  height: 10px;
}

/* ARCH banner parity */
.arch-banner{
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  padding: 20px 24px;  /* p-5 md:p-6 */
  margin-bottom: 24px; /* mb-6 */
}
.arch-banner .mini-title{
  font-size: 14px;
  font-weight: 600;
}
.arch-banner .mini-sub{
  font-size: 14px;
  line-height: 1.4;
}
.arch-chip{
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;   /* px-3 py-1 */
  border-radius: 9999px;
}

/* Pilot lists parity */
.icon-list li,
.number-list li,
.plain-list li{
  margin: 8px 0;
}
.callout{
  border-radius: 16px;
  padding: 20px;
}
.callout-warn{
  margin-top: 24px;    /* mt-6 */
  font-size: 14px;     /* text-sm */
  line-height: var(--lh-relaxed);
}

/* Compliance parity */
.icon-heading{
  gap: 8px;
  margin-bottom: 12px; /* mb-3 */
  font-size: 14px;     /* text-sm + font-semibold in V1 heading row */
  font-weight: 600;
  color: var(--navy);
}
.heading-svg{
  width: 16px; height: 16px;
}

/* Contact parity */
.contact-card{
  padding: 24px;       /* p-6 */
}
.contact-card .contact-head{
  gap: 16px;
  margin-bottom: 16px;
}
.brand-logo-small{height: 40px}
.contact-name{
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.contact-role{
  font-size: 14px;
  line-height: 1.4;
  color: var(--charcoal);
}
.contact-direct,
.contact-direct a{
  font-size: 14px;
}
.form-grid{
  gap: 16px;
}
.field label{
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.field input,
.field select,
.field textarea{
  min-height: 40px;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}
.field textarea{
  min-height: 120px;
  line-height: 1.5;
}

/* Footer parity */
.site-footer{
  padding: 40px 0;     /* py-10 */
}
.footer-brand p{
  font-size: 14px;
}
.footer-logo{
  height: 32px;        /* h-8 */
  border-radius: 6px;
  padding: 4px 8px;
}
.footer-nav{
  gap: 16px;
}
.footer-nav a{
  font-size: 14px;
  font-weight: 500;
}

/* Responsive parity */
@media (min-width: 768px){
  .section{padding: 96px 0}          /* md:py-24 */
  .section-head{margin-bottom: 48px} /* md:mb-12 */
  .section-head h2{font-size: var(--fs-h2-desktop)}
  .section-head p{font-size: var(--fs-body-lg)}
  h1{font-size: var(--fs-h1-desktop)}
  .hero-text{font-size: var(--fs-body-lg)}
  .hero-grid{padding: 64px 0 96px}   /* py-16 md:py-24 overall hero content */
}
@media (max-width: 920px){
  .header-inner{min-height: 74px}
  .menu-toggle{
    width: 40px; height: 40px; border-radius: 8px;
  }
  .menu-toggle span{width: 18px}
}
@media (max-width: 767px){
  .hero-grid{grid-template-columns: 1fr; gap: 32px; padding: 48px 0 64px}
  .hero-card{padding: 20px}
  .hero-card-head{margin-bottom: 16px}
  .site-nav{top: 74px}
}

/* ===============================
   Tight visual QA pass + V1 spacing trim
   Includes ARCH workflow visual + mid-page CTA section
   =============================== */

/* Section-by-section rhythm tuning */
.section{
  padding: 60px 0;
}
.section-head{
  margin-bottom: 34px;
}
.section-head p{
  max-width: 42rem;
  line-height: 1.55;
}

.hero .container.hero-grid{
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 78px;
}
.hero-copy h1{
  max-width: 13ch;
}
.hero-text{
  max-width: 34rem;
  line-height: 1.55;
}
.hero-actions{
  margin-top: 20px;
}
.hero-pills{
  margin-top: 18px;
}
.hero-card{
  padding: 24px;
}
.hero-card-head{
  margin-bottom: 18px;
}

.themes-grid{
  gap: 14px;
}
.theme-card{
  padding: 14px;
}
.theme-card h3{
  margin-top: 2px;
}
.theme-card p{
  margin-top: 6px;
}

#solution.section{
  padding-top: 58px;
  padding-bottom: 52px;
}
#solution .section-head{
  margin-bottom: 28px;
}
#solution .arch-banner{
  margin-bottom: 14px;
}
#solution .cards-3{
  gap: 14px;
}
#solution .info-card{
  padding: 18px;
}
#solution .info-card h3{
  font-size: 17px;
  line-height: 1.28;
}
#solution .info-card p{
  margin-top: 8px;
  font-size: 14px;
}

/* New ARCH workflow visual block */
.arch-workflow-shell{
  margin-top: 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}
.arch-workflow-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.arch-workflow-head .mini-title{
  margin: 0;
}
.arch-workflow-intro{
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 42rem;
}
.arch-workflow-badge{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: #E8FBF9;
  border: 1px solid #B9F0EC;
}
.arch-workflow-strip{
  margin-top: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--gray-50);
  padding: 14px;
}
.arch-workflow-strip-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.arch-workflow-strip-title{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
}
.arch-workflow-strip-sub{
  font-size: 11px;
  color: var(--charcoal);
}
.route-strip{
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  overflow: hidden;
}


/* Enterprise data-lane visual for ARCH workflow strip */
.route-strip{
  position: relative;
  min-height: 122px;
}
.route-strip-fade{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  background: linear-gradient(90deg, rgba(0,43,92,.02) 0%, rgba(0,177,169,.06) 50%, rgba(0,43,92,.02) 100%);
  pointer-events: none;
}
.route-strip-svg{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 7.8rem;
  display: block;
}
.route-strip-label{
  position: absolute;
  top: 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,43,92,.55);
  pointer-events: none;
}
.route-strip-label-left{ left: 14px; }
.route-strip-label-right{ right: 14px; }

/* Old road/vehicle elements are removed from markup but hide safely if cached HTML appears */
.route-road,
.route-lane,
.route-vehicle{ display: none !important; }
.route-road{
  height: 40px;
  border-radius: 999px;
  background: #2F3640;
  margin-top: 22px;
}
.route-lane{
  position: absolute;
  left: 28px;
  right: 28px;
  top: 44px;
  height: 2px;
  border-radius: 999px;
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,.92) 0 14px, transparent 14px 26px);
}
.route-vehicle{
  position: absolute;
  left: 18px;
  top: 28px;
  width: 68px;
  height: 26px;
}
.rv-body{
  position: absolute;
  left: 0;
  top: 4px;
  width: 46px;
  height: 18px;
  background: var(--teal);
  border-radius: 6px;
}
.rv-cab{
  position: absolute;
  left: 44px;
  top: 7px;
  width: 20px;
  height: 14px;
  background: var(--teal-dark);
  border-radius: 0 5px 5px 0;
}
.rv-body::after{
  content: "";
  position: absolute;
  right: 5px;
  top: 3px;
  width: 12px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255,255,255,.72);
}
.rv-wheel{
  position: absolute;
  bottom: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #111827;
}
.rv-wheel-a{ left: 8px; }
.rv-wheel-b{ left: 40px; }

.route-step-grid{
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  margin-top: 10px;
}
.route-step-card{
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: rgba(247,248,250,.96);
  padding: 12px;
}
.route-step-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.route-step-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #E8FBF9;
  border: 1px solid #B9F0EC;
}
.route-step-icon .theme-svg{
  width: 14px;
  height: 14px;
}
.route-step-tag{
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 999px;
  padding: 2px 8px;
}
.route-step-card h4{
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--navy);
}
.route-step-card p{
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.3;
  color: var(--charcoal);
}

.arch-steps-4{
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.arch-step{
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  padding: 14px;
}
.arch-step-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gray-200);
  background: #fff;
  margin-bottom: 10px;
}
.arch-step-icon .theme-svg{
  width: 14px;
  height: 14px;
}
.arch-step h4{
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  color: var(--navy);
}
.arch-step p{
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--charcoal);
}
.arch-step-arrow{
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: none;
}

/* Pilot section rhythm tightened before CTA */
#pilot.section{
  padding-top: 56px;
  padding-bottom: 40px;
}
#pilot .section-head{
  margin-bottom: 28px;
}
#pilot .cards-2{
  gap: 16px;
}
#pilot .info-card{
  padding: 20px;
}
#pilot .callout-warn{
  margin-top: 18px;
  padding: 14px 16px;
  line-height: 1.5;
}

/* Mid-page CTA: centered with even vertical whitespace */
.section.cta-mid{
  padding-top: 54px;
  padding-bottom: 56px;
  background: #fff;
}
.cta-mid-card{
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, var(--navy) 0%, #0D3A74 60%, var(--teal-dark) 100%);
  padding: 24px;
}
.cta-mid-grid{
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(0,.82fr);
  gap: 20px;
  align-items: center; /* center overall panel content vertically */
}
.cta-mid-copy{
  align-self: center;  /* centre align inside card */
}
.cta-mid-pill{
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
}
.cta-mid-copy h2{
  margin: 10px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 16ch;
}
.cta-mid-copy p{
  margin: 12px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.5;
  max-width: 44ch;
}


/* === CTA lede: natural wrapping (2026-02-26) === */
.cta-mid-copy{ min-width: 0; }
.cta-mid-copy p.cta-mid-lede{
  display: block;
  width: 100%;
  max-width: 500ch;      /* readable line length */
  white-space: normal;  /* wrap like a normal paragraph */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.cta-mini-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  max-width: 44rem;
}
.cta-mini{
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  padding: 12px;
}
.cta-mini h4{
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}
.cta-mini p{
  margin: 5px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.35;
}
.cta-actions{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-actions .btn{
  min-height: 40px;
}
.btn.btn-on-dark{
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.btn.btn-on-dark:hover{
  background: rgba(255,255,255,.08);
}

.cta-pilot-pack{
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  padding: 14px;
  align-self: center; /* also center this panel */
}
.cta-pilot-pack-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.cta-pilot-pack-title{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}
.cta-pilot-pack-sub{
  margin-top: 2px;
  color: rgba(255,255,255,.75);
  font-size: 11px;
  line-height: 1.3;
}
.cta-pack-chip{
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.12);
}
.cta-pack-list{
  display: grid;
  gap: 10px;
}
.cta-pack-item{
  display: grid;
  grid-template-columns: 32px minmax(0,1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  padding: 10px;
}
.cta-pack-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(0,177,169,.16);
  border: 1px solid rgba(124,237,230,.30);
}
.cta-pack-icon .theme-svg{
  width: 14px;
  height: 14px;
  filter: brightness(1.45) saturate(.9);
}
.cta-pack-item h4{
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}
.cta-pack-item p{
  margin: 4px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.35;
}

/* Sections after CTA */
#why.section{
  padding-top: 56px;
  padding-bottom: 58px;
}
#why .section-head{
  margin-bottom: 28px;
}
#why .cards-4{
  gap: 14px;
}
#why .info-card{
  padding: 18px;
}
#why .info-card h3{
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}
#why .info-card p{
  margin-top: 8px;
  font-size: 14px;
}

#compliance.section{
  padding-top: 58px;
  padding-bottom: 58px;
}
#compliance .section-head{
  margin-bottom: 28px;
}
#compliance .cards-2{
  gap: 16px;
}
#compliance .info-card{
  padding: 20px;
}
#compliance .icon-heading{
  margin-bottom: 10px;
}
#compliance ul{
  margin-top: 0;
  padding-left: 18px;
}

#contact.section{
  padding-top: 60px;
  padding-bottom: 64px;
}
#contact .section-head{
  margin-bottom: 28px;
}
#contact .cards-2{
  gap: 16px;
  align-items: stretch;
}
#contact .info-card{
  padding: 20px;
}
#contact .contact-card,
#contact .info-card{
  height: 100%;
}
#contact .contact-form{
  margin-top: 10px;
}
#contact .form-grid{
  gap: 12px;
}
#contact .field{
  gap: 6px;
}
#contact .field textarea{
  min-height: 112px;
}
#contact .contact-help{
  margin-top: 14px;
}

/* Footer spacing refinement */
.site-footer{
  padding-top: 36px;
  padding-bottom: 36px;
}

/* Responsive tuning */
@media (min-width: 980px){
  .arch-step:nth-child(-n+3) .arch-step-arrow{
    display: inline;
  }
}
@media (max-width: 980px){
  .cta-mid-grid{
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cta-mid-copy h2{
    font-size: 26px;
    max-width: 20ch;
  }
  .cta-pilot-pack{
    margin-top: 2px;
  }
}
@media (max-width: 840px){
  .route-step-grid,
  .arch-steps-4{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 767px){
  .section{
    padding: 48px 0;
  }
  .section-head{
    margin-bottom: 22px;
  }
  .section-head p{
    font-size: 15px;
    max-width: 34rem;
  }
  .hero .container.hero-grid{
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 58px;
  }
  .hero-copy h1{
    max-width: none;
  }
  .hero-card{
    padding: 18px;
  }
  .arch-workflow-shell{
    margin-top: 16px;
    padding: 14px;
  }
  .arch-workflow-strip{
    padding: 10px;
  }
  .arch-workflow-strip-sub{
    font-size: 10px;
  }
  .route-strip{
    padding: 10px;
  }
  .route-road{
    height: 34px;
    margin-top: 18px;
  }
  .route-lane{
    left: 22px;
    right: 22px;
    top: 35px;
  }
  .route-vehicle{
    left: 14px;
    top: 20px;
    transform: scale(.9);
    transform-origin: left top;
  }
  .cta-mid{
    padding-top: 44px !important;
    padding-bottom: 46px !important;
  }
  .cta-mid-card{
    padding: 16px;
  }
  .cta-mid-copy h2{
    font-size: 22px;
    line-height: 1.15;
  }
  .cta-mini-grid{
    grid-template-columns: 1fr;
  }
  .cta-actions{
    gap: 8px;
  }
  .cta-actions .btn{
    width: 100%;
    justify-content: center;
  }
  .btn.btn-on-dark{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #pilot.section{
    padding-bottom: 32px;
  }
  #why.section{
    padding-top: 46px;
  }
}


/* ARCH data-lane strip responsive tuning */
@media (max-width: 980px){
  .route-strip-label-left{ display: none; }
}
@media (max-width: 767px){
  .route-strip{
    min-height: 104px;
    padding: 10px;
  }
  .route-strip-fade{
    height: 34px;
  }
  .route-strip-svg{
    height: 6.9rem;
  }
  .route-strip-label{
    top: 8px;
    font-size: 9px;
    letter-spacing: .06em;
  }
}


/* === ARCH strip readability + CTA headline wrap fix (2026-02-25e) === */
.route-strip{
  min-height: 148px;
  padding-top: 14px;
  padding-bottom: 10px;
}
.route-strip-svg{
  height: 8.85rem;
  bottom: 2px;
}
.route-strip-svg text{
  font-size: 11px;
}
.route-strip-svg .route-strip-status-tags rect{
  rx: 12px;
}
.cta-mid-copy h2{
  max-width: 18ch;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}
@media (max-width: 1160px){
  .route-strip-svg .route-strip-status-tags{
    display: none;
  }
}
@media (max-width: 767px){
  .route-strip{
    min-height: 118px;
    padding-top: 10px;
  }
  .route-strip-svg{
    height: 7.35rem;
    bottom: 0;
  }
  .cta-mid-copy h2{
    max-width: none;
    text-wrap: pretty;
  }
}


/* === ARCH strip width/height + mobile step numbers + CTA single-line title (2026-02-25f) === */
.route-strip{
  min-height: 216px;
  padding-top: 12px;
  padding-bottom: 8px;
}
.route-strip-svg{
  height: 13rem;
  bottom: 0;
}
.route-strip-svg .route-strip-mobile-stepnums{
  display: none;
}
.route-strip-svg .route-strip-mobile-stepnums text{
  font-size: 10px;
}

.cta-mid-copy h2{
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  letter-spacing: -.01em;
}
@media (max-width: 1279px){
  .cta-mid-copy h2{
    font-size: 31px;
  }
}
@media (max-width: 1099px){
  .cta-mid-copy h2{
    white-space: normal;
    text-wrap: balance;
  }
}
@media (max-width: 767px){
  .route-strip{
    min-height: 142px;
    padding: 10px;
  }
  .route-strip-svg{
    height: 9rem;
  }
  .route-strip-svg .route-strip-status-tags{
    display: none;
  }
  .route-strip-svg .route-strip-mobile-stepnums{
    display: block;
  }
  .route-strip-svg .route-strip-mobile-stepnums text{
    font-size: 11px;
  }
  .route-strip-label-right{
    display: none;
  }
  .cta-mid-copy h2{
    font-size: 28px;
    white-space: normal;
  }
}
