/* Rota Premium — light cinematic theme (mavi / lacivert) */
:root {
  --ink: #0a1f3d;
  --ink-soft: #1a3358;
  --navy: #0b2a5b;
  --blue: #1f6feb;
  --blue-deep: #1554c0;
  --blue-soft: #4d8ef5;
  --sky: #e8f1ff;
  --mist: #eef4fc;
  --paper: #f6f9fd;
  --surface: #ffffff;
  --muted: #5a6d86;
  --line: rgba(11, 42, 91, 0.12);
  --shadow: 0 20px 50px rgba(11, 42, 91, 0.12);
  --shadow-soft: 0 10px 30px rgba(11, 42, 91, 0.07);
  --radius: 22px;
  --radius-pill: 999px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cine: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Nunito', system-ui, sans-serif;
  /* geriye uyumluluk alias */
  --teal: var(--blue);
  --teal-deep: var(--blue-deep);
  --gold: var(--blue-soft);
  --gold-soft: #b7d0ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

/* Progress */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform-origin: left;
  pointer-events: none;
}

/* Topbar — always light */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  background: rgba(247, 250, 251, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

body.page-index .topbar:not(.is-scrolled) {
  background: rgba(247, 250, 251, 0.92);
  border-bottom-color: transparent;
  box-shadow: none;
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px 22px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0.9;
  transition: color 0.2s, opacity 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue);
  opacity: 1;
}

.nav-link.is-active {
  font-weight: 800;
}

/* Multi-page hero */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 48px;
  background: linear-gradient(180deg, var(--sky) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 52ch;
}

.page-hero p strong {
  color: var(--blue);
  font-weight: 800;
}

.page-cta-strip {
  padding: 60px 0 80px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.page-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.page-cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.page-cta-inner p {
  color: var(--muted);
  font-weight: 500;
}

.page-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-page {
  margin: 0 0 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--line);
}

.logo {
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--surface);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 111, 235, 0.28);
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-outline {
  border: 1.5px solid rgba(26, 43, 51, 0.18);
  background: var(--surface);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.btn .arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

/* ——— Hero (light cinematic) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--mist);
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -6%;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: cineKen 22s var(--ease-cine) infinite alternate;
  filter: saturate(0.92) brightness(1.08);
}

@keyframes cineKen {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.16) translate(-2%, -1.5%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 251, 0.55) 0%, rgba(247, 250, 251, 0.2) 28%, rgba(247, 250, 251, 0.55) 62%, rgba(247, 250, 251, 0.96) 100%),
    linear-gradient(90deg, rgba(247, 250, 251, 0.75) 0%, rgba(247, 250, 251, 0.15) 55%, transparent 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + 48px);
  max-width: 720px;
  margin-left: max(calc((100% - 1160px) / 2), 24px);
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 14ch;
}

.hero h1 .accent {
  display: inline;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
  position: relative;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.12em;
  background: linear-gradient(90deg, var(--blue), rgba(31, 111, 235, 0.15));
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 16px;
  font-weight: 500;
}

.ease-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ease-pills span {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(31, 111, 235, 0.1);
  color: var(--navy);
  border: 1px solid rgba(31, 111, 235, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-hint i {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--blue), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* Cinematic entrance */
.cine-fade {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(6px);
  animation: cineIn 1.1s var(--ease-cine) forwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}

@keyframes cineIn {
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Statement */
.statement {
  padding: 100px 0 70px;
  background: var(--paper);
}

.statement-inner {
  max-width: 880px;
}

.statement h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.statement h2 em {
  font-style: normal;
  color: var(--blue);
  font-weight: 800;
}

.statement p {
  margin-top: 24px;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
}

/* Clients */
.clients {
  padding: 10px 0 80px;
  overflow: hidden;
}

/* Ease band — kolay kullanım / çabuk erişim */
.ease-band {
  padding: 0 0 70px;
  background: var(--paper);
}

.ease-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ease-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.ease-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ease-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.ease-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.ease-card p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

/* Flow — stok / alış / satış / finans */
.flow-band {
  padding: 20px 0 90px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.flow-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.flow-head h2 em {
  font-style: normal;
  color: var(--blue);
}

.flow-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.flow-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.flow-step {
  flex: 1 1 160px;
  min-width: 140px;
  padding: 22px 18px;
  border-radius: 20px;
  background: var(--sky);
  border: 1px solid rgba(31, 111, 235, 0.16);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.flow-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}

.flow-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  padding: 0 2px;
}

.flow-note {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: rgba(31, 111, 235, 0.08);
  border: 1px solid rgba(31, 111, 235, 0.14);
}

/* Perakende — offline hızlı satış */
.retail-band {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.retail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.retail-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.retail-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 48ch;
  font-weight: 500;
}

.retail-lead strong {
  color: var(--blue);
  font-weight: 800;
}

.retail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.retail-pills span {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(31, 111, 235, 0.1);
  color: var(--navy);
  border: 1px solid rgba(31, 111, 235, 0.18);
}

.retail-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.retail-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-card {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 10px !important;
  margin-bottom: 2px !important;
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--blue);
}

/* Masaüstü × Bulut karşılaştırma */
.compare-band {
  padding: 90px 0;
  background: var(--paper);
}

.compare-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.compare-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.compare-head h2 em {
  font-style: normal;
  color: var(--blue);
}

.compare-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--mist);
}

