/* ==========================================================================
   Gulmez Technologies — Kurumsal Tasarım Sistemi
   Saf CSS · Açık tema · Kurumsal
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tasarım Token'ları
   -------------------------------------------------------------------------- */
:root {
  /* Marka renkleri */
  --navy-900: #061224;
  --navy-800: #0a1f44;
  --navy-700: #12305f;

  --brand-700: #1741b8;
  --brand-600: #1b4fe0;
  --brand-500: #2f6bf0;
  --brand-400: #6d9bff;
  --brand-100: #dce7ff;
  --brand-50:  #eef3ff;

  --teal-600: #009882;
  --teal-500: #00b49b;
  --teal-100: #cdf3ec;
  --teal-50:  #e6f8f5;

  /* Nötrler */
  --ink:     #0b1b33;
  --text:    #3a5170;
  --muted:   #7288a5;
  --bg:      #ffffff;
  --surface: #f5f8fc;
  --surface-2: #eaf1f9;
  --border:  #e2e9f3;
  --border-strong: #cfdaea;

  /* Sistem */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(11, 27, 51, .05);
  --shadow-sm: 0 2px 6px rgba(11, 27, 51, .05), 0 1px 2px rgba(11, 27, 51, .04);
  --shadow-md: 0 10px 28px -8px rgba(11, 27, 51, .12), 0 3px 8px -3px rgba(11, 27, 51, .06);
  --shadow-lg: 0 28px 70px -22px rgba(11, 27, 51, .22), 0 10px 24px -12px rgba(11, 27, 51, .10);

  --container: 1200px;
  --gutter: 24px;
  --header-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-body);

  --grad-brand: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 45%, var(--teal-500) 130%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

/* --------------------------------------------------------------------------
   2. Reset & Temel
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.2vw, 3.65rem); }
h2 { font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .55vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-700); }

img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 700; }

::selection { background: var(--brand-100); color: var(--navy-800); }

:focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { left: 16px; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }
.section--surface { background: var(--surface); border-block: 1px solid var(--border); }
.section--soft { background: var(--grad-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.section-head--center .eyebrow::before { display: none; }

.section-sub {
  font-size: 1.06rem;
  color: var(--muted);
  margin-bottom: 0;
}

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   4. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(27, 79, 224, .55);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(27, 79, 224, .6);
}

.btn--ghost {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover {
  color: var(--navy-800);
  border-color: var(--brand-400);
  background: var(--brand-50);
  transform: translateY(-2px);
}

.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { color: #fff; background: var(--navy-700); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { color: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  font-size: .93rem;
  color: var(--brand-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header / Navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -16px rgba(11, 27, 51, .35);
  background: rgba(255, 255, 255, .94);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand:hover { color: inherit; }
/* Logo şeffaf zeminli bir monogram: dolu kutu değil.
   Bu yüzden köşe yuvarlaklığı ve gölge yok — gölge, şeffaf alanın
   arkasında dikdörtgen bir leke olarak görünürdü. */
