@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800;900&display=swap");

:root {
  --primary: #0f172a;
  --primary-soft: #16243a;
  --accent: #bfa068;
  --accent-2: #8a6a31;
  --bg: #f8fafc;
  --card: #ffffff;
  --muted: #64748b;
  --line: #e2e8f0;
  --teal: #243b5a;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  --container: min(1180px, calc(100vw - 48px));
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--primary);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 90, 95, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(15, 92, 104, 0.08), transparent 26%),
    var(--bg);
  font-weight: 760;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform: scaleX(var(--scroll, 0));
  transform-origin: left;
  transition: transform 80ms linear;
}

body,
input,
select,
button {
  font: inherit;
}

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

button,
input,
select {
  border: 0;
}

button {
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 570px;
  padding: 22px 0 24px;
  overflow: visible;
  isolation: isolate;
  background: #07111f;
  z-index: 20;
}

.heroVideoStage,
.heroVideoStage::before,
.heroVideoStage::after,
.heroVideo {
  position: absolute;
  inset: 0;
}

.heroVideoStage {
  z-index: -2;
  background: #07111f;
  overflow: hidden;
}

.heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: none;
  transition: opacity 1400ms ease;
  will-change: opacity;
}

.heroVideo.active {
  opacity: 1;
  transform: none;
}

.heroVideoStage::before {
  content: "";
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.82), rgba(15, 23, 42, 0.48) 45%, rgba(15, 92, 104, 0.28)),
    linear-gradient(180deg, rgba(5, 12, 24, 0.4), rgba(5, 12, 24, 0.18) 46%, rgba(248, 250, 252, 0.02));
}

.heroVideoStage::after {
  content: "";
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 88%, rgba(5, 12, 24, 0.18) 100%);
}

.videoStepper {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 5;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.videoStepper span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 260ms ease, background 260ms ease;
}

.videoStepper span.active {
  width: 24px;
  background: #fff;
}

.topNav {
  position: relative;
  z-index: 8;
  width: min(1180px, calc(100vw - 56px));
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.46);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo img {
  width: 246px;
  max-height: 50px;
  height: auto;
  object-fit: contain;
}

.topNav .logo img {
  filter: invert(1) brightness(1.18) contrast(0.96);
  opacity: 0.96;
}

.navActions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
}

.heroLayout {
  width: var(--container);
  margin: 54px auto 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.heroCopy {
  width: min(850px, 100%);
  color: #fff;
}

.heroPill,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
}

.heroPill {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero h1 {
  max-width: 840px;
  margin: 18px auto 14px;
  font-size: clamp(38px, 4.35vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}

.searchTabs {
  position: relative;
  z-index: 9;
  width: fit-content;
  margin: 26px auto 12px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.searchTabs button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font-size: 14px;
}

.searchTabs button.active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.searchBar {
  position: relative;
  z-index: 12;
  width: min(1120px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr 1.05fr 82px;
  min-height: 80px;
  overflow: visible;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.26);
}

.searchBar label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.searchBar label > span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
}

.searchBar input,
.searchBar select {
  width: 100%;
  min-width: 0;
  color: var(--primary);
  background: transparent;
  outline: 0;
  font-size: 17px;
  line-height: 1.2;
}

.guestSelects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
}

.searchSubmit {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: auto 10px auto 6px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.28);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.searchSubmit:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 42px rgba(255, 90, 95, 0.34);
}

.searchSubmit svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cityDropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  width: min(520px, calc(100vw - 48px));
  max-height: 280px;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cityDropdown.open {
  display: grid;
}

.cityDropdown button {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--primary);
  background: #f8fafc;
  text-align: left;
  font-size: 14px;
  transition: background 160ms ease, transform 160ms ease;
}

.cityDropdown button:hover {
  background: #e0f2fe;
  transform: translateY(-1px);
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 0 0;
}

.categoryRail,
.customerGuide,
.purposeStrip,
.platformDepth,
.latest,
.marketStrip,
.seoBlogStrip,
.businessNudge,
.pricingSection,
.operationsBoard,
.modelBand,
.requestBox {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.categoryRail {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  margin-top: 18px;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.categoryRail::-webkit-scrollbar {
  display: none;
}

.categoryRail button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  font-size: 14px;
}

.categoryRail span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
}

.categoryRail button.active {
  border-color: transparent;
  color: #fff;
  background: var(--primary);
}

