/* Ctrl We — Kurumsal pazarlama sitesi */
:root {
  --brand: #1d4ed8;
  --brand-hover: #1e40af;
  --brand-light: #3b82f6;
  --brand-muted: #dbeafe;
  --accent: #0ea5e9;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #64748b;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --border: rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  /* Tek tonlu, kurumsal vurgu — gökkuşağı gradient yok */
  --gradient: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  --gradient-soft: rgba(37, 99, 235, 0.08);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow-glow: 0 24px 48px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --topbar-h: 2.75rem;
  --header-h: 4.25rem;
  --max: 76rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--surface);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.04), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-hover);
}

:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.gradient-text {
  color: var(--brand);
}

/* Üst chrome — topbar + header birlikte sabit */
.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Top bar — Ticimax / Ideasoft tarzı duyuru şeridi */
.topbar {
  position: relative;
  z-index: 2;
  height: var(--topbar-h);
  background: var(--ink);
  color: #e2e8f0;
  font-size: 0.8125rem;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__inner i {
  color: #93c5fd;
  margin-right: 0.35rem;
}

.topbar__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.topbar__link:hover {
  color: #93c5fd;
}

/* Header — açık, kurumsal */
.site-header {
  position: relative;
  z-index: 2;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.site-header--light .logo__ctrl,
.site-header .logo__ctrl {
  color: var(--text-dark);
}

.site-header--light .logo__we,
.site-header .logo__we {
  color: var(--brand);
}

.site-header .site-nav a {
  color: var(--text-dark);
}

.site-header .site-nav a:hover,
.site-header .site-nav a.is-active {
  background: var(--brand-muted);
  color: var(--brand);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  text-decoration: none;
}

.header-phone:hover {
  color: var(--brand);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.logo__ctrl {
  color: var(--text-dark);
}

.logo__we {
  color: var(--brand-light);
}

.site-header.is-scrolled .logo__we {
  color: var(--brand);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(12, 10, 20, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 112;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--text-dark);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.2s var(--ease);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded='true'] span {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobil menü — drawer header içinde ama fixed (backdrop-filter bug fix: blur sadece chrome’da) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.site-nav {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  right: 0;
  z-index: 111;
  width: min(100%, 20rem);
  height: calc(100dvh - var(--topbar-h) - var(--header-h));
  max-height: calc(100dvh - var(--topbar-h) - var(--header-h));
  pointer-events: none;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease), visibility 0.3s;
}

.site-nav.is-open {
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}

.site-nav__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
}

.site-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 899px) {
  .site-nav__close {
    display: none;
  }

  .site-nav__head {
    justify-content: flex-start;
  }
}

.site-nav__title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-muted);
}

.site-nav__close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--surface-2);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: 1.125rem;
  cursor: pointer;
}

.site-nav__close span {
  display: none;
}

.site-nav__links {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__links a {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  background: var(--brand-muted);
  color: var(--brand);
}

.site-nav__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface-2);
}

.site-nav__email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  text-decoration: none;
}

.site-nav__email:hover {
  color: var(--brand);
}

body.nav-open {
  overflow: hidden;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-backdrop {
    display: none !important;
  }

  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .site-header__inner .logo {
    grid-column: 1;
  }

  .site-header__inner .site-nav {
    grid-column: 2;
    justify-self: center;
  }

  .site-header__inner .header-actions {
    grid-column: 3;
  }

  .site-nav {
    position: static;
    width: auto;
    height: auto;
    max-height: none;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    transition: none;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .site-nav__panel {
    display: contents;
  }

  .site-nav__head,
  .site-nav__footer {
    display: none;
  }

  .site-nav__links {
    flex: none;
    overflow: visible;
    padding: 0;
    flex-direction: row;
    gap: 0.125rem;
  }

  .site-nav__links a {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
  }

  .site-nav__close {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.875rem;
  padding: 0 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.28);
}

.btn--primary:hover {
  color: #fff;
  background: var(--brand-hover);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.32);
}

.btn--secondary {
  background: #fff;
  color: var(--text-dark);
  border: 2px solid rgba(12, 10, 20, 0.08);
}

.btn--secondary:hover {
  border-color: var(--brand-light);
  color: var(--brand);
}

.btn--ghost {
  background: var(--glass);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.btn--lg {
  min-height: 3.25rem;
  padding: 0 1.75rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--topbar-h) + var(--header-h) + 2.5rem) 0 4rem;
  overflow: hidden;
}

.hero--light {
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  color: var(--text-dark);
}

