/* ==========================================================================
   TBX Systems — Corporate design system (2026-07, from-scratch rebuild)
   Bağımsız, kurumsal standartlarda yeni ana sayfa tasarımı.
   Eski .saas-* / .theme-* kurallarıyla çakışmaması için tüm seçiciler
   .theme-corporate altında ve yeni .c-* sınıf isimleriyle tanımlıdır.
   ========================================================================== */

body.theme-corporate {
  --c-bg: #e9edf4;
  --c-bg-alt: #f6f8fc;
  --c-bg-tint: #eef3ff;
  --c-ink: #0b1220;
  --c-ink-soft: #1b2536;
  --c-text: #444e64;
  --c-muted: #6a7488;
  --c-line: #e7eaf2;
  --c-line-strong: #d5dbe8;
  --c-brand: #1d4ed8;
  --c-brand-strong: #1a3fb0;
  --c-brand-ink: #12296e;
  --c-brand-soft: #eef3ff;
  --c-green: #0f9f7a;
  --c-radius: 16px;
  --c-radius-sm: 10px;
  --c-radius-lg: 24px;
  --c-shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.05);
  --c-shadow: 0 2px 4px rgba(11, 18, 32, 0.04), 0 14px 34px rgba(11, 18, 32, 0.07);
  --c-shadow-lg: 0 30px 70px rgba(11, 18, 32, 0.14);
  --c-maxw: 1200px;
  --c-header-h: 72px;

  margin: 0;
  min-height: 100vh;
  color: var(--c-text);
  background: linear-gradient(180deg, #eef1f7 0%, #e7ebf3 100%);
  background-attachment: fixed;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Neutralize inherited theme chrome from the legacy stylesheets */
body.theme-corporate::before,
body.theme-corporate::after,
body.theme-corporate .site-tech-background,
body.theme-corporate .site-intro {
  display: none !important;
}

body.theme-corporate .c-main {
  padding: 0;
}

body.theme-corporate * {
  box-sizing: border-box;
}

body.theme-corporate h1,
body.theme-corporate h2,
body.theme-corporate h3,
body.theme-corporate h4 {
  margin: 0;
  color: var(--c-ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

body.theme-corporate p {
  margin: 0;
  color: var(--c-text);
}

body.theme-corporate a {
  color: inherit;
  text-decoration: none;
}

body.theme-corporate img {
  max-width: 100%;
  display: block;
}

body.theme-corporate .c-container {
  width: 100%;
  max-width: var(--c-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
body.theme-corporate .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--c-radius-sm);
  background: #fff;
  color: var(--c-ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

body.theme-corporate .c-btn:hover,
body.theme-corporate .c-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--c-brand);
  box-shadow: var(--c-shadow-sm);
  outline: none;
}

body.theme-corporate .c-btn--primary {
  border-color: transparent;
  background: var(--c-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.24);
}

body.theme-corporate .c-btn--primary:hover,
body.theme-corporate .c-btn--primary:focus-visible {
  background: var(--c-brand-strong);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.3);
}

body.theme-corporate .c-btn--ghost {
  background: transparent;
  border-color: var(--c-line-strong);
}

body.theme-corporate .c-btn--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
body.theme-corporate .c-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--c-line);
}

body.theme-corporate .c-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--c-header-h);
}

body.theme-corporate .c-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body.theme-corporate .c-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.16);
}

body.theme-corporate .c-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

