/*
Theme Name: The Elite Automatic Doors
Theme URI: https://theeliteautomaticdoors.com/
Author: Codex
Description: Premium custom WordPress theme for The Elite Automatic Doors.
Version: 2.6.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: the-elite-automatic-doors
*/

:root {
  --elite-navy: #071426;
  --elite-ink: #142033;
  --elite-muted: #637084;
  --elite-line: #d8e0ea;
  --elite-bg: #f5f7fa;
  --elite-white: #ffffff;
  --elite-amber: #f47b20;
  --elite-amber-dark: #d85f0d;
  --elite-steel: #8fa3b8;
  --elite-shadow: 0 24px 70px rgba(7, 20, 38, 0.14);
  --elite-radius: 8px;
  --elite-max: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--elite-ink);
  background: var(--elite-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open, html.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--elite-max), calc(100% - 48px)); margin: 0 auto; }

.top-strip { color: rgba(255,255,255,.88); background: var(--elite-navy); font-size: 14px; overflow: hidden; }
.top-strip__inner { display: flex; align-items: center; min-height: 38px; overflow: hidden; }
.top-strip__ticker { width: 100%; overflow: hidden; white-space: nowrap; }
.top-strip__ticker span { display: inline-block; min-width: max-content; animation: ticker 24s linear infinite; }
.top-strip__ticker span::before { display: inline-block; width: 7px; height: 7px; margin: 0 12px 1px 0; content: ""; background: var(--elite-amber); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(244,123,32,.22);
  backdrop-filter: blur(16px);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark { display: grid; place-items: center; width: 46px; height: 46px; color: var(--elite-white); background: linear-gradient(135deg, var(--elite-navy), #17345d); border-radius: 7px; font-family: Georgia, serif; font-size: 20px; font-weight: 800; }
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { color: var(--elite-navy); font-family: Georgia, "Times New Roman", serif; font-size: 20px; }
.brand__text span { color: var(--elite-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.menu-toggle { display: none; width: 42px; height: 42px; background: var(--elite-white); border: 1px solid var(--elite-line); border-radius: 6px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 2px; margin: 4px auto; content: ""; background: var(--elite-navy); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 8px 11px; color: var(--elite-ink); font-size: 15px; font-weight: 700; }
.main-nav a:hover, .main-nav a:focus, .main-nav a.is-active { color: var(--elite-amber-dark); }
.nav-group { position: relative; }
.nav-group > a::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 330px;
  padding: 12px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(244,123,32,.28);
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: .18s ease;
}
.nav-submenu a { min-height: 45px; padding: 10px 12px; border-radius: 6px; }
.nav-submenu a:hover, .nav-submenu a:focus { color: var(--elite-navy); background: rgba(244,123,32,.12); }
.nav-group:hover .nav-submenu, .nav-group:focus-within .nav-submenu { opacity: 1; transform: translateY(0); visibility: visible; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1.2;
}
.header-cta, .btn--amber { color: var(--elite-white); background: var(--elite-amber); }
.btn--dark { color: var(--elite-white); background: var(--elite-navy); }
.btn--outline { color: var(--elite-white); border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 710px;
  color: var(--elite-white);
  background: var(--elite-navy);
  overflow: hidden;
}
.hero__image,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  display: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  animation: heroSlideFade 15s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes heroSlideFade {
  0%, 28% { opacity: 1; transform: scale(1); }
  34%, 94% { opacity: 0; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7,20,38,.9), rgba(7,20,38,.64) 46%, rgba(7,20,38,.18)), linear-gradient(0deg, rgba(7,20,38,.58), transparent 48%);
}
.hero__content { position: relative; z-index: 1; max-width: 920px; padding: 110px 0 145px; }
.hero__kicker, .section__eyebrow { margin: 0 0 10px; color: var(--elite-amber); font-size: 14px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.hero h1 { max-width: 900px; margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 5vw, 76px); line-height: 1.04; }
.hero p { max-width: 650px; margin: 0 0 30px; color: rgba(255,255,255,.9); font-size: 19px; }
.hero__badge { position: absolute; right: max(24px, calc((100vw - var(--elite-max)) / 2)); bottom: 112px; z-index: 2; display: grid; max-width: 270px; padding: 18px 20px; background: rgba(7,20,38,.82); border: 1px solid rgba(244,123,32,.48); border-radius: var(--elite-radius); backdrop-filter: blur(12px); }
.hero__badge strong { color: var(--elite-amber); font-family: Georgia, serif; font-size: 30px; line-height: 1; }
.hero__badge span { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 700; }

.section { padding: 82px 0; }
.section--soft { background: var(--elite-bg); }
.section--dark {
  color: var(--elite-white);
  background: linear-gradient(135deg, rgba(7,20,38,.94), rgba(13,38,69,.88)), url("assets/images/access-control-barriers.png") center/cover;
}
.section__title { max-width: 850px; margin: 0 0 18px; color: var(--elite-navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(31px, 4vw, 50px); line-height: 1.1; }
.section__lead { max-width: 780px; margin: 0 0 32px; color: var(--elite-muted); font-size: 18px; }
.section--dark .section__title, .section--dark .card h3 { color: var(--elite-white); }
.section--dark .section__lead, .section--dark .card p { color: rgba(255,255,255,.78); }
.section--contact-band {
  position: relative;
  color: var(--elite-ink);
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 58%, #f1f5f9 100%);
  border-top: 1px solid var(--elite-line);
  border-bottom: 1px solid var(--elite-line);
}
.section--contact-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8,24,47,.035), rgba(244,123,32,.04));
  opacity: 1;
  pointer-events: none;
}
.section--contact-band > .container {
  position: relative;
  z-index: 1;
}
.section--contact-band .section__title {
  color: var(--elite-navy);
}
.section--contact-band .section__lead {
  color: var(--elite-muted);
}
.section--contact-band .elite-form {
  border-color: rgba(13,38,69,.12);
  box-shadow: 0 24px 70px rgba(8,24,47,.14);
}
.section--contact-band .contact-card {
  color: var(--elite-navy);
  background: rgba(255,255,255,.86);
  border-color: rgba(13,38,69,.12);
  box-shadow: 0 18px 48px rgba(8,24,47,.12);
  backdrop-filter: blur(10px);
}
.section--contact-band .contact-card h3 {
  color: var(--elite-navy);
}
.section--contact-band .contact-card p,
.section--contact-band .contact-card a {
  color: var(--elite-muted);
}
.page-hero + .section--contact-page {
  border-top: 0;
}
.section--service-contact {
  box-shadow: 0 22px 44px rgba(8,24,47,.08);
}
.section--why-light {
  color: var(--elite-white);
  background:
    linear-gradient(135deg, rgba(8, 24, 47, 0.92), rgba(13, 38, 69, 0.86)),
    url("assets/images/ai-automatic-glass-door.png") center/cover;
}
.section--why-light .section__title,
.section--why-light .card h3 {
  color: var(--elite-white);
}
.section--why-light .card {
  color: var(--elite-white);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.section--why-light .card p {
  color: rgba(255,255,255,.78);
}
.section--why-light .why-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.why-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
  min-height: 206px;
  padding: 30px;
  overflow: hidden;
}
.section--why-light .why-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(8,24,47,.56);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.section--why-light .why-card:hover {
  border-color: rgba(244,123,32,.62);
  box-shadow: 0 30px 78px rgba(0,0,0,.25);
}
.why-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  background: radial-gradient(circle, rgba(244,123,32,.18), rgba(244,123,32,0) 65%);
  pointer-events: none;
}
.why-card .card__icon {
  width: 64px;
  height: 64px;
  margin: 0;
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.why-card .card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  margin-top: 3px;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}
.why-card p {
  font-size: 17px;
  line-height: 1.65;
}