.compare-table thead th.col-cloud {
  background: rgba(31, 111, 235, 0.12);
  color: var(--blue-deep);
}

.compare-table tbody th {
  font-weight: 800;
  color: var(--navy);
  width: 18%;
  background: var(--paper);
}

.compare-table tbody td {
  color: var(--muted);
  font-weight: 500;
  width: 41%;
}

.compare-table tbody td.col-cloud {
  color: var(--ink-soft);
  font-weight: 600;
  background: rgba(31, 111, 235, 0.04);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td.col-cloud {
  background: rgba(31, 111, 235, 0.08);
}

/* Bulut satış argümanları */
.cloud-args {
  padding: 90px 0 100px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.cloud-args-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.cloud-args-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.cloud-args-head h2 em {
  font-style: normal;
  color: var(--blue);
}

.cloud-args-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cloud-args-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.cloud-arg {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--mist);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cloud-arg:hover {
  background: var(--surface);
  border-color: rgba(31, 111, 235, 0.22);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.cloud-arg-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 10px;
}

.cloud-arg h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.cloud-arg p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.cloud-args-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--sky);
  border: 1px solid rgba(31, 111, 235, 0.16);
}

.cloud-args-cta p {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.form-intro {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.cta-contact {
  margin-top: 22px;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cta-contact a {
  color: var(--blue);
  font-weight: 700;
}

.footer-domain {
  margin-top: 12px;
  font-weight: 800;
  color: var(--blue);
  font-size: 0.95rem;
}

.footer-partner {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  margin: 8px 0 10px;
  letter-spacing: 0.02em;
}

.footer-address {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* SSS */
.faq-band {
  padding: 90px 0 100px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.faq-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item[open] {
  border-color: rgba(31, 111, 235, 0.28);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  position: relative;
  padding-right: 48px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.clients-head {
  text-align: center;
  margin-bottom: 36px;
}

.clients-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.clients-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.marquee {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 42s linear infinite;
  align-items: center;
}

.marquee-track img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s;
}

.marquee-track img:hover {
  filter: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Sales solutions ——— */
.sales-solutions {
  padding: 90px 0 100px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sales-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sales-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--navy);
}

.sales-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.sales-spotlight {
  margin-bottom: 28px;
}

.sales-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 440px;
}

.sales-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.sales-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 440px;
  transition: transform 1.2s var(--ease-cine);
}

.sales-hero-card:hover .sales-hero-visual img {
  transform: scale(1.05);
}

.sales-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.sales-hero-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.sales-rank {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sales-hero-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}

.sales-hero-copy > p {
  color: var(--muted);
  margin-bottom: 20px;
}

.sales-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.sales-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.sales-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.sales-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-cine), box-shadow 0.45s;
  display: flex;
  flex-direction: column;
}

.sales-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.sales-card-media {
  height: 180px;
  overflow: hidden;
  background: var(--mist);
}

.sales-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cine);
}

.sales-card:hover .sales-card-media img {
  transform: scale(1.06);
}

.sales-card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sales-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 6px 0 10px;
}

.sales-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
}

.text-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
}

.sales-more h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.sales-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sales-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--mist);
  border: 1px solid transparent;
  min-width: 180px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.sales-chip:hover {
  background: var(--surface);
  border-color: rgba(31, 122, 116, 0.25);
  transform: translateY(-2px);
}

.sales-chip strong {
  font-size: 0.92rem;
}

.sales-chip span {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
}