body.theme-corporate .c-brand-copy strong {
  color: var(--c-ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.theme-corporate .c-brand-copy span {
  color: var(--c-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

body.theme-corporate .c-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

body.theme-corporate .c-nav a {
  position: relative;
  color: var(--c-ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 140ms ease;
}

body.theme-corporate .c-nav a:hover {
  color: var(--c-brand);
}

body.theme-corporate .c-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

body.theme-corporate .c-lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-bg-alt);
}

body.theme-corporate .c-lang button {
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--c-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

body.theme-corporate .c-lang button.is-active {
  background: #fff;
  color: var(--c-brand);
  box-shadow: var(--c-shadow-sm);
}

body.theme-corporate .c-menu-toggle {
  display: none;
}

/* --------------------------------------------------------------------------
   Section scaffolding
   -------------------------------------------------------------------------- */
body.theme-corporate .c-section {
  padding: 88px 0;
}

body.theme-corporate .c-section--alt {
  background: #ffffff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

body.theme-corporate .c-section-head {
  max-width: 720px;
  margin: 0 0 44px;
}

body.theme-corporate .c-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.theme-corporate .c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--c-brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.theme-corporate .c-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-brand);
}

body.theme-corporate .c-section-head--center .c-eyebrow::before {
  display: none;
}

body.theme-corporate .c-h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

body.theme-corporate .c-section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
body.theme-corporate .c-hero {
  position: relative;
  padding: 92px 0 84px;
  background:
    radial-gradient(900px 440px at 84% -12%, rgba(64, 116, 235, 0.4), transparent 60%),
    radial-gradient(760px 520px at -6% 118%, rgba(29, 78, 216, 0.22), transparent 56%),
    linear-gradient(180deg, #0d1526 0%, #0b1220 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body.theme-corporate .c-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

body.theme-corporate .c-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8eefb;
  font-size: 0.78rem;
  font-weight: 700;
}

body.theme-corporate .c-hero-badge .c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px rgba(15, 159, 122, 0.16);
}

body.theme-corporate .c-hero h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

body.theme-corporate .c-hero h1 .c-accent {
  color: #82a8ff;
}

body.theme-corporate .c-hero-lead {
  max-width: 52ch;
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(226, 232, 244, 0.78);
}

body.theme-corporate .c-hero .c-btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

body.theme-corporate .c-hero .c-btn--ghost:hover,
body.theme-corporate .c-hero .c-btn--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body.theme-corporate .c-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

body.theme-corporate .c-hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.theme-corporate .c-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--c-line-strong);
  border-radius: 12px;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

body.theme-corporate .c-store:hover {
  transform: translateY(-2px);
  border-color: var(--c-brand);
  box-shadow: var(--c-shadow);
}

body.theme-corporate .c-store svg {
  width: 20px;
  height: 20px;
}

body.theme-corporate .c-store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

body.theme-corporate .c-store-copy span {
  color: var(--c-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-corporate .c-store-copy strong {
  color: var(--c-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

/* Hero visual */
body.theme-corporate .c-hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

body.theme-corporate .c-device {
  position: relative;
  margin: 0 auto;
  width: min(100%, 340px);
  padding: 12px;
  border: 1px solid var(--c-line);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f4f7fd);
  box-shadow: var(--c-shadow-lg);
}

body.theme-corporate .c-device img {
  width: 100%;
  border-radius: 22px;
  background: #fff;
}

body.theme-corporate .c-hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--c-shadow);
}

body.theme-corporate .c-hero-chip strong {
  display: block;
  color: var(--c-ink);
  font-size: 0.92rem;
}

body.theme-corporate .c-hero-chip span {
  display: block;
  color: var(--c-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

body.theme-corporate .c-hero-chip .c-chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--c-brand-soft);
  color: var(--c-brand);
}

body.theme-corporate .c-hero-chip--one {
  top: 8px;
  left: -34px;
}

body.theme-corporate .c-hero-chip--two {
  bottom: 22px;
  right: -30px;
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
body.theme-corporate .c-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background: #fff;
  box-shadow: var(--c-shadow-sm);
  overflow: hidden;
}

body.theme-corporate .c-stat {
  padding: 28px 30px;
  border-right: 1px solid var(--c-line);
}

body.theme-corporate .c-stat:last-child {
  border-right: 0;
}

body.theme-corporate .c-stat-value {
  color: var(--c-brand);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.theme-corporate .c-stat h3 {
  margin-top: 8px;
  font-size: 1.02rem;
}

body.theme-corporate .c-stat p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   Card grids (capabilities, links)
   -------------------------------------------------------------------------- */
body.theme-corporate .c-grid {
  display: grid;
  gap: 18px;
}

body.theme-corporate .c-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

body.theme-corporate .c-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

body.theme-corporate .c-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

body.theme-corporate .c-card {
  padding: 26px;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background: #fff;
  box-shadow: var(--c-shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.theme-corporate .c-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-line-strong);
  box-shadow: var(--c-shadow);
}

body.theme-corporate .c-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--c-brand-soft);
  color: var(--c-brand);
}

body.theme-corporate .c-card-ico svg {
  width: 22px;
  height: 22px;
}

body.theme-corporate .c-card h3 {
  font-size: 1.12rem;
}

body.theme-corporate .c-card p {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--c-muted);
}

body.theme-corporate .c-link-card {
  display: block;
  padding: 22px 24px;
}

body.theme-corporate .c-link-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.04rem;
}

body.theme-corporate .c-link-card h3::after {
  content: "→";
  color: var(--c-brand);
  font-weight: 700;
  transition: transform 160ms ease;
}

body.theme-corporate .c-link-card:hover h3::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Product spotlight
   -------------------------------------------------------------------------- */
body.theme-corporate .c-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

body.theme-corporate .c-product-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

body.theme-corporate .c-product-copy p {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--c-muted);
}

body.theme-corporate .c-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

body.theme-corporate .c-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

body.theme-corporate .c-shot {
  margin: 0;
  padding: 8px;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f4f7fd);
  box-shadow: var(--c-shadow-sm);
}

body.theme-corporate .c-shot:nth-child(2) {
  transform: translateY(-18px);
}

body.theme-corporate .c-shot img {
  width: 100%;
  border-radius: 13px;
}

/* --------------------------------------------------------------------------
   Workflow
   -------------------------------------------------------------------------- */
body.theme-corporate .c-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

body.theme-corporate .c-step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background: #fff;
}

