:root {
  --blue: #0080ff;
  --green: #10b981;
  --orange: #f97316;
  --pink: #ec4899;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --ink: #0f172a;
  --muted: #627084;
  --line: rgba(15, 23, 42, 0.1);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
  --tech-shadow: 0 28px 90px rgba(0, 128, 255, 0.16), 0 18px 48px rgba(15, 23, 42, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(236, 247, 255, 0.72), rgba(248, 251, 255, 0.74) 42%, rgba(243, 255, 248, 0.78)),
    url("assets/tech-pattern-opt.jpg") center top / cover fixed no-repeat,
    #f8fbff;
  letter-spacing: 0;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange), var(--pink));
  box-shadow: 0 0 22px rgba(0, 128, 255, 0.45);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 128, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.055) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 76%, transparent);
  animation: gridDrift 18s linear infinite;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(16px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease, top 180ms ease;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(0, 128, 255, 0.18) 28%, rgba(16, 185, 129, 0.14) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: sheen 6s ease-in-out infinite;
}

.site-header[data-elevated="true"] {
  top: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.18);
}

.site-header.is-open {
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 17px;
  font-weight: 850;
}

.brand img,
.site-footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
}

.site-footer img {
  width: 58px;
  height: 58px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.76);
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
  background: rgba(0, 128, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 128, 255, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px max(24px, calc((100vw - 1120px) / 2)) 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero-background-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.02);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78) 47%, rgba(255, 255, 255, 0.28) 84%),
    linear-gradient(0deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0) 34%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines span {
  position: absolute;
  left: 6%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 212, 255, 0.7), rgba(16, 185, 129, 0.55), transparent);
  background-size: 240% 100%;
  animation: routeSweep 7s linear infinite;
}

.hero-lines span:nth-child(1) {
  top: 28%;
}

.hero-lines span:nth-child(2) {
  top: 46%;
  animation-delay: -2.2s;
}

.hero-lines span:nth-child(3) {
  top: 64%;
  animation-delay: -4.4s;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: center;
  padding-bottom: 46px;
}

.hero-content {
  width: min(680px, 100%);
  color: var(--ink);
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
  animation: titleRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  color: #061827;
  text-shadow: 0 18px 42px rgba(0, 128, 255, 0.12);
}

.hero h1 span:nth-child(2) {
  color: var(--green);
}

h1 span:nth-child(2) {
  animation-delay: 110ms;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: rgba(15, 23, 42, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #06b6d4 54%, #10b981);
  box-shadow: 0 16px 34px rgba(0, 128, 255, 0.28);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero .button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(0, 128, 255, 0.14);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(840px, 100%);
  padding: 6px;
  color: rgba(15, 23, 42, 0.86);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: var(--tech-shadow);
  animation: panelFloat 4.8s ease-in-out infinite;
}

.hero-panel span {
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

.cylinder-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 34px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 128, 255, 0.16), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(236, 247, 255, 0.46));
  border-radius: 8px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--tech-shadow);
  overflow: hidden;
  animation: cylinderEnter 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.cylinder-hero::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(0, 128, 255, 0.14);
  border-radius: 50%;
  transform: rotate(-16deg) scaleX(0.76);
}

.cylinder-hero img {
  position: relative;
  z-index: 2;
  width: min(250px, 72%);
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(15, 23, 42, 0.22));
  animation: cylinderFloat 5.8s ease-in-out infinite;
}

.cylinder-orbit {
  position: absolute;
  inset: 76px 32px;
  border: 1px dashed rgba(0, 128, 255, 0.22);
  border-radius: 50%;
  transform: rotate(16deg);
  animation: orbitSpin 18s linear infinite;
}

.cylinder-orbit::before,
.cylinder-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.12);
}

.cylinder-orbit::before {
  top: 18%;
  right: 12%;
}

.cylinder-orbit::after {
  left: 11%;
  bottom: 20%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12);
}

.cylinder-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: rgba(15, 23, 42, 0.78);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.chip-a {
  top: 16%;
  left: 6%;
}

.chip-b {
  right: 5%;
  top: 46%;
}

.chip-c {
  left: 12%;
  bottom: 14%;
}

.tech-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(920px, 100%);
  margin-bottom: 14px;
}

.tech-rail div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px;
  color: rgba(15, 23, 42, 0.76);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.rail-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
}

.rail-dot.blue { background: var(--blue); }
.rail-dot.green { background: var(--green); }
.rail-dot.orange { background: var(--orange); }

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 92px;
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.safety-copy h2,
.dealership-content h2,
.contact-panel h2 {
  color: #0b1220;
}

