:root {
  interpolate-size: allow-keywords;
  --bg: #FFFFFF;
  --surface: #F0F4F8;
  --surface-2: #E4EBF2;
  --ink: #1B2533;
  --ink-soft: #4A5568;
  --accent: #0066FF;
  --accent-2: #00C2A8;
  --line: rgba(27, 37, 51, 0.12);
  --line-strong: rgba(27, 37, 51, 0.24);
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 14px;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Segoe UI Mono', 'Roboto Mono', monospace;
}

/* ===========================================
   RESET
   =========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ===========================================
   TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); }
p { color: var(--ink-soft); max-width: 68ch; }
.mono { font-family: var(--font-mono); font-weight: 500; }

/* ===========================================
   LAYOUT
   =========================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
main { padding-top: var(--header-h); }
section { padding: clamp(48px, 8vw, 96px) 0; }

/* ===========================================
   SKIP LINK
   =========================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: top 200ms;
}
.skip-link:focus {
  top: 12px;
}

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 240ms ease, box-shadow 240ms ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1;
  pointer-events: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo svg { flex-shrink: 0; }
.logo span { color: var(--accent); }

/* ===========================================
   NAVIGATION (desktop)
   =========================================== */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4, 0, .2, 1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.4, 0, .2, 1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active { color: #fff; }

/* ===========================================
   NAV TOGGLE (hamburger)
   =========================================== */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2, .7, .2, 1), opacity 200ms ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-desktop { display: none; }
}

/* ===========================================
   MOBILE DRAWER — outside <header>
   =========================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
  overflow-y: auto;
  padding: calc(var(--header-h) + 32px) 28px 32px;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover,
.drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .drawer-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: #fff;
  padding-left: 0;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 10vw, 100px);
  padding-bottom: clamp(40px, 6vw, 64px);
  background: var(--bg);
}
.hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 102, 255, 0.07);
  padding: 7px 18px;
  border-radius: 100px;
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.018em;
  line-height: 1.02;
  max-width: 16ch;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.7;
}
.hero__cta {
  margin-top: 8px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.16, .85, .45, 1), border-color 280ms, background 280ms;
}
.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 255, 0.25);
  background: rgba(0, 102, 255, 0.04);
}
.trust-badge svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

/* Viewfinder frame — theme signature */
.hero__viewfinder {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(280px, 42vw, 520px);
  height: clamp(280px, 42vw, 520px);
  transform: translate(-50%, -50%);
  border: 2px dashed var(--accent);
  opacity: 0.1;
  animation: viewfinderSpin 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__viewfinder::before,
.hero__viewfinder::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
}
.hero__viewfinder::before {
  top: -1px; left: -1px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  opacity: 0.35;
}
.hero__viewfinder::after {
  bottom: -1px; right: -1px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  opacity: 0.35;
}
.hero__viewfinder--alt {
  width: clamp(320px, 50vw, 580px);
  height: clamp(320px, 50vw, 580px);
  border-style: dotted;
  border-color: var(--accent-2);
  opacity: 0.06;
  animation-duration: 35s;
  animation-direction: reverse;
}
.hero__viewfinder--alt::before,
.hero__viewfinder--alt::after {
  border-color: var(--accent-2);
}

/* Crosshair center lines inside main viewfinder */
.hero__crosshair {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(280px, 42vw, 520px);
  height: clamp(280px, 42vw, 520px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.hero__crosshair::before,
.hero__crosshair::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.hero__crosshair::before {
  top: 50%; left: 20%; right: 20%;
  height: 1px;
}
.hero__crosshair::after {
  left: 50%; top: 20%; bottom: 20%;
  width: 1px;
}

@keyframes viewfinderSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===========================================
   STATS BAND
   =========================================== */
.stats-band {
  background: var(--ink);
  padding: clamp(36px, 5vw, 56px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===========================================
   SECTION BASE
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  margin: 0 auto;
  max-width: 52ch;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===========================================
   CATEGORIES — 4-col card grid
   =========================================== */
.categories { background: var(--surface); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.cat-card {
  background: var(--bg);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: transform 360ms cubic-bezier(.16, .85, .45, 1), box-shadow 360ms cubic-bezier(.16, .85, .45, 1), border-color 360ms;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.3);
}
.cat-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.06);
  border-radius: 14px;
  color: var(--accent);
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), background 280ms;
}
.cat-card:hover .cat-card__icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}
.cat-card__icon svg { width: 26px; height: 26px; }
.cat-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.cat-card p { font-size: 14px; line-height: 1.55; margin: 0 auto; }

