:root {
  --bg: #F4F6FA;
  --surface: #FFFFFF;
  --ink: #1A1F36;
  --accent: #2563EB;
  --accent-2: #10B981;
  --line: rgba(26, 31, 54, 0.10);
  --line-strong: rgba(26, 31, 54, 0.18);
  --header-h: 72px;
  --radius: 10px;
  --shadow: 0 2px 12px -4px rgba(26, 31, 54, 0.08);
  --shadow-lg: 0 12px 40px -12px rgba(37, 99, 235, 0.12);
  interpolate-size: allow-keywords;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4, 0, .2, 1);
}
a:hover { color: var(--ink); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-size: 14px;
}
.skip-link:focus {
  top: 8px;
}

/* === CONTAINER === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(244, 246, 250, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(244, 246, 250, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  height: 62px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg {
  width: 28px;
  height: 28px;
}
.logo span {
  color: var(--accent);
}

/* === NAV DESKTOP === */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  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 240ms cubic-bezier(.4, 0, .2, 1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop a:hover {
  color: var(--accent);
}
.nav-desktop a.is-active {
  color: var(--accent);
}

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1), color 240ms cubic-bezier(.4, 0, .2, 1);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
}

/* === NAV TOGGLE (HAMBURGER) === */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1), opacity 200ms;
  position: absolute;
  left: 13px;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 31px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 31, 54, 0.08);
    border: 1.5px solid rgba(26, 31, 54, 0.12);
    border-radius: 8px;
    transition: background 200ms, border-color 200ms;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(26, 31, 54, 0.14);
    border-color: rgba(26, 31, 54, 0.22);
  }
}

/* === MOBILE DRAWER === */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
  padding: 96px 32px 40px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 31, 54, 0.06);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: background 200ms, color 200ms;
}
.drawer-close:hover {
  background: rgba(26, 31, 54, 0.12);
  color: var(--accent);
}

.mobile-drawer a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover,
.mobile-drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.mobile-drawer .nav-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.mobile-drawer .nav-cta:hover {
  background: var(--ink);
  color: var(--surface);
}

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: none;
  z-index: 2;
}

/* === MAIN === */
main {
  padding-top: var(--header-h);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--surface);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1), transform 180ms, box-shadow 240ms;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  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);
  transform: translateY(-2px);
}

/* === SHUTTER FLASH (niche animation: camera shutter on CTA) === */
@keyframes shutterFlash {
  0% { transform: scale(0); opacity: 0.6; }
  60% { transform: scale(2.5); opacity: 0.2; }
  100% { transform: scale(3); opacity: 0; }
}
.btn-primary::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.btn-primary:active::before {
  animation: shutterFlash 400ms cubic-bezier(.2, .7, .2, 1) forwards;
}

/* === BADGE (monospace) === */
.badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 5px 12px;
  border-radius: 4px;
}

/* === SECTION === */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .badge {
  margin-bottom: 16px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(26, 31, 54, 0.7);
}

/* === HERO === */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero-left .badge { margin-bottom: 20px; }
.hero-left h1 { margin-bottom: 16px; }
.hero-left .hero-sub {
  font-size: 1.1rem;
  color: rgba(26, 31, 54, 0.7);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-2);
  flex-shrink: 0;
}

/* === CALCULATOR WIDGET === */
.calc-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.calc-widget::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 0 0 3px 3px;
}
.calc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-title svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.calc-field {
  margin-bottom: 20px;
}
.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.calc-slider-row input[type="range"] {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  cursor: grab;
}
.calc-slider-row input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  cursor: grab;
}
.calc-slider-value {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 1.1rem;
  min-width: 48px;
  text-align: center;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
}

.calc-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  transition: border-color 240ms;
}
.calc-select:focus {
  border-color: var(--accent);
  outline: none;
}

.calc-checks {
  display: grid;
  gap: 10px;
}
.calc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}
.calc-check 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);
  cursor: pointer;
}
.calc-check .price-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: rgba(26, 31, 54, 0.5);
  margin-left: auto;
}