.categoryRail button.active span {
  color: var(--primary);
  background: #fff;
}

.sectionTitle {
  display: grid;
  gap: 10px;
}

.kicker {
  color: #b7791f;
}

.sectionTitle h2,
.depthIntro h2,
.opsCopy h2,
.modelCopy h2,
.requestBox h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.02;
  letter-spacing: 0;
}

.sectionTitle p,
.depthIntro p,
.opsCopy p,
.modelCopy p,
.requestBox p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.customerGuide {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.customerGuide .sectionTitle {
  display: block;
  max-width: 780px;
}

.customerGuide .sectionTitle .kicker,
.customerGuide .sectionTitle p:last-child {
  grid-column: auto;
}

.customerGuide .sectionTitle h2 {
  grid-column: auto;
  grid-row: auto;
  max-width: 720px;
}

.customerAnimatedTitle {
  margin: 10px 0 10px;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1;
}

.customerAnimatedTitle span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.motion-ready .customerGuide.revealed .customerAnimatedTitle span,
.customerGuide:not(.motionItem) .customerAnimatedTitle span {
  animation: titleLineIn 720ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.customerAnimatedTitle span:nth-child(2) {
  animation-delay: 120ms;
}

.customerAnimatedTitle span:nth-child(3) {
  animation-delay: 240ms;
}

.customerCards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.customerCards article,
.purposeStrip article,
.depthGrid article,
.marketStrip article,
.seoBlogCards a {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.customerCards article {
  position: relative;
  min-height: 142px;
  padding: 18px;
  overflow: hidden;
}

.customerCards article::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 86px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #f7c948);
  border-radius: 999px 999px 0 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 240ms ease;
}

.customerCards article:hover::after {
  transform: scaleX(1);
}

.guideIcon,
.modelIcon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--teal);
  background: #e6f3f5;
}

.guideIcon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.customerCards strong,
.purposeStrip strong,
.depthGrid strong,
.marketStrip strong,
.seoBlogCards strong,
.opsTimeline strong,
.modelCards strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
  line-height: 1.2;
}

.customerCards p,
.purposeStrip span,
.depthGrid p,
.opsTimeline p,
.modelCards span {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.businessNudge {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  gap: 18px 22px;
  align-items: center;
  margin-top: 26px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(191, 160, 104, 0.11), transparent 30%),
    radial-gradient(circle at 91% 20%, rgba(14, 94, 112, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 62%, #eef6f8 100%);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.pricingSection {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.pricingSection::before {
  content: "Fiyatlandırma";
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.pricingSection::after {
  content: "İlk 3 ilan ücretsizdir; devamında Temel veya Pro paketle yayın süreni ve görsel hakkını artırırsın.";
  max-width: 640px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.businessNudge::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(14, 94, 112, 0.045);
}

.nudgeCopy,
.publicPricing,
.storyDeck,
.routeFlow {
  position: relative;
  z-index: 1;
}

.nudgeCopy h2 {
  margin: 8px 0 10px;
  max-width: 560px;
  color: var(--primary);
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: 1.02;
}

.nudgeCopy p {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.nudgeCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1e3a5f);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.storyDeck {
  display: grid;
  gap: 12px;
}

.storyStage {
  position: relative;
  min-height: 224px;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 14%, rgba(14, 94, 112, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(248, 250, 252, 0.34));
  box-shadow: none;
  overflow: hidden;
  transition: background 380ms ease, border-color 380ms ease, box-shadow 380ms ease;
}

.storyStage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(14, 94, 112, 0.08), transparent 24%, transparent 74%, rgba(191, 160, 104, 0.1)),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.025) 0 1px, transparent 1px 58px);
  opacity: 0.45;
  pointer-events: none;
}

.storyDeck[data-active="1"] .storyStage {
  background:
    radial-gradient(circle at 12% 14%, rgba(191, 160, 104, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 248, 242, 0.42));
}