.hero--light::before {
  content: '';
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -6rem;
  right: -4rem;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero--light .hero__lead {
  color: var(--text-dark-muted);
}

.hero--light .hero__badge {
  background: var(--brand-muted);
  border-color: rgba(29, 78, 216, 0.15);
  color: var(--brand);
}

.hero--light .hero__badge-dot {
  background: var(--brand);
  box-shadow: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  font-weight: 800;
}

.hero__lead {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.stat--light {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.stat--light strong {
  color: var(--text-dark);
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat--light span {
  color: var(--text-dark-muted);
  line-height: 1.35;
  margin-top: 0.25rem;
  display: block;
}

.hero__visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.hero-card__price {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.hero-card__price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #93c5fd;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-card__price-amount {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-card__price-amount span {
  font-size: 0.35em;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-card__price-vat {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-card__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.mock-browser {
  margin-top: 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.mock-browser__bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.mock-browser__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.mock-browser__dot:nth-child(1) {
  background: #f43f5e;
}

.mock-browser__dot:nth-child(2) {
  background: #fbbf24;
}

.mock-browser__dot:nth-child(3) {
  background: #4ade80;
}

.mock-browser__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.3rem 0.65rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.mock-store {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.mock-card {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid var(--glass-border);
}

@media (min-width: 900px) {
  .hero {
    padding-bottom: 6rem;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

/* Trust */
.trust-strip {
  padding: 1.75rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(12, 10, 20, 0.06);
}

.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-strip__list li {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: var(--brand-muted);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 800;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--muted {
  background: var(--surface-2);
  color: var(--text-dark);
}

.section--muted .section__title {
  color: var(--text-dark);
}

.section--muted .section__desc {
  color: var(--text-dark-muted);
}

.section--muted .bento-card {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.section--muted .bento-card h3 {
  color: var(--text-dark);
}

.section--muted .bento-card p {
  color: var(--text-dark-muted);
}

.section--muted .bento-card__icon {
  color: var(--brand);
}

.section--muted .showcase-tabs__btn {
  background: #fff;
  border-color: var(--border);
  color: var(--text-dark-muted);
}

.section--dark {
  background: var(--ink-soft);
  color: var(--text);
}

.section--dark .section__desc,
.section--dark .feature-card p {
  color: var(--text-muted);
}

.section--dark .section__title {
  color: var(--text);
}

.section--dark .feature-card {
  background: var(--glass);
  border-color: var(--glass-border);
  color: var(--text);
}

.section--dark .feature-card h3 {
  color: var(--text);
}

.section--alt {
  background: var(--surface-2);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.section__desc {
  color: var(--text-dark-muted);
  max-width: 38rem;
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(12, 10, 20, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(29, 78, 216, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--brand-muted);
  display: grid;
  place-items: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* Modüller */
.module-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .module-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 10, 20, 0.08);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.module-card--featured {
  border-color: rgba(29, 78, 216, 0.22);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.module-card--muted {
  opacity: 0.88;
  background: var(--surface-2);
}

.module-card--muted:hover {
  opacity: 1;
}

.module-card__status {
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-muted);
}

.module-card__status--live {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.module-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.module-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.module-card--featured .module-card__title {
  font-size: 1.35rem;
}

.module-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.module-card__list {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.module-card__list li + li {
  margin-top: 0.35rem;
}

.module-note {
  margin: 2rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(29, 78, 216, 0.25);
  background: var(--brand-muted);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.module-note strong {
  color: var(--text-dark);
}

/* Split / admin */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.admin-mock {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.admin-mock__sidebar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.admin-mock__pill {
  font-size: 0.6875rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--glass);
  color: var(--text-muted);
  font-weight: 600;
}

.admin-mock__pill--active {
  background: var(--brand);
  color: #fff;
}

.admin-mock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--glass);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.admin-mock__badge {
  font-size: 0.625rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  font-weight: 700;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Pricing spotlight */
.pricing-spotlight {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card__tag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__amount {
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 1rem 0 0.25rem;
  color: var(--text-dark);
}

.pricing-card__amount small {
  font-size: 0.35em;
  font-weight: 700;
  color: var(--text-dark-muted);
}

.pricing-card__vat {
  color: var(--text-dark-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.pricing-card__grid {
  display: grid;
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
}

.pricing-card__item span:first-child {
  font-size: 1.125rem;
}

.pricing-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

/* Compare */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 10, 20, 0.08);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(12, 10, 20, 0.06);
}

.compare-table th {
  background: var(--surface-2);
  font-weight: 800;
}

.compare-table td:first-child {
  font-weight: 600;
}

.compare-table .yes {
  color: var(--brand);
  font-weight: 700;
}

.compare-table .no {
  color: #94a3b8;
}

code {
  font-size: 0.8125em;
  padding: 0.15em 0.45em;
  border-radius: 0.35rem;
  background: var(--brand-muted);
  color: var(--brand);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(12, 10, 20, 0.08);
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(12, 10, 20, 0.06);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--text-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--brand-muted);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-dark-muted);
  font-size: 0.9375rem;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(12, 10, 20, 0.06);
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(12, 10, 20, 0.08);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-light);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form__status {
  margin: 0;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
}

.contact-form__status.is-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.contact-form__status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* CTA */
.cta-band {
  margin: 0 1rem 5rem;
  max-width: calc(var(--max) - 2rem);
  margin-inline: auto;
  padding: 3.5rem 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
  opacity: 1;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: var(--text-muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--ink);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer a {
  color: #e2deff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #93c5fd;
}

.site-footer .logo__ctrl {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* ——— Marketing extensions ——— */

.section__title--center,
.section__desc--center {
  text-align: center;
  margin-inline: auto;
}

.section__desc--center {
  max-width: 40rem;
}

.trust-strip__list li i {
  color: var(--brand);
  font-size: 1rem;
}

.mock-store--rich {
  grid-template-columns: repeat(3, 1fr);
}

.mock-hero {
  grid-column: 1 / -1;
  aspect-ratio: 2.4 / 1;
  border-radius: 0.75rem;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid var(--glass-border);
}

.flow-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flow-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(12, 10, 20, 0.06);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.flow-step__num {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.flow-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dark);
}

.flow-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 1.5rem;
}

.showcase-tabs__btn {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s;
}

.showcase-tabs__btn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.showcase-tabs__btn.is-active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

.showcase-panel {
  animation: showcaseIn 0.35s var(--ease);
}

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

.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.bento-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.bento-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .bento-card--wide {
    grid-column: span 2;
  }
}

.bento-card__icon {
  font-size: 1.35rem;
  color: #93c5fd;
  margin-bottom: 0.75rem;
  display: block;
}

.bento-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.bento-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.admin-mock--rich .admin-mock__row span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-mock__badge--amber {
  background: rgba(249, 115, 22, 0.25);
  color: #fdba74;
}

.admin-bento {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .admin-bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.admin-bento__card {
  background: #fff;
  border: 1px solid rgba(12, 10, 20, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.admin-bento__card i {
  font-size: 1.35rem;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.admin-bento__card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

.admin-bento__card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-dark-muted);
}

.module-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .module-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .module-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.module-card__icon i {
  font-size: 1.75rem;
}

.pricing-card__grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .pricing-card__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(12, 10, 20, 0.06);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.pillar-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--brand-muted);
  color: var(--brand);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.pillar-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.compare-table .partial {
  color: #d97706;
  font-weight: 700;
}

.contact-highlights {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-highlights i {
  color: var(--brand);
  font-size: 0.875rem;
}

/* ——— Ideasoft / Ticimax tarzı bileşenler ——— */

.platform-preview {
  position: relative;
  min-height: 22rem;
}

.platform-preview__admin {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.platform-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
}

.platform-preview__bar span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #cbd5e1;
}

.platform-preview__bar em {
  flex: 1;
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  font-style: normal;
  color: var(--text-dark-muted);
}

.platform-preview__body {
  display: grid;
  grid-template-columns: 7rem 1fr;
  min-height: 11rem;
}

.platform-preview__nav {
  padding: 0.75rem;
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.platform-preview__nav span {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
  color: var(--text-dark-muted);
}

.platform-preview__nav .is-on {
  background: var(--brand);
  color: #fff;
}

.platform-preview__main {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.platform-preview__row {
  height: 2rem;
  border-radius: 0.35rem;
  background: var(--surface-3);
}

.platform-preview__row.short {
  width: 55%;
}

.platform-preview__phones {
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  display: flex;
  gap: 0.5rem;
}

.phone-mock {
  width: 4.5rem;
  height: 8.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.phone-mock--ios {
  border-color: #94a3b8;
}

.phone-mock--android {
  border-color: var(--brand-light);
}

.phone-mock__label {
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.logo-wall {
  padding: 1.25rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logo-wall__title {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  margin: 0 0 0.75rem;
}

.logo-wall__track {
  display: flex;
  gap: 2.5rem;
  animation: logoScroll 28s linear infinite;
  width: max-content;
}

.logo-wall__track span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.solution-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.solution-card:hover {
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.solution-card > i {
  font-size: 1.5rem;
  color: var(--brand);
}

.solution-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-dark);
}

.solution-card p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
}

.solution-card__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
}

.solution-card--accent {
  border-color: rgba(29, 78, 216, 0.35);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.pricing-grid .pricing-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 2rem 1.75rem;
  height: 100%;
}

.pricing-card__name {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dark);
}

.pricing-card__intro {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.pricing-card__features i {
  color: var(--brand);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pricing-card--featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 0.35rem;
}

.pricing-card--standard .pricing-card__tag {
  display: none;
}

.package-compare {
  max-width: 40rem;
  margin: 0 auto;
}

.package-compare__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text-dark);
}

.package-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.package-compare__table th,
.package-compare__table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.package-compare__table th {
  background: var(--surface-2);
  font-weight: 700;
}

.package-compare__table td:first-child {
  text-align: left;
  font-weight: 600;
}

.package-compare__table .yes {
  color: var(--brand);
  font-weight: 800;
}

.package-compare__table .no {
  color: #94a3b8;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (min-width: 900px) {
  .hero--light {
    padding-bottom: 5rem;
  }

  .platform-preview__phones {
    right: 1rem;
    bottom: 0;
  }

  .phone-mock {
    width: 5.5rem;
    height: 10rem;
  }
}