.section-heading p:not(.eyebrow),
.copy-block p,
.safety-copy p,
.dealership-content p,
.contact-panel p,
.service-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.glass,
.metric-card,
.service-card,
.contact-form,
.contact-panel,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--glass);
  border-radius: 8px;
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  box-shadow: var(--shadow);
}

.glass::before,
.metric-card::before,
.service-card::before,
.contact-form::before,
.contact-panel::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.2));
  opacity: 0.55;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tilt-card:hover {
  border-color: color-mix(in srgb, var(--accent, var(--blue)) 34%, white);
  box-shadow: var(--tech-shadow);
}

.about-layout,
.safety-section,
.dealership-inner,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 26px;
  align-items: center;
}

.copy-block {
  padding: 34px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  align-items: end;
}

.image-stack img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img + img {
  height: 270px;
  margin-bottom: -26px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-card {
  padding: 22px;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, white);
  border-radius: 8px;
}

.metric-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.network-section {
  width: min(1180px, calc(100% - 32px));
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.network-metrics {
  grid-template-columns: 1fr 1fr;
}

.south-map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 23% 17%, rgba(0, 128, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 70%, rgba(16, 185, 129, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: var(--tech-shadow);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.south-map-card::before {
  content: "South India Coverage";
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 2;
  padding: 9px 12px;
  color: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.south-map {
  position: absolute;
  inset: 34px 8px 12px;
  width: calc(100% - 16px);
  height: calc(100% - 46px);
  filter: drop-shadow(0 22px 34px rgba(15, 23, 42, 0.12));
}

.map-sea {
  fill: rgba(0, 128, 255, 0.08);
}

.state {
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 5;
  stroke-linejoin: round;
}

.state-karnataka {
  fill: rgba(0, 128, 255, 0.72);
}

.state-tamil {
  fill: rgba(16, 185, 129, 0.74);
}

.state-puducherry {
  fill: rgba(236, 72, 153, 0.84);
  stroke-width: 4;
}

.state-telangana {
  fill: rgba(124, 58, 237, 0.72);
}

.state-andhra {
  fill: rgba(249, 115, 22, 0.74);
}

.map-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  animation: routeDash 2.8s linear infinite;
}

.map-route-alt {
  stroke: rgba(0, 128, 255, 0.48);
  animation-duration: 3.4s;
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 11px;
  color: rgba(15, 23, 42, 0.78);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.map-pin i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(0, 128, 255, 0.13);
}

.pin-karnataka {
  left: 25%;
  top: 43%;
}

.pin-tamil {
  left: 45%;
  bottom: 14%;
}

.pin-puducherry {
  right: 15%;
  bottom: 28%;
}

.pin-telangana {
  left: 47%;
  top: 18%;
}

.pin-andhra {
  right: 7%;
  top: 41%;
}

.pin-tamil i {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.13);
}

.pin-puducherry i {
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(236, 72, 153, 0.13);
}

.pin-telangana i {
  background: var(--violet);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.13);
}

.pin-andhra i {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.13);
}

