:root,
html[data-accent="lime"] {
  --bg: #090a08;
  --surface: #11120f;
  --surface-2: #171914;
  --text: #f3f3ec;
  --muted: #a7a89e;
  --line: rgba(243,243,236,.115);
  --line-strong: rgba(243,243,236,.23);
  --accent: #b7ff3c;
  --accent-hover: #c8ff66;
  --accent-active: #9eea20;
  --accent-soft: rgba(183,255,60,.10);
  --accent-border: rgba(183,255,60,.38);
  --accent-glow: rgba(183,255,60,.38);
  --accent-ink: #0b0d08;
  --max: 1180px;
  --radius: 10px;
  --shadow: 0 28px 80px rgba(0,0,0,.42);
}
html[data-accent="yellow"] {
  --accent: #ffd43b;
  --accent-hover: #ffe066;
  --accent-active: #f5c400;
  --accent-soft: rgba(255,212,59,.10);
  --accent-border: rgba(255,212,59,.36);
  --accent-glow: rgba(255,212,59,.38);
  --accent-ink: #111108;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    var(--bg);
  background-size: 36px 36px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 78% 6%, var(--accent-soft), transparent 30%);
  transition: background .2s ease;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }
.shell { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.section { padding: 78px 0; }
.section-tight { padding: 54px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9,10,8,.86);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.045em; white-space: nowrap; }
.brand-symbol { width: 32px; height: 32px; overflow: visible; }
.brand-frame { fill: var(--text); }
.brand-accent { fill: var(--accent); filter: drop-shadow(0 0 7px var(--accent-glow)); transition: fill .18s ease, filter .18s ease; }
.brand-word { font-size: 16px; }
.brand-word span { color: var(--accent); transition: color .18s ease; }
.nav-wrap { display: flex; align-items: center; gap: 14px; }
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a { color: var(--muted); font-size: 13px; font-weight: 780; transition: color .18s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); }
.language-switcher, .accent-switcher { display: flex; align-items: center; padding: 3px; border: 1px solid var(--line); background: var(--surface); }
.language-switcher button { min-width: 33px; min-height: 30px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 10px; font-weight: 900; }
.language-switcher button.is-active { background: var(--accent); color: var(--accent-ink); }
.accent-switcher { gap: 1px; }
.accent-option { width: 32px; height: 30px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.accent-option span { width: 13px; height: 13px; display: block; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.22); transition: transform .18s ease, box-shadow .18s ease; }
.accent-lime span { background: #b7ff3c; }
.accent-yellow span { background: #ffd43b; }
.accent-option.is-active span { transform: scale(1.15); box-shadow: 0 0 0 2px var(--surface), 0 0 0 3px var(--text), 0 0 12px var(--accent-glow); }
.accent-option:focus-visible, .language-switcher button:focus-visible, .menu-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--text); }

.eyebrow { margin: 0 0 14px; color: var(--accent); font-size: 10px; line-height: 1; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; transition: color .18s ease; }
.hero-shell { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.hero-shell::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(9,10,8,.98) 0%, rgba(9,10,8,.91) 39%, rgba(9,10,8,.28) 73%, rgba(9,10,8,.04) 100%); }
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  grid-template-areas:
    "copy art"
    "preview art";
  column-gap: clamp(42px, 6vw, 86px);
  row-gap: 24px;
  align-items: start;
  padding: 78px 0 72px;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-preview { grid-area: preview; }
.hero-copy, .hero-preview { position: relative; z-index: 3; }
.hero h1, .page-hero h1, .section-title { margin: 0; letter-spacing: -.055em; line-height: 1.02; }
.hero h1 { max-width: 650px; font-size: clamp(36px, 4.7vw, 56px); }
.hero-copy > p:not(.eyebrow) { max-width: 555px; margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; border: 1px solid var(--line-strong); background: var(--surface); font-size: 13px; font-weight: 900; transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); border-color: var(--accent-border); }
.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); box-shadow: 0 0 22px transparent; }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 0 24px var(--accent-soft); }
.btn-ghost { background: rgba(17,18,15,.45); }
.btn-small { min-height: 40px; padding-inline: 14px; font-size: 12px; }

