/*
Theme Name: ATS IPL
Theme URI: https://atsgroup.arsafetyinvisiblegrill.in/
Author: Codex
Description: Custom WordPress theme for ATS IPL product landing pages.
Version: 2.4.23
Text Domain: atsgroup-products-theme
*/
:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-alt: #eef2f5;
  --text: #12212f;
  --muted: #5e7184;
  --line: #d8e0e7;
  --brand: #ff5e14;
  --brand-dark: #d94804;
  --dark: #0f1b27;
  --font-body: "Poppins", sans-serif;
  --font-heading: "Roboto Condensed", sans-serif;
  --shadow: 0 22px 55px rgba(12, 26, 38, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  background: linear-gradient(180deg, #edf3f8 0%, #f8fafc 28%, #eff2f6 100%);
  color: var(--text);
  overflow-x: hidden;
}

input,
textarea,
select,
button {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: var(--font-heading);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 33, 47, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  position: relative;
}

.brand img {
  width: 165px;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-nav a:hover {
  color: var(--brand);
}

.site-nav > a,
.nav-dropbtn-link {
  padding: 10px 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  display: none;
}

.nav-dropdown:hover::after,
.nav-dropdown.open::after {
  display: block;
}

.nav-drop-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-dropbtn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

.nav-dropbtn-link {
  display: inline-flex;
}

.nav-drop-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}

.nav-drop-toggle span {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-drop-toggle span {
  transform: rotate(45deg);
}

.nav-dropbtn:hover,
.nav-dropdown:hover .nav-dropbtn,
.nav-dropdown.open .nav-dropbtn {
  color: var(--brand);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 224, 231, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.nav-dropdown-menu.mega-menu {
  left: auto;
  right: 0;
  width: min(1120px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  grid-template-areas:
    "vehicle durability adas ev powertrain"
    "vehicle durability adas passive component"
    "lightweighting lightweighting nvh passive component";
  align-items: start;
  gap: 18px 24px;
}

.nav-dropdown-menu.services-mega-menu {
  width: min(520px, calc(100vw - 32px));
  grid-template-columns: 1fr;
  grid-template-areas: "services-labs";
}

.nav-subgroup {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(18, 33, 47, 0.08);
}

.nav-dropdown-menu.mega-menu .nav-subgroup {
  min-width: 0;
  padding-top: 0;
  border-top: 0;
  align-content: start;
}

.nav-dropdown:hover .nav-dropdown-menu.mega-menu,
.nav-dropdown.open .nav-dropdown-menu.mega-menu {
  display: grid;
}

.nav-subgroup.group-vehicle {
  grid-area: vehicle;
}

.nav-subgroup.group-durability {
  grid-area: durability;
}

.nav-subgroup.group-adas {
  grid-area: adas;
}

.nav-subgroup.group-ev {
  grid-area: ev;
}

.nav-subgroup.group-powertrain {
  grid-area: powertrain;
}

.nav-subgroup.group-passive {
  grid-area: passive;
}

.nav-subgroup.group-component {
  grid-area: component;
}

.nav-subgroup.group-lightweighting {
  grid-area: lightweighting;
}

.nav-subgroup.group-nvh {
  grid-area: nvh;
}

.nav-subgroup.group-services-labs {
  grid-area: services-labs;
}

.nav-subgroup-title {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-subgroup a {
  padding-left: 14px;
  position: relative;
}

.nav-subgroup a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
}

.nav-dropdown:hover .nav-dropdown-menu:not(.mega-menu),
.nav-dropdown.open .nav-dropdown-menu:not(.mega-menu) {
  display: flex;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 94, 20, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 94, 20, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T172255.202.webp") center/cover;
}

.hero-sensors {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T160805.405.webp") center/cover;
}

.hero-about {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/photo-1520607162513-77705c0f0d4a.jpg") center/cover;
}

.hero-products {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/photo-1492144534655-ae79c964c9d7.jpg") center/cover;
}

.hero-data-loggers {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ARGFT-BASE_and_BASE-W-LAN.png") center/contain no-repeat,
    linear-gradient(135deg, #16324a, #0f1b27);
}

.hero-driving-robots {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T152212.987.webp") center/cover;
}

.hero-adas-soft-target {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-09T110334.129.webp") center/cover;
}

.hero-electric-vehicle {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-09T165906.086.webp") center/cover;
}

.hero-soft-target-platforms {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-08T172010.038.webp") center/cover;
}

.hero-power-train {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/12.webp") center/cover;
}

.hero-passive-safety {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-08T105924.190.webp") center/cover;
}

.hero-impactor {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-08T151741.108.webp") center/cover;
}

.hero-inertial-navigation {
  background:
    linear-gradient(rgba(15, 27, 39, 0.74), rgba(15, 27, 39, 0.68)),
    url("https://www.oxts.com/wp-content/uploads/2025/04/7306-0350-Black.jpg") center/cover;
}

.hero-sensors-telemetry {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T161010.911.webp") center/cover;
}

.hero-wheel-force {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-06T105733.640.webp") center/cover;
}

.hero-sensors-telemetry-1 {
  background:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T161152.017.webp") center/cover;
}

.hero-software {
  background:
    linear-gradient(rgba(15, 27, 39, 0.74), rgba(15, 27, 39, 0.68)),
    url("../images/photo-1518773553398-650c184e0bb3.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -80px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.42) 0%, rgba(255, 94, 20, 0) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: #ffb185;
}

.hero h1,
.section-heading h2,
.content-card h2,
.cta-inner h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 18px;
  color: #fff;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-slider {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.7s ease, background-position 0.2s linear;
}

.home-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.home-slide-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 120px 0 110px;
  max-width: 780px;
  transform: translateY(var(--slide-offset, 0px));
  transition: transform 0.2s linear;
}

.home-slide h1,
.home-slide h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: #fff;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.38);
}

.slider-dot.active {
  background: var(--brand);
}

.home-slider.is-scrolling .home-slide.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 35px rgba(255, 94, 20, 0.28);
}

.btn-light {
  color: var(--dark);
  background: #fff;
}

.section {
  padding: 88px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.split-grid.image-removed {
  grid-template-columns: minmax(0, 1fr);
}

.map-address {
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 91, 30, 0.28);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
}

.service-image-removed > .elementor-container > .elementor-column {
  width: 100% !important;
  flex-basis: 100% !important;
  max-width: 100% !important;
}

.service-image-removed > .elementor-container {
  display: block !important;
}

.content-card,
.image-card,
.contact-card,
.faq-list details,
.product-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 224, 231, 0.8);
  box-shadow: var(--shadow);
}

.content-card,
.contact-card {
  height: 100%;
  padding: 38px;
  border-radius: var(--radius);
}

.content-card h2,
.section-heading h2,
.cta-inner h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.content-card p,
.contact-card p {
  margin: 0;
  line-height: 1.9;
  color: var(--muted);
}

.content-card p + p {
  margin-top: 18px;
}

.divider {
  width: 90px;
  height: 4px;
  margin: 20px 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ffb28e);
}

.image-card {
  height: 100%;
  min-height: 360px;
  padding: 14px;
  border-radius: 30px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.image-card.tall img {
  max-height: 700px;
  object-fit: contain;
  background: #fff;
}

.products.muted,
.split.alt,
.faq-section {
  background: linear-gradient(180deg, rgba(231, 237, 242, 0.65), rgba(248, 250, 252, 0));
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(12, 26, 38, 0.16);
}

.product-card img {
  aspect-ratio: 10 / 7;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.cta-band {
  padding: 36px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 38px;
  background: linear-gradient(135deg, #fff3eb, #ffe1cf);
  border: 1px solid rgba(255, 94, 20, 0.15);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  max-width: 720px;
}

.cta-band.dark .cta-inner {
  background: linear-gradient(135deg, #102030, #1a3147);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
}

.cta-band.dark .cta-inner h2 {
  color: #fff;
}

.cta-band.dark .cta-inner .btn-light {
  color: var(--dark);
  background: #fff;
}

.elementor-section.cta-band.restored-cta-section {
  padding: 36px 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.2), rgba(238, 243, 247, 0.74));
}

.elementor-section.cta-band.restored-cta-section > .elementor-container {
  width: min(1200px, calc(100% - 40px));
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 30px;
  border: 1px solid rgba(255, 94, 20, 0.18);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 94, 20, 0.13), transparent 34%),
    linear-gradient(135deg, #fffaf6 0%, #ffe8d8 46%, #ffffff 100%);
  box-shadow:
    0 26px 70px rgba(12, 26, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.elementor-section.cta-band.restored-cta-section > .elementor-container::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), rgba(255, 94, 20, 0.18), transparent);
}