.calc-result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.calc-result-label {
  font-size: 0.85rem;
  color: rgba(26, 31, 54, 0.6);
}
.calc-result-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  transition: transform 180ms;
}
.calc-result-price.tick {
  transform: translateY(-3px);
}
.calc-result-note {
  width: 100%;
  font-size: 0.75rem;
  color: rgba(26, 31, 54, 0.45);
  font-family: 'IBM Plex Mono', monospace;
}

/* === HERO RIGHT — PORTRAIT GRID === */
.hero-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.hero-portraits .portrait-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms;
}
.hero-portraits .portrait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15);
}
.hero-portraits .portrait-card:nth-child(1) {
  grid-row: 1 / 3;
}
.hero-portraits .portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === FOCUS RING ANIMATION (niche: camera autofocus) === */
@keyframes focusRing {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* === PROCESS SECTION === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.3;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-step {
  text-align: center;
  position: relative;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.12);
}
.process-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.process-step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--accent);
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: rgba(26, 31, 54, 0.65);
  line-height: 1.6;
}

/* === GALLERY === */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.gallery-filters button {
  padding: 8px 20px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 240ms cubic-bezier(.4, 0, .2, 1);
}
.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item[data-hidden="true"] {
  display: none;
}

/* === FILM-STRIP SLIDE (niche animation: photography film) === */
@keyframes filmSlide {
  0% { background-position: 0 0; }
  100% { background-position: -48px 0; }
}
.gallery-grid::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--line) 0, var(--line) 12px, transparent 12px, transparent 24px);
  opacity: 0.4;
  animation: filmSlide 10s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-grid::after { animation: none; }
}
.gallery-grid { position: relative; padding-bottom: 16px; }

/* === TRUST / MARQUEE === */
.trust-section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(26, 31, 54, 0.35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-item svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

/* === CONTACT FORM SECTION === */
.contact-form-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  max-width: 680px;
  margin: 0 auto;
}

/* === FORM === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  outline: none;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field 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);
}
.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field-checkbox label {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(26, 31, 54, 0.75);
  line-height: 1.5;
}
.field-error {
  font-size: 0.78rem;
  color: #dc2626;
  display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #dc2626; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: rgba(26, 31, 54, 0.65); }

/* === PACKAGES / PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms, border-color 240ms;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.15);
  border-color: var(--accent);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px -8px rgba(37, 99, 235, 0.12);
}
.pricing-card.featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-card .price-note {
  font-size: 0.78rem;
  color: rgba(26, 31, 54, 0.5);
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}
.pricing-card li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pricing-card li.included svg { color: var(--accent-2); }
.pricing-card li.excluded { color: rgba(26, 31, 54, 0.4); }
.pricing-card li.excluded svg { color: rgba(26, 31, 54, 0.3); }

.pricing-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(26, 31, 54, 0.5);
  font-family: 'IBM Plex Mono', monospace;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.12);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(26, 31, 54, 0.8);
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.testimonial-card .cite-detail {
  font-size: 0.75rem;
  color: rgba(26, 31, 54, 0.5);
  font-family: 'IBM Plex Mono', monospace;
}

/* === FAQ === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4, 0, .2, 1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 24px;
  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: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(26, 31, 54, 0.7);
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(48px, 6vw, 80px) 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}
.footer-bottom a:hover { color: #fff; }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === COUNTER TICK-UP (niche motion) === */
.counter[data-target] {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: inline-block;
}

/* === APERTURE ROTATION (niche hover animation) === */
@keyframes apertureRotate {
  0% { transform: rotate(0); }
  100% { transform: rotate(60deg); }
}
.process-step-icon:hover svg {
  animation: apertureRotate 600ms cubic-bezier(.2, .7, .2, 1);
}