.hero-art {
  grid-area: art;
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  align-self: center;
  justify-self: end;
  transform: rotate(-1deg);
  pointer-events: none;
  user-select: none;
  opacity: .80;
}
.hero-art svg { width: 100%; height: auto; overflow: visible; }
.art-frame, .art-grid rect, .art-grid path { fill: none; stroke: rgba(243,243,236,.18); stroke-width: 1; vector-effect: non-scaling-stroke; }
.art-frame { opacity: .42; }
.art-copy { fill: rgba(243,243,236,.72); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 800; letter-spacing: .24em; font-size: 12px; }
.art-top { animation: artIn .7s .15s both; }
.art-side { font-size: 9px; animation: artIn .7s .35s both; }
.art-the { font-size: 9px; animation: artIn .7s .7s both; }
.art-boxword { font-size: 33px; letter-spacing: .08em; animation: artIn .8s 1.2s both, artPulse 5.5s 2s ease-in-out infinite; }
.art-caption { font-size: 9px; letter-spacing: .16em; opacity: .7; animation: artIn .8s 1.35s both; }
.art-symbols text, .art-external { fill: rgba(243,243,236,.72); font-family: Georgia, serif; font-size: 34px; font-weight: 700; text-anchor: middle; dominant-baseline: middle; }
.art-accent { fill: var(--accent) !important; color: var(--accent); filter: drop-shadow(0 0 8px var(--accent-glow)); transition: fill .18s ease, color .18s ease, filter .18s ease; }
.art-external { font-size: 46px; }
.art-ray { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; filter: drop-shadow(0 0 7px var(--accent-glow)); stroke-dasharray: 230; stroke-dashoffset: 230; animation: drawRay .9s .95s ease-out forwards, artPulse 5.5s 2s ease-in-out infinite; transition: stroke .18s ease, filter .18s ease; }
.art-pulse { animation: artPulse 5.5s 2s ease-in-out infinite; }
.delay-1 { animation-delay: 2.5s; }
.delay-2 { animation-delay: 3s; }
html[lang="ru"] .art-side { font-size: 7px; letter-spacing: .12em; }
html[lang="tr"] .art-top { font-size: 9px; }
html[lang="ru"] .art-caption, html[lang="tr"] .art-caption { font-size: 8px; letter-spacing: .1em; }
@keyframes artIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawRay { to { stroke-dashoffset: 0; } }
@keyframes artPulse { 0%, 72%, 100% { opacity: .78; } 80% { opacity: 1; } 86% { opacity: .86; } }