.services-section {
  width: min(1180px, calc(100% - 32px));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 680ms ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card div {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.tag.blue {
  color: #005ebd;
  background: rgba(0, 128, 255, 0.12);
}

.tag.green {
  color: #047857;
  background: rgba(16, 185, 129, 0.14);
}

.tag.pink {
  color: #be185d;
  background: rgba(236, 72, 153, 0.13);
}

.safety-section {
  grid-template-columns: 0.86fr 1fr;
}

.safety-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.safety-media {
  position: relative;
}

.safety-media::after {
  content: "Safety layer active";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(8, 18, 35, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.safety-copy {
  padding-left: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 44px;
  color: #263247;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange), var(--pink));
  opacity: 0.42;
}

.process-card {
  padding: 24px;
  min-height: 220px;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 950;
  background: color-mix(in srgb, var(--accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, white);
  border-radius: 8px;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 18%, transparent);
}

.process-card p {
  color: var(--muted);
  line-height: 1.6;
}

.services-process {
  margin-top: 18px;
}

.dealership-section {
  padding: 76px 34px;
  width: 100%;
  max-width: none;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(236, 247, 255, 0.72) 48%, rgba(239, 255, 248, 0.76)),
    rgba(255, 255, 255, 0.78);
  border-block: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 54px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dealership-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 26px;
  align-items: center;
}

.dealership-content {
  max-width: 620px;
}

.partner-options {
  display: grid;
  gap: 12px;
}

.partner-card {
  position: relative;
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 5px;
  background: var(--accent);
}

.partner-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 950;
  background: color-mix(in srgb, var(--accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, white);
  border-radius: 8px;
}

.partner-card h3 {
  margin-bottom: 8px;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.app-section {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
}

.app-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.app-feature-grid span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(15, 23, 42, 0.78);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.app-showcase {
  position: relative;
  min-height: 680px;
}

.app-showcase::before {
  content: "";
  position: absolute;
  inset: 58px 16px 74px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 22%, rgba(0, 128, 255, 0.22), transparent 36%),
    radial-gradient(circle at 76% 62%, rgba(16, 185, 129, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--tech-shadow);
}

.phone-shot {
  position: absolute;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(15, 23, 42, 0.16));
}

.phone-shot-main {
  right: 12%;
  top: 0;
  width: min(290px, 48vw);
  height: 620px;
  transform: rotate(2deg);
}

.phone-shot-secondary {
  left: 5%;
  bottom: 18px;
  width: min(250px, 42vw);
  height: 540px;
  transform: rotate(-5deg);
}

.phone-shot-main.reveal {
  transform: translateY(24px) rotate(2deg);
}

.phone-shot-main.reveal.is-visible {
  transform: rotate(2deg);
}

.phone-shot-secondary.reveal {
  transform: translateY(24px) rotate(-5deg);
}

.phone-shot-secondary.reveal.is-visible {
  transform: rotate(-5deg);
}

.contact-section {
  align-items: stretch;
}

.contact-panel,
.contact-form {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 15px;
  background: var(--glass-strong);
}

label {
  display: grid;
  gap: 8px;
  color: #263247;
  font-size: 13px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(0, 128, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 128, 255, 0.12);
}

.site-footer {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 0.72fr 0.64fr 1.45fr auto;
  align-items: start;
  gap: 16px;
  padding: 24px max(16px, calc((100vw - 1120px) / 2));
  color: rgba(15, 23, 42, 0.72);
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand strong,
.footer-addresses strong,
.footer-links strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 900;
}

.site-footer p,
.site-footer address {
  margin: 0;
}

.footer-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: rgba(15, 23, 42, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.site-footer address {
  color: rgba(15, 23, 42, 0.68);
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer a {
  color: var(--blue);
  font-weight: 850;
}

.footer-top {
  white-space: nowrap;
}

.footer-legal {
  width: 100%;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  color: rgba(15, 23, 42, 0.62);
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
}

.page-main {
  padding-top: 74px;
}

.page-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 24px 86px;
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 128, 255, 0.88), rgba(16, 185, 129, 0.72)),
    #0f172a;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(112%) contrast(104%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.26), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(16, 185, 129, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(8, 18, 35, 0.14), rgba(8, 18, 35, 0.68));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(to top, #f8fbff, transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.page-hero-title {
  margin: 0;
  color: white;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
}

.page-hero-copy {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.72;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: white;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.16);
}

.page-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.page-section.tight {
  padding-top: 34px;
}

.page-intro-grid,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
}

.content-card,
.detail-card,
.step-card,
.page-cta {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.content-card {
  padding: 34px;
}

.content-card p,
.detail-card p,
.step-card p,
.page-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.content-card h2,
.detail-card h2,
.page-cta h2 {
  margin-top: 0;
}

.media-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--tech-shadow);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.mini-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mini-stat {
  position: relative;
  padding: 18px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.mini-stat-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  font-size: 16px;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.14), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(0, 128, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 128, 255, 0.1);
}

.mini-stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.mini-stat > span:not(.mini-stat-icon) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  padding: 24px;
}

.detail-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
}

.about-row-stack,
.wide-row-stack {
  display: grid;
  gap: 18px;
}

.about-row-card,
.wide-row-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.about-row-card:nth-child(even),
.wide-row-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.about-row-card:nth-child(even) img,
.wide-row-card:nth-child(even) img {
  order: 2;
}

.about-row-card img,
.wide-row-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.about-row-card div,
.wide-row-card div {
  padding: 12px 14px;
}

.about-row-card p:not(.eyebrow),
.wide-row-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.wide-row-card.no-media {
  grid-template-columns: 84px minmax(0, 1fr);
}

.wide-row-card.no-media:nth-child(even) {
  grid-template-columns: 84px minmax(0, 1fr);
}