.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  transition: transform .3s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand-text span {
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li { margin: 0; }
.nav-link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover { background: var(--surface-2); color: var(--navy-800); }
.nav-link.is-active { color: var(--brand-600); background: var(--brand-50); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 14px; }

.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.lang-switch button.is-active {
  background: #fff;
  color: var(--navy-800);
  box-shadow: var(--shadow-xs);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  position: relative;
  transition: transform .3s var(--ease), background-color .2s;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform .3s var(--ease), top .25s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(0, 180, 155, .10), transparent 62%),
    radial-gradient(1000px 520px at 6% 0%, rgba(27, 79, 224, .11), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 62%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 27, 51, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 27, 51, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(700px 420px at 50% 22%, #000, transparent 78%);
  mask-image: radial-gradient(700px 420px at 50% 22%, #000, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
}
.pill b {
  background: var(--grad-brand);
  color: #fff;
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.hero h1 { margin-bottom: 22px; }
.hero h1 .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.02rem, .98rem + .3vw, 1.16rem);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 34px;
  justify-content: start;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
}
.stat-label { font-size: .82rem; color: var(--muted); font-weight: 550; }

/* Hero görseli — AI panel maketi */
.hero-visual { position: relative; }
.mock {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 1;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mock-dot:nth-child(1) { background: #ff6058; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-title {
  margin-left: 8px;
  font-size: .74rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: .02em;
}
.mock-body { padding: 20px; display: grid; gap: 16px; }

.chat { display: grid; gap: 10px; }
.bubble {
  max-width: 86%;
  padding: 11px 15px;
  border-radius: 15px;
  font-size: .85rem;
  line-height: 1.55;
}
.bubble--user {
  justify-self: end;
  background: var(--surface-2);
  color: var(--navy-800);
  border-bottom-right-radius: 5px;
}
.bubble--bot {
  justify-self: start;
  background: var(--grad-brand);
  color: #fff;
  border-bottom-left-radius: 5px;
  box-shadow: 0 8px 20px -10px rgba(27, 79, 224, .6);
}
.typing { display: inline-flex; gap: 4px; align-items: center; padding: 2px 0; }
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  animation: blink 1.3s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%,60%,100%{opacity:.28; transform:translateY(0)} 30%{opacity:1; transform:translateY(-3px)} }

.mock-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
}
.mock-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.mock-panel-head b { font-size: .82rem; color: var(--navy-800); font-family: var(--font-display); }
.trend { font-size: .74rem; font-weight: 700; color: var(--teal-600); }

.bars { display: flex; align-items: flex-end; gap: 9px; height: 84px; }
.bars i {
  flex: 1;
  border-radius: 5px 5px 3px 3px;
  background: var(--brand-100);
  transform-origin: bottom;
  animation: growBar 1.1s var(--ease-out) backwards;
}
.bars i.hi { background: var(--grad-brand); }
@keyframes growBar { from { transform: scaleY(.05); opacity: .3 } to { transform: scaleY(1); opacity: 1 } }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card--a { left: -26px; top: 24%; animation-delay: -1.2s; }
.float-card--b { right: -22px; bottom: 12%; }
.float-card i {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-600);
  flex: none;
}
.float-card i svg { width: 18px; height: 18px; }
.float-card--a i { background: var(--brand-50); color: var(--brand-600); }
.float-card b { display: block; font-size: .82rem; color: var(--ink); font-family: var(--font-display); line-height: 1.3; }
.float-card small { font-size: .72rem; color: var(--muted); }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }

/* --------------------------------------------------------------------------
   7. Teknoloji şeridi
   -------------------------------------------------------------------------- */
.strip { padding: 30px 0; border-block: 1px solid var(--border); background: var(--surface); }
.strip-label {
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tech-pill {
  padding: 8px 17px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: all .22s var(--ease);
}
.tech-pill:hover {
  border-color: var(--brand-400);
  color: var(--brand-700);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   8. Kartlar
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-600);
  margin-bottom: 18px;
  transition: background-color .28s var(--ease), color .28s var(--ease);
}
.card-icon svg { width: 24px; height: 24px; }
.card:hover .card-icon { background: var(--grad-brand); color: #fff; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: .94rem; color: var(--muted); }

.card-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}
.card-list li {
  position: relative;
  padding-left: 24px;
  font-size: .88rem;
  color: var(--text);
  margin: 0;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009882' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 9px no-repeat;
}

/* Özellik satırı (ikon + metin) */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature h4 { margin-bottom: 5px; }
.feature p { font-size: .91rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   9. Süreç adımları
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  position: relative;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}
.step h4 { margin-bottom: 7px; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   10. Proje kartları
   -------------------------------------------------------------------------- */
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project--flip .project-media { order: 2; }

.project-media {
  position: relative;
  min-height: 320px;
  padding: 32px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(27,79,224,.16), transparent 65%),
    linear-gradient(140deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
}
.project-media::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 40px 40px;
}
.project-media > * { position: relative; z-index: 1; }

.project-body { padding: clamp(28px, 3vw, 42px); display: flex; flex-direction: column; }
.project-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  background: var(--teal-50);
  color: var(--teal-600);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.project-tag--brand { background: var(--brand-50); color: var(--brand-600); }