.storyDeck[data-active="2"] .storyStage {
  background:
    radial-gradient(circle at 16% 20%, rgba(245, 158, 11, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(240, 253, 250, 0.44));
}

.storyDeck[data-active="3"] .storyStage {
  background:
    radial-gradient(circle at 16% 18%, rgba(14, 94, 112, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(239, 246, 255, 0.42));
}

.storyPanel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(310px, 0.98fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  opacity: 0;
  transform: translate3d(42px, 0, 0) scale(0.985);
  filter: blur(6px);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 520ms ease;
}

.storyPanel.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.storyPanel.active .storyVisual {
  animation: storyVisualIn 700ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.storyPanel.active .storyText strong,
.storyPanel.active .storyText p {
  animation: storyCopyIn 620ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.storyPanel.active .storyText p {
  animation-delay: 90ms;
}

.storyPanel.exiting {
  opacity: 0;
  transform: translate3d(-34px, 0, 0) scale(0.985);
  filter: blur(6px);
}

.storyVisual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 156px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 34% 34%, rgba(14, 94, 112, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(238, 246, 248, 0.42));
  box-shadow: inset 0 0 0 1px rgba(14, 94, 112, 0.06);
  overflow: hidden;
}

.storyVisual::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 1px solid rgba(14, 94, 112, 0.16);
  animation: visualOrbit 5.5s ease-in-out infinite;
}

.brandChip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 222px;
  min-height: 58px;
  padding: 10px 18px;
  border-radius: 18px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.brandChip img {
  width: 178px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.brandLogoOnly {
  justify-content: center;
}

.miniBadge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: #0f5c68;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
  animation: badgeFloat 4.2s ease-in-out infinite;
}

.miniBadge.fee {
  left: 16px;
  top: 18px;
}

.miniBadge.phone {
  right: 16px;
  bottom: 18px;
  background: var(--accent-2);
  animation-delay: 0.8s;
}

.storyVisual.paths {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  padding: 0 16px;
}

.storyVisual.paths i {
  display: none;
}

.storyVisual.paths span,
.contactMap span,
.priceCompare span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.storyVisual.paths span {
  width: 100%;
  min-width: 0;
  padding: 0 5px;
  font-size: 11px;
  white-space: nowrap;
}

.storyVisual.paths i,
.contactMap i {
  position: relative;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: rgba(14, 94, 112, 0.2);
  overflow: hidden;
}

.storyVisual.paths i::after,
.contactMap i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 55%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #0f5c68, var(--accent));
  animation: routePulse 2.4s ease-in-out infinite;
}

.priceCompare {
  grid-template-columns: minmax(92px, 1fr) 34px minmax(92px, 1fr);
  gap: 7px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(236, 253, 245, 0.32));
  box-shadow: inset 0 0 0 1px rgba(14, 94, 112, 0.05);
}

.priceCompare span {
  min-height: 68px;
  padding: 8px 9px;
  flex-direction: column;
  text-align: center;
  font-size: 10.5px;
  color: var(--muted);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.priceCompare b {
  color: var(--primary);
  font-size: 19px;
}

.priceCompare .oldPrice b {
  color: #b45309;
}

.priceCompare .newPrice {
  background: #eaf8f2;
}

.priceCompare .newPrice b {
  color: #0f766e;
}

.arrowMark {
  display: grid;
  place-items: center;
  min-width: 34px !important;
  min-height: 68px !important;
  padding: 0 !important;
  border-radius: 12px !important;
  color: #0f5c68 !important;
  font-size: 18px !important;
  animation: arrowNudge 1.8s ease-in-out infinite;
}

.contactMap {
  grid-template-columns: 76px 24px 50px 24px 76px;
  justify-content: center;
  gap: 5px;
  padding: 12px;
}

.contactMap span {
  width: auto;
  min-width: 0;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.contactMap i {
  align-self: center;
}

.contactMap .brandDot {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  color: #fff;
  background: #fff;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.1);
}

.contactMap .brandDot img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.storyText {
  position: relative;
  z-index: 2;
}

.storyText .storyIcon {
  display: none;
}

.storyIcon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #0f5c68;
  background: linear-gradient(135deg, #eaf5f7, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(14, 94, 112, 0.08), 0 16px 28px rgba(15, 23, 42, 0.08);
}

.storyIcon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.storyPanel strong {
  display: block;
  color: var(--primary);
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.08;
}

.storyPanel p {
  margin: 9px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.44;
}

.storyControls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.storyControls button {
  min-height: 38px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.storyControls button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), #0f5c68);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

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

.routeFlow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: max-content minmax(52px, 1fr) max-content minmax(52px, 1fr) max-content;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin: 2px auto -2px;
  color: #0f5c68;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.routeFlow span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(14, 94, 112, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.routeFlow i {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: rgba(14, 94, 112, 0.13);
  overflow: hidden;
}

.routeFlow i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #0f5c68, var(--accent));
  animation: routePulse 2.4s ease-in-out infinite;
}

