/* =========================================================
   Anna Murt Design Studio — Global Stylesheet
   Warm editorial palette · Custom cursor · Rich animations
   ========================================================= */

:root {
  --bg:        #090806;
  --bg-2:      #110f0b;
  --panel:     rgba(255, 255, 255, 0.05);
  --panel-2:   rgba(255, 255, 255, 0.08);
  --line:      rgba(255, 255, 255, 0.10);
  --text:      #f5f0ea;
  --muted:     #a89f92;
  --accent:    #e8673a;
  --accent-2:  #f0a830;
  --accent-3:  #e8c4a0;
  --glow-1:    rgba(232, 103, 58, 0.22);
  --glow-2:    rgba(240, 168, 48, 0.16);
  --shadow:    0 24px 80px rgba(0, 0, 0, 0.35);
  --radius:    28px;
  --max:       1200px;
  --nav-h:     80px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 8% 10%, rgba(232, 103, 58, 0.18), transparent 32%),
    radial-gradient(ellipse at 90% 8%, rgba(240, 168, 48, 0.12), transparent 28%),
    radial-gradient(ellipse at 50% 90%, rgba(232, 103, 58, 0.06), transparent 22%),
    linear-gradient(180deg, #0a0806 0%, #0d0c09 50%, #090806 100%);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6), transparent 80%);
  z-index: -2;
}

/* ---------- Custom cursor ---------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s ease, background .2s ease, width .2s ease, height .2s ease;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 103, 58, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .22s cubic-bezier(.25,.46,.45,.94),
              width .3s ease, height .3s ease, border-color .3s ease, opacity .3s ease;
}
body.cursor-hover .cursor-dot { width: 14px; height: 14px; background: var(--accent-2); }
body.cursor-hover .cursor-ring { width: 54px; height: 54px; border-color: rgba(240,168,48,.6); }
body.cursor-click .cursor-dot { transform: translate(-50%,-50%) scale(.6); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 60;
  box-shadow: 0 0 16px rgba(240,168,48,.5);
}

/* ---------- Layout ---------- */
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 108px 0; }

/* ---------- Eyebrow / badge ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--accent-2);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 14px rgba(240,168,48,.8);
  flex-shrink: 0;
}

/* ---------- Typography ---------- */
h1 {
  font-size: clamp(50px, 8.5vw, 92px);
  line-height: 0.93;
  letter-spacing: -.055em;
  font-weight: 800;
}
h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.0;
  letter-spacing: -.045em;
  font-weight: 800;
}
h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 700;
}
.lead { color: var(--muted); font-size: 18px; max-width: 680px; line-height: 1.65; }
.small { color: var(--muted); font-size: 14px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 40px; }