.project-tag--muted { background: var(--surface-2); color: var(--muted); }
.project-body p { font-size: .96rem; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 22px; }
.chip {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.project-metrics div b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.project-metrics div span { font-size: .76rem; color: var(--muted); }

/* Telefon maketi */
.phone {
  width: 208px;
  border-radius: 30px;
  background: #0d1b30;
  border: 7px solid #16243c;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.65);
  overflow: hidden;
}
.phone-screen { background: #fff; padding: 14px; display: grid; gap: 10px; min-height: 300px; }
.ph-row { display: flex; align-items: center; gap: 9px; }
.ph-avatar { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-brand); flex: none; }
.ph-line { height: 8px; border-radius: 4px; background: var(--surface-2); }
.ph-line.w40 { width: 40%; }
.ph-line.w60 { width: 60%; }
.ph-line.w80 { width: 80%; }
.ph-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px;
  display: grid;
  gap: 7px;
}
.ph-img { height: 62px; border-radius: 9px; background: linear-gradient(135deg, var(--brand-100), var(--teal-100)); }
.ph-btn {
  height: 30px;
  border-radius: 9px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Dashboard maketi (koyu) */
.dash {
  width: 100%;
  max-width: 340px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 14px;
  backdrop-filter: blur(6px);
}
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.dash-kpi {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  padding: 10px;
}
.dash-kpi b { display: block; color: #fff; font-family: var(--font-display); font-size: 1.02rem; letter-spacing: -.02em; }
.dash-kpi span { font-size: .62rem; color: rgba(255,255,255,.55); }
.dash-chart { height: 96px; display: flex; align-items: flex-end; gap: 6px; }
.dash-chart i { flex: 1; border-radius: 4px 4px 2px 2px; background: rgba(255,255,255,.22); }
.dash-chart i.hi { background: linear-gradient(180deg, var(--teal-500), var(--brand-500)); }

/* --------------------------------------------------------------------------
   11. Split (metin + görsel) bölümü
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.split-list { display: grid; gap: 24px; margin-top: 30px; }
.split--flip > *:first-child { order: 2; }
.split--center { align-items: start; }

/* Hizmet detay bloğu */
.service-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}
.service-num b {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--brand-50);
  font-size: .8rem;
  letter-spacing: 0;
}
.deliverables {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.deliverables h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.deliverables h4 svg { width: 17px; height: 17px; color: var(--teal-600); }
.deliverables .card-list li { font-size: .9rem; }
.deliverables .chips { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--border); }

/* Değer kartları (hakkımızda) */
.value-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--brand-600);
  box-shadow: var(--shadow-xs);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Zaman çizelgesi */
