:root {
  --brand-purple: #675dc6;
  --brand-purple-2: #756bdd;
  --brand-purple-3: #4e45a7;
  --brand-red: #ed2545;
  --brand-red-2: #ff4b66;
  --ink: #182033;
  --ink-2: #2e374b;
  --muted: #687287;
  --soft: #f6f5fb;
  --soft-2: #efedf8;
  --line: rgba(24, 32, 51, 0.1);
  --dark: #17152b;
  --dark-2: #211d42;
  --white: #fff;
  --green: #20b486;
  --yellow: #f7b500;
  --shadow: 0 28px 80px rgba(31, 27, 63, 0.15);
  --shadow-sm: 0 16px 42px rgba(31, 27, 63, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
::selection {
  background: rgba(103, 93, 198, 0.22);
  color: var(--dark);
}
.container-os {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 90px 0;
}
.section-sm {
  padding: 74px 0;
}
.section-soft {
  background: linear-gradient(180deg, #f8f7fc, #f4f2fa);
}
.section-dark {
  background: linear-gradient(140deg, var(--dark), var(--dark-2));
  color: #fff;
  overflow: hidden;
}
.section-dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-purple);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label:before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.section-dark .section-label {
  color: #b9b2ff;
}
.section-title {
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 1.01;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}
.section-title.small {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}
.section-title em {
  font-style: normal;
  color: var(--brand-purple);
}
.section-lead {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
  color: var(--muted);
  max-width: 780px;
}
.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.68);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(103, 93, 198, 0.1);
  box-shadow: 0 8px 28px rgba(31, 27, 63, 0.055);
}
.nav-shell {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 178px;
  height: auto;
  display: block;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-main > a,
.nav-main .dropdown-toggle {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(24, 32, 51, 0.77);
  padding: 28px 0;
  border: 0;
  background: none;
}
.nav-main > a:hover,
.nav-main > a.active,
.nav-main .dropdown-toggle:hover {
  color: var(--brand-purple);
}
.nav-main .dropdown-menu {
  border: 1px solid rgba(103, 93, 198, 0.12);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  min-width: 270px;
}
.nav-main .dropdown-item {
  border-radius: 11px;
  padding: 10px 12px;
  font-weight: 720;
  font-size: 0.84rem;
  color: var(--ink-2);
}
.nav-main .dropdown-item:hover {
  background: var(--soft-2);
  color: var(--brand-purple);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  /* background: var(--soft-2); */
  background: #675dc6;
  /* color: var(--brand-purple); */
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.btn-os {
  --bg: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-2));
  --color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--bg);
  color: var(--color);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(103, 93, 198, 0.25);
  transition: 0.22s;
}
.btn-os:hover {
  color: var(--color);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(103, 93, 198, 0.32);
}
.btn-os.red {
  --bg: linear-gradient(135deg, var(--brand-red), var(--brand-red-2));
  box-shadow: 0 14px 30px rgba(237, 37, 69, 0.22);
}
.btn-os.dark {
  --bg: var(--dark);
}
.btn-os.light {
  --bg: #fff;
  --color: var(--ink);
  box-shadow: 0 14px 32px rgba(8, 8, 20, 0.12);
}
.btn-os.outline {
  --bg: transparent;
  --color: var(--brand-purple);
  border-color: rgba(103, 93, 198, 0.3);
  box-shadow: none;
}
.btn-os.outline:hover {
  background: var(--brand-purple);
  color: #fff;
}
.btn-os.sm {
  min-height: 43px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 0.82rem;
}
.offcanvas.offcanvas-start {
  width: min(390px, 88vw);
  border: 0;
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #fff;
}
.offcanvas-header {
  padding: 24px 24px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas-header img {
  width: 165px;
}
.offcanvas .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.offcanvas-body {
  padding: 20px 24px 30px;
}
.mobile-nav {
  display: grid;
  gap: 7px;
}
.mobile-nav > a,
.mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 780;
  cursor: pointer;
}
.mobile-nav > a:hover,
.mobile-nav summary:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.mobile-nav details[open] summary {
  background: rgba(103, 93, 198, 0.28);
  color: #fff;
}
.mobile-sub {
  display: grid;
  gap: 4px;
  padding: 6px 0 7px 14px;
}
.mobile-sub a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  border-left: 2px solid rgba(103, 93, 198, 0.5);
}
.mobile-sub a:hover {
  color: #fff;
}
.offcanvas-cta {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 165px 0 95px;
  min-height: 900px;
  background: radial-gradient(
      circle at 16% 15%,
      rgba(103, 93, 198, 0.17),
      transparent 30%
    ),
    radial-gradient(circle at 88% 21%, rgba(237, 37, 69, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfafe, #fff 74%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(103, 93, 198, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(103, 93, 198, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.14);
  color: var(--brand-purple);
  font-size: 0.77rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(31, 27, 63, 0.07);
  margin-bottom: 25px;
}
.hero-title {
  font-size: clamp(3.5rem, 6.15vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
  font-weight: 950;
  margin: 0 0 28px;
}
.hero-title span {
  color: var(--brand-purple);
  position: relative;
}
.hero-title span:after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: -0.07em;
  height: 0.12em;
  background: var(--brand-red);
  border-radius: 99px;
  opacity: 0.18;
  transform: rotate(-1.5deg);
}
.hero-copy {
  font-size: 1.1rem;
  line-height: 1.82;
  color: var(--muted);
  max-width: 630px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.keyword-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(103, 93, 198, 0.075);
  color: #5c54b2;
  font-size: 0.72rem;
  font-weight: 800;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.proof {
  padding-left: 15px;
  border-left: 2px solid rgba(103, 93, 198, 0.3);
}
.proof strong {
  display: block;
  font-size: 1.16rem;
}
.proof span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
  margin-top: 3px;
}
.hero-stage {
  position: relative;
  min-height: 610px;
}
.hero-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  right: 8%;
  top: 8%;
  filter: blur(55px);
  opacity: 0.26;
  background: linear-gradient(140deg, var(--brand-purple), var(--brand-red));
}
.product-window {
  position: absolute;
  inset: 32px 0 auto 0;
  min-height: 535px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(31, 27, 63, 0.22);
  transform: rotateY(-5deg) rotateX(2deg);
}
.window-top {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #f1eff8;
  border-bottom: 1px solid rgba(103, 93, 198, 0.1);
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c6c1e8;
}
.window-dots span:first-child {
  background: var(--brand-red);
}
.window-url {
  margin: auto;
  padding: 7px 45px;
  border-radius: 8px;
  background: #fff;
  color: #8b91a2;
  font-size: 0.67rem;
}
.dashboard {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 487px;
}
.dash-side {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0;
  gap: 17px;
}
.dash-side img {
  width: 40px;
}
.dash-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.45);
}
.dash-icon.active {
  background: var(--brand-purple);
  color: #fff;
}
.dash-main {
  padding: 24px;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-head h3 {
  margin: 0;
  font-size: 1rem;
}
.badge-live {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(32, 180, 134, 0.11);
  color: #15936d;
  font-size: 0.64rem;
  font-weight: 850;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-stat {
  padding: 13px;
  border: 1px solid rgba(103, 93, 198, 0.1);
  border-radius: 14px;
  background: #fff;
}
.dash-stat small {
  display: block;
  color: #8790a1;
  font-size: 0.58rem;
}
.dash-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
}
.dash-card {
  margin-top: 13px;
  padding: 16px;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff, #f7f6fb);
  border: 1px solid rgba(103, 93, 198, 0.1);
}
.dash-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 850;
}
.dash-car {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
}
.dash-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.56rem;
  color: #7c8495;
}
.dash-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
}
.logo-strip {
  border-block: 1px solid rgba(103, 93, 198, 0.08);
  background: #fff;
}
.logo-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 115px;
}
.logo-strip-grid > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
}
.trust-pill i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--soft-2);
  display: grid;
  place-items: center;
  color: var(--brand-purple);
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.module-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(103, 93, 198, 0.11);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(31, 27, 63, 0.055);
  transition: 0.25s;
}
.module-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(31, 27, 63, 0.12);
  border-color: rgba(103, 93, 198, 0.22);
}
.module-card:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -70px;
  top: -75px;
  background: rgba(103, 93, 198, 0.07);
}
.module-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--brand-purple),
    var(--brand-purple-2)
  );
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 13px 25px rgba(103, 93, 198, 0.22);
  margin-bottom: 22px;
}
.module-card.red .module-icon {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-2));
  box-shadow: 0 13px 25px rgba(237, 37, 69, 0.2);
}
.module-card h3 {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.module-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-purple);
  font-size: 0.83rem;
  font-weight: 850;
  margin-top: 12px;
}
.text-link:hover {
  color: var(--brand-red);
}
.feature-showcase {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}
.video-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  object-fit: cover;
}
.video-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(23, 21, 43, 0.82);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
}
.security-note {
  display: flex;
  gap: 12px;
  padding: 15px 17px;
  border-radius: 16px;
  background: #f0eefc;
  color: #5149a5;
  font-size: 0.79rem;
  line-height: 1.55;
  margin-top: 16px;
}
.security-note i {
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-item i {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(103, 93, 198, 0.1);
  color: var(--brand-purple);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.check-item strong {
  display: block;
  font-size: 0.91rem;
}
.check-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 2px;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.vehicle-card {
  padding: 18px;
  border-radius: 19px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.1);
  box-shadow: 0 12px 32px rgba(31, 27, 63, 0.05);
}
.vehicle-card img {
  height: 118px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 9px rgba(24, 32, 51, 0.11));
}
.vehicle-card h3 {
  font-size: 0.9rem;
  font-weight: 850;
  margin: 12px 0 2px;
}
.vehicle-card p {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}