.row-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--accent, var(--blue));
  font-size: 28px;
  background: color-mix(in srgb, var(--accent, var(--blue)) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent, var(--blue)) 28%, white);
  border-radius: 8px;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent, var(--blue)) 16%, transparent);
}

.cylinder-media-card {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  background:
    radial-gradient(circle at 52% 45%, rgba(16, 185, 129, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.68);
}

.cylinder-media-card img {
  width: min(230px, 72%);
  height: auto;
  min-height: 0;
  max-height: 320px;
  object-fit: contain;
}

.feature-list,
.step-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-list li,
.step-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  color: rgba(15, 23, 42, 0.76);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.step-list {
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: white;
  font-size: 12px;
  font-weight: 950;
  background: var(--blue);
  border-radius: 7px;
}

.page-band {
  width: 100%;
  padding: 88px 0;
  background:
    linear-gradient(120deg, rgba(236, 247, 255, 0.78), rgba(255, 255, 255, 0.66), rgba(239, 255, 248, 0.72));
  border-block: 1px solid rgba(255, 255, 255, 0.8);
}

.page-band-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 128, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 74%, rgba(16, 185, 129, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.74);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portal-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--accent, var(--blue)) 20%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 5px;
  background: var(--accent, var(--blue));
}

.portal-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--accent, var(--blue));
  font-size: 24px;
  font-weight: 950;
  background: color-mix(in srgb, var(--accent, var(--blue)) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent, var(--blue)) 30%, white);
  border-radius: 8px;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent, var(--blue)) 16%, transparent);
}

.portal-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.portal-card p {
  color: var(--muted);
  line-height: 1.65;
}

.portal-card .button {
  width: 100%;
  margin-top: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible:nth-child(2) {
  transition-delay: 70ms;
}

.reveal.is-visible:nth-child(3) {
  transition-delay: 140ms;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 78px 78px; }
}