.timeline { position: relative; display: grid; gap: 28px; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-500), var(--teal-500));
  border-radius: 2px;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 5px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-500);
  box-shadow: 0 0 0 4px #fff;
}
.timeline-item time {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 5px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Teknoloji grupları */
.tech-group { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.tech-group h4 { font-size: .84rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.tech-group .chips { margin: 0; }

.quote-box {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.quote-box p { font-size: 1.05rem; color: var(--ink); font-style: italic; }

/* --------------------------------------------------------------------------
   12. CTA bandı
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(48px, 6vw, 76px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 340px at 82% 8%, rgba(0,180,155,.28), transparent 62%),
    radial-gradient(600px 320px at 10% 92%, rgba(47,107,240,.35), transparent 62%),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: rgba(255,255,255,.82);
  overflow: hidden;
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(600px 300px at 50% 50%, #000, transparent 75%);
  mask-image: radial-gradient(600px 300px at 50% 50%, #000, transparent 75%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 56ch; margin-inline: auto; margin-bottom: 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* --------------------------------------------------------------------------
   13. Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: clamp(50px, 6vw, 84px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(800px 400px at 82% -20%, rgba(0,180,155,.10), transparent 60%),
    radial-gradient(760px 380px at 8% -10%, rgba(27,79,224,.11), transparent 60%),
    linear-gradient(180deg, #fbfcff, #fff);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 18ch; }
.page-hero p { font-size: 1.08rem; color: var(--muted); max-width: 62ch; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: .83rem;
  color: var(--muted);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--border-strong); }

/* --------------------------------------------------------------------------
   14. Formlar
   -------------------------------------------------------------------------- */
.form-card {
  padding: clamp(26px, 3vw, 38px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 650; color: var(--navy-800); }
.field label span { color: #d94a4a; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237288a5' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9fb0c6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-50);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #e06060; background: #fff7f7; }
.field-error { font-size: .78rem; color: #cc3b3b; display: none; }
.field.has-error .field-error { display: block; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--muted);
}
.check input { width: 17px; height: 17px; margin-top: 3px; flex: none; accent-color: var(--brand-600); }

.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  color: var(--teal-600);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }

/* İletişim bilgi kartı */
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item i {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
}
.info-item i svg { width: 19px; height: 19px; }
.info-item b { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }
.info-item a, .info-item p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.info-item a:hover { color: var(--brand-600); }

/* --------------------------------------------------------------------------
   15. SSS (accordion)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.is-open { border-color: var(--brand-400); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-q::after {
  content: "";
  width: 20px; height: 20px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4fe0' stroke-width='2.6' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a > div { padding: 0 22px 20px; font-size: .93rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   15b. Yasal metin sayfaları (uzun form)
   -------------------------------------------------------------------------- */
.legal { max-width: 780px; }
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  margin-bottom: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  color: var(--muted);
}
.legal h2 {
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.55rem);
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 26px; }
.legal p, .legal li { font-size: .96rem; }
.legal ul, .legal ol { padding-left: 1.3em; }
.legal li { margin-bottom: .55em; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }

.legal-note {
  padding: 18px 22px;
  margin: 28px 0;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-left: 3px solid var(--brand-600);
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.legal-note p { margin-bottom: 0; font-size: .9rem; }

/* Yayına çıkmadan doldurulması zorunlu alanlar.
   Göze batacak şekilde işaretli — kazara canlıya gitmesin. */
mark.todo {
  background: #fff3c4;
  color: #7a5a00;
  padding: 1px 7px;
  border-radius: 5px;
  font-size: .88em;
  font-weight: 650;
  border: 1px dashed #d9a800;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.62);
  padding: clamp(48px, 6vw, 72px) 0 0;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
}
.site-footer .brand-text b { color: #fff; }
.site-footer .brand-text span { color: rgba(255,255,255,.45); }
.footer-about { margin-top: 18px; max-width: 34ch; font-size: .9rem; line-height: 1.75; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col li { margin: 0; }
.footer-col a { color: rgba(255,255,255,.62); font-size: .91rem; }
.footer-col a:hover { color: #fff; }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  transition: all .22s var(--ease);
}
.social a:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* İngiltere'de tescilli şirketler için zorunlu ticari beyan satırı:
   tescilli unvan, şirket numarası, tescil yeri ve kayıtlı ofis adresi. */
.footer-entity {
  margin: 0;
  padding: 0 0 24px;
  font-size: .76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .38);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   17. Yardımcılar & Animasyonlar
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Scroll animasyonu yalnızca JS açıkken devreye girer.
   JS kapalıysa içerik doğrudan görünür kalır (SEO + erişilebilirlik). */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.js .reveal.is-in { opacity: 1; transform: none; }

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-800);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.to-top svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .float-card--a { left: -10px; }
  .float-card--b { right: -6px; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }

  .js .burger { display: grid; }

  /* JS kapalıyken: hamburger menü yerine dikey açık menü */
  html:not(.js) .header-inner { height: auto; flex-wrap: wrap; padding-block: 12px; gap: 12px; }
  html:not(.js) .nav { flex-direction: column; align-items: stretch; width: 100%; margin-left: 0; }
  html:not(.js) .nav-list { flex-direction: column; align-items: stretch; }
  html:not(.js) .header-actions { margin: 12px 0 0; flex-direction: column; align-items: stretch; }

  .js .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 22px var(--gutter) 34px;
    background: #fff;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    /* Dikey kaydırma ile açılır. Yatay kaydırma kullanılmıyor: ekran dışına
       taşan sabit konumlu bir panel, sayfada yatay kaydırma çubuğu yaratır. */
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
    margin-left: 0;
  }
  .js .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: 14px 12px; font-size: 1.02rem; border-radius: var(--radius-sm); }

  .header-actions {
    margin: 22px 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .header-actions .lang-switch { align-self: flex-start; }
  .header-actions .btn { width: 100%; }

  .burger { margin-left: auto; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
  .project { grid-template-columns: 1fr; }
  .project--flip .project-media { order: 0; }
  .project-media { min-height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .project-metrics { grid-template-columns: 1fr 1fr; }
  .float-card { display: none; }
  .brand-text span { display: none; }
  .cta-actions .btn { flex: 1 1 100%; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .to-top, .cta-band { display: none !important; }
  body { color: #000; }
}