/* Focus bracket overlay on hover */
.cat-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 320ms cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}
.cat-card:hover::before {
  border-color: rgba(0, 102, 255, 0.12);
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   PROCESS — horizontal 4-step flow
   =========================================== */
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
}
.process-flow::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.25;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--accent);
  transition: background 300ms, color 300ms, transform 300ms;
}
.process-step:hover .process-step__num {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}
.process-step__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--accent);
  transition: background 300ms, color 300ms;
}
.process-step:hover .process-step__icon {
  background: var(--accent);
  color: #fff;
}
.process-step__icon svg { width: 24px; height: 24px; }
.process-step h3 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); max-width: 22ch; margin: 0 auto; }

@media (max-width: 768px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-flow::before {
    top: 0; bottom: 0;
    left: 27px; right: auto;
    width: 2px;
    height: auto;
  }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 4px 16px;
    text-align: left;
    padding-bottom: 32px;
  }
  .process-step__num { margin: 0; grid-row: 1 / 3; }
  .process-step h3, .process-step p { max-width: none; min-width: 0; }
}

/* ===========================================
   SHOWCASE — 3-col masonry
   =========================================== */
.vitrin { background: var(--surface); }
.masonry {
  columns: 3;
  column-gap: clamp(14px, 2vw, 24px);
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: clamp(14px, 2vw, 24px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  cursor: pointer;
}
.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface-2);
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}
.masonry__item:hover img {
  transform: scale(1.04);
}
.masonry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 37, 51, 0.72) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.4, 0, .2, 1);
}
.masonry__item:hover .masonry__overlay { opacity: 1; }
.masonry__overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Shutter flash on hover */
.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.masonry__item:hover::after {
  animation: shutterFlash 400ms ease-out;
}
@keyframes shutterFlash {
  0% { opacity: 0; }
  15% { opacity: 0.25; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .masonry { columns: 2; }
}
@media (max-width: 480px) {
  .masonry { columns: 1; }
}

/* ===========================================
   PACKAGES — 3 pricing cards
   =========================================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.pkg-card {
  background: var(--bg);
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), box-shadow 280ms;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(0, 102, 255, 0.16);
}
.pkg-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 8px 32px -8px rgba(0, 102, 255, 0.12);
}
.pkg-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.pkg-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pkg-card__price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.pkg-card__price small {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-weight: 400;
}
.pkg-card__divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
.pkg-card__section-title {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.pkg-card__list {
  margin-bottom: 16px;
}
.pkg-card__list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
}
.pkg-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(0, 194, 168, 0.12);
  border: 1.5px solid var(--accent-2);
}
.pkg-card__list--excluded li::before {
  background: rgba(27, 37, 51, 0.06);
  border-color: var(--line-strong);
}
.pkg-card__timing {
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.pkg-card .btn-primary,
.pkg-card .btn-ghost {
  width: 100%;
  text-align: center;
}
.pkg-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 768px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===========================================
   TESTIMONIALS — asymmetric grid
   =========================================== */
.testimonials { background: var(--surface); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}
.testi-grid .testi-card:first-child {
  grid-row: 1 / 3;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 360ms cubic-bezier(.16, .85, .45, 1), box-shadow 360ms, border-color 360ms;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -10px rgba(0, 102, 255, 0.18);
  border-color: rgba(0, 102, 255, 0.2);
}
.testi-card__quote {
  position: absolute;
  top: 20px; left: 24px;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testi-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: none;
}
.testi-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.testi-card__meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid .testi-card:first-child {
    grid-row: auto;
  }
}