.banner-card {
  padding: 38px;
  border-radius: 26px;
  min-height: 330px;
  overflow: hidden;
  position: relative;
}





.banner-card.purple {
  background: linear-gradient(
    145deg,
    var(--brand-purple-3),
    var(--brand-purple)
  );
  color: #fff;
}
.banner-card.red {
  background: linear-gradient(145deg, #be1832, var(--brand-red));
  color: #fff;
}
.banner-card:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -90px;
  bottom: -120px;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.04);
}
.banner-card h3 {
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.05em;
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.banner-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.banner-card .btn-os {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  /* padding: 170px 0 92px; */
  padding: 140px 0px 70px 0;
  background: linear-gradient(135deg, var(--dark), #2a2454);
  color: #fff;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -170px;
  top: 5px;
  background: radial-gradient(
    circle,
    rgba(103, 93, 198, 0.45),
    rgba(237, 37, 69, 0.16) 42%,
    transparent 68%
  );
}
.page-hero .container-os {
  position: relative;
  z-index: 2;
}
.breadcrumb-os {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.77rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.breadcrumb-os a:hover {
  color: #fff;
}
.page-title {
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 950;
  max-width: 1040px;
  margin: 0;
}
.page-title em {
  font-style: normal;
  color: #b9b2ff;
}
.page-lead {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 760px;
  margin-top: 28px;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 54px;
  align-items: start;
}
.prose {
  font-size: 1rem;
  line-height: 1.86;
  color: #4f596d;
}
.prose h2 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: -0.045em;
  font-weight: 900;
  margin: 0 0 18px;
}
.prose h2:not(:first-child) {
  margin-top: 52px;
}
.prose h3 {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 900;
  margin-top: 30px;
}
.prose p {
  margin: 0 0 18px;
}
.prose ul {
  display: grid;
  gap: 9px;
  padding-left: 1.2rem;
}
.callout {
  padding: 24px 26px;
  border-radius: 19px;
  background: linear-gradient(135deg, #f0eefc, #f9f8fd);
  border-left: 4px solid var(--brand-purple);
  color: #514b66;
  margin: 30px 0;
}
.callout strong {
  display: block;
  color: var(--brand-purple);
  margin-bottom: 6px;
}
.sidebar-card {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.11);
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 900;
}
.sidebar-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(103, 93, 198, 0.09);
  font-size: 0.79rem;
  font-weight: 780;
  color: #5d6577;
}
.sidebar-card > a:hover {
  color: var(--brand-purple);
}
.sidebar-card > a:last-of-type {
  border-bottom: 0;
}
.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0;
}
.page-feature {
  padding: 23px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid rgb(231 228 245);
}
.page-feature i {
  font-size: 1.2rem;
  color: var(--brand-purple);
}
.page-feature strong {
  display: block;
  color: var(--ink);
  font-size: 0.91rem;
  margin: 11px 0 4px;
}
.page-feature span {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 42px;
}
.metric {
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.11);
  text-align: center;
}
.metric strong {
  display: block;
  color: var(--brand-purple);
  font-size: 2rem;
  letter-spacing: -0.05em;
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 4px;
}
.cta-shell {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    var(--brand-purple-3),
    var(--brand-purple) 55%,
    #7f72ef
  );
  color: #fff;
  box-shadow: 0 28px 70px rgba(103, 93, 198, 0.28);
}
.cta-shell:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -160px;
  top: -150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035);
}
.cta-shell > * {
  position: relative;
  z-index: 2;
}
.cta-shell h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.055em;
  max-width: 820px;
}
.cta-shell p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 700px;
  line-height: 1.7;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 42px auto 0;
}
.faq-item {
  border: 1px solid rgba(103, 93, 198, 0.11);
  border-radius: 17px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 19px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-weight: 850;
  color: var(--ink);
}
.faq-item .collapse > div {
  padding: 0 22px 21px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
}
.contact-info {
  padding: 38px;
  border-radius: 27px;
  background: linear-gradient(150deg, var(--dark), var(--dark-2));
  color: #fff;
}
.contact-info h2 {
  font-size: 2.45rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.contact-row {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 18px;
}
.contact-row i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(103, 93, 198, 0.35);
  display: grid;
  place-items: center;
}
.contact-form {
  padding: 38px;
  border-radius: 27px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.11);
  box-shadow: var(--shadow-sm);
}
.form-control,
.form-select {
  min-height: 51px;
  border-radius: 12px;
  border-color: rgba(103, 93, 198, 0.16);
  padding-inline: 14px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 0.22rem rgba(103, 93, 198, 0.12);
}
.form-label {
  font-size: 0.77rem;
  font-weight: 800;
  color: #545e72;
}
.site-footer {
  padding: 76px 0 28px;
  background: #121020;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 42px;
}
.footer-logo {
  width: 180px;
  filter: brightness(1.5);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 380px;
  margin-top: 18px;
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #b8b2ed;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.81rem;
  margin-top: 12px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
}
.socials a:hover {
  background: var(--brand-purple);
  color: #fff;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .nav-main {
    gap: 17px;
  }
  .nav-actions .outline {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 145px;
  }
  .hero-stage {
    min-height: 570px;
  }
  .product-window {
    max-width: 830px;
    left: 50%;
    transform: translateX(-50%) rotateY(-3deg);
  }
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-showcase {
    grid-template-columns: 1fr;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-card {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }
  .footer-grid > div:last-child {
    grid-column: 2/3;
  }
}
@media (max-width: 900px) {
  .nav-main {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .nav-actions > .btn-os {
    display: none;
  }
  .hero-title {
    font-size: clamp(3.2rem, 11vw, 5.6rem);
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }
  .logo-strip-grid {
    grid-template-columns: 1fr 1fr;
    padding: 24px 0;
  }
  .logo-strip-grid > span {
    grid-column: 1/-1;
  }
  .split-banner {
    grid-template-columns: 1fr;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .page-hero {
    padding-top: 145px;
  }
  .page-title {
    font-size: clamp(3rem, 11vw, 5.5rem);
  }
}
@media (max-width: 620px) {
  .container-os {
    width: min(100% - 28px, 1240px);
  }
  .section {
    padding: 82px 0;
  }
  .nav-shell {
    height: 84px;
  }
  .brand img {
    width: 154px;
  }
  .mobile-menu-btn {
    width: 43px;
    height: 43px;
  }
  .hero {
    padding: 128px 0 70px;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .hero-copy {
    font-size: 0.98rem;
  }
  .hero-cta {
    display: grid;
  }
  .hero-cta .btn-os {
    width: 100%;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    min-height: 410px;
  }
  .product-window {
    inset: 28px -55px auto -55px;
    min-height: 380px;
    transform: none;
  }
  .window-url {
    padding-inline: 18px;
  }
  .dashboard {
    grid-template-columns: 52px 1fr;
    min-height: 340px;
  }
  .dash-side {
    padding-top: 15px;
  }
  .dash-icon {
    width: 32px;
    height: 32px;
  }
  .dash-main {
    padding: 15px;
  }
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-stats .dash-stat:last-child {
    display: none;
  }
  .dash-car {
    height: 145px;
  }
  .logo-strip-grid {
    grid-template-columns: 1fr;
  }
  .trust-pill {
    justify-content: center;
  }
  .module-grid,
  .vehicle-grid,
  .page-feature-grid {
    grid-template-columns: 1fr;
  }
  .module-card {
    padding: 25px;
  }
  .feature-showcase {
    gap: 34px;
  }
  .video-shell {
    border-width: 3px;
    border-radius: 18px;
  }
  .split-banner .banner-card {
    padding: 30px;
    min-height: 300px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric {
    padding: 20px 12px;
  }
  .page-hero {
    padding: 125px 0 70px;
  }
  .page-title {
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }
  .content-layout {
    gap: 35px;
  }
  .cta-shell {
    padding: 35px 27px;
    border-radius: 25px;
  }
  .contact-info,
  .contact-form {
    padding: 28px 23px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
}

/* V3 satış ve menü revizyonları */
.nav-actions {
  margin-left: auto;
}
.mobile-menu-btn {
  margin-left: auto;
  order: 99;
}
.mega-menu {
  min-width: 650px !important;
  padding: 18px !important;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 18px;
}
.mega-grid .dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
}
.mega-grid .dropdown-item i {
  color: var(--brand-purple);
  font-size: 1rem;
  margin-top: 2px;
}
.mega-grid .dropdown-item span {
  display: block;
}
.mega-grid .dropdown-item small {
  display: block;
  font-weight: 550;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 2px;
}
.report-preview {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(103, 93, 198, 0.14);
  box-shadow: var(--shadow);
  background: #fff;
}
.report-preview img {
  display: block;
  width: 100%;
}
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.real-demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-red));
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.76rem;
  margin-bottom: 16px;
}
@media (max-width: 1100px) {
  .mega-menu {
    min-width: 560px !important;
  }
}
@media (max-width: 900px) {
  .nav-shell {
    justify-content: space-between;
  }
  .brand {
    margin-right: auto;
  }
  .nav-actions {
    margin-left: auto;
  }
  .mobile-menu-btn {
    margin-left: auto;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
}

/* V4 fiyatlandırma sayfası ve ana sayfa fiyat özeti */
.pricing-heading,
.pricing-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 42px;
}
.pricing-heading > div,
.pricing-intro > div {
  max-width: 760px;
}
.pricing-heading .section-lead,
.pricing-intro .section-lead {
  margin-bottom: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.13);
  box-shadow: 0 15px 44px rgba(31, 27, 63, 0.07);
  overflow: hidden;
}
.price-card.featured {
  color: #fff;
  background: linear-gradient(150deg, var(--dark), var(--dark-2) 60%, #30295d);
  border-color: rgba(185, 178, 255, 0.28);
  box-shadow: 0 28px 75px rgba(31, 27, 63, 0.23);
  transform: translateY(-10px);
}
.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.plan-label {
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--ink);
}
.featured .plan-label {
  color: #fff;
}
.plan-duration {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--brand-purple);
  font-size: 0.69rem;
  font-weight: 850;
}
.featured .plan-duration {
  background: rgba(255, 255, 255, 0.1);
  color: #dad5ff;
}
.price-value {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1;
}
.price-value strong {
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  letter-spacing: -0.07em;
  font-weight: 950;
  color: var(--brand-purple);
}
.price-value span {
  font-size: 0.9rem;
  font-weight: 850;
  color: var(--muted);
  margin-top: 9px;
}
.featured .price-value strong,
.featured .price-value span {
  color: #fff;
}
.old-price {
  position: relative;
  width: max-content;
  color: rgb(255 255 255 / 80%);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.old-price:after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  background: var(--brand-red);
  transform: rotate(-5deg);
}
.price-monthly {
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 12px 0 18px;
}
.featured .price-monthly {
  color: #c8c2ff;
}
.price-card > p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 18px 0 22px;
}
.featured > p {
  color: rgba(255, 255, 255, 0.67);
}
.price-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-purple);
  font-weight: 850;
  font-size: 0.82rem;
  margin-top: auto;
}
.campaign-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-2));
  color: #fff;
  font-size: 0.69rem;
  font-weight: 900;
  margin: -5px 0 22px;
}
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 1000px;
  margin: 28px auto 0;
  padding: 16px 19px;
  border-radius: 16px;
  background: #eeecfb;
  color: #5149a5;
  font-size: 0.78rem;
  line-height: 1.65;
}
.pricing-note i {
  font-size: 1.05rem;
  margin-top: 2px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
}
.price-features li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #596377;
  font-size: 0.78rem;
  line-height: 1.5;
}
.featured .price-features li {
  color: rgba(255, 255, 255, 0.74);
}
.price-features i {
  color: var(--green);
  font-size: 1rem;
}
.campaign-detail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 25px 28px;
  border-radius: 22px;
  background: linear-gradient(120deg, #f0eefc, #fff3f6);
  border: 1px solid rgba(103, 93, 198, 0.12);
}
.campaign-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-red));
  color: #fff;
  font-size: 1.4rem;
}
.campaign-detail strong {
  font-size: 1rem;
  color: var(--ink);
}
.campaign-detail p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.discount-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}
.pricing-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.pricing-feature-grid > div {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.11);
  box-shadow: var(--shadow-sm);
}
.pricing-feature-grid i {
  font-size: 1.25rem;
  color: var(--brand-purple);
}
.pricing-feature-grid strong {
  display: block;
  font-size: 0.88rem;
  margin: 10px 0 4px;
}
.pricing-feature-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}
.pricing-hero {
  background: radial-gradient(
      circle at 18% 25%,
      rgba(103, 93, 198, 0.35),
      transparent 33%
    ),
    radial-gradient(circle at 86% 20%, rgba(237, 37, 69, 0.2), transparent 30%),
    linear-gradient(140deg, var(--dark), var(--dark-2));
}
.pricing-grid-page .price-card {
  padding: 32px;
}
.pricing-grid-home .price-card {
  min-height: 310px;
}
@media (max-width: 1180px) {
  .nav-main {
    gap: 14px;
  }
  .nav-main > a,
  .nav-main .dropdown-toggle {
    font-size: 0.81rem;
  }
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .pricing-heading,
  .pricing-intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .pricing-heading .btn-os {
    width: 100%;
  }
  .campaign-detail {
    grid-template-columns: auto 1fr;
  }
  .discount-pill {
    grid-column: 1/-1;
    width: max-content;
    margin-left: 72px;
  }
  .pricing-value {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .price-card,
  .pricing-grid-page .price-card {
    padding: 25px 22px;
  }
  .price-value strong {
    font-size: 3.25rem;
  }
  .campaign-detail {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .campaign-icon {
    width: 48px;
    height: 48px;
  }
  .discount-pill {
    grid-column: auto;
    margin-left: 0;
  }
  .pricing-feature-grid {
    grid-template-columns: 1fr;
  }
  .pricing-note {
    font-size: 0.74rem;
  }
  .pricing-heading,
  .pricing-intro {
    margin-bottom: 30px;
  }
}

.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(103, 93, 198, 0.18),
      transparent 32%
    ),
    radial-gradient(circle at 82% 15%, rgba(237, 37, 69, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfafe, #fff);
  padding: 80px 0;
}
.notfound-card {
  max-width: 760px;
  margin: auto;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.12);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 58px 42px;
}
.notfound-card h1 {
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
  margin: 0 0 18px;
  color: var(--ink);
}
.notfound-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 auto 28px;
  max-width: 610px;
}
.notfound-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.annual-advantage {
  background: #fff;
  border: 1px solid rgba(103, 93, 198, 0.15);
}
.sms-note {
  background: #f7fff9;
  color: #207a52;
  border: 1px solid rgba(32, 180, 134, 0.2);
}