/* Platform */
.platform {
  padding: 100px 0;
  background: var(--paper);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.platform-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.platform-copy > p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 42ch;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list span {
  font-size: 0.875rem;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.platform-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.platform-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.platform-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.platform-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.platform-badge span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Experience — light panels */
.experience {
  padding: 40px 0 100px;
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.exp-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 400px;
  isolation: isolate;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.exp-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-cine);
}

.exp-panel:hover img {
  transform: scale(1.05);
}

.exp-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(247, 250, 251, 0.97) 100%);
  z-index: 1;
}

.exp-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--ink);
}

.exp-copy h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.exp-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.exp-copy .link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

/* Why */
.why {
  padding: 90px 0 100px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.why-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 40px;
}

.why-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}

.why-head p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-card {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--mist);
  border: 1px solid transparent;
  transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  background: var(--surface);
  border-color: rgba(31, 122, 116, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA + form — light */
.cta-band {
  position: relative;
  margin: 0 20px 20px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
}

.cta-visual {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  padding: 56px 0;
  align-items: center;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-copy > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-points span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.lead-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.lead-form input,
.lead-form select {
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  padding: 0 14px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(31, 122, 116, 0.45);
  box-shadow: 0 0 0 3px rgba(31, 122, 116, 0.12);
}

.lead-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-template-columns: none;
}

.lead-form .check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.lead-form .check span {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-alert.success {
  background: rgba(31, 122, 116, 0.1);
  color: var(--teal-deep);
}

.form-alert.error {
  background: rgba(180, 60, 60, 0.1);
  color: #9b2c2c;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Footer — light */
.footer {
  padding: 72px 0 36px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand .logo-img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--teal);
}

.footer-seo-bar {
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  margin-bottom: 8px;
}

.footer-seo-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.footer-seo-bar a {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.footer-seo-bar a:hover {
  color: var(--blue, #1f6feb);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

/* SEO landing pages */
.seo-content {
  padding: 56px 0 24px;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.seo-content h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 800;
}

.seo-content h2 + h2,
.seo-content .seo-list + h2,
.seo-content p + h2 {
  margin-top: 36px;
}

.seo-content p,
.seo-lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0 0 14px;
}

.seo-list,
.seo-steps {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.55;
}

.seo-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  position: sticky;
  top: 96px;
}

.seo-aside h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
}

.seo-aside ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-aside .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.seo-aside-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 12px 0 0;
}

.seo-links {
  padding: 28px 0 64px;
}

.seo-links h2,
.home-seo-links h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 800;
}

.home-seo-links {
  padding: 48px 0 24px;
  text-align: center;
}

.home-seo-links .eyebrow {
  margin-bottom: 8px;
}

.seo-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.home-seo-links .seo-link-row {
  justify-content: center;
}

.seo-link-row a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy, #0b2a5b);
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.seo-link-row a:hover {
  border-color: var(--blue, #1f6feb);
  color: var(--blue, #1f6feb);
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.12);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.city-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
}

.city-card h3 {
  margin: 0 0 8px;
  color: var(--navy, #0b2a5b);
  font-size: 1.05rem;
  font-weight: 800;
}

.city-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 960px) {
  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .seo-aside {
    position: static;
  }

  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .city-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal + cinematic frames */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease-cine), transform 0.9s var(--ease-cine), filter 0.9s var(--ease-cine);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.cinematic-frame {
  position: relative;
}

.cinematic-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
}

/* Mobile */
.nav-mobile {
  position: fixed;
  inset: var(--nav-h) 12px auto;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 99;
  border: 1px solid var(--line);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-weight: 600;
  padding: 8px 4px;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-left,
  .nav-right .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo {
    justify-content: flex-start;
  }

  .hero-content {
    margin-left: 24px;
    max-width: calc(100% - 48px);
  }

  .sales-hero-card,
  .platform-grid,
  .why-head,
  .cta-layout,
  .footer-grid,
  .ease-grid,
  .retail-grid {
    grid-template-columns: 1fr;
  }

  .sales-grid,
  .experience-grid,
  .why-grid,
  .cloud-args-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sales-hero-visual img,
  .platform-visual,
  .platform-visual img {
    min-height: 320px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .flow-arrow {
    display: none;
  }

  .flow-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .sales-grid,
  .experience-grid,
  .why-grid,
  .cloud-args-grid,
  .flow-track {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin: 0 12px 12px;
  }

  .hero h1 {
    max-width: 11ch;
  }
}

@media (min-width: 981px) {
  .nav-mobile {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cine-fade,
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