/* ===========================================
   FAQ — pure CSS accordion
   =========================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 360ms cubic-bezier(.4, 0, .2, 1);
}
.faq-item summary .faq-icon::before {
  top: 50%; left: 4px; right: 4px;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item summary .faq-icon::after {
  left: 50%; top: 4px; bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item[open] summary .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4, 0, .2, 1),
              padding-block-end 360ms cubic-bezier(.4, 0, .2, 1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: none;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ===========================================
   CTA BAND (index bottom)
   =========================================== */
.cta-band {
  background: var(--surface);
}
.cta-band__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-band__inner h2 { margin-bottom: 12px; }
.cta-band__inner p {
  margin: 0 auto 32px;
  max-width: 48ch;
}
.btn-primary--lg {
  padding: 18px 44px;
  font-size: 16px;
}

/* ===========================================
   FORM SECTION
   =========================================== */
.teklif-section {
  background: var(--surface);
}
.teklif-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
.form-card h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field select {
  appearance: auto;
  cursor: pointer;
}

/* Checkbox — guaranteed visible */
.field input[type="checkbox"],
.kvkk input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
  cursor: pointer;
}
.kvkk a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-aside h3 { margin-bottom: 20px; }
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4, 0, .2, 1), background 240ms;
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.contact-channel:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-channel:last-child { border-bottom: none; }
.contact-channel svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 240ms cubic-bezier(.4, 0, .2, 1);
}
.contact-channel:hover svg {
  transform: scale(1.08);
}
.contact-channel__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-channel__value {
  font-size: 15px;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel__value a {
  color: var(--ink);
  transition: color 200ms;
}
.contact-channel__value a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .teklif-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   TEAM SECTION (hakkimizda)
   =========================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -10px rgba(0, 102, 255, 0.15);
}
.team-card__avatar {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  border: 2px solid rgba(0, 102, 255, 0.15);
}
.team-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.team-card__role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
  max-width: none;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===========================================
   DETAILED PROCESS TIMELINE (hakkimizda)
   =========================================== */
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.25;
}
.timeline__step {
  position: relative;
  padding-bottom: 36px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 32px; height: 32px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  z-index: 1;
  transition: background 300ms cubic-bezier(.16, .85, .45, 1), color 300ms, transform 300ms;
}
.timeline__step:hover .timeline__dot {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}
.timeline__step h3 { margin-bottom: 4px; font-size: 1.05rem; }
.timeline__step .timeline__time {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--accent-2);
  margin-bottom: 8px;
}
.timeline__step p { font-size: 14px; line-height: 1.65; max-width: none; }

/* ===========================================
   PAGE HERO (inner pages)
   =========================================== */
.page-hero {
  padding: clamp(32px, 6vw, 64px) 0;
  background: var(--surface);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 8px;
}
.page-hero p {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--ink-soft);
}

/* ===========================================
   CONTACT PAGE CHANNELS
   =========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   LEGAL PAGES
   =========================================== */
.legal {
  padding: clamp(32px, 5vw, 56px) 0;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p {
  margin-bottom: 16px;
  max-width: none;
}
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===========================================
   THANK-YOU PAGE
   =========================================== */
.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.thankyou__inner { max-width: 520px; }
.thankyou__icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: rgba(0, 194, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}
.thankyou__icon svg { width: 36px; height: 36px; }
.thankyou h1 { margin-bottom: 12px; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.thankyou p { margin: 0 auto 28px; }

/* ===========================================
   404 PAGE
   =========================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.error-page__code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 500;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 8px;
}
.error-page h1 { margin-bottom: 12px; }
.error-page p { margin: 0 auto 28px; }

/* ===========================================
   SITEMAP PAGE
   =========================================== */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.sitemap-links h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--accent);
}
.sitemap-links ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-links a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 200ms;
}
.sitemap-links a:hover { color: var(--accent); }

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1), color 240ms, transform 180ms, box-shadow 240ms;
  letter-spacing: 0.01em;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0, 102, 255, 0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-primary--light {
  background: var(--accent);
  color: #fff;
}
.btn-primary--light:hover,
.btn-primary--light:focus-visible {
  background: #fff;
  color: var(--accent);
}