.elementor-section.cta-band.restored-cta-section > .elementor-container > .elementor-column {
  width: 100% !important;
}

.elementor-section.cta-band.restored-cta-section .elementor-widget-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
}

.elementor-section.cta-band.restored-cta-section .restored-cta-copy .elementor-widget-wrap {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-right: clamp(0px, 3vw, 28px);
}

.elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 94, 20, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.elementor-section.cta-band.restored-cta-section .section-tag {
  margin: 0;
  color: var(--brand);
  background: rgba(255, 94, 20, 0.08);
  border-color: rgba(255, 94, 20, 0.2);
}

.elementor-section.cta-band.restored-cta-section .elementor-heading-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 0.98;
  color: var(--text);
}

.elementor-section.cta-band.restored-cta-section .elementor-widget-text-editor p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.elementor-section.cta-band.restored-cta-section .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(255, 94, 20, 0.26);
}

.elementor-section.cta-band.restored-cta-section .cta-note {
  max-width: 260px;
  color: #6a7886;
  font-size: 0.92rem;
  line-height: 1.65;
}

.elementor-section.cta-band.dark.restored-cta-section > .elementor-container {
  border-color: rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 94, 20, 0.18), transparent 32%),
    linear-gradient(135deg, #090d12 0%, #111b26 50%, #05070a 100%);
}

.elementor-section.cta-band.dark.restored-cta-section > .elementor-container::before {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.16), transparent);
}

.elementor-section.cta-band.dark.restored-cta-section .elementor-heading-title {
  color: #fff;
}

.elementor-section.cta-band.dark.restored-cta-section .section-tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.elementor-section.cta-band.dark.restored-cta-section .elementor-widget-text-editor p {
  color: rgba(255, 255, 255, 0.74);
}

.elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-widget-wrap {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.elementor-section.cta-band.dark.restored-cta-section .elementor-button {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  border-radius: 22px;
  padding: 0 24px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 600;
  position: relative;
  padding-right: 32px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.feature-list li + li {
  margin-top: 8px;
}

body {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f7 42%, #f8fafc 100%);
}

.section.seo-split-section,
.section.split.seo-split-section,
.elementor-section.seo-split-section {
  position: relative;
  overflow: hidden;
}

.section.seo-split-section::before,
.section.split.seo-split-section::before,
.elementor-section.seo-split-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 20%, rgba(255, 94, 20, 0.08), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(18, 33, 47, 0.08), transparent 34%);
}

.section.seo-split-section > .container,
.section.split.seo-split-section > .container,
.elementor-section.seo-split-section > .elementor-container {
  position: relative;
  z-index: 1;
}

.seo-split-section .content-card,
.elementor-section.seo-split-section .elementor-widget-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.9));
  box-shadow:
    0 28px 80px rgba(12, 26, 38, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.seo-split-section .content-card::before,
.elementor-section.seo-split-section .elementor-widget-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), #ffbf8a, rgba(255, 255, 255, 0));
}

.seo-split-section .image-card {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 243, 247, 0.72));
  box-shadow:
    0 30px 85px rgba(12, 26, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.seo-split-section .image-card img,
.elementor-section.seo-split-section .elementor-widget-image img {
  filter: saturate(1.08) contrast(1.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.seo-split-section .section-tag,
.elementor-section.seo-split-section .section-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 94, 20, 0.16);
  border-radius: 999px;
  background: rgba(255, 94, 20, 0.08);
  letter-spacing: 0.12em;
}

.seo-split-section .content-card h1,
.seo-split-section .content-card h2,
.elementor-section.seo-split-section .elementor-heading-title {
  letter-spacing: 0;
  text-wrap: balance;
}

.seo-split-section .content-card h2,
.elementor-section.seo-split-section .elementor-heading-title {
  font-size: clamp(2.25rem, 3.7vw, 3.65rem);
}

.seo-content-card p,
.elementor-section.seo-split-section .elementor-widget-text-editor {
  font-size: 1.02rem;
}

.mini-card,
.step-card {
  border-color: rgba(216, 224, 231, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 251, 0.94));
  box-shadow:
    0 16px 40px rgba(12, 26, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mini-card:hover,
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 94, 20, 0.22);
  box-shadow: 0 24px 55px rgba(12, 26, 38, 0.12);
}

.step-card span {
  background:
    linear-gradient(135deg, #fff7f1, #ffd8bf);
  box-shadow: 0 10px 24px rgba(255, 94, 20, 0.18);
}

.faq-list details {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 55px rgba(12, 26, 38, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cta-inner,
.contact-card {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(12, 26, 38, 0.14);
}

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::after {
  opacity: 0.65;
}

.hero-inner {
  padding: 18px 0;
}

.hero .btn,
.elementor-section.hero .elementor-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.seo-split-section .content-card h1 {
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 1.05;
}

.seo-content-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-content-card .divider {
  margin-top: 0;
  margin-bottom: 4px;
}

.mini-card-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0;
}

.mini-card,
.step-card {
  padding: 18px;
  border: 1px solid rgba(216, 224, 231, 0.92);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: var(--muted);
  line-height: 1.75;
  box-shadow: 0 14px 30px rgba(12, 26, 38, 0.07);
}

.mini-card strong,
.mini-card h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
}

.mini-card span {
  display: block;
}

.mini-card p {
  margin: 0;
}

.step-card-list {
  display: grid;
  gap: 14px;
  margin: 2px 0;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff1e8;
  color: var(--brand);
  font-weight: 800;
}

.atsipl-faq-section .faq-list {
  gap: 20px;
}

.atsipl-faq-section .faq-list details {
  border-radius: 24px;
  padding: 0 30px;
  border: 0;
  box-shadow: 0 24px 54px rgba(12, 26, 38, 0.11);
}

.atsipl-faq-section .faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--text);
}

.atsipl-faq-section .faq-list p {
  max-width: 980px;
  padding-bottom: 8px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.elementor-section.atsipl-faq-section > .elementor-container {
  width: min(1120px, calc(100% - 48px));
}

.elementor-section.atsipl-faq-section .elementor-widget-wrap {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.elementor-section.atsipl-faq-section .elementor-heading-title {
  text-align: center;
  margin-bottom: 18px;
}

.elementor-section.atsipl-faq-section .section-tag {
  margin-inline: auto;
}

.elementor-section.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
}

.elementor-section.hero .elementor-container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
}

.elementor-section.hero .hero-inner {
  max-width: 760px;
}

.elementor-section.hero .elementor-widget-wrap {
  display: block;
}

.elementor-section.hero .elementor-heading-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: #fff;
}

.elementor-section.hero .elementor-widget-text-editor {
  color: inherit;
}

.elementor-section:not(.hero) .elementor-heading-title {
  color: var(--text);
  font-weight: 800;
}

.elementor-section:not(.hero) .elementor-widget-heading .elementor-heading-title,
.elementor-section.seo-split-section .elementor-widget-heading .elementor-heading-title,
.elementor-section.split .elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  letter-spacing: 0 !important;
}

.elementor-section.hero .elementor-button {
  display: inline-flex;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(255, 94, 20, 0.28);
}

.elementor-section.seo-split-section > .elementor-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.elementor-section.seo-split-section > .elementor-container > .elementor-column {
  width: 100% !important;
}

.elementor-section.seo-split-section .elementor-widget-wrap {
  align-content: center;
  height: 100%;
  padding: 38px;
  border: 1px solid rgba(216, 224, 231, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.elementor-section.seo-split-section .elementor-heading-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--text);
}

.elementor-section.seo-split-section .elementor-widget-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 22px;
  background: #fff;
}

.elementor-section.seo-split-section .elementor-widget-text-editor {
  color: var(--muted);
  line-height: 1.9;
}

.elementor-section.full-width-section > .elementor-container {
  width: min(1320px, calc(100% - 48px));
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
}

.elementor-section.full-width-section .elementor-widget-wrap {
  width: 100%;
}

.elementor-section.full-width-section .elementor-heading-title {
  max-width: 1080px;
}

.elementor-section.full-width-section .info-grid,
.elementor-section.full-width-section .mini-card-grid {
  width: 100%;
}

.info-grid,
.case-grid {
  display: grid;
  gap: 22px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-visual-grid,
.product-visual-grid {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  padding: 2px 0 14px;
  animation: atsVisualScroll 24s ease-in-out infinite alternate;
}

.service-visual-grid:hover,
.product-visual-grid:hover {
  animation-play-state: paused;
}

.service-visual-card,
.product-visual-card {
  flex: 0 0 330px;
  overflow: hidden;
  border: 1px solid rgba(18, 33, 47, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(12, 26, 38, 0.09);
}

.service-visual-card img,
.product-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f5;
}

.service-visual-card span,
.product-visual-card span {
  display: block;
  min-height: 76px;
  padding: 15px 16px 17px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.visual-scroll-section .elementor-widget-text-editor {
  overflow: hidden;
}

@keyframes atsVisualScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% + min(100vw - 40px, 1160px)));
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 224, 231, 0.8);
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #0b0f14);
  color: #fff;
  font-weight: 700;
}