.hero-services { position: relative; z-index: 2; margin-top: -88px; margin-bottom: 58px; }
.hero-services--footer {
  margin: 0;
  padding: 52px 0 64px;
  background: var(--elite-bg);
}
.hero-services__grid, .services-grid, .projects-grid, .why-grid, .contact-grid, .process-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.hero-services__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .service-card, .project-card, .stat, .elite-form {
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.card:hover, .service-card:hover, .project-card:hover, .stat:hover, .elite-form:hover { transform: translateY(-8px); border-color: rgba(244,123,32,.56); box-shadow: 0 30px 76px rgba(7,20,38,.2); }
.card { padding: 25px; }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 14px; color: var(--elite-white); background: linear-gradient(135deg, var(--elite-navy), #23466f); border-radius: 7px; font-weight: 900; }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.85; stroke-linecap: round; stroke-linejoin: round; }
.card h3, .service-card h3, .project-card h3 { margin: 0 0 9px; color: var(--elite-navy); font-family: Georgia, "Times New Roman", serif; font-size: 23px; line-height: 1.2; }
.card p, .service-card p, .project-card p { margin: 0; color: var(--elite-muted); }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.image-stack { position: relative; min-height: 520px; }
.image-stack img { width: 82%; height: 440px; object-fit: cover; border-radius: var(--elite-radius); box-shadow: var(--elite-shadow); }
.image-stack img:nth-child(2) { position: absolute; right: 0; bottom: 0; width: 58%; height: 285px; border: 9px solid var(--elite-white); }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.stat { padding: 18px; background: var(--elite-bg); }
.stat strong { display: block; color: var(--elite-navy); font-size: 30px; }
.stat span { color: var(--elite-muted); font-size: 14px; }

.service-card, .project-card { overflow: hidden; }
.service-card img, .project-card img { width: 100%; height: 245px; object-fit: cover; transition: transform .45s ease; }
.service-card:hover img, .project-card:hover img { transform: scale(1.05); }
.service-card__body, .project-card__body { padding: 24px; }
.service-card ul, .content-prose ul { margin: 16px 0 20px; padding-left: 19px; color: var(--elite-muted); }
.text-link { display: inline-flex; color: var(--elite-amber-dark); font-weight: 900; }

.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.video-card { overflow: hidden; background: var(--elite-white); border: 1px solid var(--elite-line); border-radius: var(--elite-radius); box-shadow: var(--elite-shadow); }
.video-card iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #071426; }
.video-card h3 { margin: 0; padding: 18px 20px; color: var(--elite-navy); font-family: Georgia, "Times New Roman", serif; font-size: 21px; }

.content-prose { max-width: 900px; }
.content-prose h2, .content-prose h3 { color: var(--elite-navy); font-family: Georgia, "Times New Roman", serif; }
.content-prose p, .content-prose li { color: var(--elite-muted); font-size: 17px; }

.form-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: stretch; }
.contact-panel { display: grid; gap: 16px; margin-top: 24px; }
.section--dark .card { color: var(--elite-white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); box-shadow: none; backdrop-filter: blur(10px); }
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 24px;
  overflow: hidden;
  color: var(--elite-white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    rgba(8,24,47,.62);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.contact-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, rgba(244,123,32,.18), transparent 34%, rgba(255,255,255,.08));
  opacity: .75;
  pointer-events: none;
}
.contact-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--elite-white);
  background: linear-gradient(135deg, var(--elite-amber), var(--elite-amber-dark));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(216,91,7,.28);
}
.contact-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card div {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.contact-card h3 {
  margin: 0 0 7px;
  color: var(--elite-white);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}
.contact-card p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.5;
}
.contact-card a {
  color: rgba(255,255,255,.86);
  overflow-wrap: anywhere;
}
.contact-card a:hover {
  color: var(--elite-white);
}
.elite-form { display: grid; gap: 14px; padding: 34px; }
.elite-form__row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.elite-form label { display: grid; gap: 7px; color: var(--elite-navy); font-size: 14px; font-weight: 900; }
.elite-form input, .elite-form textarea, .elite-form select { width: 100%; min-height: 48px; padding: 13px 14px; color: var(--elite-ink); background: #f8fbff; border: 1px solid var(--elite-line); border-radius: 5px; }
.elite-form input:focus, .elite-form textarea:focus, .elite-form select:focus { outline: none; background: var(--elite-white); border-color: var(--elite-amber); box-shadow: 0 0 0 3px rgba(244,123,32,.18); }
.elite-form textarea { min-height: 132px; resize: vertical; }
.elite-form input[type="file"] { min-height: 52px; padding: 9px 10px; }
.elite-form__help { color: var(--elite-muted); font-size: 12px; font-weight: 600; line-height: 1.45; }
.notice { padding: 15px 17px; border-radius: 7px; font-weight: 800; }
.notice--success { color: #1d5f39; background: #e9f7ee; border: 1px solid rgba(29,95,57,.2); }
.notice--error { color: #8a2020; background: #fff0f0; border: 1px solid rgba(138,32,32,.2); }

.testimonial-card { min-height: 255px; padding: 28px; }
.testimonial-card::before { display: block; margin-bottom: 12px; color: var(--elite-amber); content: "''"; font-family: Georgia, serif; font-size: 72px; line-height: .7; }
.testimonial-card p { margin: 0 0 18px; color: var(--elite-muted); }
.testimonial-card strong { color: var(--elite-navy); }
.section--clients { overflow: hidden; }
.client-strip { position: relative; left: 50%; width: 100vw; overflow: hidden; padding: 16px 0 20px; background: var(--elite-white); border-top: 1px solid var(--elite-line); border-bottom: 1px solid var(--elite-line); box-shadow: var(--elite-shadow); transform: translateX(-50%); }
.client-strip::before, .client-strip::after { position: absolute; top: 0; bottom: 0; z-index: 2; width: 120px; content: ""; pointer-events: none; }
.client-strip::before { left: 0; background: linear-gradient(90deg, var(--elite-white), rgba(255,255,255,0)); }
.client-strip::after { right: 0; background: linear-gradient(270deg, var(--elite-white), rgba(255,255,255,0)); }
.client-strip__track { display: flex; align-items: center; gap: 16px; width: max-content; padding-left: max(34px, calc((100vw - var(--elite-max)) / 2 + 24px)); animation: clientMarquee 34s linear infinite; }
.client-strip:hover .client-strip__track { animation-play-state: paused; }
.client-logo { position: relative; display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 168px; height: 74px; padding: 10px 18px; overflow: hidden; color: var(--elite-navy); background: #fff; border: 1px solid var(--elite-line); border-radius: 8px; box-shadow: 0 10px 24px rgba(8,24,47,.08); filter: saturate(.98); }
.client-logo span { display: block; max-width: 100%; white-space: nowrap; font-family: "Segoe UI", Inter, Arial, sans-serif; font-size: 22px; font-weight: 800; line-height: 1; letter-spacing: 0; }
.client-logo--celebrity { min-width: 214px; color: #f5bd05; justify-content: flex-start; }
.client-logo--celebrity::before { flex: 0 0 44px; width: 44px; height: 44px; content: "C"; display: grid; place-items: center; border: 5px solid currentColor; border-right-color: transparent; border-radius: 50%; font-size: 25px; font-weight: 900; line-height: 1; }
.client-logo--celebrity span { font-size: 16px; letter-spacing: .1em; text-transform: uppercase; }
.client-logo--amazon { color: #111827; }
.client-logo--amazon span { font-size: 27px; font-weight: 900; text-transform: lowercase; }
.client-logo--amazon::after { position: absolute; bottom: 15px; left: 50%; width: 70px; height: 12px; content: ""; border-bottom: 3px solid #ff9900; border-radius: 0 0 90% 90%; transform: translateX(-50%) rotate(-3deg); }
.client-logo--wipro { flex-direction: column; gap: 0; min-width: 154px; }
.client-logo--wipro span { font-size: 18px; font-weight: 700; color: #3a408a; }
.client-logo--wipro::before { flex: 0 0 30px; width: 30px; height: 30px; content: ""; background: radial-gradient(circle at 50% 6%, #169bd5 0 2px, transparent 3px), radial-gradient(circle at 84% 26%, #57b947 0 2px, transparent 3px), radial-gradient(circle at 86% 72%, #f58220 0 2px, transparent 3px), radial-gradient(circle at 30% 84%, #ffd200 0 2px, transparent 3px), radial-gradient(circle at 10% 42%, #7f3f98 0 2px, transparent 3px); border: 3px dotted #249bd3; border-radius: 50%; opacity: .85; }
.client-logo--hcl span { color: #0b74bd; font-size: 30px; font-style: italic; font-weight: 900; letter-spacing: .04em; }
.client-logo--dell span { display: grid; place-items: center; width: 54px; height: 54px; color: #0076ce; border: 4px solid #0a8bc4; border-radius: 50%; font-size: 18px; font-weight: 900; text-transform: uppercase; }
.client-logo--jaguar { min-width: 190px; flex-direction: column; gap: 2px; color: #0c3f2f; }
.client-logo--jaguar::before { width: 82px; height: 13px; content: ""; border-top: 3px solid #111827; border-radius: 70% 70% 0 0; transform: skewX(-24deg); opacity: .85; }
.client-logo--jaguar span { font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.client-logo--tcs { min-width: 224px; color: #4f55c7; }
.client-logo--tcs::before { flex: 0 0 38px; width: 38px; height: 38px; content: "T"; display: grid; place-items: center; color: #fff; background: #5858c8; border-radius: 50%; font-family: Georgia, serif; font-size: 24px; font-weight: 900; }
.client-logo--tcs span { color: #4f55c7; font-size: 15px; font-weight: 900; line-height: 1.1; text-transform: uppercase; }
.client-logo--juniper { min-width: 210px; }
.client-logo--juniper::before { flex: 0 0 38px; width: 38px; height: 38px; content: ""; background: radial-gradient(circle at 50% 50%, #fff 0 10px, transparent 11px), linear-gradient(135deg, #1765a5, #3b8cc2); border: 4px solid #1765a5; }
.client-logo--juniper span { color: #1765a5; font-size: 19px; font-weight: 900; }
.client-logo--infosys span { color: #4b92c7; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; letter-spacing: -.03em; }
.client-logo--broadridge span { color: #d85f0d; font-size: 22px; font-weight: 900; }
.client-logo--bharat { min-width: 198px; }
.client-logo--bharat::before { flex: 0 0 38px; width: 38px; height: 38px; content: ""; background: radial-gradient(circle at 50% 50%, #ffd23f 0 6px, #006ab6 7px 13px, #ffd23f 14px 18px, transparent 19px); border: 2px solid #ffd23f; }
.client-logo--bharat span { color: #0b5da8; font-size: 17px; font-weight: 900; line-height: 1.1; }
@keyframes clientMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }

.page-hero { position: relative; display: grid; align-items: center; min-height: 360px; color: var(--elite-white); background: var(--elite-navy); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(7,20,38,.86), rgba(7,20,38,.28)); }
.page-hero__content { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; padding: 78px 0; text-align: center; }
.page-hero h1 { margin: 0 0 12px; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; }
.page-hero p { max-width: 920px; margin: 0 auto; color: rgba(255,255,255,.9); font-size: 18px; }

.site-footer { color: rgba(255,255,255,.82); background: var(--elite-navy); }
.footer-top { display: grid; grid-template-columns: 1.15fr .75fr 1fr 1.25fr; gap: 34px; padding: 60px 0 38px; }
.site-footer h3, .site-footer h4 { margin: 0 0 15px; color: var(--elite-white); font-family: Georgia, serif; }
.footer-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-list a::before { display: inline-block; width: 7px; height: 7px; margin-right: 8px; content: ""; background: var(--elite-amber); border-radius: 50%; }
.footer-contact { display: grid; gap: 18px; }
.footer-contact__item { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 12px; margin: 0; }
.footer-contact__item svg { width: 22px; height: 22px; margin-top: 2px; color: var(--elite-amber); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact__item strong { display: block; margin-bottom: 5px; color: var(--elite-white); }
.footer-contact__item a { overflow-wrap: anywhere; }
.footer-contact__emails { display: grid; gap: 4px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 9px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: 14px; }
.footer-bottom span:last-child { display: inline-flex; padding: 8px 12px; color: var(--elite-white); background: var(--elite-amber); border-radius: 999px; font-weight: 900; }
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: grid; justify-items: end; gap: 10px; }
.floating-actions a { display: grid; place-items: center; width: 52px; height: 52px; color: var(--elite-white); background: #0c7b46; border-radius: 50%; box-shadow: var(--elite-shadow); }
.floating-actions .floating-actions__call { background: var(--elite-amber-dark); }
.floating-actions svg { width: 24px; height: 24px; fill: currentColor; }
.floating-actions .floating-actions__enquiry { position: relative; display: grid; width: 52px; min-width: 52px; height: 52px; padding: 0; background: #0f2b4f; border-radius: 50%; }
.floating-actions .floating-actions__enquiry:hover,
.floating-actions .floating-actions__enquiry:focus { background: var(--elite-amber-dark); transform: translateY(-2px); }
.floating-actions .floating-actions__enquiry svg { width: 20px; height: 20px; }
.floating-actions .floating-actions__enquiry::before {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  padding: 8px 11px;
  content: attr(data-tooltip);
  color: var(--elite-white);
  background: #071426;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}
.floating-actions .floating-actions__enquiry:hover::before,
.floating-actions .floating-actions__enquiry:focus::before { opacity: 1; transform: translate(0, -50%); }
.elite-modal-open { overscroll-behavior: none; }
html.elite-modal-open { overflow: hidden; }
body.elite-modal-open { position: fixed; top: var(--elite-scroll-lock-top, 0); right: 0; left: 0; width: 100%; overflow: hidden; }
.elite-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 22px; background: rgba(0,0,0,.64); overflow: hidden; overscroll-behavior: contain; }
.elite-modal.is-open { display: flex; }
.elite-modal__panel { position: relative; display: flex; flex-direction: column; width: min(760px,100%); height: min(780px, calc(100vh - 44px)); height: min(780px, calc(100dvh - 44px)); max-height: calc(100vh - 44px); overflow: hidden; padding: 0; background: var(--elite-white); border-radius: var(--elite-radius); box-shadow: 0 28px 90px rgba(0,0,0,.35); }
.elite-modal__header { position: sticky; top: 0; z-index: 2; flex: 0 0 auto; padding: 26px 72px 22px 30px; background: var(--elite-white); border-bottom: 1px solid var(--elite-line); }
.elite-modal__header .section__eyebrow { margin-bottom: 8px; }
.elite-modal__header h2 { margin: 0 0 8px; color: var(--elite-navy); font-family: Georgia, serif; font-size: clamp(25px, 3vw, 34px); line-height: 1.12; }
.elite-modal__header > p:last-child { margin: 0; color: var(--elite-muted); }
.elite-modal__close { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--elite-white); background: var(--elite-navy); border: 0; border-radius: 50%; cursor: pointer; font-size: 24px; }
.elite-form--detailed { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; gap: 0; overflow: hidden; padding: 0; border: 0; border-radius: 0; box-shadow: none; transition: none; }
.elite-modal .elite-form--detailed:hover { transform: none; border-color: transparent; box-shadow: none; }
.elite-modal__body { flex: 1 1 auto; min-height: 0; display: grid; gap: 14px; overflow-x: hidden; overflow-y: auto; padding: 24px 30px; overscroll-behavior: contain; touch-action: pan-y; -webkit-overflow-scrolling: touch; scrollbar-color: rgba(15,43,79,.55) transparent; scrollbar-width: thin; }
.elite-modal__body::-webkit-scrollbar { width: 6px; }
.elite-modal__body::-webkit-scrollbar-track { background: transparent; }
.elite-modal__body::-webkit-scrollbar-thumb { background: rgba(15,43,79,.55); border-radius: 999px; }
.elite-modal__body::-webkit-scrollbar-thumb:hover { background: rgba(15,43,79,.78); }
.elite-modal__footer { position: sticky; bottom: 0; z-index: 2; flex: 0 0 auto; display: flex; justify-content: flex-end; padding: 16px 30px; background: var(--elite-white); border-top: 1px solid var(--elite-line); box-shadow: 0 -10px 24px rgba(8,24,47,.07); }
.elite-modal__footer .btn { min-width: 190px; }
.reveal-card { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .72s ease var(--reveal-delay,0ms), transform .72s ease var(--reveal-delay,0ms), box-shadow .28s ease, border-color .28s ease; }
.reveal-card.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .menu-toggle { display: inline-block; position: relative; z-index: 210; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 34px 24px 32px;
    color: var(--elite-white);
    background: #071426;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(100%);
    transition: .24s ease;
    visibility: hidden;
  }
  body.nav-open .site-header { z-index: 1000; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateX(0); visibility: visible; }
  .main-nav::before { padding: 0 54px 16px 0; color: var(--elite-amber); content: "The Elite Automatic Doors"; border-bottom: 1px solid rgba(255,255,255,.12); font-family: Georgia, serif; font-size: 20px; font-weight: 800; }
  .main-nav a { justify-content: space-between; color: rgba(255,255,255,.86); border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-submenu { position: static; min-width: 0; margin: 6px 0 12px; background: rgba(255,255,255,.05); box-shadow: none; opacity: 1; transform: none; visibility: visible; }
  .header-cta { display: none; }
  body.nav-open .menu-toggle { position: fixed; top: 22px; right: 24px; z-index: 1100; background: rgba(7,20,38,.95); border-color: var(--elite-amber); }
  body.nav-open .menu-toggle span { opacity: 0; }
  body.nav-open .menu-toggle::before, body.nav-open .menu-toggle::after { background: var(--elite-amber); }
  body.nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
  body.nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
  .hero-services__grid, .services-grid, .projects-grid, .why-grid, .contact-grid, .process-grid, .testimonial-grid, .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .form-wrap { grid-template-columns: 1fr; }
  .client-logo { min-width: 160px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--elite-max)); }
  .site-header__inner { min-height: 66px; gap: 12px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__text strong { font-size: 17px; }
  .brand__text span { font-size: 10px; }
  .hero { min-height: 660px; }
  .hero__content { padding: 70px 0 175px; }
  .hero h1 { font-size: 36px; line-height: 1.08; }
  .hero p, .section__lead { font-size: 16px; }
  .hero-services { margin-top: 0; margin-bottom: 34px; padding-top: 24px; background: var(--elite-bg); }
  .button-row .btn { flex: 1 1 100%; }
  .hero-services__grid, .services-grid, .projects-grid, .why-grid, .contact-grid, .process-grid, .testimonial-grid, .footer-top, .elite-form__row, .stats { grid-template-columns: 1fr; gap: 24px; }
  .section--why-light .why-grid--featured { grid-template-columns: 1fr; }
  .why-card { grid-template-columns: 58px minmax(0, 1fr); min-height: 0; padding: 24px; }
  .why-card .card__icon { width: 58px; height: 58px; }
  .client-strip::before, .client-strip::after { width: 46px; }
  .client-strip__track { gap: 12px; padding-left: 18px; }
  .client-logo { min-width: 142px; height: 68px; padding: 9px 14px; }
  .client-logo span { font-size: 19px; }
  .client-logo--celebrity { min-width: 176px; }
  .client-logo--celebrity::before { flex-basis: 38px; width: 38px; height: 38px; border-width: 4px; font-size: 22px; }
  .client-logo--celebrity span { font-size: 13px; }
  .client-logo--amazon span { font-size: 23px; }
  .client-logo--wipro::before { flex-basis: 30px; width: 30px; height: 30px; border-width: 3px; }
  .client-logo--hcl span, .client-logo--infosys span { font-size: 25px; }
  .client-logo--bharat { min-width: 174px; }
  .client-logo--bharat::before, .client-logo--tcs::before, .client-logo--juniper::before { flex-basis: 32px; width: 32px; height: 32px; }
  .client-logo--bharat span { font-size: 15px; }
  .client-logo--dell span { width: 48px; height: 48px; font-size: 16px; }
  .client-logo--jaguar { min-width: 166px; }
  .client-logo--jaguar span { font-size: 20px; }
  .client-logo--tcs, .client-logo--juniper { min-width: 184px; }
  .client-logo--tcs span { font-size: 13px; }
  .client-logo--juniper span { font-size: 17px; }
  .section { padding: 58px 0; }
  .section__title { font-size: 30px; }
  .image-stack { min-height: auto; }
  .image-stack img, .image-stack img:nth-child(2) { position: static; width: 100%; height: auto; margin-top: 14px; border: 0; }
  .service-card img, .project-card img { height: auto; aspect-ratio: 16 / 10; }
  .elite-form:not(.elite-form--detailed) { padding: 20px; }
  .elite-modal { padding: 10px; }
  .elite-modal__panel { height: calc(100vh - 20px); height: calc(100dvh - 20px); max-height: calc(100vh - 20px); padding: 0; }
  .elite-modal__header { padding: 20px 58px 17px 20px; }
  .elite-modal__header h2 { font-size: 25px; }
  .elite-modal__body { padding: 18px 20px; }
  .elite-modal__footer { padding: 14px 20px; }
  .elite-modal__footer .btn { width: 100%; min-width: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-actions { right: 14px; bottom: 14px; }
  .floating-actions a { width: 46px; height: 46px; }
  .floating-actions .floating-actions__enquiry { width: 46px; min-width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal-card { opacity: 1; transform: none; }
}

/* Automatic Doors refresh: product-led presentation with original brand assets. */
:root {
  --elite-navy: #08182f;
  --elite-ink: #17243a;
  --elite-muted: #607086;
  --elite-bg: #f3f6fa;
  --elite-amber: #ff7a1a;
  --elite-amber-dark: #d85b07;
  --elite-line: #dce5ef;
  --elite-shadow: 0 18px 55px rgba(8, 24, 47, 0.13);
}

.top-strip {
  background: linear-gradient(90deg, #071426, #0f2b4f);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
  min-height: 82px;
}

.brand {
  min-width: 250px;
}

.brand__logo {
  width: 238px;
  max-width: 28vw;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.main-nav a {
  font-size: 14px;
}

@media (min-width: 1081px) {
  .site-header__inner {
    gap: 18px;
  }

  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
  }

  .main-nav > a,
  .nav-group > a {
    padding-right: 9px;
    padding-left: 9px;
    white-space: nowrap;
  }

  .nav-products .nav-submenu,
  .nav-industries .nav-submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(500px, calc(100vw - 48px));
  }

  .nav-industries .nav-submenu {
    right: 0;
    left: auto;
  }

  .nav-submenu a {
    white-space: normal;
  }
}

@media (min-width: 1081px) and (max-width: 1320px) {
  .site-header__inner {
    gap: 12px;
  }

  .brand {
    min-width: 205px;
  }

  .brand__logo {
    width: 205px;
  }

  .main-nav > a,
  .nav-group > a {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 13px;
  }

  .header-cta {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }
}

.header-cta,
.btn--amber {
  background: linear-gradient(135deg, var(--elite-amber), var(--elite-amber-dark));
  box-shadow: 0 14px 30px rgba(216, 91, 7, 0.28);
}

.hero {
  min-height: 720px;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 24, 47, 0.76), rgba(8, 24, 47, 0.56) 52%, rgba(8, 24, 47, 0.44)),
    linear-gradient(0deg, rgba(8, 24, 47, 0.62), rgba(8, 24, 47, 0.18) 56%);
}

.hero__content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero__anniversary-badge {
  position: absolute;
  top: 34px;
  right: max(24px, calc((100vw - var(--elite-max)) / 2 + 8px));
  z-index: 3;
  width: clamp(122px, 12vw, 178px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 50%;
  box-shadow: 0 20px 52px rgba(0,0,0,.34);
}

.hero h1,
.section__title,
.page-hero h1,
.content-prose h2,
.site-footer h3,
.site-footer h4 {
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero p {
  margin-right: auto;
  margin-left: auto;
}

.hero .button-row {
  justify-content: center;
}

.hero-services__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.project-card,
.stat,
.elite-form,
.client-logo {
  border-radius: 8px;
}

.card__icon {
  background: #0f2b4f;
  border: 1px solid rgba(255, 122, 26, 0.28);
}

.media-panel {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  background: var(--elite-navy);
  border-radius: 8px;
  box-shadow: var(--elite-shadow);
}

.media-panel img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.media-panel__meta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--elite-white);
  background: rgba(8, 24, 47, 0.82);
  border: 1px solid rgba(255, 122, 26, 0.42);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.media-panel__meta strong {
  color: var(--elite-amber);
  font-size: 20px;
}

.services-grid {
  align-items: stretch;
}

.services-grid--support {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#products,
#services,
#industries {
  scroll-margin-top: 104px;
}

.section--industries {
  position: relative;
  overflow: hidden;
  color: var(--elite-white);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 122, 26, .2), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(42, 116, 184, .22), transparent 30%),
    linear-gradient(135deg, #071426, #0d294b 58%, #0b203a);
}

.section--industries::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.section--industries .container {
  position: relative;
  z-index: 1;
}

.industries-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.industries-heading .section__title {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--elite-white);
}

.industries-heading .section__lead {
  max-width: 650px;
  margin: 0;
  padding-left: 24px;
  color: rgba(255,255,255,.78);
  border-left: 3px solid var(--elite-amber);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.industry-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--elite-ink);
  background: var(--elite-white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,122,26,.72);
  box-shadow: 0 30px 74px rgba(0,0,0,.3);
}

.industry-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #153355;
}

.industry-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(7,20,38,.7));
  pointer-events: none;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.industry-card:hover img {
  transform: scale(1.055);
}

.industry-card__number {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 34px;
  color: var(--elite-white);
  background: rgba(255,122,26,.94);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.industry-card__body {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.industry-card h3 {
  margin: 0 0 9px;
  color: var(--elite-navy);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.industry-card p {
  margin: 0;
  color: var(--elite-muted);
}

.industry-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 22px;
  padding: 0;
  color: #405067;
  list-style: none;
}

.industry-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.45;
}

.industry-card li::before {
  position: absolute;
  top: .36em;
  left: 2px;
  width: 10px;
  height: 6px;
  content: "";
  border-bottom: 2px solid var(--elite-amber-dark);
  border-left: 2px solid var(--elite-amber-dark);
  transform: rotate(-45deg);
}

.industry-card__link {
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--elite-line);
}

.industry-card__link span {
  transition: transform .2s ease;
}

.industry-card__link:hover span,
.industry-card__link:focus span {
  transform: translateX(4px);
}

.service-card {
  position: relative;
  background: var(--elite-white);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--elite-amber), #1c5a96);
  z-index: 1;
}

.service-card img,
.project-card img {
  height: 230px;
}

.service-card__body {
  display: grid;
  gap: 12px;
}

.service-detail-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--elite-shadow);
}

.service-checklist li::marker {
  color: var(--elite-amber);
}

.service-process-grid {
  align-items: stretch;
}

.process-step {
  position: relative;
  min-height: 180px;
  padding-top: 74px;
  overflow: hidden;
}

.process-step__number {
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--elite-amber-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.process-step__number::after {
  display: inline-block;
  width: 42px;
  height: 2px;
  margin: 0 0 8px 12px;
  content: "";
  background: var(--elite-line);
}

.process-step h3 {
  margin-bottom: 0;
}

.service-card ul,
.content-prose ul,
.card ul {
  margin: 4px 0 10px;
  padding-left: 20px;
  color: var(--elite-muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--elite-line);
  border-radius: 8px;
  box-shadow: var(--elite-shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.office-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: 8px;
  box-shadow: var(--elite-shadow);
}

.office-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--elite-white);
  background: var(--elite-navy);
  border-radius: 8px;
}

.office-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.office-card h3 {
  margin: 0 0 8px;
  color: var(--elite-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.office-card p {
  margin: 0 0 12px;
  color: var(--elite-muted);
  line-height: 1.65;
}

.office-card a,
.office-grid__contact a {
  color: #b84400;
  font-weight: 800;
}

.office-card a:hover,
.office-grid__contact a:hover {
  color: var(--elite-navy);
}

.office-grid__contact {
  margin: 24px 0 0;
  color: var(--elite-muted);
  text-align: center;
}

.about-feature-grid {
  grid-template-columns: 1fr;
}

.footer-logo {
  width: 260px;
  max-width: 100%;
  height: 86px;
  padding: 12px 18px;
  object-fit: contain;
  background: var(--elite-white);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(8, 24, 47, 0.98), rgba(13, 38, 69, 0.96)),
    url("assets/images/ai-spider-fitting.png") center/cover;
}

@media (max-width: 1080px) {
  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 205px;
    max-width: calc(100vw - 100px);
    height: 58px;
  }

  .main-nav::before {
    content: "The Elite Automatic Doors";
  }

  .main-nav a {
    text-transform: none;
  }

  .main-nav .nav-group > a {
    width: 100%;
  }

  .main-nav .nav-submenu,
  .main-nav .nav-products .nav-submenu,
  .main-nav .nav-industries .nav-submenu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: auto;
    min-width: 0;
    margin: 0 0 8px;
    padding: 5px 11px 8px;
    background: rgba(255,255,255,.055);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .main-nav .nav-group.is-expanded .nav-submenu {
    display: grid;
  }

  .main-nav .nav-group.is-expanded > a {
    color: var(--elite-amber);
    border-bottom-color: transparent;
  }

  .main-nav .nav-group > a::after {
    transition: transform .18s ease;
  }

  .main-nav .nav-group.is-expanded > a::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .main-nav .nav-submenu a {
    min-height: 38px;
    padding: 7px 9px;
    color: rgba(255,255,255,.74);
    border-bottom-color: rgba(255,255,255,.075);
    font-size: 13px;
  }

  .hero-services__grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .industries-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .industries-heading .section__lead {
    max-width: 760px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand__logo {
    width: 172px;
    height: 48px;
  }

  .hero__content {
    text-align: left;
  }

  .hero__anniversary-badge {
    top: 6px;
    right: 18px;
    width: 78px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-services__grid,
  .video-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

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

  .industries-heading {
    margin-bottom: 30px;
  }

  .industries-heading .section__lead {
    padding-left: 16px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .office-card {
    padding: 22px;
  }

  .industry-card__body {
    padding: 22px;
  }

  .service-detail-image {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .media-panel,
  .media-panel img {
    min-height: 0;
    height: auto;
  }

  .media-panel img {
    aspect-ratio: 16 / 11;
  }
}

/* Blog and FAQ resources */
:root {
  --elite-resource-orange: #b84400;
}

#resources,
.faq-group {
  scroll-margin-top: 110px;
}

.nav-resources .nav-submenu {
  right: 0;
  left: auto;
  min-width: 230px;
}

.btn--outline-dark {
  color: var(--elite-navy);
  background: transparent;
  border-color: rgba(8, 24, 47, .34);
}

.btn--outline-dark:hover,
.btn--outline-dark:focus {
  color: var(--elite-white);
  background: var(--elite-navy);
  border-color: var(--elite-navy);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: var(--elite-amber);
}

.nav-resources a:focus-visible,
.breadcrumbs a:focus-visible,
.post-card h2 a:focus-visible,
.post-card h3 a:focus-visible,
.post-card__link:focus-visible,
.blog-pagination a:focus-visible,
.faq-jump-links a:focus-visible,
.article-back-link:focus-visible {
  outline: 3px solid var(--elite-resource-orange);
  outline-offset: 3px;
}

.section--resources {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 122, 26, .11), transparent 24%),
    linear-gradient(180deg, #f7f9fc, #edf3f8);
}

.section--resources::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(8,24,47,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,24,47,.026) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.section--resources > .container {
  position: relative;
  z-index: 1;
}

.resources-heading,
.blog-archive__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.resources-heading .section__title,
.blog-archive__intro .section__title {
  margin-bottom: 0;
}

.resources-heading .section__lead,
.blog-archive__intro .section__lead {
  max-width: 660px;
  margin-bottom: 20px;
  padding-left: 22px;
  border-left: 3px solid var(--elite-amber);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.post-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(8, 24, 47, .11);
  transition: opacity .72s ease var(--reveal-delay, 0ms), transform .72s ease var(--reveal-delay, 0ms), box-shadow .28s ease, border-color .28s ease;
}

.post-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 122, 26, .62);
  box-shadow: 0 28px 65px rgba(8, 24, 47, .17);
}

.post-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #153355;
}

.post-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(7, 20, 38, .66));
  pointer-events: none;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.045);
}

.post-card__category,
.article-hero__category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  color: var(--elite-white);
  background: var(--elite-resource-orange);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.post-card__category {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  max-width: calc(100% - 36px);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.post-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--elite-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
  margin: 12px 0 10px;
  color: var(--elite-navy);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.24;
}

.post-card h2 a:hover,
.post-card h2 a:focus,
.post-card h3 a:hover,
.post-card h3 a:focus {
  color: var(--elite-resource-orange);
}

.post-card__body > p {
  display: -webkit-box;
  margin: 0 0 20px;
  overflow: hidden;
  color: var(--elite-muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: auto;
  padding-top: 15px;
  color: var(--elite-resource-orange);
  border-top: 1px solid var(--elite-line);
  font-weight: 900;
}

.post-card__link span {
  transition: transform .2s ease;
}

.post-card__link:hover span,
.post-card__link:focus span {
  transform: translateX(4px);
}

.section--faq-preview {
  background:
    radial-gradient(circle at 4% 90%, rgba(255, 122, 26, .09), transparent 24%),
    var(--elite-white);
}

.faq-preview-layout,
.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 58px;
}

.faq-preview-intro,
.faq-sidebar {
  position: sticky;
  top: 118px;
}

.faq-preview-intro .section__lead {
  margin-bottom: 26px;
}

.faq-list,
.faq-groups {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(8, 24, 47, .065);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 122, 26, .58);
  box-shadow: inset 4px 0 0 var(--elite-amber), 0 16px 40px rgba(8, 24, 47, .1);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 18px 58px 18px 22px;
  color: var(--elite-navy);
  cursor: pointer;
  list-style: none;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  content: "";
  background-color: var(--elite-navy);
  background-image: linear-gradient(var(--elite-white), var(--elite-white)), linear-gradient(var(--elite-white), var(--elite-white));
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color .2s ease, transform .2s ease;
}

.faq-item[open] summary::after {
  background-color: var(--elite-resource-orange);
  background-image: linear-gradient(var(--elite-white), var(--elite-white));
  background-size: 12px 2px;
  transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
  color: var(--elite-resource-orange);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--elite-resource-orange);
  outline-offset: -3px;
}

.faq-item__answer {
  padding: 0 58px 22px 22px;
  color: var(--elite-muted);
}

.faq-item__answer p {
  max-width: 74ch;
  margin: 0;
}

.blog-archive-hero,
.faq-hero {
  min-height: 460px;
}

.blog-archive-hero img,
.faq-hero img {
  opacity: .53;
}

.blog-archive {
  background: var(--elite-bg);
}

.blog-pagination {
  margin-top: 48px;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--elite-navy);
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: 5px;
  font-weight: 800;
}

.blog-pagination .current,
.blog-pagination a:hover,
.blog-pagination a:focus {
  color: var(--elite-white);
  background: var(--elite-resource-orange);
  border-color: var(--elite-resource-orange);
}

.empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px;
  text-align: center;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: 10px;
  box-shadow: var(--elite-shadow);
}

.empty-state h2 {
  color: var(--elite-navy);
}

.resource-cta {
  position: relative;
  overflow: hidden;
  color: var(--elite-white);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 122, 26, .24), transparent 30%),
    linear-gradient(135deg, #071426, #0f3158);
}

.resource-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.resource-cta h2 {
  max-width: 850px;
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.resource-cta p:not(.section__eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.resource-cta .btn {
  flex: 0 0 auto;
}

.section--faq-page {
  background: var(--elite-bg);
}

.faq-sidebar {
  padding: 30px;
  background: linear-gradient(145deg, #08182f, #123b68);
  border: 1px solid rgba(255, 122, 26, .35);
  border-radius: 10px;
  box-shadow: var(--elite-shadow);
}

.faq-sidebar h2 {
  margin: 0 0 14px;
  color: var(--elite-white);
  font-size: 30px;
  line-height: 1.15;
}

.faq-sidebar > p:not(.section__eyebrow) {
  color: rgba(255,255,255,.73);
}

.faq-jump-links {
  display: grid;
  margin: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.faq-jump-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
}

.faq-jump-links a:hover,
.faq-jump-links a:focus {
  color: var(--elite-amber);
}

.faq-group {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-group__heading > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 40px;
  color: var(--elite-white);
  background: var(--elite-resource-orange);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
}

.faq-group__heading h2 {
  margin: 0;
  color: var(--elite-navy);
  font-size: 29px;
}

.article-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 640px;
  overflow: hidden;
  color: var(--elite-white);
  background: var(--elite-navy);
}

.article-hero > img,
.article-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.article-hero > img {
  object-fit: cover;
}

.article-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7,20,38,.94), rgba(7,20,38,.68) 58%, rgba(7,20,38,.3)),
    linear-gradient(0deg, rgba(7,20,38,.86), transparent 70%);
}

.article-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  padding: 94px 0 78px;
}

.article-hero__content .breadcrumbs {
  justify-content: flex-start;
}

.article-hero h1 {
  max-width: 1050px;
  margin: 18px 0 16px;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1.06;
}

.article-hero__content > p {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
}

.article-meta {
  color: rgba(255,255,255,.72);
}

.article-section {
  background: var(--elite-white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(270px, 330px);
  justify-content: center;
  align-items: start;
  gap: 64px;
}

.article-content {
  min-width: 0;
  color: #3f4e63;
  font-size: 18px;
  line-height: 1.82;
}

.article-content > p:first-of-type {
  color: var(--elite-ink);
  font-size: 21px;
  line-height: 1.7;
}

.article-content p {
  margin: 0 0 1.35em;
}

.article-content h2 {
  margin: 46px 0 15px;
  color: var(--elite-navy);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.2;
}

.article-content h3 {
  margin: 34px 0 12px;
  color: var(--elite-navy);
  font-size: 25px;
}

.article-content a:not(.btn):not(.text-link) {
  color: var(--elite-amber-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-takeaways {
  margin: 0 0 42px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #eff5fa, #fff7f0);
  border: 1px solid rgba(255, 122, 26, .34);
  border-left: 5px solid var(--elite-amber);
  border-radius: 8px;
}

.article-takeaways h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.article-takeaways ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-note {
  margin-top: 48px;
  padding: 28px;
  color: var(--elite-white);
  background: linear-gradient(135deg, #08182f, #123b68);
  border-radius: 8px;
}

.article-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--elite-amber);
  font-size: 22px;
}

.article-note p {
  margin-bottom: 12px;
  color: rgba(255,255,255,.78);
}

.article-note .text-link {
  color: #ffad70;
}

.section--faq-preview .btn--amber,
.faq-sidebar .btn--amber,
.resource-cta .btn--amber,
.article-sidebar .btn--amber {
  color: var(--elite-navy);
}

.article-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}

.article-sidebar__card {
  padding: 30px;
  color: var(--elite-white);
  background:
    radial-gradient(circle at 100% 0, rgba(255,122,26,.22), transparent 34%),
    linear-gradient(145deg, #08182f, #123b68);
  border: 1px solid rgba(255, 122, 26, .34);
  border-radius: 10px;
  box-shadow: var(--elite-shadow);
}

.article-sidebar__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--elite-amber);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
}

.article-sidebar__icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.article-sidebar h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.article-sidebar p:not(.section__eyebrow) {
  color: rgba(255,255,255,.75);
}

.article-sidebar .btn {
  width: 100%;
}

.article-sidebar__phone,
.article-back-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-weight: 800;
}

.article-sidebar__phone {
  color: rgba(255,255,255,.86);
}

.article-back-link {
  margin: 0;
  padding: 12px;
  color: var(--elite-navy);
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 82px;
}

.article-navigation > div:last-child {
  text-align: right;
}

.article-navigation a {
  display: grid;
  height: 100%;
  padding: 20px;
  background: var(--elite-bg);
  border: 1px solid var(--elite-line);
  border-radius: 8px;
}

.article-navigation a:hover,
.article-navigation a:focus {
  border-color: var(--elite-amber);
}

.article-navigation span {
  color: var(--elite-amber-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-navigation strong {
  margin-top: 5px;
  color: var(--elite-navy);
}

@media (max-width: 1080px) {
  .nav-resources .nav-submenu {
    right: auto;
    min-width: 0;
  }

  .resources-heading,
  .blog-archive__intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .resources-heading .section__lead,
  .blog-archive__intro .section__lead {
    max-width: 760px;
  }

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

  .faq-preview-layout,
  .faq-page-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-preview-intro,
  .faq-sidebar,
  .article-sidebar {
    position: static;
  }

  .faq-sidebar {
    max-width: none;
  }

  .article-sidebar__card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0 24px;
  }

  .article-sidebar__icon {
    grid-row: 1 / span 4;
    margin: 0;
  }

  .article-sidebar__card .section__eyebrow,
  .article-sidebar__card h2,
  .article-sidebar__card p {
    grid-column: 2;
  }

  .article-sidebar__card .btn,
  .article-sidebar__phone {
    grid-column: 3;
  }
}

@media (max-width: 680px) {
  .breadcrumbs {
    justify-content: flex-start;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-card__body {
    padding: 21px;
  }

  .post-card h2,
  .post-card h3 {
    font-size: 22px;
  }

  .resources-heading .section__lead,
  .blog-archive__intro .section__lead {
    padding-left: 16px;
  }

  .faq-preview-layout,
  .faq-page-layout {
    gap: 30px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 16px 54px 16px 18px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 17px;
  }

  .faq-item__answer {
    padding: 0 18px 19px;
  }

  .faq-sidebar,
  .article-sidebar__card,
  .article-takeaways,
  .article-note {
    padding: 23px;
  }

  .resource-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-cta .btn {
    width: 100%;
  }

  .article-hero {
    min-height: 590px;
  }

  .article-hero__content {
    padding: 68px 0 58px;
  }

  .article-hero h1 {
    font-size: 39px;
  }

  .article-hero__content > p {
    font-size: 17px;
  }

  .article-content,
  .article-content > p:first-of-type {
    font-size: 17px;
  }

  .article-content h2 {
    margin-top: 38px;
    font-size: 28px;
  }

  .article-sidebar__card {
    display: block;
  }

  .article-sidebar__icon {
    margin-bottom: 18px;
  }

  .article-sidebar__phone {
    margin-top: 14px;
  }

  .article-navigation {
    grid-template-columns: 1fr;
    padding-bottom: 58px;
  }

  .article-navigation > div:last-child {
    text-align: left;
  }

  .empty-state {
    padding: 32px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-card,
  .post-card__media img,
  .post-card__link span {
    transition: none;
  }

  .post-card:hover,
  .post-card:hover .post-card__media img {
    transform: none;
  }
}