@keyframes sheen {
  0%, 48% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes routeSweep {
  from { background-position: 240% 0; opacity: 0; }
  16%, 76% { opacity: 1; }
  to { background-position: -140% 0; opacity: 0; }
}

@keyframes routeDash {
  to { stroke-dashoffset: -42; }
}

@keyframes titleRise {
  from { transform: translateY(34px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cylinderEnter {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cylinderFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

@keyframes orbitSpin {
  to { transform: rotate(376deg); }
}

@media (max-width: 900px) {
  body {
    background:
      linear-gradient(115deg, rgba(236, 247, 255, 0.82), rgba(248, 251, 255, 0.86) 42%, rgba(243, 255, 248, 0.86)),
      url("assets/tech-pattern-opt.jpg") center top / 900px auto repeat,
      #f8fbff;
  }

  .site-header,
  .site-nav,
  .glass,
  .hero-panel,
  .cylinder-hero,
  .metric-card,
  .service-card,
  .process-card,
  .south-map-card,
  .copy-block,
  .contact-form,
  .contact-panel,
  .dealership-section,
  .content-card,
  .detail-card,
  .step-card,
  .page-cta,
  .about-row-card,
  .wide-row-card,
  .portal-card,
  .site-footer {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header,
  .site-nav {
    background: rgba(255, 255, 255, 0.9);
  }

  .site-header::before,
  .ambient-grid,
  h1 span,
  .hero-lines span,
  .hero-panel,
  .cylinder-hero img,
  .cylinder-hero::before,
  .map-route {
    animation: none;
  }

  .ambient-grid {
    opacity: 0.34;
    background-size: 112px 112px;
  }

  .tilt-card,
  .tilt-card:hover,
  .hero-background-image,
  .page-hero-media {
    transform: none !important;
  }

  .hero-background-image,
  .page-hero-media {
    filter: none;
  }

  .hero-background-image {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82) 52%, rgba(255, 255, 255, 0.46) 100%),
      linear-gradient(0deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0) 38%);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .hero {
    min-height: 88vh;
    padding-top: 128px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-bottom: 26px;
  }

  .cylinder-hero {
    max-width: 560px;
  }

  .hero-panel,
  .metric-grid,
  .network-layout,
  .service-grid,
  .about-layout,
  .safety-section,
  .dealership-inner,
  .contact-section,
  .page-intro-grid,
  .split-feature,
  .detail-grid,
  .about-row-card,
  .about-row-card:nth-child(even),
  .wide-row-card,
  .wide-row-card:nth-child(even),
  .opportunity-grid,
  .portal-grid,
  .page-cta {
    grid-template-columns: 1fr;
  }

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

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

  .process-card {
    min-height: 0;
    padding: 20px;
  }

  .process-card span {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
  }

  .south-map-card {
    min-height: 520px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img + img,
  .safety-media img {
    height: 310px;
    margin: 0;
  }

  .safety-copy {
    padding-left: 0;
  }

  .app-section {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    min-height: 610px;
  }

  .process-track::before {
    display: none;
  }

  .about-row-card:nth-child(even) img {
    order: 0;
  }

  .wide-row-card:nth-child(even) img {
    order: 0;
  }

  .wide-row-card.no-media,
  .wide-row-card.no-media:nth-child(even) {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .mini-stat-strip {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    top: 0;
    width: 100%;
    padding-inline: 14px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero {
    padding-inline: 16px;
    min-height: 88vh;
    padding-top: 128px;
    background: transparent;
  }

  .hero-background-image,
  .hero-scrim,
  .hero-lines {
    inset: 0;
    height: 100%;
  }

  .hero-background-image {
    object-fit: cover;
    object-position: 63% center;
    opacity: 0.82;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 42%, rgba(248, 251, 255, 0.98) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.66) 62%, rgba(255, 255, 255, 0.34));
  }

  .hero-lines {
    display: block;
    opacity: 0.45;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-panel,
  .metric-grid,
  .process-track,
  .tech-rail,
  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .services-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .services-process .process-card {
    padding: 14px;
  }

  .services-process .process-card span {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .services-process .process-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .services-process .process-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .network-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .network-metrics .metric-card {
    padding: 14px;
  }

  .network-metrics .metric-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .network-metrics .metric-icon svg {
    width: 22px;
    height: 22px;
  }

  .network-metrics .metric-card strong {
    font-size: 28px;
  }

  .network-metrics .metric-card p {
    font-size: 13px;
    line-height: 1.35;
  }

  .tech-rail {
    display: grid;
  }

  .cylinder-hero {
    min-height: 280px;
    max-width: 100%;
    padding: 18px;
  }

  .cylinder-hero img {
    width: min(150px, 54%);
    max-height: 250px;
  }

  .cylinder-chip {
    display: none;
  }

  .section {
    width: calc(100% - 24px);
    padding: 88px 0 70px;
    scroll-margin-top: 104px;
  }

  .network-section {
    width: calc(100% - 24px);
  }

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

  .south-map-card {
    min-height: 470px;
  }

  .map-pin {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 10px;
  }

  .pin-karnataka {
    left: 10%;
  }

  .pin-telangana {
    left: 38%;
  }

  .pin-andhra {
    right: 2%;
  }

  .pin-tamil {
    left: 33%;
  }

  .pin-puducherry {
    right: 4%;
  }

  .copy-block,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .service-card img {
    height: 190px;
  }

  .app-showcase {
    min-height: 520px;
  }

  .phone-shot-main {
    right: 0;
    width: 58%;
    height: 480px;
  }

  .phone-shot-secondary {
    left: 0;
    width: 50%;
    height: 420px;
  }

  .dealership-section {
    width: 100%;
    padding: 38px 18px;
  }

  .page-hero {
    min-height: 58vh;
    padding: 112px 18px 66px;
  }

  .page-hero-copy {
    font-size: 16px;
  }

  .page-section {
    width: calc(100% - 24px);
    padding: 72px 0;
  }

  .page-band {
    padding: 64px 0;
  }

  .content-card,
  .detail-card,
  .step-card,
  .page-cta {
    padding: 22px;
  }

  .media-card,
  .media-card img,
  .media-card video {
    min-height: 300px;
  }

  .about-row-card {
    padding: 14px;
  }

  .about-row-card img,
  .wide-row-card img {
    height: 240px;
  }

  .wide-row-card {
    padding: 14px;
  }

  .wide-row-card.no-media,
  .wide-row-card.no-media:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .row-icon {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .cylinder-media-card {
    min-height: 280px;
  }

  .cylinder-media-card img {
    width: min(190px, 68%);
    max-height: 250px;
  }

  .mini-stat-strip {
    grid-template-columns: 1fr;
  }

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

  .portal-card {
    min-height: 280px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-addresses {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@supports not (backdrop-filter: blur(12px)) {
  .site-header,
  .glass,
  .metric-card,
  .service-card,
  .contact-form,
  .contact-panel,
  .hero-panel,
  .site-footer {
    background: rgba(255, 255, 255, 0.92);
  }
}