/* Ana sayfa Ağustos 2026 revizyonları */
.brand img {
  width: 220px;
}

.offcanvas-header img {
  width: 180px;
}

.hero-stage {
  display: flex;
  min-height: 610px;
  align-items: stretch;
}

.hero-stage .hero-glow {
  top: -4%;
  right: -2%;
}

.hero-real-window {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 610px;
  transform: none;
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5d6480;
  font-size: 0.64rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-software-preview {
  position: relative;
  min-height: 562px;
  overflow: hidden;
  background: #f7f6fb;
}

.hero-software-preview-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.68;
  filter: saturate(0.92) contrast(0.96);
  transform: scale(1.02);
}

.hero-software-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.04),
      rgba(246, 245, 251, 0.2)
    );
  pointer-events: none;
}

.hero-vehicle-carousel {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(78%, 540px);
  padding: 22px 24px 20px;
  border: 1px solid rgba(103, 93, 198, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(31, 27, 63, 0.22);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -48%);
}

.hero-vehicle-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(103, 93, 198, 0.1);
  color: var(--brand-purple);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-vehicle-stack {
  position: relative;
  height: 245px;
  margin: 8px 0 2px;
}

.hero-vehicle-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) scale(0.975);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-vehicle-slide.active {
  opacity: 1;
  transform: none;
}