.routeFlow i:nth-of-type(2)::after {
  animation-delay: 0.7s;
}

.publicPricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.publicPricing article {
  min-height: 96px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.publicPricing article.highlight {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), #1e3a5f);
}

.publicPricing span,
.publicPricing strong,
.publicPricing p {
  display: block;
}

.publicPricing span {
  color: #b7791f;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.publicPricing article.highlight span,
.publicPricing article.highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.publicPricing strong {
  margin-top: 7px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.1;
}

.publicPricing article.highlight strong {
  color: #fff;
}

.publicPricing p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.businessNudge + .seoBlogStrip {
  margin-top: 24px;
}

.purposeStrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.purposeStrip article {
  min-height: 94px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent-2);
}

.platformDepth {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: 28px;
  align-items: center;
}

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

.depthGrid article {
  min-height: 142px;
  padding: 20px;
}

.depthGrid span,
.marketStrip span,
.seoBlogCards span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #b7791f;
  text-transform: uppercase;
  font-size: 12px;
}

.latest {
  margin-top: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.latest .sectionTitle {
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.latest .sectionTitle .kicker,
.latest .sectionTitle h2 {
  grid-column: 1;
}

.latest .sectionTitle p:last-child {
  grid-column: 2;
  max-width: 420px;
  font-size: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.emptyListings {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 116px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  background: #f8fafc;
}

.emptyListings h3 {
  margin: 0;
  color: var(--primary);
  font-size: 17px;
}

.dealCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.dealImage {
  position: relative;
  height: 190px;
  background: #e2e8f0;
}

.dealImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bestPriceBadge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
}

.dealBody {
  padding: 18px;
}

.dealBody p,
.dealBody h3 {
  margin: 0;
}

.dealBody p {
  color: var(--muted);
  font-size: 13px;
}

.dealBody h3 {
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.15;
}

.dealMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.dealMeta strong {
  color: var(--primary);
  font-size: 18px;
}

.publicLegal {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.dealActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dealActions a,
.dealActions button,
.compareBar button,
.requestForm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
}

.compareAction {
  color: var(--primary);
  background: #f1f5f9;
}

.compareAction.selected {
  color: #fff;
  background: var(--primary);
}

.callAction,
.requestForm button {
  color: #fff;
  background: var(--accent);
}

.softAction {
  color: var(--teal);
  background: #e6f3f5;
}

.marketStrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.marketStrip article {
  padding: 18px;
}

.seoBlogStrip,
.operationsBoard,
.modelBand,
.requestBox {
  margin-top: 24px;
}

.pricingSection + .seoBlogStrip {
  display: none;
}

.seoBlogStrip + .modelBand {
  margin-top: 20px;
}

.seoBlogStrip {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 28px;
  align-items: center;
}

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

.seoBlogCards a {
  min-height: 116px;
  padding: 18px;
}

.operationsBoard {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.1fr);
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.operationsBoard .kicker,
.operationsBoard h2,
.operationsBoard p,
.operationsBoard strong {
  color: var(--primary);
}

.operationsBoard p {
  color: var(--muted);
}

.opsTimeline {
  display: grid;
  gap: 12px;
}

.opsTimeline article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.opsTimeline article span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e6f3f5, #fff7ed);
}

.modelBand {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.modelSliderHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.modelBand .kicker,
.modelBand h2,
.modelBand p {
  color: var(--primary);
}

.modelSwitch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #f1f5f9;
}

.modelSwitch button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
}

.modelSwitch button.active {
  color: #fff;
  background: var(--primary);
}

.modelTrack {
  position: relative;
  min-height: 300px;
  margin-top: 14px;
}

.modelSlide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(440px, 1.15fr);
  gap: 22px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.modelSlide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.modelEyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b7791f;
  text-transform: uppercase;
  font-size: 12px;
}

.modelCards {
  display: grid;
  gap: 10px;
}