/* ===========================================
   TABLE SCROLL
   =========================================== */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
  border-collapse: collapse;
}
.table-scroll th,
.table-scroll td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  font-weight: 600;
  background: var(--surface);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.table-scroll tr:last-child td { border-bottom: none; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .logo { color: #fff; margin-bottom: 12px; }
.footer__brand .logo span { color: var(--accent); }
.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 28ch;
}
.footer__est {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
}
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 200ms;
}
.footer__legal a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ===========================================
   COOKIE BANNER
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--ink);
}
.cookie-banner__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius);
  padding: 10px 16px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cookie-btn-accept:hover { background: var(--ink); color: #fff; }
.cookie-btn-reject {
  background: var(--ink);
  color: #fff;
  border: none;
}
.cookie-btn-reject:hover { background: #2d3a4a; color: #fff; }
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
}
.cookie-btn-settings:hover { background: var(--surface); color: var(--ink); }

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 18px 20px;
  }
  .cookie-banner__actions {
    flex-wrap: nowrap;
  }
  .cookie-banner__actions button {
    min-width: 0;
    padding: 10px 8px;
  }
}
@media (min-width: 769px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; margin: 0; }
}

/* ===========================================
   REVEAL ANIMATIONS
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.16, .85, .45, 1),
              transform 700ms cubic-bezier(.16, .85, .45, 1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===========================================
   NICHE ANIMATIONS — Photography
   =========================================== */

/* 1. Viewfinder spin — already in .hero__viewfinder above */

/* 2. Shutter flash — already in .masonry__item::after above */

/* 3. Focus bracket pulse on category cards */
@keyframes focusPulse {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.3; }
}
.cat-card:hover::before {
  animation: focusPulse 1.2s ease-in-out infinite;
}

/* 4. Light sweep gradient on cards */
@keyframes lightSweep {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: translateX(-100%) skewX(-15deg);
  pointer-events: none;
  z-index: 0;
}
.pkg-card:hover::before {
  animation: lightSweep 800ms ease-out;
}

/* 5. Aperture reveal for images via clip-path */
@keyframes apertureOpen {
  from { clip-path: circle(0% at 50% 50%); }
  to { clip-path: circle(75% at 50% 50%); }
}
.masonry__item.reveal.is-in img {
  animation: apertureOpen 700ms cubic-bezier(.2, .7, .2, 1) forwards;
}

/* 6. Soft glow pulse on featured pricing card */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 32px -8px rgba(0, 102, 255, 0.12); }
  50% { box-shadow: 0 8px 32px -4px rgba(0, 102, 255, 0.22); }
}
.pkg-card--featured {
  animation: glowPulse 3s ease-in-out infinite;
}

/* 7. Smooth icon lift on process step hover */
.process-step__num svg {
  transition: transform 300ms cubic-bezier(.16, .85, .45, 1);
}
.process-step:hover .process-step__num svg {
  transform: scale(1.12);
}

/* 8. Testimonial quote mark float */
@keyframes quoteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.testi-card:hover .testi-card__quote {
  animation: quoteFloat 2s ease-in-out infinite;
  opacity: 0.25;
}

/* 9. FAQ icon smooth spin on open */
.faq-item[open] summary .faq-icon::before {
  transform: translateY(-50%) rotate(180deg);
}

/* 10. CTA band button pulse */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 24px -8px rgba(0, 102, 255, 0.35); }
  50% { box-shadow: 0 12px 36px -6px rgba(0, 102, 255, 0.45); }
}
.cta-band .btn-primary--lg:hover {
  animation: ctaPulse 1.5s ease-in-out infinite;
}

/* 11. Exposure meter on stat numbers */
@keyframes exposureFade {
  0% { opacity: 0; filter: brightness(2); }
  100% { opacity: 1; filter: brightness(1); }
}
.stat.reveal.is-in .stat__num {
  animation: exposureFade 800ms cubic-bezier(.16, .85, .45, 1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms);
}

/* 12. Subtle warm-white glow on cat-card icon hover */
.cat-card:hover .cat-card__icon {
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.25);
}