.hero-vehicle-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(103, 93, 198, 0.12);
}

.hero-vehicle-caption strong {
  color: var(--brand-purple);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.hero-vehicle-caption span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: right;
}

.banner-card {
  display: flex;
  flex-direction: column;
}

.banner-card-content {
  position: relative;
  z-index: 2;
}

.banner-card .btn-os {
  align-self: flex-start;
  margin-top: auto;
}

.banner-visual {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.banner-visual span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.price-value {
  flex-wrap: wrap;
}

.price-vat {
  align-self: center;
  margin: 6px 0 0 3px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(103, 93, 198, 0.09);
  color: var(--brand-purple);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.featured .price-vat {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.faq-item .collapse > div,
.faq-item .collapsing > div {
  padding: 0 22px 21px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-item .collapsing {
  overflow: hidden;
}

.faq-item button i {
  flex: 0 0 auto;
  transition: transform 0.22s ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .hero-stage {
    min-height: 590px;
  }

  .hero-real-window {
    left: auto;
    max-width: 830px;
    min-height: 590px;
    margin-inline: auto;
    transform: none;
  }

  .hero-software-preview {
    min-height: 542px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 180px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-real-window {
    inset: auto;
    min-height: 430px;
    margin-inline: 0;
  }

  .window-status {
    display: none;
  }

  .hero-software-preview {
    min-height: 382px;
  }

  .hero-vehicle-carousel {
    width: calc(100% - 26px);
    padding: 16px;
    border-radius: 20px;
  }

  .hero-vehicle-stack {
    height: 180px;
  }

  .hero-vehicle-caption {
    display: block;
  }

  .hero-vehicle-caption span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .banner-visual span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

/* Ana sayfa üst görsel düzeni: yazılım ekranı ve bağımsız araç vitrini */
.hero .hero-grid {
  align-items: flex-start;
}

.hero-stage {
  position: relative;
  display: block;
  min-height: 705px;
  margin-top: -34px;
}

.hero-stage .hero-glow {
  top: -2%;
  right: -4%;
}

.hero-real-window {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 510px;
  margin: 0;
  border: 1px solid rgba(103, 93, 198, 0.12);
  border-radius: 28px;
  box-shadow: 0 32px 82px rgba(31, 27, 63, 0.17);
  transform: none;
}

.hero-software-preview {
  min-height: 462px;
}

.hero-software-preview-bg {
  object-position: top center;
  opacity: 0.91;
  filter: saturate(0.96) contrast(0.99);
  transform: scale(1.005);
}

.hero-vehicle-showcase {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(245px, 1.15fr) minmax(
      120px,
      0.55fr
    );
  align-items: center;
  gap: 22px;
  width: calc(100% - 38px);
  min-height: 148px;
  margin: 18px auto 0;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(103, 93, 198, 0.12);
  border-radius: 26px;
  background: radial-gradient(
      circle at 72% 50%,
      rgba(103, 93, 198, 0.12),
      transparent 31%
    ),
    linear-gradient(118deg, #ffffff 0%, #faf9ff 58%, #fff7f9 100%);
  box-shadow: 0 22px 52px rgba(31, 27, 63, 0.11);
}

.hero-vehicle-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 112px;
  height: 4px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-red));
}

.hero-vehicle-showcase-copy,
.hero-vehicle-showcase-meta,
.hero-vehicle-visual {
  position: relative;
  z-index: 2;
}

.hero-vehicle-showcase-copy {
  display: grid;
  gap: 6px;
}

.hero-vehicle-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  color: var(--brand-purple);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.hero-vehicle-showcase-copy > strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.hero-vehicle-showcase-copy > span:last-child {
  max-width: 245px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.55;
}

.hero-vehicle-visual {
  height: 110px;
}

.hero-vehicle-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 92px;
  border: 1px solid rgba(103, 93, 198, 0.11);
  border-radius: 50%;
  background: rgba(103, 93, 198, 0.045);
  transform: translate(-50%, -50%);
}

.hero-vehicle-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 13px 13px rgba(31, 27, 63, 0.11));
  transform: translateX(12px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.hero-vehicle-slide.active {
  opacity: 1;
  transform: none;
}

.hero-vehicle-showcase-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid rgba(103, 93, 198, 0.12);
  text-align: right;
}

.hero-vehicle-showcase-meta strong {
  color: var(--brand-purple);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.hero-vehicle-showcase-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .hero-stage {
    min-height: 700px;
    margin-top: 0;
  }

  .hero-real-window {
    max-width: 830px;
    margin-inline: auto;
  }

  .hero-vehicle-showcase {
    max-width: 790px;
  }
}

@media (max-width: 760px) {
  .hero-stage {
    min-height: 735px;
  }

  .hero-vehicle-showcase {
    grid-template-columns: 1fr 1.15fr;
    width: calc(100% - 18px);
    padding: 18px;
  }

  .hero-vehicle-showcase-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0;
    border-top: 1px solid rgba(103, 93, 198, 0.1);
    border-left: 0;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .hero-stage {
    min-height: 665px;
  }

  .hero-real-window {
    min-height: 390px;
  }

  .hero-software-preview {
    min-height: 342px;
  }

  .hero-vehicle-showcase {
    grid-template-columns: 1fr;
    min-height: 240px;
    margin-top: 14px;
    border-radius: 22px;
  }

  .hero-vehicle-showcase-copy > span:last-child {
    max-width: none;
  }

  .hero-vehicle-visual {
    height: 100px;
  }

  .hero-vehicle-showcase-meta {
    grid-column: auto;
  }
}

/* =========================================================
   ANA SAYFA HERO — KAPORTA ÇİZİM VİTRİNİ
   Yazılım ekranı yerine yalnızca araç çizimlerini gösterir.
   ========================================================= */
.hero .hero-grid {
  align-items: center;
}

.hero-stage {
  position: relative;
  display: block;
  min-height: 620px;
  margin-top: 0;
}

.hero-stage .hero-glow {
  top: 5%;
  right: 2%;
  width: 520px;
  height: 520px;
  opacity: 0.2;
}

.hero-vehicle-gallery {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(103, 93, 198, 0.14);
  border-radius: 32px;
  background: radial-gradient(
      circle at 78% 12%,
      rgba(237, 37, 69, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 16% 80%,
      rgba(103, 93, 198, 0.13),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 248, 255, 0.97)
    );
  box-shadow: 0 36px 90px rgba(31, 27, 63, 0.16);
}

.hero-vehicle-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 150px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-red));
}