/* ---------- Word-stagger reveal ---------- */
.word-reveal { overflow: hidden; }
.word-reveal .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .6s ease;
}
.word-reveal.in-view .word { transform: translateY(0); opacity: 1; }
.word-reveal .word:nth-child(1) { transition-delay: 0ms; }
.word-reveal .word:nth-child(2) { transition-delay: 60ms; }
.word-reveal .word:nth-child(3) { transition-delay: 120ms; }
.word-reveal .word:nth-child(4) { transition-delay: 180ms; }
.word-reveal .word:nth-child(5) { transition-delay: 240ms; }
.word-reveal .word:nth-child(6) { transition-delay: 300ms; }
.word-reveal .word:nth-child(7) { transition-delay: 360ms; }
.word-reveal .word:nth-child(8) { transition-delay: 420ms; }
.word-reveal .word:nth-child(9) { transition-delay: 480ms; }
.word-reveal .word:nth-child(10) { transition-delay: 540ms; }
.word-reveal .word:nth-child(n+11) { transition-delay: 600ms; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .word-reveal .word { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: none;
  font-family: inherit;
  font-size: 15px;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 36px rgba(232,103,58,.32);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform .9s ease;
}
.btn-primary:hover::after { transform: translateX(160%); }
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(240,168,48,.3); }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(9,8,6,.62);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 24px rgba(232,103,58,.3);
  flex-shrink: 0;
}
.brand-mark::before { content: "A"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.05em; }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
nav a { position: relative; padding: 8px 0; transition: color .2s ease; }
nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
nav a:hover, nav a.active { color: var(--text); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(232,103,58,.3);
  background: rgba(232,103,58,.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  transition: background .2s, border-color .2s;
}
.nav-cta:hover { background: rgba(232,103,58,.16); border-color: rgba(240,168,48,.5); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  cursor: none;
  color: var(--text);
}
.nav-toggle svg { display: block; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(9,8,6,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  display: none;
  z-index: 29;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.mobile-menu a { display: block; padding: 10px 0; color: var(--muted); font-size: 20px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu a.active { color: var(--text); }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  padding: 50px 0 88px;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 span { background: linear-gradient(135deg, #fff 0%, var(--accent-3) 40%, var(--accent-2) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy .lead { margin-top: 22px; }

.hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.hero-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
  font-size: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.hero-point:hover { transform: translateY(-2px); border-color: rgba(240,168,48,.3); }

.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 28px; }
.stat { border-radius: 20px; padding: 18px; background: linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.09); }
.stat b { display: block; font-size: 32px; letter-spacing: -.045em; margin-bottom: 5px; background: linear-gradient(135deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Hero visual / canvas ---------- */
.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  animation: float 9s ease-in-out infinite;
}
.orb.one { width: 180px; height: 180px; top: 0; right: 20px; background: rgba(232,103,58,.42); }
.orb.two { width: 130px; height: 130px; bottom: 90px; left: 10px; background: rgba(240,168,48,.34); animation-delay: -3s; }
.orb.three { width: 80px; height: 80px; top: 200px; left: 60px; background: rgba(232,196,160,.3); animation-delay: -5s; }

.canvas-wrap { position: relative; width: min(100%, 560px); }
.canvas-board {
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: perspective(1400px) rotateY(-9deg) rotateX(7deg);
  transition: transform .3s ease;
  overflow: hidden;
}
.canvas-board::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.08) 35%, transparent 55%);
  transform: translateX(-120%);
  animation: sheen 7s linear infinite;
  pointer-events: none;
}
.canvas-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.traffic { display: flex; gap: 8px; }
.traffic span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }

/* Design canvas elements */
.design-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.design-card { border-radius: 22px; background: rgba(10,8,6,.8); border: 1px solid rgba(255,255,255,.07); padding: 18px; }
.color-palette { display: flex; gap: 8px; margin-top: 14px; }
.swatch { height: 36px; border-radius: 10px; flex: 1; }
.swatch.s1 { background: var(--accent); }
.swatch.s2 { background: var(--accent-2); }
.swatch.s3 { background: var(--accent-3); }
.swatch.s4 { background: rgba(255,255,255,.2); }
.type-sample { margin-top: 16px; }
.type-sample .t1 { font-size: 28px; font-weight: 900; letter-spacing: -.06em; line-height: 1; background: linear-gradient(135deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.type-sample .t2 { font-size: 13px; color: var(--muted); margin-top: 4px; letter-spacing: .12em; text-transform: uppercase; }
.logo-preview {
  height: 100px;
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.icon-row { display: flex; gap: 10px; margin-top: 14px; }
.icon-chip { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; }
.icon-chip.c1 { background: rgba(232,103,58,.2); color: var(--accent); }
.icon-chip.c2 { background: rgba(240,168,48,.2); color: var(--accent-2); }
.icon-chip.c3 { background: rgba(255,255,255,.06); color: var(--muted); }

.bottom-strip { margin-top: 14px; padding: 16px 18px; border-radius: 22px; background: rgba(10,8,6,.8); border: 1px solid rgba(255,255,255,.07); }
.progress-rows { display: grid; gap: 10px; margin-top: 12px; }
.prog-row { display: flex; align-items: center; gap: 10px; }
.prog-label { font-size: 12px; color: var(--muted); width: 70px; flex-shrink: 0; }
.prog-bar { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.prog-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform-origin: left; transform: scaleX(0); }
.prog-fill.animate { animation: fillbar 1.4s ease forwards; }
@keyframes fillbar { to { transform: scaleX(1); } }
.prog-fill[data-w="88"] { width: 88%; }
.prog-fill[data-w="74"] { width: 74%; }
.prog-fill[data-w="96"] { width: 96%; }
.prog-fill[data-w="81"] { width: 81%; }

.badge-floating {
  position: absolute;
  right: -16px;
  bottom: 36px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: #1a1208;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 14px;
  animation: float 6.5s ease-in-out infinite;
  white-space: nowrap;
}
.badge-floating span { display: block; font-weight: 500; font-size: 12px; color: #7a6843; margin-top: 3px; }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin: 20px 0; }
.marquee-track { display: flex; gap: 48px; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { color: var(--muted); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; flex-shrink: 0; display: flex; align-items: center; gap: 14px; }
.marquee-item::after { content: "◆"; color: var(--accent); font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.cards-2, .cards-3, .cards-4 { display: grid; gap: 16px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(240,168,48,.28); }
.card::before { content: ""; position: absolute; width: 200px; height: 200px; right: -100px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(232,103,58,.12), transparent 68%); pointer-events: none; }
.card-icon { width: 52px; height: 52px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, rgba(232,103,58,.2), rgba(240,168,48,.15)); border: 1px solid rgba(255,255,255,.07); color: var(--accent-2); }
.card-icon svg { width: 22px; height: 22px; }
.card p { margin-top: 10px; color: var(--muted); font-size: 15px; }

/* ---------- Services ---------- */
.services-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-box { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; }
.service-list { display: grid; gap: 8px; margin-top: 14px; color: var(--muted); font-size: 14px; }
.service-list span::before { content: "— "; color: var(--accent-2); }
.service-box .shape { position: absolute; width: 160px; height: 160px; right: -36px; bottom: -36px; border-radius: 30px; transform: rotate(22deg); background: linear-gradient(135deg, rgba(232,103,58,.3), rgba(240,168,48,.12)); border: 1px solid rgba(255,255,255,.06); }

/* ---------- Case grid ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case-card { border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .3s ease; }
.case-card:hover { transform: translateY(-5px); border-color: rgba(240,168,48,.3); }
.case-card .cover { aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(232,103,58,.3), rgba(240,168,48,.18)); overflow: hidden; position: relative; }
.case-card .cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.case-card:hover .cover img { transform: scale(1.04); }
.case-card .body { padding: 22px; display: grid; gap: 8px; }
.case-card .body p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Quote cards ---------- */
.quote-card { position: relative; border-radius: var(--radius); padding: 30px; background: linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03)); border: 1px solid var(--line); transition: transform .3s ease; }
.quote-card:hover { transform: translateY(-4px); }
.quote-card::before { content: "\201C"; position: absolute; top: -10px; right: 22px; font-size: 88px; color: rgba(240,168,48,.14); pointer-events: none; }
.quote-card .quote-text { font-size: 17px; line-height: 1.55; color: var(--text); }
.quote-card .quote-source { margin-top: 18px; color: var(--muted); font-size: 13px; }
.quote-card .stars { color: var(--accent-2); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 16px; }
.timeline-item { position: relative; padding: 22px 24px 22px 72px; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); transition: border-color .3s ease; }
.timeline-item:hover { border-color: rgba(240,168,48,.25); }
.timeline-item::before { content: attr(data-step); position: absolute; left: 20px; top: 20px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; color: #09080a; font-weight: 900; font-size: 15px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

/* ---------- Pricing Calculator ---------- */
.calc-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.calc-panel { border-radius: 28px; padding: 32px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.1); }
.calc-section { margin-top: 28px; }
.calc-section:first-child { margin-top: 0; }
.calc-label { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.calc-options { display: grid; gap: 8px; }
.calc-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  cursor: none;
  transition: border-color .2s, background .2s;
  user-select: none;
}
.calc-option:hover { border-color: rgba(240,168,48,.3); background: rgba(240,168,48,.05); }
.calc-option.selected { border-color: var(--accent-2); background: rgba(240,168,48,.1); }
.calc-option-name { font-size: 14px; font-weight: 600; }
.calc-option-hint { font-size: 12px; color: var(--muted); margin-top: 2px; }
.calc-option-price { font-size: 13px; color: var(--accent-2); font-weight: 700; flex-shrink: 0; margin-left: 10px; }
.calc-option input[type="radio"] { display: none; }

.calc-result { border-radius: 28px; padding: 32px; background: linear-gradient(135deg, rgba(232,103,58,.16), rgba(240,168,48,.1)); border: 1px solid rgba(240,168,48,.25); position: sticky; top: calc(var(--nav-h) + 20px); }
.calc-result-price { font-size: 54px; font-weight: 900; letter-spacing: -.05em; background: linear-gradient(135deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin: 16px 0; }
.calc-result-price small { font-size: 22px; }
.calc-result-range { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.calc-includes { display: grid; gap: 8px; margin: 20px 0; }
.calc-includes li { display: flex; gap: 10px; align-items: start; font-size: 14px; color: var(--muted); }
.calc-includes li::before { content: "✓"; color: var(--accent-2); font-weight: 800; flex-shrink: 0; }
.calc-note { font-size: 12px; color: var(--muted); margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }

/* ---------- Process page cards ---------- */
.process-visual { aspect-ratio: 3/2; border-radius: 24px; background: linear-gradient(135deg, rgba(232,103,58,.2), rgba(240,168,48,.15)); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: center; padding: 38px; border-radius: 32px; border: 1px solid rgba(255,255,255,.09); background: linear-gradient(135deg, rgba(232,103,58,.2), rgba(240,168,48,.1)); overflow: hidden; }
.cta-banner::after { content: ""; position: absolute; width: 300px; height: 300px; right: -80px; top: -120px; border-radius: 50%; background: rgba(240,168,48,.08); filter: blur(12px); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; background: rgba(255,255,255,.03); transition: border-color .2s ease; }
.faq details[open] { border-color: rgba(240,168,48,.35); }
.faq summary { cursor: none; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--accent-2); transition: transform .2s ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--muted); }

/* ---------- Footer ---------- */
footer { padding: 50px 0; color: var(--muted); margin-top: 40px; }
.footer-box { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 40px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; }

/* ---------- Legal pages ---------- */
.legal-body h2 { font-size: clamp(20px,2vw,26px); letter-spacing: -.03em; margin-top: 48px; margin-bottom: 12px; }
.legal-body h3 { font-size: 18px; letter-spacing: -.02em; margin-top: 28px; margin-bottom: 8px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 16px; line-height: 1.75; margin-top: 10px; }
.legal-body ul { padding-left: 20px; margin-top: 10px; }
.legal-body ul li { margin-top: 6px; }
.legal-body a { color: var(--accent-2); text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 40px 0; }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-entity-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; padding: 28px 32px; margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.legal-entity-box .field { display: grid; gap: 4px; }
.legal-entity-box .field-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.legal-entity-box .field-value { font-size: 15px; font-weight: 600; color: var(--text); }

/* ---------- Keyframes ---------- */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes sheen { from { transform: translateX(-120%); } to { transform: translateX(160%); } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid, .cta-banner, .services-layout, .cards-4, .cards-3, .cards-2, .stats-strip, .calc-wrap { grid-template-columns: 1fr 1fr; }
  .footer-box { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 540px; }
  nav ul { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 780px) {
  .section { padding: 80px 0; }
  .hero { min-height: auto; padding-bottom: 48px; }
  .hero-grid, .cta-banner, .services-layout, .cards-4, .cards-3, .cards-2, .stats-strip, .hero-points, .case-grid, .calc-wrap, .footer-box { grid-template-columns: 1fr; }
  .section-head, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .canvas-board, .canvas-wrap { transform: none !important; }
  .hero-visual { min-height: 420px; }
  .badge-floating { position: static; margin-top: 16px; }
  .nav-cta { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  * { cursor: auto !important; }
  .calc-result { position: static; }
  .legal-entity-box { grid-template-columns: 1fr; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