/* 13. Film-strip edge on masonry items hover */
.masonry__item::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 4px; height: calc(100% - 16px);
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 4px,
    rgba(0, 102, 255, 0.3) 4px, rgba(0, 102, 255, 0.3) 6px
  );
  border-radius: 2px;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16, .85, .45, 1);
  z-index: 3;
  pointer-events: none;
}
.masonry__item:hover::before {
  opacity: 1;
}

/* 14. Timeline dot ripple on hover */
@keyframes dotRipple {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.3); }
  100% { box-shadow: 0 0 0 12px rgba(0, 102, 255, 0); }
}
.timeline__step:hover .timeline__dot {
  animation: dotRipple 600ms ease-out;
}

/* 15. Smooth scale on team card avatar hover */
.team-card:hover .team-card__avatar {
  transform: scale(1.08);
  border-color: var(--accent);
  background: rgba(0, 102, 255, 0.08);
  transition: transform 300ms cubic-bezier(.16, .85, .45, 1), border-color 300ms, background 300ms;
}

/* 16. Trust badge subtle entrance */
.hero__trust .trust-badge {
  transition: transform 280ms cubic-bezier(.16, .85, .45, 1),
              border-color 280ms,
              background 280ms,
              box-shadow 280ms;
}
.hero__trust .trust-badge:hover {
  box-shadow: 0 4px 16px -4px rgba(0, 102, 255, 0.15);
}

/* 17. Contact channel icon glow */
.contact-channel:hover svg {
  filter: drop-shadow(0 0 6px rgba(0, 102, 255, 0.3));
}

/* 18. Footer link arrow hint on hover */
.footer__links a {
  position: relative;
}
.footer__links a::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: opacity 200ms, left 200ms;
  color: var(--accent);
}
.footer__links a:hover::before {
  opacity: 1;
  left: -8px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__viewfinder,
  .hero__viewfinder--alt { animation: none; }
  .masonry__item::after { animation: none !important; }
  .cat-card:hover::before { animation: none; }
  .pkg-card:hover::before { animation: none; }
  .pkg-card--featured { animation: none; }
  .masonry__item.reveal.is-in img { animation: none; clip-path: none; }
  .testi-card:hover .testi-card__quote { animation: none; }
  .cta-band .btn-primary--lg:hover { animation: none; }
  .stat.reveal.is-in .stat__num { animation: none; }
  .timeline__step:hover .timeline__dot { animation: none; }
  .masonry__item::before { display: none; }
}

/* ===========================================
   FOCUS RING — A11Y
   =========================================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ===========================================
   RESPONSIVE
   =========================================== */

/* 1440+ */
@media (min-width: 1440px) {
  :root { --header-h: 80px; }
}

/* 1280 */
@media (max-width: 1280px) {
  .nav-desktop { gap: 24px; }
}

/* 1024 — tablet / mobile switch */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .hero__title { font-size: clamp(2.5rem, 7vw, 4rem); }
}

/* 768 — tablet portrait */
@media (max-width: 768px) {
  section { padding: clamp(36px, 6vw, 64px) 0; }
  .hero__viewfinder { display: none; }
  .hero__viewfinder--alt { display: none; }
  .hero__crosshair { display: none; }
}

/* 640 — large phone */
@media (max-width: 640px) {
  .hero__trust { flex-direction: column; align-items: center; }
  .trust-badge { font-size: 11px; padding: 5px 12px; }
}

/* 480 — small phone */
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .btn-primary { padding: 12px 24px; font-size: 13px; }
  .btn-ghost { padding: 11px 22px; font-size: 13px; }
}

/* 390 — iPhone 14/15 */
@media (max-width: 390px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero__title { font-size: 2rem; }
}

/* 360 — iPhone SE / small Android */
@media (max-width: 360px) {
  :root { --header-h: 56px; }
  .logo { font-size: 1.15rem; }
}

/* ===========================================
   PRINT
   =========================================== */
@media print {
  .site-header,
  .drawer-backdrop,
  .drawer,
  .cookie-banner,
  .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { padding: 24pt 0; }
  .hero__viewfinder, .hero__viewfinder--alt, .hero__crosshair { display: none; }
}

/* ===========================================
   HONEYPOT
   =========================================== */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