.hero-vehicle-gallery-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 32px 34px 18px;
}

.hero-gallery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-purple);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-vehicle-gallery-head h2 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.hero-gallery-count {
  display: grid;
  min-width: 100px;
  padding: 12px 15px;
  border: 1px solid rgba(103, 93, 198, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 12px 28px rgba(31, 27, 63, 0.06);
}

.hero-gallery-count strong {
  color: var(--brand-purple);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.hero-vehicle-scene {
  position: relative;
  height: 330px;
  margin: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(103, 93, 198, 0.09);
  border-radius: 26px;
  background: radial-gradient(
      ellipse at 50% 80%,
      rgba(103, 93, 198, 0.11),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(246, 245, 252, 0.84)
    );
}

.hero-scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image: linear-gradient(
      rgba(103, 93, 198, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(103, 93, 198, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 20%, transparent 76%);
}

.hero-scene-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(103, 93, 198, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-scene-orbit.orbit-one {
  width: 470px;
  height: 230px;
}

.hero-scene-orbit.orbit-two {
  width: 365px;
  height: 175px;
  border-color: rgba(237, 37, 69, 0.1);
}

.hero-scene-floor {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 43px;
  height: 22px;
  border-radius: 50%;
  background: rgba(31, 27, 63, 0.11);
  filter: blur(13px);
}

.hero-vehicle-scene .hero-vehicle-slide {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 86%;
  height: 76%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 18px 16px rgba(31, 27, 63, 0.16));
  transform: translate(-46%, -47%) scale(0.94);
  transition: opacity 0.48s ease,
    transform 0.48s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.hero-vehicle-scene .hero-vehicle-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-scene-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 205px;
  padding: 10px 12px;
  border: 1px solid rgba(103, 93, 198, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 0.59rem;
  line-height: 1.35;
  box-shadow: 0 12px 28px rgba(31, 27, 63, 0.08);
  backdrop-filter: blur(8px);
}

.hero-scene-note i {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: rgba(103, 93, 198, 0.09);
  color: var(--brand-purple);
  font-size: 0.8rem;
}

.hero-scene-note strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.hero-scene-note.note-top {
  top: 17px;
  left: 17px;
}

.hero-scene-note.note-bottom {
  right: 17px;
  bottom: 17px;
}

.hero-vehicle-gallery-foot {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(320px, 1.28fr);
  align-items: center;
  gap: 22px;
  padding: 20px 28px 28px;
}

.hero-gallery-caption small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-gallery-caption strong {
  display: block;
  color: var(--brand-purple);
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: 0.045em;
}

.hero-gallery-caption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-vehicle-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.hero-vehicle-tabs button {
  min-height: 35px;
  padding: 7px 8px;
  border: 1px solid rgba(103, 93, 198, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  color: #656b7d;
  font-size: 0.57rem;
  font-weight: 850;
  transition: 0.2s ease;
}

.hero-vehicle-tabs button:hover,
.hero-vehicle-tabs button.active {
  border-color: rgba(103, 93, 198, 0.28);
  background: var(--brand-purple);
  color: #fff;
  box-shadow: 0 8px 18px rgba(103, 93, 198, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .hero-stage {
    min-height: auto;
  }

  .hero-vehicle-gallery {
    max-width: 850px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .hero-vehicle-gallery-head {
    padding: 27px 24px 15px;
  }

  .hero-vehicle-scene {
    height: 290px;
    margin-inline: 14px;
  }

  .hero-scene-note {
    display: none;
  }

  .hero-vehicle-gallery-foot {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 18px 20px 23px;
  }
}

@media (max-width: 620px) {
  .hero-stage {
    min-height: auto;
  }

  .hero-vehicle-gallery {
    border-radius: 24px;
  }

  .hero-vehicle-gallery-head {
    align-items: center;
    gap: 14px;
    padding: 24px 18px 14px;
  }

  .hero-vehicle-gallery-head h2 {
    font-size: 1.22rem;
  }

  .hero-gallery-count {
    min-width: 74px;
    padding: 10px;
  }

  .hero-vehicle-scene {
    height: 235px;
    border-radius: 20px;
  }

  .hero-scene-orbit.orbit-one {
    width: 310px;
    height: 150px;
  }

  .hero-scene-orbit.orbit-two {
    width: 245px;
    height: 115px;
  }

  .hero-vehicle-scene .hero-vehicle-slide {
    width: 96%;
    height: 82%;
  }

  .hero-vehicle-tabs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .hero-vehicle-tabs::-webkit-scrollbar {
    display: none;
  }

  .hero-vehicle-tabs button {
    flex: 0 0 auto;
    min-width: 82px;
  }
}

/* Ana sayfa - modern güven ve erişim şeridi */
.logo-strip-modern {
  position: relative;
  padding: 34px 0;
  overflow: hidden;
  border-block: 1px solid rgba(103, 93, 198, 0.1);
  background: radial-gradient(
      circle at 8% 0%,
      rgba(103, 93, 198, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 94% 100%,
      rgba(237, 37, 69, 0.07),
      transparent 25%
    ),
    linear-gradient(180deg, #fbfafe 0%, #f7f6fc 100%);
}

.logo-strip-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(103, 93, 198, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(103, 93, 198, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.logo-strip-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 2.14fr);
  align-items: stretch;
  gap: 22px;
}

.logo-strip-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  padding: 24px 27px;
  border: 1px solid rgba(103, 93, 198, 0.13);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(103, 93, 198, 0.98),
    rgba(78, 69, 167, 0.98)
  );
  color: #fff;
  box-shadow: 0 18px 44px rgba(78, 69, 167, 0.2);
}

.logo-strip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.logo-strip-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-red);
}

.logo-strip-intro strong {
  display: block;
  max-width: 310px;
  font-size: 1.15rem;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.logo-strip-intro small {
  display: block;
  max-width: 320px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  line-height: 1.55;
  font-weight: 600;
}

.logo-strip-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.logo-strip-modern .trust-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 132px;
  padding: 19px 17px;
  overflow: hidden;
  border: 1px solid rgba(103, 93, 198, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 13px 34px rgba(31, 27, 63, 0.075);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.logo-strip-modern .trust-pill::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  /*background: radial-gradient(circle, rgba(103, 93, 198, .10), transparent 68%);*/
}

.logo-strip-modern .trust-pill:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(103, 93, 198, 0.24);
  box-shadow: 0 20px 44px rgba(31, 27, 63, 0.13);
}

.logo-strip-modern .trust-pill-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #f1eeff, #e9e5fb);
  color: var(--brand-purple);
  box-shadow: inset 0 0 0 1px rgba(103, 93, 198, 0.07);
}

.logo-strip-modern .trust-pill:nth-child(2) .trust-pill-icon,
.logo-strip-modern .trust-pill:nth-child(4) .trust-pill-icon {
  background: linear-gradient(145deg, #fff1f4, #fde6eb);
  color: var(--brand-red);
  box-shadow: inset 0 0 0 1px rgba(237, 37, 69, 0.07);
}

.logo-strip-modern .trust-pill-icon i {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 1.15rem;
}

.logo-strip-modern .trust-pill-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.logo-strip-modern .trust-pill-copy strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 900;
}

.logo-strip-modern .trust-pill-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .logo-strip-shell {
    grid-template-columns: 1fr;
  }

  .logo-strip-intro {
    min-height: auto;
  }

  .logo-strip-intro strong,
  .logo-strip-intro small {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .logo-strip-modern {
    padding: 25px 0;
  }

  .logo-strip-shell {
    gap: 14px;
  }

  .logo-strip-intro {
    padding: 21px 22px;
    border-radius: 20px;
  }

  .logo-strip-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .logo-strip-modern .trust-pill {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 135px;
    padding: 17px 15px;
    border-radius: 18px;
  }

  .logo-strip-modern .trust-pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}

@media (max-width: 390px) {
  .logo-strip-intro strong {
    font-size: 1.03rem;
  }

  .logo-strip-modern .trust-pill {
    min-height: 140px;
    padding: 15px 13px;
  }

  .logo-strip-modern .trust-pill-copy strong {
    font-size: 0.76rem;
  }

  .logo-strip-modern .trust-pill-copy small {
    font-size: 0.59rem;
  }
}