.modelCards article {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3px;
  min-height: 66px;
  padding: 12px 15px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.modelCards .modelIcon {
  display: none;
}

.modelCards span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.modelCopy h2 {
  max-width: 540px;
  font-size: clamp(28px, 2.85vw, 44px);
  line-height: 1.1;
}

.modelCopy p {
  max-width: 590px;
  font-size: 14px;
  line-height: 1.48;
}

.requestBox {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

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

.requestForm input,
.requestForm select {
  min-height: 50px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--primary);
  background: #f8fafc;
  outline: 0;
  font-size: 14px;
}

.requestForm input:focus,
.requestForm select:focus {
  border-color: var(--teal);
  background: #fff;
}

.requestForm button {
  grid-column: 1 / -1;
  min-height: 52px;
}

.siteFooter {
  width: 100%;
  margin-top: 54px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(180px, 0.5fr));
  gap: 28px;
  color: #dbeafe;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerLogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
}

.footerLogo span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--primary);
  background: #fff;
}

.footerBrand p {
  max-width: 560px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.footerCol {
  display: grid;
  gap: 10px;
}

.footerCol strong {
  color: #fff;
}

.footerCol a {
  color: #cbd5e1;
  font-size: 14px;
}

.footerSeo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(420px, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footerSeo .kicker {
  color: var(--accent);
}

.footerSeo strong {
  display: block;
  max-width: 260px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.4;
}

.footerSeo nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footerSeo a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footerSeo a::after {
  content: "→";
  margin-left: 9px;
  color: var(--accent);
}

.footerSeo a:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 160, 104, 0.52);
  background: rgba(255, 255, 255, 0.095);
}

.footerBottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 13px;
}

.aboutBody {
  background:
    linear-gradient(180deg, #eef4f8 0, #f8fafc 280px, #fff 58%, #f8fafc 100%);
}

.aboutBody .motionItem {
  opacity: 1;
  transform: none;
  filter: none;
}

.motion-ready.aboutBody .motionItem {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(2px);
}

.motion-ready.aboutBody .motionItem.revealed {
  opacity: 1;
  transform: translate3d(0, var(--parallaxLift, 0), 0);
  filter: blur(0);
}

.motion-ready.aboutBody .aboutGrid article {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(0.19, 1, 0.22, 1);
}

.motion-ready.aboutBody .aboutGrid.revealed article {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready.aboutBody .aboutGrid.revealed article:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready.aboutBody .aboutGrid.revealed article:nth-child(3) {
  transition-delay: 180ms;
}

.staticTop {
  margin-top: 24px;
  background: rgba(15, 23, 42, 0.9);
}

.aboutHero,
.aboutIntro,
.aboutGrid,
.aboutLegal,
.aboutSeo {
  width: var(--container);
  margin: 14px auto 0;
}

.aboutHero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: center;
  padding: 28px 34px 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 58%, rgba(240, 247, 250, 0.94) 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.aboutHero::before {
  content: none;
}

.aboutHero::after {
  content: none;
}

.aboutHeroMap {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.84));
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.aboutHeroMap div {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.aboutHeroMap div::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #c49745);
  box-shadow: 0 0 0 6px rgba(14, 83, 97, 0.08);
}

.aboutHeroMap span,
.aboutHeroMap strong {
  display: block;
}

.aboutHeroMap span {
  margin-bottom: 4px;
  color: #b7791f;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.aboutHeroMap strong {
  color: var(--primary);
  font-size: 13px;
  line-height: 1.25;
}

.aboutHero h1 {
  position: relative;
  z-index: 1;
  grid-column: 1;
  max-width: 700px;
  margin: 0;
  font-size: clamp(28px, 2.55vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.aboutHero > .kicker {
  grid-column: 1;
}

.aboutHero p {
  position: relative;
  z-index: 1;
  grid-column: 1;
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.aboutGrid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.aboutGrid::before {
  content: none;
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.16), transparent);
  pointer-events: none;
}

.aboutGrid article {
  position: relative;
  min-height: 142px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.aboutGrid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(14, 83, 97, 0.055);
}

.aboutGrid article:hover {
  border-color: rgba(14, 83, 97, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(240, 247, 250, 0.92));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  transform: translateY(-3px);
}

.aboutGrid span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #16606c);
  box-shadow: 0 12px 22px rgba(14, 83, 97, 0.16);
  font-size: 11px;
  font-weight: 900;
}

.aboutGrid h2,
.aboutLegal h2,
.aboutSeo h2 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.16;
}

.aboutGrid p,
.aboutLegal p,
.aboutSeo p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.aboutLegal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.94));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.aboutLegal div {
  position: relative;
  align-self: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(240, 247, 250, 0.72);
}