/* === VIEWFINDER GRID (niche ambient decoration) === */
@keyframes viewfinderPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.15; }
}
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  opacity: 0.08;
  pointer-events: none;
  animation: viewfinderPulse 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2, .7, .2, 1), transform 600ms cubic-bezier(.2, .7, .2, 1);
}
.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; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.15);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), opacity 240ms;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(26, 31, 54, 0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  min-height: 48px;
  min-width: 48px;
  line-height: 1.2;
  transition: background 240ms cubic-bezier(.16, .73, .29, .99), color 240ms, border-color 240ms, transform 180ms, box-shadow 240ms;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cookie-banner button:hover {
  transform: translateY(-1px);
}
.cookie-banner button:active {
  transform: translateY(0);
}
.cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-banner .cookie-accept:hover {
  background: #1d4ed8;
  color: var(--surface);
  border-color: #1d4ed8;
  box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.35);
}
.cookie-banner .cookie-reject {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-banner .cookie-reject:hover {
  background: rgba(26, 31, 54, 0.85);
  color: var(--surface);
  border-color: rgba(26, 31, 54, 0.85);
  box-shadow: 0 4px 12px -4px rgba(26, 31, 54, 0.25);
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: rgba(26, 31, 54, 0.65);
  border-color: var(--line-strong);
}
.cookie-banner .cookie-settings:hover {
  color: var(--ink);
  background: var(--bg);
  border-color: var(--ink);
}

/* === CONTACT PAGE === */
.contact-channels {
  display: grid;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4, 0, .2, 1), background 240ms;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover {
  transform: translateX(4px);
  background: rgba(37, 99, 235, 0.03);
}
.contact-row svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.contact-row:hover svg {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row strong {
  display: block;
  font-size: 0.82rem;
  color: rgba(26, 31, 54, 0.55);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-row span,
.contact-row a {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === 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: 340px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  background: var(--bg);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-content h1 {
  margin-bottom: 32px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.3rem;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}
.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p {
  margin-bottom: 16px;
  color: rgba(26, 31, 54, 0.8);
  line-height: 1.7;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 16px 24px;
  color: rgba(26, 31, 54, 0.8);
}
.legal-content li { margin-bottom: 6px; font-size: 0.92rem; line-height: 1.65; }

/* === 404 === */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.page-404 .error-code {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.page-404 h1 { margin: 16px 0 12px; font-size: 1.6rem; }
.page-404 p { color: rgba(26, 31, 54, 0.6); margin-bottom: 28px; }

/* === ABOUT PAGE === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.12);
}
.team-card .team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  margin: 0 auto 16px;
  overflow: hidden;
}
.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-card .team-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-card p {
  font-size: 0.85rem;
  color: rgba(26, 31, 54, 0.7);
  line-height: 1.6;
}

/* === STATS === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
@media (max-width: 640px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(26, 31, 54, 0.6);
  margin-top: 4px;
}

/* === FOCUS VISIBLE === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === DATA GRID LINES (decorative) === */
.data-grid-bg {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
}

/* === CONTACT PAGE 2-COL === */
@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* === 5-COL PROCESS FIX === */
@media (max-width: 1024px) {
  .process-grid[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
  .process-grid[style*="repeat(5"] { grid-template-columns: 1fr !important; }
}

/* === COOKIE BANNER MOBILE SPACING === */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .cookie-banner .cookie-actions {
    flex-direction: column;
  }
  .cookie-banner button {
    width: 100%;
    justify-content: center;
  }
}

/* === STAGGER REVEAL (photography slide-in) === */
@keyframes exposureReveal {
  0% { opacity: 0; transform: translateY(28px) scale(0.97); filter: brightness(1.15); }
  60% { filter: brightness(1.04); }
  100% { opacity: 1; transform: none; filter: brightness(1); }
}
.reveal.stagger-reveal {
  opacity: 0;
  transition: none;
  animation-fill-mode: both;
  animation-duration: 650ms;
  animation-timing-function: cubic-bezier(.16, .73, .29, .99);
}
.reveal.stagger-reveal.is-in {
  animation-name: exposureReveal;
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal.stagger-reveal,
  .reveal.stagger-reveal.is-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* === PHOTOGRAPHY MICRO-EFFECTS === */
@keyframes softFocusPull {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.25), inset 0 0 20px rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.06); }
  100% { box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15), inset 0 0 0 rgba(255, 255, 255, 0); }
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 245, 230, 0.12) 0%, transparent 50%, rgba(37, 99, 235, 0.06) 100%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.16, .73, .29, .99);
  pointer-events: none;
  z-index: 1;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item:hover {
  animation: softFocusPull 600ms cubic-bezier(.16, .73, .29, .99) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover { animation: none; }
  .gallery-item::before { display: none; }
}

.portrait-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 248, 235, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.16, .73, .29, .99);
  pointer-events: none;
  z-index: 1;
}
.portrait-card:hover::before {
  opacity: 1;
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.08));
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16, .73, .29, .99);
  pointer-events: none;
  z-index: -1;
}
.pricing-card:hover::after {
  opacity: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 3px 0 0 3px;
  transition: height 400ms cubic-bezier(.16, .73, .29, .99);
}
.testimonial-card:hover::after {
  height: 100%;
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 0 rgba(37, 99, 235, 0.12);
  transition: box-shadow 400ms cubic-bezier(.16, .73, .29, .99);
  pointer-events: none;
}
.team-card:hover::after {
  box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.15);
}
.team-card { position: relative; overflow: hidden; }