.black-accent-section .section-tag,
.elementor-section.black-accent-section .section-tag {
  border-color: rgba(11, 15, 20, 0.18);
  background: rgba(11, 15, 20, 0.05);
  color: #0b0f14;
}

.black-accent-section .divider,
.elementor-section.black-accent-section .divider {
  background: linear-gradient(90deg, #0b0f14, rgba(11, 15, 20, 0.28));
}

.elementor-section.ev-portfolio-section {
  width: 100%;
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 48%, #f3f5f7 100%);
}

.elementor-section.ev-portfolio-section > .elementor-container {
  width: min(1320px, calc(100% - 48px));
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
}

.elementor-section.ev-portfolio-section > .elementor-container > .elementor-column {
  width: 100% !important;
}

.elementor-section.ev-portfolio-section .elementor-widget-wrap {
  width: 100%;
  padding: clamp(34px, 5vw, 64px);
  border-color: rgba(216, 224, 231, 0.82);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 94, 20, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
  box-shadow:
    0 28px 80px rgba(12, 26, 38, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.elementor-section.ev-portfolio-section .elementor-widget-wrap::before {
  background: linear-gradient(90deg, var(--brand), rgba(255, 94, 20, 0.28), rgba(255, 255, 255, 0));
}

.elementor-section.ev-portfolio-section .elementor-heading-title {
  max-width: 1080px;
  color: var(--text);
  font-weight: 800;
}

.elementor-section.ev-portfolio-section .elementor-widget-text-editor {
  max-width: none;
  color: var(--muted);
}

.elementor-section.ev-portfolio-section .section-tag {
  color: var(--brand);
  border-color: rgba(255, 94, 20, 0.22);
  background: rgba(255, 94, 20, 0.08);
  font-weight: 800;
}

.elementor-section.ev-portfolio-section .divider {
  background: linear-gradient(90deg, var(--brand), rgba(255, 94, 20, 0.28));
}

.elementor-section.ev-portfolio-section .info-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.elementor-section.ev-portfolio-section .info-card {
  min-height: 220px;
  border-color: rgba(255, 94, 20, 0.2);
  background: rgba(255, 255, 255, 0.94);
}

.elementor-section.ev-portfolio-section .info-card h3 {
  color: #0b0f14;
}

.portfolio-cta-wrap {
  margin: 30px 0 0;
}

.portfolio-cta,
.elementor-section.ev-portfolio-section .portfolio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  background: #0b0f14;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(11, 15, 20, 0.22);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.info-card,
.case-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 224, 231, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-card {
  padding: 30px;
}

.info-card h3,
.case-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.info-card p,
.case-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.page-visual-gallery {
  padding-top: 28px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.page-visual-gallery .section-heading {
  margin-bottom: 28px;
}

.page-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-visual-card {
  margin: 0;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(216, 224, 231, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 26, 38, 0.1);
}

.page-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-visual-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 780px) {
  .page-visual-grid {
    grid-template-columns: 1fr;
  }

  .page-visual-card,
  .page-visual-card img {
    min-height: 220px;
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card img {
  display: block;
  width: 100%;
  height: clamp(210px, 23vw, 320px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.case-copy {
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.metrics-card {
  display: grid;
  gap: 18px;
}

.metric-box,
.leader-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.08), rgba(31, 111, 178, 0.1));
  border: 1px solid rgba(216, 224, 231, 0.8);
  box-shadow: var(--shadow);
}

.metric-box strong,
.leader-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.metric-box span,
.leader-card span {
  color: var(--muted);
  line-height: 1.8;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.map-panel {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 224, 231, 0.8);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-form-home {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 224, 231, 0.8);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-notice {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.form-notice-success {
  color: #0d5c36;
  background: rgba(25, 135, 84, 0.14);
  border: 1px solid rgba(25, 135, 84, 0.28);
}

.form-notice-error {
  color: #8b1e1e;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.24);
}

.contact-form-home label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-form-home input,
.contact-form-home textarea {
  width: 100%;
  border: 1px solid rgba(18, 33, 47, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.site-footer {
  position: relative;
  margin-top: 72px;
  padding: 58px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 94, 20, 0.28), transparent 34%),
    linear-gradient(135deg, #07111b 0%, #101f2d 52%, #0b1622 100%);
  border-top: 6px solid var(--brand);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.footer-grid,
.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.footer-brand p,
.footer-links {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-social a:hover {
  color: #fff;
  background: var(--brand);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.footer-grid h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.footer-grid h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: #fff;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav-wrap {
    gap: 18px;
  }

  .brand img {
    width: 148px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .nav-dropdown-menu.mega-menu {
    width: min(900px, calc(100vw - 40px));
  }
}

.footer-inner {
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(0, 0, 0, 0.18);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 94, 20, 0.75);
  text-underline-offset: 4px;
}

.footer-inner a:hover {
  color: var(--brand);
}

body.modal-open {
  overflow: hidden;
}

.cta-popup-trigger {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  min-height: 52px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 20px 38px rgba(255, 94, 20, 0.32);
}

.cta-popup-trigger:hover {
  transform: translateY(-2px);
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.enquiry-modal.open {
  display: block;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 27, 0.72);
  backdrop-filter: blur(6px);
}

.enquiry-modal__dialog {
  position: relative;
  width: min(680px, calc(100vw - 24px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  border-radius: 30px;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f6fa 100%);
  box-shadow: 0 32px 80px rgba(7, 17, 27, 0.32);
}

.enquiry-modal__content {
  padding: 28px;
}

.enquiry-modal__copy {
  margin: 12px 0 22px;
  color: var(--muted);
}

.enquiry-modal__close {
  position: sticky;
  top: 14px;
  float: right;
  margin: 14px 14px 0 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  background: var(--dark);
  box-shadow: 0 10px 25px rgba(15, 27, 39, 0.2);
}

.enquiry-modal .contact-form-home {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(370px, calc(100vw - 32px));
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(216, 224, 231, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropbtn-link {
    width: 100%;
    padding: 8px 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-head {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropbtn {
    flex: 1 1 auto;
    text-align: left;
  }

  .nav-drop-toggle {
    display: inline-flex;
  }

  .nav-dropdown-menu {
    display: none;
    position: static;
    min-width: 100%;
    margin-top: 8px;
    max-height: 240px;
    padding: 14px;
    background: #f7fafc;
    box-shadow: none;
  }

  .nav-dropdown-menu.mega-menu {
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "vehicle"
      "durability"
      "adas"
      "ev"
      "powertrain"
      "passive"
      "component"
      "lightweighting"
      "nvh";
    gap: 12px;
  }

  .nav-dropdown-menu.mega-menu .nav-subgroup {
    min-width: 100%;
    padding-top: 6px;
    border-top: 1px solid rgba(18, 33, 47, 0.08);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown.open .nav-dropdown-menu.mega-menu {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .split-grid,
  .mini-card-grid,
  .comparison-grid,
  .elementor-section.seo-split-section > .elementor-container,
  .product-grid,
  .product-grid.six,
  .info-grid,
  .service-grid,
  .service-visual-grid,
  .product-visual-grid,
  .mission-grid,
  .footer-grid,
  .case-grid,
  .contact-panel,
  .contact-card,
  .cta-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .reverse-mobile .image-card {
    order: -1;
  }

  .home-slider {
    min-height: 78vh;
  }

  .image-card {
    min-height: 0;
  }

  .atsipl-faq-section .faq-list details {
    padding: 0 22px;
  }

  .elementor-section.cta-band.restored-cta-section > .elementor-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .elementor-section.cta-band.restored-cta-section .restored-cta-copy .elementor-widget-wrap {
    padding-right: 0;
  }

  .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap {
    justify-items: stretch;
  }

  .elementor-section.cta-band.restored-cta-section .elementor-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 86px 0 74px;
  }

  .section {
    padding: 68px 0;
  }

  .content-card,
  .contact-card,
  .cta-inner {
    padding: 28px;
  }

  .elementor-section.cta-band.restored-cta-section > .elementor-container {
    width: calc(100% - 28px);
    padding: 26px;
    border-radius: 24px;
  }

  .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap {
    padding: 20px;
    border-radius: 20px;
  }

  .elementor-section.cta-band.restored-cta-section .elementor-heading-title {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .cta-popup-trigger {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    justify-content: center;
  }

  .enquiry-modal__dialog {
    width: calc(100vw - 20px);
    margin: 10px auto;
    border-radius: 24px;
  }

  .enquiry-modal__content {
    padding: 22px;
  }

  .site-nav {
    width: calc(100vw - 24px);
  }

  .faq-list details {
    padding: 0 18px;
  }

  .case-card img {
    height: clamp(200px, 56vw, 280px);
  }
}

/* Readability fixes requested after visual review */
.elementor-page .elementor-section.atsipl-faq-section .elementor-heading-title,
.elementor-section.atsipl-faq-section .elementor-heading-title {
  text-align: left !important;
  margin-right: auto;
  margin-left: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.1rem) !important;
}

.elementor-page .elementor-section.atsipl-faq-section .section-tag,
.elementor-section.atsipl-faq-section .section-tag {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.elementor-page .elementor-section.atsipl-faq-section .elementor-widget-wrap,
.elementor-section.atsipl-faq-section .elementor-widget-wrap {
  text-align: left;
}

.elementor-page .elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-widget-wrap,
.elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-widget-wrap {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 244, 246, 0.9));
}

.elementor-page .elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-widget-text-editor p,
.elementor-page .elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .cta-note,
.elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-widget-text-editor p,
.elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .cta-note {
  color: #273746 !important;
  font-weight: 600;
}

.elementor-page .elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-button,
.elementor-section.cta-band.dark.restored-cta-section .restored-cta-action .elementor-button {
  border: 1px solid rgba(11, 15, 20, 0.1);
  background: #fff;
  color: #0b0f14 !important;
}

/* Final CTA arrangement pass */
.elementor-page .elementor-section.cta-band.restored-cta-section > .elementor-container,
.elementor-section.cta-band.restored-cta-section > .elementor-container {
  align-items: center;
}

.elementor-page .elementor-section.cta-band.restored-cta-section .restored-cta-copy .elementor-widget-wrap,
.elementor-section.cta-band.restored-cta-section .restored-cta-copy .elementor-widget-wrap {
  gap: 14px;
}

.elementor-page .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap,
.elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap {
  justify-content: center;
  align-content: center;
  min-height: 210px;
}

.elementor-page .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-button,
.elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-button {
  width: 100%;
}

.elementor-page .elementor-section.cta-band.restored-cta-section .cta-note,
.elementor-section.cta-band.restored-cta-section .cta-note {
  max-width: none;
  color: #405163;
  font-weight: 600;
}

.elementor-page .elementor-section.contact-section {
  padding-top: 48px;
}

body.motion-ready .site-header {
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.scrolled .site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(12, 26, 38, 0.08);
  border-bottom-color: rgba(18, 33, 47, 0.12);
}

body.motion-ready .brand img {
  transition: transform 0.28s ease, filter 0.28s ease;
}

body.motion-ready .brand:hover img {
  transform: translateY(-2px) scale(1.01);
  filter: drop-shadow(0 10px 18px rgba(255, 94, 20, 0.18));
}

body.motion-ready .site-nav > a,
body.motion-ready .nav-dropbtn-link,
body.motion-ready .footer-links a {
  transition: color 0.22s ease, transform 0.22s ease;
}

body.motion-ready .site-nav > a:hover,
body.motion-ready .nav-dropbtn-link:hover,
body.motion-ready .footer-links a:hover {
  transform: translateY(-1px);
}

body.motion-ready .nav-dropdown-menu,
body.motion-ready .site-nav,
body.motion-ready .menu-toggle,
body.motion-ready .nav-drop-toggle {
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.motion-ready .btn,
body.motion-ready .service-card,
body.motion-ready .info-card,
body.motion-ready .case-card,
body.motion-ready .product-card,
body.motion-ready .content-card,
body.motion-ready .image-card,
body.motion-ready .metric-box,
body.motion-ready .leader-card,
body.motion-ready .contact-card,
body.motion-ready .faq-list details {
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

body.motion-ready .btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 34px rgba(12, 26, 38, 0.14);
}

body.motion-ready .content-card:hover,
body.motion-ready .image-card:hover,
body.motion-ready .info-card:hover,
body.motion-ready .case-card:hover,
body.motion-ready .service-card:hover,
body.motion-ready .metric-box:hover,
body.motion-ready .leader-card:hover,
body.motion-ready .contact-card:hover,
body.motion-ready .faq-list details:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(12, 26, 38, 0.16);
  border-color: rgba(255, 94, 20, 0.22);
}

body.motion-ready .image-card:hover img,
body.motion-ready .case-card:hover img,
body.motion-ready .product-card:hover img {
  transform: scale(1.035);
}

body.motion-ready .image-card img,
body.motion-ready .case-card img,
body.motion-ready .product-card img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.32s ease;
}

body.motion-ready .hero-inner > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.motion-ready .hero-inner > *:nth-child(1) {
  animation-delay: 0.08s;
}

body.motion-ready .hero-inner > *:nth-child(2) {
  animation-delay: 0.18s;
}

body.motion-ready .hero-inner > *:nth-child(3) {
  animation-delay: 0.28s;
}

body.motion-ready .hero-inner > *:nth-child(4) {
  animation-delay: 0.38s;
}

body.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.motion-ready .section-heading.center.reveal-item.is-visible,
body.motion-ready .section-heading.reveal-item.is-visible {
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.motion-ready .reveal-item,
  body.motion-ready .hero-inner > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Common Elementor product-page polish */
.elementor-page .elementor-section.hero {
  min-height: clamp(480px, 58vh, 660px);
  display: flex;
  align-items: center;
}

.elementor-page .elementor-section.hero .elementor-container {
  width: min(1220px, calc(100% - 48px));
}

.elementor-page .elementor-section.hero .elementor-widget-wrap {
  max-width: 850px;
}

.elementor-page .elementor-section.hero .eyebrow,
.elementor-page .elementor-section.hero .section-tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
}

.elementor-page .elementor-section.hero .elementor-heading-title {
  max-width: 920px;
  font-size: clamp(3.1rem, 6.4vw, 5.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.elementor-page .elementor-section.hero .hero-copy,
.elementor-page .elementor-section.hero .elementor-widget-text-editor p {
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.8;
}

.elementor-page .elementor-section.seo-split-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.elementor-page .elementor-section.seo-split-section > .elementor-container {
  width: min(1280px, calc(100% - 48px));
  max-width: none;
  gap: clamp(26px, 4vw, 54px);
}

.elementor-page .elementor-section.seo-split-section .elementor-widget-wrap {
  border-radius: 28px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 60px rgba(12, 26, 38, 0.1);
}

.elementor-page .elementor-section.seo-split-section .section-tag,
.elementor-page .elementor-section.full-width-section .section-tag,
.elementor-page .elementor-section.atsipl-faq-section .section-tag {
  color: var(--brand);
  border-color: rgba(255, 94, 20, 0.22);
  background: rgba(255, 94, 20, 0.08);
  font-weight: 800;
}

.elementor-page .elementor-section.seo-split-section .elementor-heading-title,
.elementor-page .elementor-section.full-width-section .elementor-heading-title,
.elementor-page .elementor-section.atsipl-faq-section .elementor-heading-title {
  font-size: clamp(2.35rem, 3.6vw, 3.45rem);
  font-weight: 800 !important;
  line-height: 1;
  color: #0b0f14 !important;
}

.elementor-page .elementor-widget-text-editor p,
.elementor-page .elementor-widget-text-editor li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.elementor-page .info-grid,
.elementor-page .service-grid,
.elementor-page .mini-card-grid {
  align-items: stretch;
}

.elementor-page .info-card,
.elementor-page .service-card,
.elementor-page .mini-card {
  height: 100%;
  border: 1px solid rgba(18, 33, 47, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 42px rgba(12, 26, 38, 0.08);
}

.elementor-page .info-card h3,
.elementor-page .service-card h3,
.elementor-page .mini-card strong {
  color: #0b0f14;
  font-family: var(--font-heading);
  font-weight: 800;
}

.elementor-page .elementor-section.cta-band.restored-cta-section {
  background: linear-gradient(180deg, #f6f8fa 0%, #edf2f6 100%);
}

.elementor-page .elementor-section.cta-band.restored-cta-section > .elementor-container {
  width: min(1240px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  border-radius: 30px;
  border: 1px solid rgba(18, 33, 47, 0.1);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 94, 20, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef3f7 100%);
}

.elementor-page .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap {
  min-height: 100%;
  justify-items: stretch;
  border-color: rgba(255, 94, 20, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.elementor-page .elementor-section.cta-band.restored-cta-section .elementor-heading-title {
  font-size: clamp(2.25rem, 3.6vw, 3.45rem);
  font-weight: 800 !important;
  color: #0b0f14 !important;
}

.elementor-page .elementor-section.cta-band.restored-cta-section .elementor-button {
  width: 100%;
  min-height: 54px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 34px rgba(255, 94, 20, 0.24);
}

.elementor-page .elementor-section.cta-band.dark.restored-cta-section > .elementor-container {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 94, 20, 0.24), transparent 32%),
    linear-gradient(135deg, #07090d 0%, #111820 54%, #05070a 100%);
}

.elementor-page .elementor-section.cta-band.dark.restored-cta-section .elementor-heading-title,
.elementor-page .elementor-section.cta-band.dark.restored-cta-section .section-tag {
  color: #fff !important;
}

.elementor-page .elementor-section.cta-band.dark.restored-cta-section .elementor-button {
  background: #fff;
  color: #0b0f14;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.elementor-page .elementor-section.atsipl-faq-section {
  background: #eef3f7;
}

.elementor-page .atsipl-faq-section .faq-list details {
  border-radius: 22px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  background: #fff;
  box-shadow: 0 16px 38px rgba(12, 26, 38, 0.07);
}

.elementor-page .atsipl-faq-section .faq-list summary {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
  color: #0b0f14;
}

/* Final common CTA, hero readability, and FAQ format pass */
.elementor-page .elementor-section.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.9), rgba(5, 8, 12, 0.68) 52%, rgba(5, 8, 12, 0.42)),
    linear-gradient(180deg, rgba(5, 8, 12, 0.4), rgba(5, 8, 12, 0.74));
}

.elementor-page .elementor-section.hero .hero-copy,
.elementor-page .elementor-section.hero .elementor-widget-text-editor p {
  color: rgba(255, 255, 255, 0.94) !important;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.elementor-page .elementor-section.hero .elementor-button {
  box-shadow: 0 18px 34px rgba(255, 94, 20, 0.3);
}

.elementor-page .elementor-section.cta-band.top-cta-section {
  background: linear-gradient(180deg, #f6f8fa 0%, #edf2f6 100%);
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.elementor-page .elementor-section.cta-band.top-cta-section > .elementor-container {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(18, 33, 47, 0.1);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 94, 20, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef3f7 100%);
  box-shadow: 0 22px 56px rgba(12, 26, 38, 0.11);
  padding: clamp(24px, 4vw, 42px);
}

.elementor-page .elementor-section.cta-band.top-cta-section > .elementor-container > .elementor-column {
  width: 100% !important;
}

.elementor-page .elementor-section.cta-band.top-cta-section .restored-cta-copy .elementor-widget-wrap {
  gap: 12px;
  padding-right: clamp(0px, 4vw, 42px);
}

.elementor-page .elementor-section.cta-band.top-cta-section .restored-cta-action .elementor-widget-wrap {
  min-height: 100%;
  justify-content: center;
  justify-items: stretch;
  border-radius: 24px;
  border: 1px solid rgba(255, 94, 20, 0.18);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(22px, 3vw, 34px);
}

.elementor-page .elementor-section.cta-band.top-cta-section .section-tag {
  color: var(--brand);
  border-color: rgba(255, 94, 20, 0.22);
  background: rgba(255, 94, 20, 0.08);
}

.elementor-page .elementor-section.cta-band.top-cta-section .elementor-heading-title {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 800 !important;
  line-height: 1.05;
  color: #0b0f14 !important;
}

.elementor-page .elementor-section.cta-band.top-cta-section .elementor-widget-text-editor p {
  color: #50677e !important;
}

.elementor-page .elementor-section.cta-band.top-cta-section .elementor-button {
  width: 100%;
  min-height: 54px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 94, 20, 0.24);
}

.elementor-page .elementor-section.faq-section {
  background: #eef3f7 !important;
}

.elementor-page .elementor-section.faq-section > .elementor-container {
  width: min(1220px, calc(100% - 48px));
}

.elementor-page .elementor-section.faq-section .elementor-widget-wrap {
  align-items: stretch;
}

.elementor-page .elementor-section.faq-section .section-tag {
  color: var(--brand) !important;
  border-color: rgba(255, 94, 20, 0.22) !important;
  background: rgba(255, 94, 20, 0.08) !important;
  font-weight: 800;
}

.elementor-page .elementor-section.faq-section .elementor-heading-title {
  text-align: left !important;
  color: #0b0f14 !important;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  font-weight: 800 !important;
  line-height: 1;
}

.elementor-page .elementor-section.faq-section .faq-list {
  display: grid;
  gap: 18px;
}

.elementor-page .elementor-section.faq-section .faq-list details {
  border-radius: 22px;
  border: 1px solid rgba(18, 33, 47, 0.08);
  background: #fff;
  box-shadow: 0 16px 38px rgba(12, 26, 38, 0.07);
  overflow: hidden;
}

.elementor-page .elementor-section.faq-section .faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 30px;
  color: #0b0f14;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
}

.elementor-page .elementor-section.faq-section .faq-list summary::-webkit-details-marker {
  display: none;
}

.elementor-page .elementor-section.faq-section .faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 900;
}

.elementor-page .elementor-section.faq-section .faq-list details[open] summary::after {
  content: "-";
}

.elementor-page .elementor-section.faq-section .faq-list p {
  padding: 0 30px 24px;
  margin: 0;
  color: #5d7188 !important;
  font-weight: 500;
}

.ats-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(18, 33, 47, 0.1);
  background: #fff;
  box-shadow: 0 20px 44px rgba(12, 26, 38, 0.08);
}

.ats-spec-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #12212f;
}

.ats-spec-table th {
  background: #0b0f14;
  color: #fff;
  padding: 18px 20px;
  text-align: left;
  font-weight: 800;
  border-bottom: 3px solid var(--brand);
}

.ats-spec-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(18, 33, 47, 0.08);
  color: #5d7188;
  font-weight: 500;
  vertical-align: top;
}

.ats-spec-table tbody tr:nth-child(even) td {
  background: #f7fafc;
}

.ats-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .elementor-page .elementor-section.seo-split-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.top-cta-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.restored-cta-section > .elementor-container {
    grid-template-columns: 1fr;
  }

  .elementor-page .elementor-section.seo-split-section .elementor-widget-image img {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .elementor-page .elementor-section.hero .elementor-container,
  .elementor-page .elementor-section.seo-split-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.top-cta-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.restored-cta-section > .elementor-container {
    width: calc(100% - 28px);
  }

  .elementor-page .elementor-section.hero .elementor-heading-title {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
  }

  .elementor-page .elementor-section.seo-split-section .elementor-heading-title,
  .elementor-page .elementor-section.full-width-section .elementor-heading-title,
  .elementor-page .elementor-section.cta-band.top-cta-section .elementor-heading-title,
  .elementor-page .elementor-section.cta-band.restored-cta-section .elementor-heading-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .elementor-section > .elementor-container,
  .elementor-page .elementor-section > .elementor-container {
    width: min(100% - 32px, 1180px) !important;
    max-width: calc(100% - 32px) !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .brand img {
    max-width: 148px;
    height: auto;
  }

  .site-nav.open {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mega-menu,
  .services-mega-menu {
    max-height: none;
    overflow: visible;
  }

  .nav-dropdown-menu,
  .mega-menu,
  .services-mega-menu {
    width: 100%;
  }

  .nav-subgroup {
    min-width: 0;
  }

  .hero,
  .elementor-section.hero {
    min-height: auto !important;
    padding-top: 82px !important;
    padding-bottom: 74px !important;
  }

  .hero-inner,
  .elementor-section.hero .elementor-widget-wrap {
    max-width: 100%;
  }

  .hero h1,
  .elementor-section.hero .elementor-heading-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 9vw, 4.25rem) !important;
    line-height: 0.98 !important;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .elementor-section.hero .hero-copy,
  .elementor-section.hero .elementor-widget-text-editor p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(1rem, 3.4vw, 1.18rem) !important;
    line-height: 1.75 !important;
  }

  .split-grid,
  .footer-grid,
  .contact-grid,
  .lead-grid,
  .service-grid,
  .info-grid,
  .mini-card-grid,
  .case-grid,
  .product-grid,
  .visual-card-grid {
    grid-template-columns: 1fr !important;
  }

  .split-grid > *,
  .case-card,
  .service-card,
  .info-card,
  .mini-card,
  .product-card,
  .visual-card {
    min-width: 0;
  }

  .split-grid img,
  .case-card img,
  .product-card img,
  .visual-card img,
  .elementor-widget-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .elementor-column {
    width: 100% !important;
  }

  .elementor-widget-wrap {
    width: 100%;
  }

  .elementor-page .elementor-section.seo-split-section,
  .elementor-page .elementor-section.full-width-section,
  .elementor-page .elementor-section.faq-section,
  .elementor-page .elementor-section.cta-band.restored-cta-section,
  .elementor-page .elementor-section.cta-band.top-cta-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .elementor-page .elementor-section.seo-split-section > .elementor-container,
  .elementor-page .elementor-section.full-width-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.restored-cta-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.top-cta-section > .elementor-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    border-radius: 22px;
  }

  .elementor-page .elementor-section.seo-split-section .elementor-heading-title,
  .elementor-page .elementor-section.full-width-section .elementor-heading-title,
  .elementor-page .elementor-section.faq-section .elementor-heading-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere;
  }

  .elementor-page .elementor-section.cta-band.restored-cta-section .elementor-heading-title,
  .elementor-page .elementor-section.cta-band.top-cta-section .elementor-heading-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }

  .elementor-page .elementor-widget-text-editor,
  .elementor-page .elementor-widget-text-editor p,
  .elementor-page .elementor-widget-text-editor li {
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  .elementor-button,
  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .elementor-page .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap,
  .elementor-page .elementor-section.cta-band.top-cta-section .restored-cta-action .elementor-widget-wrap {
    min-height: auto;
    padding: 22px;
  }

  .visual-scroll-section .visual-card-grid {
    display: flex !important;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .visual-scroll-section .visual-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .container,
  .elementor-section > .elementor-container,
  .elementor-page .elementor-section > .elementor-container {
    width: min(100% - 24px, 1180px) !important;
    max-width: calc(100% - 24px) !important;
  }

  .section,
  .elementor-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero,
  .elementor-section.hero {
    padding-top: 70px !important;
    padding-bottom: 62px !important;
  }

  .hero h1,
  .elementor-section.hero .elementor-heading-title {
    font-size: clamp(2.1rem, 12vw, 3.3rem) !important;
    letter-spacing: 0 !important;
  }

  .section-heading,
  .section-heading.center {
    text-align: left;
  }

  .section-heading h2,
  h2,
  .elementor-heading-title {
    overflow-wrap: anywhere;
  }

  .case-card,
  .service-card,
  .info-card,
  .mini-card,
  .product-card,
  .contact-card,
  .elementor-page .elementor-section.seo-split-section > .elementor-container,
  .elementor-page .elementor-section.full-width-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.restored-cta-section > .elementor-container,
  .elementor-page .elementor-section.cta-band.top-cta-section > .elementor-container {
    border-radius: 18px !important;
  }

  .case-card img,
  .product-card img,
  .visual-card img,
  .elementor-page .elementor-section.seo-split-section .elementor-widget-image img {
    min-height: 210px !important;
    max-height: 310px;
  }

  .faq-list summary,
  .elementor-page .elementor-section.faq-section .faq-list summary {
    padding: 18px 20px;
    font-size: 1rem !important;
  }

  .faq-list p,
  .elementor-page .elementor-section.faq-section .faq-list p {
    padding: 0 20px 20px;
  }

  .ats-table-wrap {
    border-radius: 14px;
  }

  .ats-spec-table {
    min-width: 560px;
  }

  .enquiry-modal__dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
  }

  .enquiry-modal__content {
    padding: 26px 18px;
  }
}

/* ===== Products mega menu — screen madhech thevnyasathi (robust fix) ===== */
@media (min-width: 981px) {
  .nav-dropdown-menu.mega-menu {
    position: fixed !important;
    top: 86px !important;                               /* header chya khali */
    right: max(16px, calc((100vw - 1180px) / 2)) !important; /* container chya right edge la */
    left: auto !important;
    margin-top: 0 !important;
  }

  /* Link ani menu madhla hover gap cover karnyasathi */
  .nav-dropdown::after {
    height: 28px;
  }
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.language-select {
  min-width: 128px;
  height: 40px;
  border: 1px solid rgba(216, 224, 231, 0.95);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 0 34px 0 12px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.google-translate-element,
.google-translate-element .goog-te-gadget span,
.goog-logo-link,
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 980px) {
  .language-switcher {
    width: 100%;
    margin: 8px 0 0;
  }

  .language-select {
    width: 100%;
  }
}


/* Static product page hero fixes */
.hero {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T172255.202.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-sensors {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T160805.405.webp");
}

.hero-data-loggers {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ARGFT-BASE_and_BASE-W-LAN.png");
  background-size: contain;
}

.hero-driving-robots,
.elementor-steering-robot-hero {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-07T172255.202.webp");
}

.hero-adas-soft-target {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-09T110334.129.webp");
}

.hero-electric-vehicle {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-09T165906.086.webp");
}

.hero-soft-target-platforms,
.elementor-soft-target-hero {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-08T172010.038.webp");
}

.hero-power-train {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/12.webp");
}

.hero-passive-safety {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-08T105924.190.webp");
}

.hero-impactor {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-08T151741.108.webp");
}

.hero-inertial-navigation {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.74), rgba(15, 27, 39, 0.68)),
    url("../images/7306-0350-Black.jpg");
}

.hero-sensors-telemetry {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ats-automotive-telemetry-hardware.png");
}

.hero-wheel-force {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ats-wheel-force-transducer-rig.png");
}

.hero-software {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ats-software-automotive-analysis.png");
}

.elementor-page .elementor-section.hero,
.elementor-section.hero {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.elementor-page .elementor-section.hero .elementor-container,
.elementor-section.hero .elementor-container {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1220px !important;
}

.elementor-page .elementor-section.hero .elementor-widget-wrap,
.elementor-section.hero .elementor-widget-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elementor-page .elementor-section.hero .elementor-heading-title {
  overflow-wrap: normal;
  word-break: normal;
  max-width: min(920px, 100%);
}

.elementor-page .elementor-section:not(.hero),
.elementor-section:not(.hero) {
  overflow-x: clip;
}

.elementor-page .elementor-section:not(.hero) > .elementor-container,
.elementor-section:not(.hero) > .elementor-container {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .elementor-page .elementor-section.hero,
  .elementor-section.hero {
    padding: 84px 0 78px;
  }

  .elementor-page .elementor-section.hero .elementor-heading-title {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }
}


/* Static product page section alignment fixes */
.elementor-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.elementor-page .elementor-section:not(.hero) {
  padding-left: 0;
  padding-right: 0;
}

.elementor-page .elementor-section:not(.hero) > .elementor-container,
.elementor-section:not(.hero) > .elementor-container {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  align-items: stretch;
  gap: clamp(22px, 3vw, 44px);
}

.elementor-page .elementor-section:not(.hero) > .elementor-container > .elementor-column,
.elementor-section:not(.hero) > .elementor-container > .elementor-column {
  min-width: 0;
  flex: 1 1 0;
}

.elementor-page .elementor-section:not(.hero) .elementor-widget-wrap,
.elementor-section:not(.hero) .elementor-widget-wrap {
  width: 100%;
  min-width: 0;
}

.elementor-page .elementor-section:not(.hero) .elementor-widget-text-editor,
.elementor-page .elementor-section:not(.hero) .elementor-widget-text-editor p,
.elementor-section:not(.hero) .elementor-widget-text-editor,
.elementor-section:not(.hero) .elementor-widget-text-editor p {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.elementor-page .elementor-section:not(.hero) .elementor-widget-image,
.elementor-section:not(.hero) .elementor-widget-image {
  width: 100%;
}

.elementor-page .elementor-section:not(.hero) .elementor-widget-image img,
.elementor-section:not(.hero) .elementor-widget-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-grid {
  width: 100%;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 900px) {
  .elementor-page .elementor-section:not(.hero) > .elementor-container,
  .elementor-section:not(.hero) > .elementor-container {
    flex-direction: column;
  }
}


/* Additional product hero image mappings */
.hero-adas-driving-robot {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/Untitled-design-2026-04-09T110334.129.webp");
}

.hero-sensors-telemetry-1 {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ats-automotive-telemetry-hardware.png");
}

.elementor-v2xhero {
  background-image:
    linear-gradient(rgba(15, 27, 39, 0.72), rgba(15, 27, 39, 0.68)),
    url("../images/ats-automotive-telemetry-hardware.png");
}


.form-notice {
  margin: 0 0 16px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-notice-pending {
  color: #7a3d00;
  background: #fff4e8;
  border: 1px solid rgba(255, 94, 20, 0.22);
}

.form-notice-success {
  color: #0f5132;
  background: #e9f8ef;
  border: 1px solid rgba(15, 81, 50, 0.18);
}

.form-notice-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid rgba(132, 32, 41, 0.18);
}

/* ATSIPL final product page spacing cleanup */
.elementor-page .elementor-section.seo-split-section,
.elementor-page .elementor-section.full-width-section,
.elementor-page .elementor-section.faq-section,
.elementor-page .elementor-section.cta-band.top-cta-section,
.elementor-page .elementor-section.cta-band.restored-cta-section {
  clear: both;
  overflow: visible !important;
  padding-top: clamp(56px, 6vw, 86px) !important;
  padding-bottom: clamp(56px, 6vw, 86px) !important;
  margin: 0 !important;
}

.elementor-page .elementor-section.seo-split-section + .elementor-section.seo-split-section,
.elementor-page .elementor-section.seo-split-section + .elementor-section.full-width-section,
.elementor-page .elementor-section.full-width-section + .elementor-section.seo-split-section,
.elementor-page .elementor-section.cta-band + .elementor-section.seo-split-section,
.elementor-page .elementor-section.seo-split-section + .elementor-section.cta-band,
.elementor-page .elementor-section.seo-split-section + .elementor-section.faq-section {
  margin-top: clamp(18px, 2.4vw, 34px) !important;
}

.elementor-page .elementor-section.seo-split-section > .elementor-container {
  align-items: stretch !important;
  grid-auto-rows: auto;
  row-gap: clamp(30px, 4vw, 56px) !important;
}

.elementor-page .elementor-section.seo-split-section > .elementor-container > .elementor-column,
.elementor-page .elementor-section.seo-split-section .elementor-widget-wrap {
  min-height: 0 !important;
}

.elementor-page .elementor-section.seo-split-section .elementor-widget-wrap {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding-top: clamp(34px, 4vw, 58px) !important;
  padding-bottom: clamp(34px, 4vw, 58px) !important;
}

.elementor-page .elementor-section.seo-split-section .elementor-widget-image,
.elementor-page .elementor-section.seo-split-section .elementor-widget-image .elementor-widget-container {
  height: 100%;
}

.elementor-page .elementor-section.seo-split-section .elementor-widget-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 36vw, 520px);
  object-fit: cover;
}

.elementor-page .mini-card-grid,
.elementor-page .comparison-grid {
  gap: clamp(18px, 2vw, 28px) !important;
  margin-top: 26px !important;
  margin-bottom: 12px !important;
}

.elementor-page .elementor-widget-text-editor p + .mini-card-grid,
.elementor-page .elementor-widget-text-editor p + .comparison-grid,
.elementor-page .mini-card-grid + p,
.elementor-page .comparison-grid + p {
  margin-top: 26px !important;
}

.elementor-page .elementor-section.faq-section .faq-list,
.elementor-page .elementor-section.atsipl-faq-section .faq-list {
  display: grid;
  gap: 20px;
}

@media (max-width: 1024px) {
  .elementor-page .elementor-section.seo-split-section,
  .elementor-page .elementor-section.full-width-section,
  .elementor-page .elementor-section.faq-section,
  .elementor-page .elementor-section.cta-band.top-cta-section,
  .elementor-page .elementor-section.cta-band.restored-cta-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .elementor-page .elementor-section.seo-split-section .elementor-widget-image img {
    min-height: 300px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .elementor-page .elementor-section.seo-split-section,
  .elementor-page .elementor-section.full-width-section,
  .elementor-page .elementor-section.faq-section,
  .elementor-page .elementor-section.cta-band.top-cta-section,
  .elementor-page .elementor-section.cta-band.restored-cta-section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .elementor-page .elementor-section.seo-split-section .elementor-widget-wrap {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

/* ATSIPL hard spacing fix for flat static pages */
body .elementor-section.seo-split-section,
body .elementor-section.full-width-section,
body .elementor-section.faq-section,
body .elementor-section.cta-band.top-cta-section,
body .elementor-section.cta-band.restored-cta-section {
  clear: both !important;
  display: block !important;
  overflow: visible !important;
  padding-top: clamp(58px, 6vw, 92px) !important;
  padding-bottom: clamp(58px, 6vw, 92px) !important;
  margin: 0 !important;
}

body .elementor-section.seo-split-section + .elementor-section.seo-split-section,
body .elementor-section.seo-split-section + .elementor-section.full-width-section,
body .elementor-section.full-width-section + .elementor-section.seo-split-section,
body .elementor-section.cta-band + .elementor-section.seo-split-section,
body .elementor-section.seo-split-section + .elementor-section.cta-band,
body .elementor-section.seo-split-section + .elementor-section.faq-section {
  border-top: clamp(22px, 3vw, 42px) solid #eef3f7 !important;
}

body .elementor-section.seo-split-section > .elementor-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: clamp(34px, 4vw, 62px) !important;
  width: min(1280px, calc(100% - 48px)) !important;
  max-width: none !important;
  min-height: 0 !important;
}

body .elementor-section.seo-split-section > .elementor-container > .elementor-column {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: flex !important;
}

body .elementor-section.seo-split-section .elementor-widget-wrap {
  width: 100% !important;
  height: auto !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 18px !important;
  padding: clamp(36px, 4vw, 62px) !important;
  box-sizing: border-box !important;
}

body .elementor-section.seo-split-section .elementor-widget,
body .elementor-section.seo-split-section .elementor-widget-container {
  max-width: 100% !important;
}

body .elementor-section.seo-split-section .elementor-widget-image,
body .elementor-section.seo-split-section .elementor-widget-image .elementor-widget-container {
  height: 100% !important;
  min-height: 100% !important;
}

body .elementor-section.seo-split-section .elementor-widget-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(360px, 34vw, 520px) !important;
  object-fit: cover !important;
}

body .elementor-section.seo-split-section .elementor-widget-text-editor,
body .elementor-section.seo-split-section .elementor-widget-text-editor p,
body .elementor-section.seo-split-section .elementor-widget-text-editor li {
  overflow-wrap: anywhere;
}

body .mini-card-grid,
body .comparison-grid {
  display: grid !important;
  gap: clamp(18px, 2vw, 28px) !important;
  margin-top: 28px !important;
  margin-bottom: 14px !important;
}

body .elementor-widget-text-editor p + .mini-card-grid,
body .elementor-widget-text-editor p + .comparison-grid,
body .mini-card-grid + p,
body .comparison-grid + p {
  margin-top: 28px !important;
}

body .elementor-section.faq-section .faq-list,
body .elementor-section.atsipl-faq-section .faq-list {
  display: grid !important;
  gap: 22px !important;
}

@media (max-width: 1024px) {
  body .elementor-section.seo-split-section,
  body .elementor-section.full-width-section,
  body .elementor-section.faq-section,
  body .elementor-section.cta-band.top-cta-section,
  body .elementor-section.cta-band.restored-cta-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  body .elementor-section.seo-split-section > .elementor-container {
    grid-template-columns: 1fr !important;
    width: min(100% - 32px, 760px) !important;
    gap: 28px !important;
  }

  body .elementor-section.seo-split-section .elementor-widget-image img {
    height: auto !important;
    min-height: 290px !important;
    max-height: 460px !important;
  }
}

@media (max-width: 640px) {
  body .elementor-section.seo-split-section,
  body .elementor-section.full-width-section,
  body .elementor-section.faq-section,
  body .elementor-section.cta-band.top-cta-section,
  body .elementor-section.cta-band.restored-cta-section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  body .elementor-section.seo-split-section > .elementor-container {
    width: calc(100% - 24px) !important;
    gap: 22px !important;
  }

  body .elementor-section.seo-split-section .elementor-widget-wrap {
    padding: 24px !important;
  }
}

/* ATSIPL hard CTA card fix for flat static pages */
body .elementor-section.cta-band.top-cta-section {
  background: linear-gradient(180deg, #f6f8fa 0%, #edf2f6 100%) !important;
  padding-top: clamp(50px, 5vw, 72px) !important;
  padding-bottom: clamp(50px, 5vw, 72px) !important;
}

body .elementor-section.cta-band.top-cta-section > .elementor-container,
body .elementor-section.cta-band.restored-cta-section > .elementor-container {
  width: min(1240px, calc(100% - 48px)) !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr) !important;
  gap: clamp(24px, 3vw, 44px) !important;
  align-items: stretch !important;
  padding: clamp(30px, 4vw, 50px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(18, 33, 47, 0.1) !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 94, 20, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef3f7 100%) !important;
  box-shadow: 0 22px 56px rgba(12, 26, 38, 0.11) !important;
  box-sizing: border-box !important;
}

body .elementor-section.cta-band.restored-cta-section > .elementor-container {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 94, 20, 0.13), transparent 34%),
    linear-gradient(135deg, #fffaf6 0%, #ffe8d8 46%, #ffffff 100%) !important;
}

body .elementor-section.cta-band.top-cta-section > .elementor-container > .elementor-column,
body .elementor-section.cta-band.restored-cta-section > .elementor-container > .elementor-column {
  width: auto !important;
  min-width: 0 !important;
  display: flex !important;
}

body .elementor-section.cta-band.top-cta-section .elementor-widget-wrap,
body .elementor-section.cta-band.restored-cta-section .elementor-widget-wrap {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  align-content: center !important;
  gap: 14px !important;
  box-sizing: border-box !important;
}

body .elementor-section.cta-band.top-cta-section .restored-cta-copy .elementor-widget-wrap,
body .elementor-section.cta-band.restored-cta-section .restored-cta-copy .elementor-widget-wrap {
  padding: 0 clamp(0px, 3vw, 36px) 0 0 !important;
}

body .elementor-section.cta-band.top-cta-section .restored-cta-action .elementor-widget-wrap,
body .elementor-section.cta-band.restored-cta-section .restored-cta-action .elementor-widget-wrap {
  min-height: 100% !important;
  justify-items: stretch !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 94, 20, 0.18) !important;
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

body .elementor-section.cta-band.top-cta-section .section-tag,
body .elementor-section.cta-band.restored-cta-section .section-tag {
  width: fit-content !important;
  margin: 0 !important;
  color: var(--brand) !important;
  border-color: rgba(255, 94, 20, 0.22) !important;
  background: rgba(255, 94, 20, 0.08) !important;
  font-weight: 800 !important;
}

body .elementor-section.cta-band.top-cta-section .elementor-heading-title,
body .elementor-section.cta-band.restored-cta-section .elementor-heading-title {
  margin: 0 !important;
  max-width: 820px !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.95rem, 3.2vw, 3rem) !important;
  line-height: 1.05 !important;
  color: #0b0f14 !important;
  letter-spacing: 0 !important;
}

body .elementor-section.cta-band.top-cta-section .elementor-widget-text-editor p,
body .elementor-section.cta-band.restored-cta-section .elementor-widget-text-editor p,
body .elementor-section.cta-band.top-cta-section .cta-note,
body .elementor-section.cta-band.restored-cta-section .cta-note {
  margin: 0 !important;
  color: #50677e !important;
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
}

body .elementor-section.cta-band.top-cta-section .elementor-button,
body .elementor-section.cta-band.restored-cta-section .elementor-button,
body .elementor-section.hero .elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  width: 100% !important;
  padding: 15px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)) !important;
  color: #fff !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-decoration: none !important;
  box-shadow: 0 18px 34px rgba(255, 94, 20, 0.24) !important;
}

body .elementor-section.hero .elementor-button {
  width: auto !important;
  max-width: max-content !important;
}

body .elementor-section.cta-band.top-cta-section .elementor-button-text,
body .elementor-section.cta-band.restored-cta-section .elementor-button-text,
body .elementor-section.hero .elementor-button-text {
  color: inherit !important;
}

@media (max-width: 900px) {
  body .elementor-section.cta-band.top-cta-section > .elementor-container,
  body .elementor-section.cta-band.restored-cta-section > .elementor-container {
    grid-template-columns: 1fr !important;
    width: min(100% - 32px, 760px) !important;
  }

  body .elementor-section.cta-band.top-cta-section .restored-cta-copy .elementor-widget-wrap,
  body .elementor-section.cta-band.restored-cta-section .restored-cta-copy .elementor-widget-wrap {
    padding-right: 0 !important;
  }
}

@media (max-width: 640px) {
  body .elementor-section.cta-band.top-cta-section,
  body .elementor-section.cta-band.restored-cta-section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  body .elementor-section.cta-band.top-cta-section > .elementor-container,
  body .elementor-section.cta-band.restored-cta-section > .elementor-container {
    width: calc(100% - 24px) !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }
}

/* ATSIPL targeted full-width card section fix */
body .elementor-section.full-width-section.seo-split-section > .elementor-container {
  grid-template-columns: 1fr !important;
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: none !important;
  gap: 0 !important;
}

body .elementor-section.full-width-section.seo-split-section > .elementor-container > .elementor-column {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

body .elementor-section.full-width-section.seo-split-section .elementor-widget-wrap {
  min-height: auto !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}

body .elementor-section.full-width-section .info-grid,
body .elementor-section.full-width-section .service-grid,
body .elementor-section.full-width-section .mini-card-grid,
body .elementor-section.full-width-section .comparison-grid {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)) !important;
  gap: clamp(22px, 2.5vw, 32px) !important;
  align-items: stretch !important;
}

body .elementor-section.full-width-section .info-card,
body .elementor-section.full-width-section .service-card,
body .elementor-section.full-width-section .mini-card,
body .elementor-section.full-width-section .comparison-grid > * {
  min-width: 0 !important;
  width: auto !important;
  padding: clamp(24px, 2.6vw, 34px) !important;
}

body .elementor-section.full-width-section .info-card h3,
body .elementor-section.full-width-section .service-card h3,
body .elementor-section.full-width-section .mini-card h3,
body .elementor-section.full-width-section .mini-card strong {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
  font-size: clamp(1.28rem, 1.8vw, 1.65rem) !important;
  line-height: 1.18 !important;
}

body .elementor-section.full-width-section .info-card p,
body .elementor-section.full-width-section .service-card p,
body .elementor-section.full-width-section .mini-card p,
body .elementor-section.full-width-section .mini-card span {
  overflow-wrap: normal !important;
  word-break: normal !important;
}

@media (min-width: 1180px) {
  body .elementor-section.full-width-section .info-grid:has(> :nth-child(3):last-child),
  body .elementor-section.full-width-section .service-grid:has(> :nth-child(3):last-child),
  body .elementor-section.full-width-section .mini-card-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body .elementor-section.full-width-section .info-grid:has(> :nth-child(4):last-child),
  body .elementor-section.full-width-section .service-grid:has(> :nth-child(4):last-child),
  body .elementor-section.full-width-section .mini-card-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body .elementor-section.full-width-section.seo-split-section > .elementor-container {
    width: calc(100% - 24px) !important;
  }

  body .elementor-section.full-width-section .info-grid,
  body .elementor-section.full-width-section .service-grid,
  body .elementor-section.full-width-section .mini-card-grid,
  body .elementor-section.full-width-section .comparison-grid {
    grid-template-columns: 1fr !important;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: #25d366;
  color: #08351b;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 17, 32, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #30e374;
  box-shadow: 0 18px 40px rgba(7, 17, 32, 0.3);
}

.whatsapp-float__icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #128c3a;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
}

.whatsapp-float__text {
  color: inherit;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 8px 12px 8px 8px;
    font-size: 0.9rem;
  }

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
    font-size: 0.66rem;
  }
}



/* Regulatory Guide single hero */
.regulatory-single-hero {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  background: #07172f;
}

.regulatory-single-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.regulatory-single-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 72px max(26px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(5, 18, 42, 0.9) 0%, rgba(8, 39, 155, 0.52) 42%, rgba(5, 18, 42, 0.3) 100%);
}