body.theme-corporate .c-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--c-brand);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

body.theme-corporate .c-step h3 {
  font-size: 1.06rem;
}

body.theme-corporate .c-step p {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.66;
  color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
body.theme-corporate .c-compare {
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background: #fff;
  box-shadow: var(--c-shadow-sm);
  overflow: hidden;
}

body.theme-corporate .c-compare-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
}

body.theme-corporate .c-compare-row + .c-compare-row {
  border-top: 1px solid var(--c-line);
}

body.theme-corporate .c-compare-row > span {
  padding: 20px 24px;
  border-right: 1px solid var(--c-line);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-text);
}

body.theme-corporate .c-compare-row > span:last-child {
  border-right: 0;
}

body.theme-corporate .c-compare-head {
  background: var(--c-bg-alt);
}

body.theme-corporate .c-compare-head > span {
  color: var(--c-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.theme-corporate .c-compare-head > span:last-child {
  color: var(--c-brand);
}

body.theme-corporate .c-compare-row strong {
  color: var(--c-ink);
  font-weight: 700;
}

body.theme-corporate .c-compare-row .c-yes {
  color: var(--c-ink-soft);
  font-weight: 600;
}

body.theme-corporate .c-compare-col-brand {
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.04), rgba(29, 78, 216, 0.02));
}

/* --------------------------------------------------------------------------
   Contact band
   -------------------------------------------------------------------------- */
body.theme-corporate .c-contact {
  position: relative;
  padding: 66px 56px;
  border-radius: var(--c-radius-lg);
  background:
    radial-gradient(700px 300px at 88% 0%, rgba(29, 78, 216, 0.35), transparent 60%),
    linear-gradient(180deg, #0d1526 0%, #0b1220 100%);
  overflow: hidden;
}

body.theme-corporate .c-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 40px;
  align-items: center;
}

body.theme-corporate .c-contact .c-eyebrow {
  color: #7ea6ff;
}

body.theme-corporate .c-contact .c-eyebrow::before {
  background: #7ea6ff;
}

body.theme-corporate .c-contact h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

body.theme-corporate .c-contact p {
  margin-top: 16px;
  color: rgba(233, 238, 248, 0.76);
  font-size: 1.02rem;
  line-height: 1.72;
}

body.theme-corporate .c-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body.theme-corporate .c-contact .c-btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

body.theme-corporate .c-contact .c-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body.theme-corporate .c-contact-meta {
  display: grid;
  gap: 14px;
  margin: 0;
}

body.theme-corporate .c-contact-meta > div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

body.theme-corporate .c-contact-meta dt {
  color: rgba(233, 238, 248, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-corporate .c-contact-meta dd {
  margin: 6px 0 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

body.theme-corporate .c-contact-meta dd a {
  color: #fff;
}

body.theme-corporate .c-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.theme-corporate .c-flag img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
body.theme-corporate .c-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}

body.theme-corporate .c-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
}

body.theme-corporate .c-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

body.theme-corporate .c-footer-links a {
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 600;
}

body.theme-corporate .c-footer-links a:hover {
  color: var(--c-brand);
}

body.theme-corporate .c-footer-bottom {
  margin-top: 24px;
  color: var(--c-muted);
  font-size: 0.86rem;
}

/* --------------------------------------------------------------------------
   Reveal-on-load micro animation (respects reduced motion)
   -------------------------------------------------------------------------- */
body.theme-corporate .c-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: cReveal 640ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes cReveal {
  to {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  body.theme-corporate .c-hero-grid,
  body.theme-corporate .c-product {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  body.theme-corporate .c-hero-visual {
    justify-self: center;
  }

  body.theme-corporate .c-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  body.theme-corporate .c-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  body.theme-corporate .c-nav {
    display: none;
  }

  body.theme-corporate .c-section {
    padding: 60px 0;
  }

  body.theme-corporate .c-stats,
  body.theme-corporate .c-grid--3,
  body.theme-corporate .c-grid--2 {
    grid-template-columns: 1fr;
  }

  body.theme-corporate .c-stat {
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }

  body.theme-corporate .c-stat:last-child {
    border-bottom: 0;
  }

  body.theme-corporate .c-contact-grid {
    grid-template-columns: 1fr;
  }

  body.theme-corporate .c-contact {
    padding: 44px 28px;
  }

  body.theme-corporate .c-compare {
    overflow-x: auto;
  }

  body.theme-corporate .c-compare-row {
    min-width: 620px;
  }
}

@media (max-width: 560px) {
  body.theme-corporate .c-grid--4,
  body.theme-corporate .c-gallery,
  body.theme-corporate .c-steps {
    grid-template-columns: 1fr;
  }

  body.theme-corporate .c-shot:nth-child(2) {
    transform: none;
  }

  body.theme-corporate .c-hero-chip {
    display: none;
  }

  body.theme-corporate .c-brand-copy span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-corporate .c-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.theme-corporate * {
    transition: none !important;
  }
}