.hero-preview { align-self: start; justify-self: start; width: min(100%, 430px); margin: 0; border: 1px solid var(--line-strong); padding: 9px; background: rgba(13,14,11,.84); backdrop-filter: blur(10px); box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.hero-preview:hover { transform: translateY(-4px); border-color: var(--accent-border); }
.preview-bar { height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 9px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.preview-bar span:first-child { color: var(--accent); }
.preview-screen { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #0c0d0a; }
.preview-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: .9; transition: transform .35s ease; }
.hero-preview:hover img { transform: scale(1.02); }
.preview-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(4,5,3,.86)); pointer-events: none; }
.preview-caption { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px; display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.preview-caption strong { font-size: 27px; letter-spacing: -.05em; }
.preview-caption span { color: rgba(255,255,255,.72); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.section-title { font-size: clamp(28px, 3.4vw, 40px); }
.section-note { max-width: 460px; margin: 0; color: var(--muted); line-height: 1.6; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.service-card, .price-card, .contact-panel, .info-card, .process-step, .process-result { border: 1px solid var(--line); background: rgba(17,18,15,.82); }
.service-card { min-height: 188px; padding: 22px; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease, background-color .18s ease; }
.service-card:hover { transform: translateY(-3px); border-color: var(--accent-border); background: var(--surface-2); }
.service-number, .process-index { color: var(--accent); font: 900 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.service-card h3 { margin: auto 0 9px; font-size: 20px; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.work-card { border: 1px solid var(--line); background: var(--surface); overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.work-card:hover { transform: translateY(-4px); border-color: var(--accent-border); }
.work-image { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line); background: #161713; }
.work-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .35s ease; }
.work-card:hover .work-image img { transform: scale(1.025); }
.work-copy { padding: 18px; }
.work-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.work-copy h3 { margin: 13px 0 0; font-size: 22px; letter-spacing: -.04em; }
.work-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--accent); font-size: 13px; font-weight: 850; }
.pricing-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; align-items: stretch; }
.price-card { position: relative; padding: 24px; min-height: 410px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent-border); box-shadow: inset 0 0 0 1px var(--accent-soft); }
.price-badge { position: absolute; top: 14px; right: 14px; padding: 6px 8px; background: var(--accent); color: var(--accent-ink); font-size: 9px; font-weight: 950; text-transform: uppercase; letter-spacing: .09em; }
.price-head { padding-right: 72px; }
.price-head h3 { margin: 0; font-size: 22px; letter-spacing: .04em; }
.price-compare { display: flex; align-items: center; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.price-old { color: rgba(243,243,236,.42); font-size: 12px; font-weight: 780; text-decoration: line-through; }
.price-discount { padding: 3px 7px; border: 1px solid var(--accent-border); background: var(--accent-soft); color: var(--accent); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-value { margin-top: 10px; color: var(--accent); font-size: 34px; line-height: 1; font-weight: 950; letter-spacing: -.045em; }
.price-value small { font-size: 14px; letter-spacing: 0; }
.price-card > p { margin: 14px 0 16px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.price-card .price-included { margin: -7px 0 15px; color: var(--text); font-size: 11px; font-weight: 750; }
.price-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 9px; }
.price-list li { display: flex; gap: 10px; color: #d5d6cd; font-size: 12px; line-height: 1.45; }
.price-list li::before { content: "+"; color: var(--accent); font-weight: 950; }
.domain-note { padding-top: 12px; border-top: 1px solid var(--line); font-size: 10px !important; }
.price-card .btn { margin-top: auto; }
.contact-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 34px; }
.contact-panel h2 { margin: 0; font-size: clamp(28px,3.5vw,42px); letter-spacing: -.05em; }
.contact-panel p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.contact-actions { display: flex; gap: 10px; }
.site-footer { border-top: 1px solid var(--line); margin-top: 28px; }
.footer-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a:hover { color: var(--accent); }

.page-hero { padding: 80px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 760px; font-size: clamp(36px,5vw,54px); }
.page-hero p:not(.eyebrow) { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.page-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.info-card { padding: 26px; }
.info-card h2, .info-card h3 { margin: 0 0 10px; letter-spacing: -.04em; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.menu-card { border-color: var(--accent-border); background: linear-gradient(145deg, var(--accent-soft), rgba(17,18,15,.9)); }
.inline-link { display: inline-flex; margin-top: 16px; color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.process-section { border-top: 1px solid var(--line); }
.process-heading { max-width: 720px; margin-bottom: 34px; }
.process-heading > p:last-child { max-width: 620px; margin: 16px 0 0; color: var(--muted); line-height: 1.65; }
.process-timeline { position: relative; display: grid; gap: 12px; }
.process-timeline::before { content: ""; position: absolute; left: 32px; top: 34px; bottom: 34px; width: 1px; background: linear-gradient(var(--accent), var(--line)); opacity: .46; }
.process-step { position: relative; display: grid; grid-template-columns: 46px minmax(0,1fr) auto; gap: 20px; padding: 24px; transition: border-color .2s ease, transform .2s ease; }
.process-step:hover { border-color: var(--accent-border); transform: translateX(3px); }
.process-index { position: relative; z-index: 1; width: 26px; height: 26px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--accent-border); }
.process-step h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.035em; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.6; }
.process-photo-step { grid-template-columns: 46px minmax(0,1fr); }
.photo-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.photo-method { min-width: 0; padding: 14px; border: 1px solid var(--line); background: rgba(8,9,7,.62); }
.device-frame { position: relative; aspect-ratio: 10/13; max-height: 260px; overflow: hidden; margin-bottom: 15px; border: 1px solid rgba(255,255,255,.22); background: #070806; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.device-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: .88; }
.device-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(3,4,2,.45)); pointer-events: none; }
.device-frame.iphone { border-radius: 24px; padding: 5px; }
.device-frame.iphone img { border-radius: 19px; }
.device-dot { position: absolute; z-index: 3; top: 9px; left: 50%; width: 36px; height: 9px; transform: translateX(-50%); border-radius: 10px; background: #080908; }
.device-frame.android { border-radius: 14px; padding: 4px; }
.device-frame.android img { border-radius: 10px; }
.device-camera { position: absolute; z-index: 3; top: 9px; left: 50%; width: 8px; height: 8px; transform: translateX(-50%); border-radius: 50%; background: #080908; box-shadow: 0 0 0 2px rgba(255,255,255,.18); }
.device-frame.ai { border-color: var(--accent-border); }
.device-frame.ai::before { content: "AI"; position: absolute; z-index: 4; right: 9px; top: 9px; padding: 5px 7px; background: var(--accent); color: var(--accent-ink); font: 950 9px/1 ui-monospace, monospace; }
.ai-grid { position: absolute; z-index: 3; inset: 0; background: linear-gradient(90deg, transparent 49.5%, var(--accent-soft) 50%, transparent 50.5%), linear-gradient(transparent 49.5%, var(--accent-soft) 50%, transparent 50.5%); background-size: 24px 24px; mix-blend-mode: screen; }
.photo-method h4 { margin: 0 0 7px; font-size: 14px; }
.photo-method p { font-size: 12px; line-height: 1.5; }
.photo-method img { filter: saturate(1.02) contrast(1.02); }
.qr-demo { width: 84px; height: 84px; display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; padding: 8px; border: 1px solid var(--accent-border); background: var(--accent-soft); }
.qr-demo span { background: var(--accent); opacity: .86; }
.qr-demo span:nth-child(2), .qr-demo span:nth-child(4), .qr-demo span:nth-child(8) { background: transparent; border: 1px solid var(--accent); }
.process-result { display: flex; align-items: center; gap: 16px; margin-top: 14px; padding: 22px 24px; border-color: var(--accent-border); }
.process-result span { color: var(--accent); font-size: 24px; }
.process-result p { margin: 0; color: var(--text); line-height: 1.6; }

.portfolio-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.portfolio-toolbar button { min-height: 38px; padding: 0 13px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 850; }
.portfolio-toolbar button.active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.portfolio-grid .work-image { aspect-ratio: 16/9; }
.project-description { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 14px; }
.contact-list { display: grid; gap: 10px; margin-top: 22px; }
.contact-item { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); color: var(--muted); }
.contact-item strong { color: var(--text); }
.contact-item a { color: var(--accent); font-weight: 800; }
.form-note { padding: 26px; border: 1px solid var(--line); background: var(--surface); }
.form-note h2 { margin: 0 0 12px; font-size: 30px; letter-spacing: -.04em; }
.form-note p { margin: 0 0 24px; color: var(--muted); line-height: 1.65; }
.founder-card { display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: start; margin-bottom: 12px; }
.founder-photo-frame { width: 96px; aspect-ratio: 1; padding: 6px; border: 1px solid var(--accent-border); background: rgba(8,9,7,.78); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.04em; }
.founder-copy p { margin: 0; }
.founder-divider { height: 1px; margin: 18px 0 20px; background: var(--line); }
.mobile-contact-bar { display: none; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .main-nav { gap: 12px; }
  .hero { grid-template-columns: minmax(0,1fr) minmax(320px,.72fr); column-gap: 34px; }
  .hero-art { width: min(100%, 470px); opacity: .62; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-row { grid-template-columns: repeat(3,minmax(290px,1fr)); overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .price-card { scroll-snap-align: start; }
  .photo-methods { grid-template-columns: repeat(3,minmax(190px,1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .photo-method { scroll-snap-align: start; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body { padding-bottom: 76px; background-size: 28px 28px; }
  .shell { width: min(100% - 24px,var(--max)); }
  .section { padding: 56px 0; }
  .header-inner { min-height: 62px; }
  .nav-wrap { gap: 7px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 63px; left: 12px; right: 12px; display: grid; gap: 4px; padding: 10px; border: 1px solid var(--line-strong); background: rgba(17,18,15,.98); box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 12px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .hero-shell::after { background: linear-gradient(180deg, rgba(9,10,8,.97) 0%, rgba(9,10,8,.9) 48%, rgba(9,10,8,.46) 100%); }
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art"
      "preview";
    min-height: auto;
    gap: 28px;
    padding: 56px 0 46px;
  }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(32px,9vw,43px); }
  .hero-copy > p:not(.eyebrow) { margin-top: 16px; font-size: 15px; }
  .hero-art {
    position: relative;
    z-index: 3;
    width: min(100%, 420px);
    justify-self: center;
    align-self: center;
    transform: none;
    opacity: .74;
  }
  .hero-preview { width: min(100%,520px); justify-self: stretch; margin: 0; }
  .actions { margin-top: 24px; }
  .actions .btn { flex: 1 1 145px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 22px; }
  .section-title { font-size: 28px; }
  .section-note { font-size: 14px; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .service-card { min-height: 158px; padding: 16px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 12px; line-height: 1.45; }
  .work-grid { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 8px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-grid .work-card { flex: 0 0 84%; scroll-snap-align: start; }
  .pricing-row { margin-right: -12px; grid-template-columns: repeat(3,minmax(270px,84vw)); gap: 10px; }
  .price-card { min-height: 390px; padding: 20px; }
  .contact-panel { grid-template-columns: 1fr; padding: 24px; }
  .contact-actions { display: none; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 24px 0; min-height: auto; }
  .page-hero { padding: 56px 0 36px; }
  .page-hero h1 { font-size: 34px; }
  .page-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 40px minmax(0,1fr); padding: 18px; }
  .process-step:hover { transform: none; }
  .process-timeline::before { left: 31px; }
  .qr-demo { grid-column: 2; margin-top: 4px; }
  .photo-methods { grid-template-columns: repeat(3,minmax(220px,76vw)); margin-right: -18px; padding-right: 18px; }
  .contact-item { flex-direction: column; gap: 7px; }
  .founder-card { grid-template-columns: 80px 1fr; }
  .founder-photo-frame { width: 80px; }
  .mobile-contact-bar { position: fixed; left: 8px; right: 8px; bottom: max(8px,env(safe-area-inset-bottom)); z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border: 1px solid var(--line-strong); background: rgba(9,10,8,.92); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.45); }
  .mobile-contact-bar a { min-height: 48px; display: grid; place-items: center; font-size: 13px; font-weight: 900; }
  .mobile-contact-bar a:first-child { background: var(--accent); color: var(--accent-ink); }
  .mobile-contact-bar a:last-child { border: 1px solid var(--line-strong); background: var(--surface); }
}

@media (max-width: 560px) {
  .brand-word { font-size: 14px; }
  .brand-symbol { width: 29px; height: 29px; }
  .language-switcher button { min-width: 29px; padding: 0; }
  .accent-option { width: 28px; }
  .accent-option span { width: 12px; height: 12px; }
  .hero-art { width: min(100%, 360px); opacity: .76; }
  .preview-caption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .preview-caption strong { font-size: 22px; }
  .process-heading { margin-bottom: 24px; }
  .process-step { gap: 12px; }
}

@media (max-width: 390px) {
  .brand-word { display: none; }
  .service-card { min-height: 140px; }
  .hero-art { width: min(100%, 330px); opacity: .78; }
  .accent-switcher { order: 1; }
  .language-switcher { order: 2; }
  .menu-toggle { order: 3; }
}

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

@media (max-width: 340px) {
  .service-grid { grid-template-columns: 1fr; }
}