.regulatory-single-hero__copy {
  width: min(620px, 92vw);
  color: #fff;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.regulatory-single-hero__copy .section-tag {
  width: fit-content;
  margin-bottom: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(12px);
}

.regulatory-single-hero__copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Roboto Condensed", "Poppins", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.regulatory-single-hero__copy p:not(.section-tag) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .regulatory-single-hero {
    min-height: 430px;
  }

  .regulatory-single-hero__overlay {
    align-items: flex-end;
    padding: 74px 24px 86px;
    background: linear-gradient(180deg, rgba(5, 18, 42, 0.14) 0%, rgba(5, 18, 42, 0.78) 58%, rgba(5, 18, 42, 0.94) 100%);
  }

  .regulatory-single-hero__copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.75rem);
  }

  .regulatory-single-hero__copy p:not(.section-tag) {
    font-size: 1rem;
  }
}

/* Regulatory Guide table visuals */
.-regulatory-table .-visual-head {
  width: 150px;
  min-width: 150px;
}

.-regulatory-table .-visual-cell {
  width: 150px;
  min-width: 150px;
}

.regulatory-table-image {
  display: block;
  width: 124px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(8, 39, 155, 0.16);
  box-shadow: 0 10px 24px rgba(8, 18, 34, 0.14);
}

@media (max-width: 720px) {
  .-regulatory-table .-visual-head,
  .-regulatory-table .-visual-cell {
    width: 120px;
    min-width: 120px;
  }

  .regulatory-table-image {
    width: 96px;
    border-radius: 8px;
  }
}