.aboutLegal p {
  grid-column: 2;
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.aboutLegal p:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.aboutSeo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 20px;
  background:
    linear-gradient(135deg, #fff, rgba(248, 250, 252, 0.94));
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.aboutSeo p {
  max-width: 900px;
}

.primaryCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
  font-size: 14px;
}

@media (max-width: 980px) {
  .aboutGrid,
  .aboutLegal,
  .aboutSeo {
    grid-template-columns: 1fr;
  }

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

  .aboutGrid {
    gap: 12px;
  }

  .aboutGrid::before,
  .aboutHeroMap {
    display: none;
  }

  .aboutGrid article {
    min-height: auto;
    border-right: 1px solid rgba(226, 232, 240, 0.95);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  .aboutLegal div {
    position: static;
  }

  .aboutHero,
  .aboutSeo {
    padding: 20px;
  }

  .aboutLegal {
    padding: 20px;
  }

  .aboutLegal p {
    grid-column: auto;
  }

  .aboutHero h1 {
    font-size: clamp(25px, 7vw, 30px);
  }
}

.compareBar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 100;
  width: min(560px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 22px;
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 130%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.compareBar.open {
  opacity: 1;
  transform: translate(-50%, 0);
}

.compareBar strong,
.compareBar span {
  display: block;
}

.compareBar span {
  color: #cbd5e1;
  font-size: 13px;
}

.compareBar button {
  color: var(--primary);
  background: #fff;
}

.motion-ready .motionItem {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms ease,
    transform 780ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 780ms ease,
    box-shadow 360ms ease;
  will-change: opacity, transform, filter;
}

.motion-ready .motionItem.revealed {
  opacity: 1;
  transform: translate3d(0, var(--parallaxLift, 0), 0) scale(1);
  filter: blur(0);
}

.motion-ready .customerGuide.active,
.motion-ready .businessNudge.active,
.motion-ready .pricingSection.active,
.motion-ready .modelBand.active,
.motion-ready .requestBox.active,
.motion-ready .siteFooter.active,
.motion-ready .customerCards article.active,
.motion-ready .modelCards article.active {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.motion-ready .businessNudge .storyDeck,
.motion-ready .pricingSection .routeFlow,
.motion-ready .pricingSection .publicPricing article {
  transition-delay: 120ms;
}

.motion-ready .customerCards article:nth-child(1),
.motion-ready .publicPricing article:nth-child(1),
.motion-ready .modelCards article:nth-child(1),
.motion-ready .footerSeo a:nth-child(1) {
  transition-delay: 80ms !important;
}

.motion-ready .customerCards article:nth-child(2),
.motion-ready .publicPricing article:nth-child(2),
.motion-ready .modelCards article:nth-child(2),
.motion-ready .footerSeo a:nth-child(2) {
  transition-delay: 150ms !important;
}

.motion-ready .customerCards article:nth-child(3),
.motion-ready .publicPricing article:nth-child(3),
.motion-ready .modelCards article:nth-child(3),
.motion-ready .footerSeo a:nth-child(3) {
  transition-delay: 220ms !important;
}

.motion-ready .customerCards article:nth-child(4),
.motion-ready .footerSeo a:nth-child(4) {
  transition-delay: 290ms !important;
}

.motion-ready .storyPanel.active .storyVisual::after {
  animation-duration: 4.4s;
}

.heroCopy,
.searchTabs,
.searchBar,
.topNav {
  animation: heroIn 700ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.searchTabs { animation-delay: 120ms; }
.searchBar { animation-delay: 190ms; }

@keyframes arrowFloat {
  0%,
  100% {
    transform: translate3d(-8px, 0, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(8px, -8px, 0) rotate(5deg);
  }
}

@keyframes drawArrow {
  0% {
    stroke-dashoffset: 420;
    opacity: 0.2;
  }
  45%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -420;
    opacity: 0.28;
  }
}

@keyframes drawArrowLine {
  0% {
    stroke-dashoffset: 260;
    opacity: 0.15;
  }
  34%,
  68% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -260;
    opacity: 0.2;
  }
}

@keyframes arrowSway {
  0%,
  100% {
    transform: translate3d(-2px, 0, 0);
  }
  50% {
    transform: translate3d(5px, -2px, 0);
  }
}

@keyframes arrowGlow {
  0%,
  100% {
    opacity: 0.54;
    stroke-width: 5;
  }
  45%,
  70% {
    opacity: 1;
    stroke-width: 6.8;
  }
}

@keyframes arrowHeadPop {
  0%,
  24% {
    opacity: 0.48;
    transform: scale(0.86) translateX(-5px);
  }
  38%,
  72% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.9) translateX(5px);
  }
}

@keyframes storySlide {
  0% {
    opacity: 0;
    transform: translate3d(28px, 0, 0) scale(0.98);
  }
  5%,
  22% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  27%,
  100% {
    opacity: 0;
    transform: translate3d(-22px, 0, 0) scale(0.985);
  }
}

@keyframes storySheen {
  0%,
  44% {
    transform: translateX(-76%);
    opacity: 0;
  }
  56% {
    opacity: 0.8;
  }
  72%,
  100% {
    transform: translateX(76%);
    opacity: 0;
  }
}

@keyframes dotFill {
  0% {
    transform: scaleX(0);
  }
  24% {
    transform: scaleX(1);
  }
  25%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes routePulse {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    transform: translateX(230%);
    opacity: 0;
  }
}

@keyframes visualOrbit {
  0%,
  100% {
    transform: translate3d(-42px, -20px, 0) scale(0.92);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(46px, 24px, 0) scale(1.14);
    opacity: 1;
  }
}

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

@keyframes arrowNudge {
  0%,
  100% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes titleLineIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes storyVisualIn {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes storyCopyIn {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@media (max-width: 1100px) {
  .searchBar {
    grid-template-columns: repeat(2, minmax(0, 1fr)) 76px;
  }

  .searchBar label:nth-of-type(2n) {
    border-right: 0;
  }

  .searchSubmit {
    grid-column: 1 / -1;
    width: calc(100% - 20px);
    height: 56px;
  }

  .customerGuide .sectionTitle,
  .platformDepth,
  .businessNudge,
  .pricingSection,
  .seoBlogStrip,
  .operationsBoard,
  .requestBox,
  .modelSlide {
    grid-template-columns: 1fr;
  }

  .customerGuide .sectionTitle .kicker,
  .customerGuide .sectionTitle p:last-child,
  .customerGuide .sectionTitle h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .customerCards,
  .marketStrip,
  .publicPricing,
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nudgeArrow {
    display: none;
  }

  .storyStage {
    min-height: 292px;
  }

  .storyPanel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .storyVisual {
    min-height: 132px;
  }

  .modelTrack {
    min-height: 430px;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 760px;
    padding-top: 14px;
  }

  .topNav {
    min-height: auto;
    border-radius: 22px;
  }

  .logo img {
    width: 118px;
  }

  .navActions {
    gap: 6px;
  }

  .outline {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .ghostLink {
    display: none;
  }

  .heroLayout {
    margin-top: 48px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero p {
    font-size: 15px;
  }

  .searchTabs {
    max-width: calc(100vw - 28px);
    overflow-x: auto;
  }

  .searchBar {
    width: var(--container);
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .searchBar label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .searchSubmit {
    grid-column: auto;
  }

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

  .customerGuide,
  .businessNudge,
  .pricingSection,
  .latest,
  .operationsBoard,
  .modelBand,
  .requestBox {
    padding: 20px;
    border-radius: 24px;
  }

  .customerCards,
  .purposeStrip,
  .depthGrid,
  .marketStrip,
  .seoBlogCards,
  .publicPricing,
  .cards,
  .requestForm,
  .siteFooter {
    grid-template-columns: 1fr;
  }

  .storyStage {
    min-height: 440px;
  }

  .storyPanel {
    padding: 18px;
  }

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

  .storyVisual.paths,
  .contactMap,
  .priceCompare {
    grid-template-columns: 1fr;
  }

  .storyVisual.paths i,
  .contactMap i,
  .arrowMark {
    display: none;
  }

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

  .routeFlow i {
    display: none;
  }

  .latest .sectionTitle {
    grid-template-columns: 1fr;
  }

  .latest .sectionTitle .kicker,
  .latest .sectionTitle h2,
  .latest .sectionTitle p:last-child {
    grid-column: auto;
  }

  .modelSliderHead,
  .footerBottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modelTrack {
    min-height: 520px;
  }

  .siteFooter {
    display: grid;
  }

  .footerSeo nav {
    gap: 8px;
  }
}

/* Mobile-only navigation and motion layer. Desktop rules stay untouched. */
@media (max-width: 760px) {
  html body {
    overflow-x: hidden;
  }

  html body .compactHero .topNav,
  html body .topNav.staticTop {
    width: calc(100% - 24px);
    max-width: none;
    min-height: 58px;
    margin: 10px auto 0;
    padding: 8px 10px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    animation: mobileNavDrop 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  html body .topNav.staticTop {
    background: rgba(15, 23, 42, 0.96);
  }

  html body .compactHero .logo,
  html body .compactHero .logoAsset,
  html body .topNav.staticTop .logo,
  html body .topNav.staticTop .logoAsset {
    width: 116px;
    min-width: 116px;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: visible;
  }

  html body .compactHero .logo img,
  html body .compactHero .logoAsset img,
  html body .topNav.staticTop .logo img,
  html body .topNav.staticTop .logoAsset img {
    width: 112px;
    max-width: 112px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  html body .compactHero .navActions,
  html body .topNav.staticTop .navActions {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 2px 4px 4px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 24px), transparent 100%);
  }

  html body .compactHero .navActions::-webkit-scrollbar,
  html body .topNav.staticTop .navActions::-webkit-scrollbar {
    display: none;
  }

  html body .compactHero .ghostLink,
  html body .topNav.staticTop .ghostLink {
    display: inline-flex;
  }

  html body .compactHero .navActions .outline,
  html body .topNav.staticTop .navActions .outline {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    font-size: 12.5px;
    line-height: 1;
    white-space: nowrap;
    scroll-snap-align: start;
    animation: mobileNavChip 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  html body .compactHero .navActions .outline:nth-child(2),
  html body .topNav.staticTop .navActions .outline:nth-child(2) {
    animation-delay: 45ms;
  }

  html body .compactHero .navActions .outline:nth-child(3),
  html body .topNav.staticTop .navActions .outline:nth-child(3) {
    animation-delay: 90ms;
  }

  html body .compactHero .navActions .outline:nth-child(4),
  html body .topNav.staticTop .navActions .outline:nth-child(4) {
    animation-delay: 135ms;
  }

  html body .compactHero .navActions .outline:nth-child(5),
  html body .topNav.staticTop .navActions .outline:nth-child(5) {
    animation-delay: 180ms;
  }

  html body .compactHero .navActions .outline:last-child,
  html body .topNav.staticTop .navActions .outline:last-child {
    color: #0f172a;
    background: #ffffff;
    border-color: #ffffff;
    font-weight: 800;
  }

  html body.motion-ready .motionItem:not(.revealed):not(.inView) {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.985);
    filter: blur(7px);
  }

  html body.motion-ready .motionItem.revealed,
  html body.motion-ready .motionItem.inView {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition:
      opacity 0.66s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.58s ease;
  }

  html body .customerCards article,
  html body .marketStrip article,
  html body .publicPricing article,
  html body .seoBlogCards a,
  html body .cards article {
    transition:
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.42s ease,
      border-color 0.42s ease;
  }

  html body .customerCards article:active,
  html body .marketStrip article:active,
  html body .publicPricing article:active,
  html body .seoBlogCards a:active,
  html body .cards article:active {
    transform: translate3d(0, -2px, 0) scale(0.992);
  }
}

@media (max-width: 420px) {
  html body .compactHero .topNav,
  html body .topNav.staticTop {
    width: calc(100% - 16px);
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 7px 8px;
    gap: 8px;
    border-radius: 19px;
  }

  html body .compactHero .logo,
  html body .compactHero .logoAsset,
  html body .topNav.staticTop .logo,
  html body .topNav.staticTop .logoAsset {
    width: 88px;
    min-width: 88px;
    height: 38px;
  }

  html body .compactHero .logo img,
  html body .compactHero .logoAsset img,
  html body .topNav.staticTop .logo img,
  html body .topNav.staticTop .logoAsset img {
    width: 86px;
    max-width: 86px;
  }

  html body .compactHero .navActions .outline,
  html body .topNav.staticTop .navActions .outline {
    min-height: 33px;
    padding: 0 11px;
    font-size: 12px;
  }
}

@keyframes mobileNavDrop {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes mobileNavChip {
  from {
    opacity: 0;
    transform: translate3d(12px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  html body .compactHero .topNav,
  html body .topNav.staticTop,
  html body .compactHero .navActions .outline,
  html body .topNav.staticTop .navActions .outline,
  html body.motion-ready .motionItem {
    animation: none;
    transition: none;
    transform: none;
    filter: none;
  }
}