.team-card .team-photo {
  transition: transform 500ms cubic-bezier(.16, .73, .29, .99), box-shadow 400ms;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 400ms cubic-bezier(.16, .73, .29, .99);
}
.process-step:hover::after {
  width: 60%;
}

.faq-item summary {
  transition: color 240ms, background 240ms, padding-left 240ms;
}
.faq-item summary:hover {
  background: rgba(37, 99, 235, 0.03);
  padding-left: 32px;
}

.btn-primary {
  transition: background 240ms cubic-bezier(.16, .73, .29, .99), transform 200ms cubic-bezier(.16, .73, .29, .99), box-shadow 300ms cubic-bezier(.16, .73, .29, .99);
}
.btn-ghost {
  transition: background 240ms cubic-bezier(.16, .73, .29, .99), color 240ms, border-color 240ms, transform 200ms cubic-bezier(.16, .73, .29, .99), box-shadow 300ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  box-shadow: 0 6px 20px -6px rgba(37, 99, 235, 0.18);
}

/* === ENHANCED PHOTOGRAPHY MICRO-EFFECTS === */
@keyframes warmGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 200, 120, 0); }
  40% { box-shadow: 0 0 18px 2px rgba(255, 200, 120, 0.08); }
  100% { box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15); }
}
.portrait-card:hover {
  animation: warmGlow 700ms cubic-bezier(.16, .73, .29, .99) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .portrait-card:hover { animation: none; }
}

.contact-row {
  transition: transform 240ms cubic-bezier(.16, .73, .29, .99), background 240ms, box-shadow 240ms;
}
.contact-row:hover {
  box-shadow: 0 4px 16px -6px rgba(37, 99, 235, 0.10);
}

.calc-widget {
  transition: box-shadow 400ms cubic-bezier(.16, .73, .29, .99);
}
.calc-widget:hover {
  box-shadow: 0 16px 48px -16px rgba(37, 99, 235, 0.16);
}

.stat-item {
  transition: transform 300ms cubic-bezier(.16, .73, .29, .99);
}
.stat-item:hover {
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) {
  .stat-item:hover { transform: none; }
}

.nav-desktop a {
  transition: color 240ms cubic-bezier(.16, .73, .29, .99);
}
.nav-desktop a::after {
  transition: width 300ms cubic-bezier(.16, .73, .29, .99);
}

.footer-col a {
  transition: color 240ms cubic-bezier(.16, .73, .29, .99), padding-left 300ms cubic-bezier(.16, .73, .29, .99);
}

/* === PRINT === */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
