:root {
  --bg: #f4f0ea;
  --surface: #fffdf9;
  --surface-soft: #ebe3d9;
  --surface-deep: #d9c8ba;
  --text: #1e1a18;
  --muted: #746b65;
  --line: rgba(30, 26, 24, .16);
  --line-strong: rgba(30, 26, 24, .35);
  --accent: #9b6555;
  --accent-soft: #cfa89a;
  --sage: #8f9b88;
  --dark: #1e1a18;
  --light: #fffaf4;
  --container: min(1240px, calc(100% - 44px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 80px rgba(47, 37, 30, .12);
}

html[data-theme="dark"] {
  --bg: #171513;
  --surface: #211e1b;
  --surface-soft: #2a2522;
  --surface-deep: #3a302b;
  --text: #f4eee7;
  --muted: #b6aaa1;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .28);
  --accent: #c78773;
  --accent-soft: #845d51;
  --dark: #f4eee7;
  --light: #1b1816;
  --shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 118px 0; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .55s ease, visibility .55s ease;
}
.page-loader::before {
  content: "";
  width: 112px;
  height: 112px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: loaderSpin 1.3s linear infinite;
}
.page-loader span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-56px);
}
.page-loader b {
  position: absolute;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .28em;
  margin-left: .28em;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding: 14px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  padding: 8px 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-frame {
  width: min(1380px, calc(100% - 28px));
  margin: auto;
  min-height: 74px;
  padding: 0 18px 0 24px;
  display: grid;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 2px;
}
.site-header.is-scrolled .header-frame { min-height: 62px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 142px; height: auto; }
.brand small {
  max-width: 76px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.main-nav { display: flex; justify-content: center; gap: 28px; }
.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .035em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--text);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-link, .theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  letter-spacing: .09em;
}
.theme-toggle { position: relative; overflow: hidden; }
.theme-toggle span { position: absolute; transition: transform .25s ease, opacity .25s ease; }
.theme-toggle span:last-child { opacity: 0; transform: translateY(12px); }
html[data-theme="dark"] .theme-toggle span:first-child { opacity: 0; transform: translateY(-12px); }
html[data-theme="dark"] .theme-toggle span:last-child { opacity: 1; transform: none; }
.header-order {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
}
.header-order i { font-style: normal; font-size: 15px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 1px; background: currentColor; transition: .25s; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle.is-open span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { top: 20px; transform: rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button i { font-style: normal; font-size: 16px; }
.button-dark { background: var(--text); color: var(--bg); }
.button-light { background: #f8f1e9; color: #1e1a18; }
.button-outline { border-color: var(--line-strong); }
.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 12px; font-weight: 700; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.home-hero {
  min-height: 100svh;
  padding: 145px 0 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-rule {
  position: absolute;
  left: 25px;
  top: 150px;
  bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
}
.hero-rule i { width: 1px; flex: 1; background: var(--line); margin: 15px 0; }
.hero-rule b { font-weight: 500; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  gap: 60px;
  align-items: center;
}
.hero-copy { padding-left: 38px; }
.hero-copy h1 {
  max-width: 720px;
  margin: 22px 0 24px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.4vw, 112px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}
.hero-copy > p { max-width: 640px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.hero-buttons { margin-top: 35px; display: flex; align-items: center; gap: 28px; }
.hero-speed {
  width: max-content;
  margin-top: 48px;
  padding-top: 17px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  border-top: 1px solid var(--line-strong);
}
.hero-speed strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.hero-speed span { max-width: 100px; color: var(--muted); font-size: 9px; line-height: 1.35; text-transform: uppercase; letter-spacing: .1em; }
.hero-gallery { height: 650px; position: relative; perspective: 1200px; }
.hero-poster {
  position: absolute;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), z-index .1s;
}
.hero-poster:hover { z-index: 8; transform: translateY(-12px) rotate(0deg) !important; }
.hero-poster img { width: 100%; height: calc(100% - 31px); object-fit: cover; object-position: top; }
.poster-top { height: 31px; padding: 0 10px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.poster-top b { font-size: 8px; letter-spacing: .12em; }
.poster-top i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: -9px 0 var(--line-strong), -18px 0 var(--line-strong); }
.poster-1 { width: 270px; height: 510px; left: 50%; top: 57px; transform: translateX(-50%) rotate(-1.5deg); z-index: 3; }
.poster-2 { width: 225px; height: 430px; left: 7%; top: 148px; transform: rotate(-7deg); z-index: 1; }
.poster-3 { width: 225px; height: 430px; right: 3%; top: 120px; transform: rotate(7deg); z-index: 2; }
.hero-stamp {
  position: absolute;
  right: 4%;
  bottom: 25px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.1;
  text-align: center;
  transform: rotate(9deg);
  animation: stampFloat 4.5s ease-in-out infinite;
}
@keyframes stampFloat { 50% { transform: translateY(-9px) rotate(4deg); } }
.hero-proof {
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 54px;
  border-top: 1px solid var(--line);
}
.hero-proof span { color: var(--muted); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.marquee div { min-width: max-content; padding: 15px 0; display: flex; align-items: center; gap: 34px; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 14px; letter-spacing: .1em; }
.marquee i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-35%); } }

.section-intro {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: 70px;
  align-items: end;
}
.section-intro h2, .why-heading h2, .process-copy h2, .feature-control-copy h2 {
  max-width: 820px;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
.section-intro p { margin: 0 0 22px; color: var(--muted); line-height: 1.7; }

.design-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 22px; }
.design-card { min-width: 0; }
.design-preview {
  height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface-soft), color-mix(in srgb, var(--surface) 80%, var(--accent-soft)));
  border: 1px solid var(--line);
}
.design-preview::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 35%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 65%);
  transform: rotate(-12deg);
}
.design-index { position: absolute; left: 17px; top: 15px; z-index: 3; font-family: var(--serif); font-size: 12px; }
.design-tag { position: absolute; right: 14px; top: 13px; z-index: 3; padding: 6px 9px; background: color-mix(in srgb, var(--surface) 78%, transparent); backdrop-filter: blur(8px); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.screen-canvas {
  width: 230px;
  height: 430px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 55px rgba(43,33,27,.22);
  border: 7px solid #1d1d1d;
  border-radius: 26px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.screen-canvas::before { content: ""; position: absolute; z-index: 3; left: 50%; top: 5px; width: 68px; height: 16px; transform: translateX(-50%); background: #111; border-radius: 999px; }
.screen-canvas img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.design-preview:hover .screen-canvas { transform: translateY(-10px) scale(1.02); }
.live-label { position: absolute; left: 17px; bottom: 15px; z-index: 4; display: flex; align-items: center; gap: 8px; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.live-label i { width: 7px; height: 7px; border-radius: 50%; background: #4ea66a; box-shadow: 0 0 0 5px rgba(78,166,106,.13); }
.design-info { padding-top: 20px; }
.design-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.design-info h3 { margin: 10px 0 8px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.08; }
.design-info h3 a:hover { color: var(--accent); }
.design-info p { min-height: 63px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.design-actions { margin-top: 17px; padding-top: 13px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.design-actions > a { font-size: 10px; font-weight: 700; }
.circle-order { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; font-size: 17px; transition: .2s ease; }
.circle-order:hover { background: var(--text); color: var(--bg); transform: rotate(-25deg); }

.why-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.why-heading { position: sticky; top: 125px; align-self: start; }
.why-heading h2 { font-size: clamp(52px, 6vw, 86px); }
.why-heading > p { max-width: 510px; color: var(--muted); line-height: 1.8; }
.why-decoration { width: 150px; height: 150px; margin-top: 55px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.why-decoration span { font-family: var(--serif); font-size: 72px; color: var(--accent); }
.why-decoration i { position: absolute; width: 1px; height: 220px; background: var(--line); transform: rotate(45deg); }
.why-list { border-top: 1px solid var(--line-strong); }
.why-item { min-height: 205px; padding: 34px 0; display: grid; grid-template-columns: 85px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.why-item > span { font-family: var(--serif); color: var(--accent); font-size: 14px; }
.why-item h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.why-item p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.75; }

.admin-showcase-section { background: #201c19; color: #f4eee7; overflow: hidden; }
.admin-showcase-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.admin-showcase-copy h2 { margin: 16px 0 22px; font-family: var(--serif); font-size: clamp(50px, 5.5vw, 80px); font-weight: 400; line-height: .95; letter-spacing: -.045em; }
.admin-showcase-copy > p { color: rgba(244,238,231,.64); line-height: 1.75; }
.feature-checks { margin: 30px 0 20px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.feature-checks li { display: flex; gap: 10px; font-size: 12px; line-height: 1.45; }
.feature-checks i { color: #c58b75; font-style: normal; }
.small-note { font-size: 11px; }
.admin-window { min-height: 560px; background: #f0ece7; color: #1e1a18; box-shadow: 0 35px 100px rgba(0,0,0,.32); transform: rotate(1.4deg); }
.admin-window-top { height: 44px; padding: 0 16px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid #d2ccc5; }
.admin-window-top > div { display: flex; gap: 6px; }
.admin-window-top > div span { width: 7px; height: 7px; border-radius: 50%; background: #c2b8af; }
.admin-window-top b { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.admin-window-top > i { justify-self: end; color: #8c8178; font-style: normal; }
.admin-window-body { min-height: 516px; display: grid; grid-template-columns: 62px 1fr; }
.admin-window-body aside { padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 13px; background: #1f1b18; color: #fff; }
.admin-window-body aside strong { width: 32px; height: 32px; margin-bottom: 15px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); font-family: var(--serif); }
.admin-window-body aside span { width: 32px; height: 32px; display: grid; place-items: center; color: rgba(255,255,255,.45); font-size: 13px; }
.admin-window-body aside span.is-active { background: #a66c58; color: #fff; }
.admin-dashboard { padding: 28px; }
.admin-dashboard header { display: flex; align-items: center; justify-content: space-between; }
.admin-dashboard header small { color: #8b8178; font-size: 8px; letter-spacing: .15em; }
.admin-dashboard header h3 { margin: 2px 0 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.admin-dashboard header button { padding: 9px 12px; border: 0; background: #1e1a18; color: #fff; font-size: 9px; }
.dashboard-stats { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.dashboard-stats article { min-height: 105px; padding: 14px; background: #fff; border: 1px solid #dbd5cf; display: flex; flex-direction: column; }
.dashboard-stats span { color: #80766f; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.dashboard-stats b { margin-top: auto; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.dashboard-stats small { color: #5b9468; font-size: 8px; }
.dashboard-content { margin-top: 11px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 11px; }
.chart-card, .guest-card { min-height: 230px; padding: 15px; background: #fff; border: 1px solid #dbd5cf; }
.chart-card > span, .guest-card > span { font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.bars { height: 160px; margin-top: 23px; display: flex; align-items: flex-end; gap: 9px; border-bottom: 1px solid #d8d0c9; }
.bars i { flex: 1; background: #ad7561; opacity: .82; }
.guest-card p { margin: 14px 0; display: grid; grid-template-columns: 8px 1fr auto; gap: 7px; align-items: center; font-size: 9px; }
.guest-card p i { width: 6px; height: 6px; border-radius: 50%; background: #68a476; }
.guest-card p small { color: #81766d; }
.guest-card button { width: 100%; margin-top: 8px; padding: 8px; border: 1px solid #cfc7c0; background: transparent; font-size: 8px; }

.process-section { background: var(--surface-soft); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.process-copy { position: sticky; top: 125px; align-self: start; }
.process-copy h2 { font-size: clamp(52px, 5.8vw, 84px); }
.process-copy p { max-width: 520px; color: var(--muted); line-height: 1.8; }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.process-steps li { min-height: 210px; padding: 36px 0; display: grid; grid-template-columns: 92px 1fr; border-bottom: 1px solid var(--line); }
.process-steps li > span { color: var(--accent); font-family: var(--serif); }
.process-steps h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.process-steps p { max-width: 600px; margin: 0; color: var(--muted); line-height: 1.75; }

.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.extra-card { min-height: 280px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 72%, transparent); }
.extra-card > span { color: var(--accent); font-family: var(--serif); font-size: 12px; }
.extra-card h3 { margin: 40px 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.extra-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.extra-card > div { margin-top: auto; padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--line); }
.extra-card b { font-size: 12px; }
.extra-card small { color: var(--muted); font-size: 9px; }

.final-cta { padding: 125px 0; background: #a36c5a; color: #fff8f1; position: relative; overflow: hidden; }
.final-cta::before { content: "V"; position: absolute; right: -40px; top: -180px; font-family: var(--serif); font-size: 700px; line-height: 1; color: rgba(255,255,255,.05); }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-inner > span { font-size: 9px; letter-spacing: .2em; }
.final-cta h2 { max-width: 1000px; margin: 20px 0; font-family: var(--serif); font-size: clamp(58px, 7vw, 104px); font-weight: 400; line-height: .9; letter-spacing: -.05em; }
.final-cta p { max-width: 650px; color: rgba(255,248,241,.75); line-height: 1.7; }
.final-cta .button { margin-top: 20px; }

.site-footer { position: relative; overflow: hidden; padding: 95px 0 24px; background: #171412; color: #eee6de; }
.footer-mark { position: absolute; left: -18px; bottom: -86px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 240px; letter-spacing: -.08em; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.3fr .45fr .45fr .8fr; gap: 55px; }
.footer-brand img { width: 155px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 380px; margin: 28px 0; color: rgba(238,230,222,.58); font-size: 12px; line-height: 1.8; }
.footer-brand span { color: rgba(238,230,222,.35); font-size: 8px; letter-spacing: .18em; }
.footer-column, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-column b, .footer-contact > b { margin-bottom: 8px; color: rgba(238,230,222,.35); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.footer-column a { color: rgba(238,230,222,.75); font-size: 12px; }
.footer-column a:hover { color: #fff; }
.footer-contact a { font-family: var(--serif); font-size: 25px; }
.footer-contact small { color: rgba(238,230,222,.45); }
.footer-bottom { position: relative; margin-top: 70px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(238,230,222,.36); font-size: 9px; }
.footer-bottom div { display: flex; gap: 15px; }
.footer-bottom a:hover { color: #fff; }
.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 50; width: 45px; height: 45px; border: 1px solid var(--line-strong); background: color-mix(in srgb, var(--surface) 82%, transparent); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

.page-hero { padding: 185px 0 90px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .55fr; gap: 80px; align-items: end; }
.page-hero h1 { max-width: 950px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(64px, 8vw, 118px); font-weight: 400; line-height: .88; letter-spacing: -.055em; }
.page-hero p { margin: 0; color: var(--muted); line-height: 1.8; }
.catalog-ruler { width: min(1380px, calc(100% - 50px)); margin: 72px auto 0; display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 9px; letter-spacing: .15em; }
.catalog-ruler i { flex: 1; height: 1px; background: var(--line); }
.catalog-toolbar { margin-bottom: 42px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tabs button { min-height: 38px; padding: 0 14px; border: 1px solid var(--line); background: transparent; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.filter-tabs button.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.catalog-search { width: min(360px, 100%); min-height: 44px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid var(--line-strong); }
.catalog-search svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.catalog-search input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 11px; }
.empty-state { padding: 100px 20px; text-align: center; }
.empty-state b { font-family: var(--serif); font-size: 70px; color: var(--accent); }
.empty-state h2 { font-family: var(--serif); font-size: 42px; font-weight: 400; }
.empty-state p { color: var(--muted); }
.mini-cta { padding: 44px 0; border-top: 1px solid var(--line); background: var(--surface); }
.mini-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.mini-cta p { max-width: 670px; margin: 0; font-family: var(--serif); font-size: 25px; line-height: 1.25; }

.feature-control-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.section-number { display: block; margin-bottom: 30px; color: var(--accent); font-size: 9px; letter-spacing: .15em; }
.feature-control-copy p { color: var(--muted); line-height: 1.8; }
.feature-checks.large { grid-template-columns: 1fr; color: var(--text); }
.feature-checks.large li { font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.settings-board { padding: 30px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.settings-board-head { padding-bottom: 22px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.settings-board-head b { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.settings-board-head span { color: #5a9a68; font-size: 9px; letter-spacing: .12em; }
.settings-row { min-height: 78px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }
.settings-row > span { color: var(--muted); font-size: 11px; }
.settings-row > b { font-size: 12px; }
.settings-row > i { color: var(--muted); font-style: normal; font-size: 20px; }
.swatches { display: flex; gap: 6px; }
.swatches em { width: 18px; height: 18px; border-radius: 50%; background: #d6b5aa; }
.swatches em:nth-child(2) { background: #a38f82; }
.swatches em:nth-child(3) { background: #d8d1c5; }
.swatches em:nth-child(4) { background: #697b72; }
.status-on { color: #559263; }
.feature-story-section { padding-top: 0; }
.feature-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-story { min-height: 530px; padding: 35px; display: grid; grid-template-columns: 50px 1fr; grid-template-rows: auto 1fr; column-gap: 20px; background: var(--surface-soft); border: 1px solid var(--line); }
.feature-story > span { color: var(--accent); font-family: var(--serif); }
.feature-story h2 { max-width: 520px; margin: 0 0 16px; font-family: var(--serif); font-size: 46px; font-weight: 400; line-height: 1; }
.feature-story p { color: var(--muted); line-height: 1.75; }
.feature-story.dark { background: #1f1b18; color: #f5eee7; }
.feature-story.dark p { color: rgba(245,238,231,.62); }
.feature-story.wide { grid-column: 1 / -1; min-height: 430px; grid-template-columns: 50px .85fr 1.15fr; grid-template-rows: auto; align-items: center; }
.stat-visual { grid-column: 2; align-self: end; display: grid; grid-template-columns: 60px 1fr; gap: 7px 12px; }
.stat-visual b { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.stat-visual small { align-self: center; color: var(--muted); }
.stat-visual i { grid-column: 1/-1; width: var(--w); height: 3px; background: var(--accent); margin-bottom: 11px; }
.telegram-message { grid-column: 2; align-self: end; padding: 18px; display: grid; grid-template-columns: 48px 1fr; gap: 14px; background: #2c2724; border: 1px solid rgba(255,255,255,.13); }
.telegram-message > strong { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #a66e5b; font-family: var(--serif); font-size: 24px; }
.telegram-message div > b { font-size: 10px; letter-spacing: .1em; }
.telegram-message div p { margin: 5px 0; color: #f5eee7; font-size: 12px; }
.telegram-message small { color: rgba(245,238,231,.45); font-size: 9px; }
.excel-sheet { border: 1px solid var(--line); background: var(--surface); }
.excel-sheet > div, .excel-sheet p { margin: 0; display: grid; grid-template-columns: 1.3fr .7fr .7fr 1fr; }
.excel-sheet > div { background: var(--surface-deep); }
.excel-sheet b, .excel-sheet span { padding: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 9px; }
.excel-sheet button { width: 100%; padding: 12px; border: 0; background: var(--text); color: var(--bg); font-size: 9px; }

.simple-section-head { margin-bottom: 34px; display: flex; align-items: baseline; gap: 22px; }
.simple-section-head span { color: var(--accent); font-family: var(--serif); }
.simple-section-head h2 { margin: 0; font-family: var(--serif); font-size: 54px; font-weight: 400; }
.price-designs { background: var(--surface); }
.price-list { border-top: 1px solid var(--line-strong); }
.price-row { min-height: 190px; padding: 18px 0; display: grid; grid-template-columns: 120px 1fr 160px 190px; gap: 25px; align-items: center; border-bottom: 1px solid var(--line); }
.price-row img { width: 100px; height: 145px; object-fit: cover; object-position: top; border: 4px solid #1d1d1d; border-radius: 14px; }
.price-row small { color: var(--muted); font-size: 8px; letter-spacing: .1em; }
.price-row h3 { margin: 7px 0; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.price-row p { max-width: 620px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.price-row > strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.price-row > div:last-child { display: grid; gap: 10px; }
.price-row > div:last-child a, .price-row > div:last-child button { padding: 10px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-size: 10px; font-weight: 700; }
.extra-price-table { border-top: 1px solid var(--line-strong); }
.extra-price-table article { min-height: 120px; display: grid; grid-template-columns: 55px 1fr 140px 150px; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }
.extra-price-table article > span { color: var(--accent); font-family: var(--serif); }
.extra-price-table h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.extra-price-table p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.extra-price-table strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.extra-price-table small { color: var(--muted); }

.faq-page-layout { display: grid; grid-template-columns: .45fr 1.55fr; gap: 80px; }
.faq-side { position: sticky; top: 125px; align-self: start; }
.faq-side > span { color: var(--accent); font-size: 9px; letter-spacing: .15em; }
.faq-side p { margin: 25px 0; color: var(--muted); line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 112px; display: grid; grid-template-columns: 70px 1fr 35px; gap: 18px; align-items: center; border: 0; background: transparent; text-align: left; }
.faq-item button > span { color: var(--accent); font-family: var(--serif); }
.faq-item button b { font-family: var(--serif); font-size: 31px; font-weight: 400; }
.faq-item button i { justify-self: end; font-style: normal; font-size: 25px; transition: transform .25s; }
.faq-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item > div > p { min-height: 0; overflow: hidden; max-width: 790px; margin: 0 0 0 88px; color: var(--muted); line-height: 1.8; }
.faq-item.is-open > div { grid-template-rows: 1fr; }
.faq-item.is-open > div > p { margin-bottom: 35px; }

.product-hero { padding: 155px 0 105px; }
.product-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.product-preview { background: var(--surface-soft); border: 1px solid var(--line); }
.product-preview-head { min-height: 42px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.product-screen { min-height: 650px; display: grid; place-items: center; padding: 45px; }
.product-screen img { width: 300px; max-height: 570px; object-fit: cover; object-position: top; border: 8px solid #1b1b1b; border-radius: 30px; box-shadow: 0 30px 70px rgba(35,26,20,.24); }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 9px; }
.breadcrumbs b { color: var(--text); }
.product-labels { margin-top: 42px; display: flex; gap: 8px; }
.product-labels span { padding: 6px 9px; border: 1px solid var(--line); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.product-copy h1 { margin: 20px 0; font-family: var(--serif); font-size: clamp(62px, 7vw, 100px); font-weight: 400; line-height: .88; letter-spacing: -.05em; }
.product-lead { max-width: 650px; color: var(--muted); line-height: 1.8; }
.product-price { margin: 28px 0; display: flex; align-items: baseline; gap: 15px; }
.product-price strong { font-family: var(--serif); font-size: 36px; font-weight: 400; }
.product-price s { color: var(--muted); }
.product-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.product-includes { margin-top: 38px; border-top: 1px solid var(--line-strong); }
.product-includes > span { display: block; padding: 15px 0; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.product-includes ul { margin: 0; padding: 0; list-style: none; }
.product-includes li { padding: 11px 0; display: flex; gap: 10px; border-top: 1px solid var(--line); font-size: 11px; }
.product-includes i { color: var(--accent); font-style: normal; }
.related-extras { background: var(--surface); }

.order-modal { width: min(900px, calc(100% - 24px)); padding: 0; border: 0; background: var(--surface); color: var(--text); box-shadow: 0 40px 120px rgba(0,0,0,.35); }
.order-modal::backdrop { background: rgba(12,10,9,.7); backdrop-filter: blur(8px); }
.order-modal[open] { animation: dialogIn .3s ease; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.modal-close { position: absolute; right: 15px; top: 15px; z-index: 4; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 24px; }
.order-modal-grid { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 610px; }
.order-aside { padding: 55px 45px; display: flex; flex-direction: column; background: #9e6756; color: #fff8f2; position: relative; overflow: hidden; }
.order-aside::after { content: "V"; position: absolute; left: -20px; bottom: -100px; font-family: var(--serif); font-size: 330px; color: rgba(255,255,255,.07); }
.order-aside > span { font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.order-aside h2 { position: relative; z-index: 1; margin: 30px 0 18px; font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: .94; }
.order-aside p { position: relative; z-index: 1; color: rgba(255,248,242,.72); line-height: 1.75; }
.order-aside-note { position: relative; z-index: 1; margin-top: auto; display: flex; align-items: center; gap: 12px; }
.order-aside-note b { font-family: var(--serif); font-size: 62px; font-weight: 400; }
.order-aside-note span { font-size: 8px; line-height: 1.35; letter-spacing: .12em; }
.order-form-wrap { padding: 52px; }
.selected-product { padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--accent); font-family: var(--serif); font-size: 24px; }
.order-form { margin-top: 24px; display: grid; gap: 17px; }
.order-form label { display: grid; gap: 7px; }
.order-form label > span { font-size: 10px; font-weight: 700; }
.order-form input, .order-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--bg); }
.order-form input:focus, .order-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent); }
.order-form small { color: var(--muted); font-size: 8px; }
.checkbox { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 9px !important; }
.checkbox input { width: 17px; height: 17px; margin-top: 1px; }
.checkbox span { color: var(--muted); font-weight: 400 !important; line-height: 1.5; }
.honeypot { position: absolute !important; left: -9999px !important; }
.submit-button { width: 100%; }
.submit-button i { display: none; width: 16px; height: 16px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: loaderSpin .75s linear infinite; }
.submit-button.is-loading span { display: none; }
.submit-button.is-loading i { display: block; }
.form-message { min-height: 17px; color: #b24c4c; font-size: 10px; text-align: center; }
.order-success { padding-top: 85px; text-align: center; }
.order-success > div { width: 65px; height: 65px; margin: auto; display: grid; place-items: center; border: 1px solid #5a9a68; border-radius: 50%; color: #5a9a68; font-size: 27px; }
.order-success h3 { margin: 20px 0 8px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.order-success p { color: var(--muted); }

.not-found { min-height: 100svh; padding: 150px 20px 80px; display: grid; place-items: center; text-align: center; }
.not-found span { font-family: var(--serif); font-size: 160px; color: var(--accent); line-height: .8; }
.not-found h1 { margin: 25px 0 10px; font-family: var(--serif); font-size: 58px; font-weight: 400; }
.not-found p { color: var(--muted); }
.not-found .button { margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s ease; transition-delay: var(--delay, 0ms); }
.reveal[data-delay="80"] { --delay: 80ms; }
.reveal[data-delay="90"] { --delay: 90ms; }
.reveal[data-delay="100"] { --delay: 100ms; }
.reveal[data-delay="120"] { --delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .header-frame { grid-template-columns: 180px 1fr auto; gap: 18px; }
  .brand small { display: none; }
  .main-nav { gap: 18px; }
  .hero-layout { grid-template-columns: .9fr 1.1fr; gap: 20px; }
  .hero-copy { padding-left: 15px; }
  .hero-gallery { transform: scale(.9); transform-origin: center; }
  .design-preview { height: 510px; }
  .screen-canvas { width: 210px; height: 400px; }
  .admin-showcase-layout, .feature-control-grid { gap: 45px; }
  .product-hero-grid { gap: 50px; }
}

@media (max-width: 920px) {
  :root { --container: min(100% - 30px, 760px); }
  .section { padding: 88px 0; }
  .header-frame { width: calc(100% - 18px); grid-template-columns: 1fr auto; min-height: 64px; padding: 0 11px 0 16px; }
  .brand img { width: 132px; }
  .menu-toggle { display: block; }
  .header-order { display: none; }
  .main-nav {
    position: fixed;
    left: 9px;
    right: 9px;
    top: 82px;
    padding: 18px;
    display: grid;
    gap: 0;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px 5px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .main-nav a::after { display: none; }
  .home-hero { padding-top: 120px; }
  .hero-rule { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { padding: 0; text-align: center; }
  .hero-copy h1, .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-speed { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-gallery { height: 580px; transform: none; max-width: 650px; width: 100%; margin: 0 auto; }
  .hero-proof { justify-content: center; }
  .section-intro, .page-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .section-intro p { max-width: 650px; }
  .design-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout, .process-layout, .admin-showcase-layout, .feature-control-grid, .product-hero-grid, .faq-page-layout { grid-template-columns: 1fr; gap: 55px; }
  .why-heading, .process-copy, .faq-side { position: static; }
  .admin-showcase-copy { max-width: 700px; }
  .admin-window { transform: none; }
  .feature-story-grid { grid-template-columns: 1fr; }
  .feature-story.wide { grid-column: auto; grid-template-columns: 50px 1fr; }
  .feature-story.wide .excel-sheet { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .price-row { grid-template-columns: 100px 1fr 130px; }
  .price-row > div:last-child { grid-column: 2 / -1; display: flex; gap: 25px; }
  .extra-price-table article { grid-template-columns: 45px 1fr 120px; }
  .extra-price-table article > small { grid-column: 2; }
  .product-screen { min-height: 580px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 22px); }
  .section { padding: 70px 0; }
  .site-header { padding: 7px 0; }
  .header-frame { min-height: 58px; }
  .brand img { width: 118px; }
  .language-link, .theme-toggle, .menu-toggle { width: 38px; height: 38px; }
  .home-hero { min-height: auto; padding: 103px 0 36px; }
  .hero-copy h1 { font-size: 52px; line-height: .92; }
  .hero-copy > p { font-size: 14px; }
  .hero-buttons { display: grid; gap: 17px; }
  .hero-buttons .button { width: 100%; }
  .hero-speed { margin-top: 30px; }
  .hero-gallery { height: 430px; margin-top: 15px; }
  .poster-1 { width: 188px; height: 360px; top: 22px; }
  .poster-2, .poster-3 { width: 145px; height: 285px; top: 100px; }
  .poster-2 { left: 0; }
  .poster-3 { right: 0; }
  .hero-stamp { width: 76px; height: 76px; right: 2px; bottom: 8px; font-size: 11px; }
  .hero-proof { margin-top: 10px; gap: 16px; justify-content: space-between; }
  .hero-proof span { font-size: 7px; text-align: center; }
  .marquee div { gap: 22px; }
  .section-intro h2, .why-heading h2, .process-copy h2, .feature-control-copy h2 { font-size: 45px; }
  .section-intro { margin-bottom: 34px; }
  .design-grid { grid-template-columns: 1fr; gap: 40px; }
  .design-preview { height: 495px; }
  .screen-canvas { width: 205px; height: 390px; }
  .design-info p { min-height: auto; }
  .why-item { grid-template-columns: 48px 1fr; min-height: 180px; }
  .why-item h3 { font-size: 29px; }
  .why-decoration { display: none; }
  .feature-checks { grid-template-columns: 1fr; }
  .admin-showcase-copy h2 { font-size: 47px; }
  .admin-window { min-height: 430px; overflow: hidden; }
  .admin-window-body { min-width: 690px; transform: scale(.7); transform-origin: top left; }
  .admin-window { height: 430px; }
  .process-steps li { grid-template-columns: 48px 1fr; min-height: 180px; }
  .process-steps h3 { font-size: 31px; }
  .extras-grid { grid-template-columns: 1fr; }
  .extra-card { min-height: 245px; }
  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .page-hero { padding: 125px 0 55px; }
  .page-hero h1 { font-size: 56px; }
  .catalog-ruler { margin-top: 42px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .filter-tabs button { white-space: nowrap; }
  .catalog-search { width: 100%; }
  .mini-cta .container { align-items: flex-start; flex-direction: column; }
  .mini-cta .button { width: 100%; }
  .settings-board { padding: 18px; }
  .settings-row { grid-template-columns: 1fr auto; gap: 10px; }
  .settings-row > b { grid-column: 1; }
  .settings-row > i { grid-column: 2; grid-row: 1 / 3; }
  .feature-story { min-height: 470px; padding: 24px; grid-template-columns: 35px 1fr; }
  .feature-story h2 { font-size: 37px; }
  .feature-story.wide { grid-template-columns: 35px 1fr; }
  .excel-sheet { overflow-x: auto; }
  .excel-sheet > div, .excel-sheet p { min-width: 430px; }
  .simple-section-head h2 { font-size: 43px; }
  .price-row { grid-template-columns: 84px 1fr; gap: 15px; }
  .price-row img { width: 76px; height: 112px; }
  .price-row > strong { grid-column: 2; }
  .price-row > div:last-child { grid-column: 1 / -1; }
  .extra-price-table article { padding: 22px 0; grid-template-columns: 35px 1fr; }
  .extra-price-table article > strong, .extra-price-table article > small { grid-column: 2; }
  .faq-item button { min-height: 95px; grid-template-columns: 36px 1fr 25px; gap: 10px; }
  .faq-item button b { font-size: 24px; }
  .faq-item > div > p { margin-left: 46px; }
  .product-hero { padding: 112px 0 70px; }
  .product-screen { min-height: 490px; padding: 25px; }
  .product-screen img { width: 230px; max-height: 430px; }
  .product-copy h1 { font-size: 56px; }
  .product-buttons { display: grid; }
  .product-buttons .button { width: 100%; }
  .order-modal-grid { grid-template-columns: 1fr; }
  .order-aside { display: none; }
  .order-form-wrap { padding: 48px 22px 28px; }
  .modal-close { color: var(--text); border-color: var(--line); background: var(--surface); }
  .not-found span { font-size: 110px; }
  .not-found h1 { font-size: 42px; }
}

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


/* ===== VOWLY refresh 3.1 ===== */
:root {
  --radius-xs: 14px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-card: 0 20px 55px rgba(47, 37, 30, .10);
}

.section { padding: 96px 0; }

.site-header { padding: 12px 0; }
.site-header.is-scrolled { background: transparent; border-bottom: none; }
.header-frame {
  min-height: 70px;
  padding: 0 16px 0 20px;
  border-radius: 24px;
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(31, 24, 20, .08);
}
html[data-theme="dark"] .header-frame { box-shadow: 0 18px 44px rgba(0, 0, 0, .22); }
.site-header.is-scrolled .header-frame { min-height: 60px; }

.language-link, .theme-toggle, .menu-toggle, .header-order, .button, .circle-order, .order-form input, .order-form textarea, .catalog-search input, .modal-close { border-radius: var(--radius-pill); }
.main-nav { gap: 22px; }
.main-nav a { padding: 10px 0; }
.button { min-height: 48px; padding: 0 20px; gap: 16px; }
.header-order { min-height: 44px; padding: 0 16px; }
.text-link { gap: 12px; }

.home-hero { min-height: auto; padding: 140px 0 38px; }
.hero-layout { gap: 40px; }
.hero-copy { padding-left: 20px; }
.hero-copy h1 {
  max-width: 680px;
  margin: 18px 0 18px;
  font-size: clamp(56px, 6.9vw, 96px);
  line-height: .92;
}
.hero-copy > p { max-width: 560px; font-size: 15px; line-height: 1.7; }
.hero-buttons { margin-top: 28px; gap: 20px; }
.hero-speed {
  margin-top: 32px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}
.hero-gallery { height: 610px; max-width: 680px; width: 100%; margin-left: auto; }
.hero-poster {
  padding: 12px;
  border: 0;
  border-radius: 38px;
  background: linear-gradient(180deg, #1e1e20, #090909);
  box-shadow: 0 30px 80px rgba(17, 12, 10, .24);
}
.hero-poster::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 86px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #070707;
  z-index: 3;
}
.hero-poster::after {
  content: "";
  position: absolute;
  inset: auto 24px 10px;
  height: 18px;
  border-radius: 0 0 24px 24px;
  background: rgba(255,255,255,.07);
  filter: blur(11px);
  opacity: .65;
}
.poster-top { display: none; }
.hero-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 28px; }
.poster-1 { width: 250px; height: 520px; left: 50%; top: 36px; transform: translateX(-50%) rotate(-1.8deg); z-index: 3; }
.poster-2 { width: 208px; height: 438px; left: 8%; top: 140px; transform: rotate(-8deg); z-index: 1; }
.poster-3 { width: 208px; height: 438px; right: 4%; top: 118px; transform: rotate(8deg); z-index: 2; }
.hero-stamp {
  right: 5%;
  bottom: 18px;
  width: 96px;
  height: 96px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(36, 27, 22, .10);
}
.hero-proof {
  margin-top: 18px;
  padding-top: 0;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 0;
}
.hero-proof span {
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 8px;
}

.marquee {
  width: min(1280px, calc(100% - 44px));
  margin: 12px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.marquee div { padding: 13px 0; }

.section-intro { margin-bottom: 38px; gap: 36px; }
.design-grid { gap: 22px 18px; }
.design-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-card);
}
.design-preview { height: 470px; border-radius: 22px; }
.design-index { left: 15px; top: 14px; }
.design-tag { right: 12px; top: 12px; border-radius: var(--radius-pill); padding: 6px 10px; }
.screen-canvas { width: 208px; height: 390px; border-radius: 28px; border-width: 8px; }
.live-label { left: 14px; bottom: 14px; padding: 8px 12px; border-radius: var(--radius-pill); background: color-mix(in srgb, var(--surface) 88%, transparent); }
.design-info { padding-top: 16px; }
.design-meta { font-size: 8px; }
.design-info h3 { margin: 8px 0 8px; font-size: 27px; }
.design-info p { min-height: auto; font-size: 11.5px; line-height: 1.65; }
.design-actions { margin-top: 12px; padding-top: 12px; }
.circle-order { width: 40px; height: 40px; }

.why-section { background: transparent; border-top: 0; border-bottom: 0; }
.why-layout { gap: 56px; }
.why-list { border-top: 0; display: grid; gap: 14px; }
.why-item {
  min-height: auto;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-card);
}
.why-item h3 { font-size: 31px; margin-bottom: 10px; }
.why-decoration { width: 130px; height: 130px; margin-top: 34px; }

.admin-showcase-section { margin: 0 18px; border-radius: 40px; box-shadow: 0 30px 90px rgba(11,8,7,.18); }
.admin-showcase-layout { gap: 52px; }
.admin-window { border-radius: 30px; overflow: hidden; transform: rotate(1deg); }

.process-layout { gap: 56px; }
.process-steps { display: grid; gap: 14px; }
.process-steps li {
  min-height: auto;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-card);
}
.process-steps h3 { font-size: 30px; margin-bottom: 10px; }

.extras-grid { gap: 18px; }
.extra-card {
  min-height: 215px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-card);
}

.final-cta { padding: 92px 0; }
.final-cta-inner {
  padding: 48px 54px;
  border-radius: 38px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-soft) 88%, transparent));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.catalog-toolbar, .feature-story, .settings-board, .price-row, .extra-price-table article, .faq-item, .product-screen, .product-order-box, .order-modal-grid, .footer-grid > div, .footer-grid > nav { border-radius: 26px; }
.catalog-toolbar, .settings-board, .feature-story, .price-row, .extra-price-table article, .faq-item button, .product-screen, .product-order-box { background: color-mix(in srgb, var(--surface) 88%, transparent); }
.catalog-toolbar, .settings-board, .feature-story, .price-row, .extra-price-table article, .product-screen, .product-order-box { border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.footer-grid { gap: 26px; }
.footer-grid > div, .footer-grid > nav { padding: 22px; border: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 82%, transparent); }

@media (max-width: 1180px) {
  .section { padding: 88px 0; }
  .hero-layout { gap: 20px; }
  .hero-gallery { max-width: 620px; height: 570px; }
  .poster-1 { width: 226px; height: 478px; }
  .poster-2, .poster-3 { width: 188px; height: 402px; }
  .design-preview { height: 440px; }
  .screen-canvas { width: 190px; height: 360px; }
}

@media (max-width: 920px) {
  .header-frame { border-radius: 22px; }
  .main-nav { border-radius: 24px; }
  .hero-gallery { height: 540px; }
  .hero-copy { text-align: center; padding-left: 0; }
  .admin-showcase-section { margin: 0 12px; border-radius: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .header-frame { padding: 0 10px 0 14px; border-radius: 18px; }
  .home-hero { padding: 102px 0 30px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-gallery { height: 418px; margin-top: 10px; }
  .hero-poster { padding: 9px; border-radius: 30px; }
  .hero-poster::before { top: 13px; width: 72px; height: 16px; }
  .hero-poster img { border-radius: 22px; }
  .poster-1 { width: 178px; height: 366px; top: 18px; }
  .poster-2, .poster-3 { width: 136px; height: 286px; top: 96px; }
  .poster-2 { left: 2px; }
  .poster-3 { right: 2px; }
  .hero-stamp { width: 72px; height: 72px; font-size: 10px; bottom: 10px; }
  .hero-proof { gap: 10px; justify-content: space-between; }
  .hero-proof span { flex: 1 1 calc(50% - 8px); text-align: center; }
  .design-card { padding: 12px; border-radius: 24px; }
  .design-preview { height: 430px; }
  .screen-canvas { width: 186px; height: 346px; }
  .why-item, .process-steps li, .extra-card { padding: 20px; border-radius: 22px; }
  .admin-showcase-section { margin: 0 8px; border-radius: 24px; }
  .final-cta-inner { padding: 32px 22px; border-radius: 28px; }
  .footer-grid > div, .footer-grid > nav { padding: 18px; border-radius: 22px; }
}

/* ===== Real admin panel showcase 3.2 ===== */
.feature-hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.feature-hero-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.feature-hero-badges span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-admin-phones {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.home-admin-phones::before {
  content: "";
  position: absolute;
  inset: 7% 5% 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,135,115,.28), rgba(199,135,115,.07) 46%, transparent 70%);
  filter: blur(18px);
  z-index: -1;
}
.home-admin-phone {
  position: absolute;
  padding: 9px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #2b2929, #080808);
  box-shadow: 0 34px 84px rgba(0,0,0,.36);
  transition: transform .42s cubic-bezier(.2,.75,.2,1), z-index .2s;
}
.home-admin-phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 72px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #090909;
  z-index: 2;
}
.home-admin-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 25px;
}
.home-admin-phone-main {
  width: 274px;
  height: 570px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 3;
}
.home-admin-phone-left,
.home-admin-phone-right {
  width: 218px;
  height: 476px;
  top: 95px;
  z-index: 1;
}
.home-admin-phone-left { left: 2%; transform: rotate(-8deg); }
.home-admin-phone-right { right: 1%; transform: rotate(8deg); }
.home-admin-phone:hover { z-index: 6; transform: translateX(0) translateY(-10px) rotate(0deg); }
.home-admin-phone-main:hover { transform: translateX(-50%) translateY(-10px) rotate(0deg); }
.home-admin-badge {
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 8;
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.84);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.admin-real-intro {
  padding-top: 58px;
}
.admin-real-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(500px,1.18fr);
  gap: 64px;
  align-items: center;
}
.admin-real-copy h2 {
  max-width: 720px;
  margin: 17px 0 20px;
  font-family: var(--serif);
  font-size: clamp(48px,5.4vw,78px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
.admin-real-copy > p {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.75;
}
.admin-real-note {
  margin-top: 22px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.admin-real-stage {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}
.admin-real-stage::before {
  content: "";
  position: absolute;
  inset: 5% 3% 2%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb,var(--accent) 22%,transparent), transparent 52%),
    color-mix(in srgb,var(--surface-soft) 58%,transparent);
  border: 1px solid var(--line);
}
.admin-real-phone {
  position: absolute;
  padding: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: linear-gradient(180deg,#222,#050505);
  box-shadow: 0 32px 78px rgba(38,27,21,.24);
  transition: transform .38s ease, z-index .2s;
}
.admin-real-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 68px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080808;
  z-index: 2;
}
.admin-real-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
}
.admin-real-phone-main {
  width: 275px;
  height: 590px;
  left: 50%;
  top: 12px;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 3;
}
.admin-real-phone-left,
.admin-real-phone-right {
  width: 220px;
  height: 485px;
  top: 120px;
}
.admin-real-phone-left { left: 1%; transform: rotate(-8deg); z-index: 1; }
.admin-real-phone-right { right: 0; transform: rotate(8deg); z-index: 2; }
.admin-real-phone:hover { z-index: 8; transform: translateY(-10px) rotate(0); }
.admin-real-phone-main:hover { transform: translateX(-50%) translateY(-10px) rotate(0); }
.admin-real-hint {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 9;
  padding: 11px 15px;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}

.admin-capabilities-section {
  background: color-mix(in srgb,var(--surface) 58%,transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.admin-capability-list {
  display: grid;
  gap: 24px;
}
.admin-capability-card {
  min-height: 560px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(360px,.88fr) minmax(0,1.12fr);
  gap: 62px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: color-mix(in srgb,var(--surface) 90%,transparent);
  box-shadow: var(--shadow-card);
}
.admin-capability-card.is-reverse .admin-capability-media { order: 2; }
.admin-capability-card.is-reverse .admin-capability-copy { order: 1; }
.admin-capability-media {
  min-height: 485px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, color-mix(in srgb,var(--accent) 18%,transparent), transparent 55%),
    linear-gradient(145deg,var(--surface-soft),color-mix(in srgb,var(--surface) 72%,var(--accent-soft)));
}
.admin-shot-button {
  position: relative;
  border: 0;
  background: transparent;
}
.admin-phone-shell {
  width: 236px;
  height: 445px;
  padding: 8px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 31px;
  background: linear-gradient(180deg,#252525,#050505);
  box-shadow: 0 28px 60px rgba(38,27,21,.24);
  transition: transform .38s ease;
}
.admin-phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 66px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080808;
  z-index: 2;
}
.admin-phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 23px;
}
.admin-shot-button:hover .admin-phone-shell { transform: translateY(-8px) rotate(-1deg); }
.admin-shot-zoom {
  position: absolute;
  right: -12px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: 17px;
  box-shadow: 0 15px 32px rgba(38,27,21,.22);
}
.admin-capability-copy > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.admin-capability-copy h3 {
  max-width: 650px;
  margin: 16px 0 18px;
  font-family: var(--serif);
  font-size: clamp(40px,4.7vw,66px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.admin-capability-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.admin-capability-copy ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.admin-capability-copy li {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 12px;
}
.admin-capability-copy li i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb,var(--accent) 13%,transparent);
  color: var(--accent);
  font-style: normal;
  font-size: 10px;
}

.admin-benefit-section { padding-top: 60px; }
.admin-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.admin-benefit-card {
  min-height: 275px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in srgb,var(--surface) 88%,transparent);
  box-shadow: var(--shadow-card);
}
.admin-benefit-card > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 15px;
}
.admin-benefit-card h3 {
  margin: 42px 0 12px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.04;
}
.admin-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.admin-shot-dialog {
  width: min(94vw, 540px);
  max-height: 94vh;
  padding: 18px 18px 14px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
}
.admin-shot-dialog::backdrop {
  background: rgba(20,15,13,.72);
  backdrop-filter: blur(10px);
}
.admin-shot-dialog img {
  width: auto;
  max-width: 100%;
  max-height: calc(94vh - 85px);
  margin: auto;
  border-radius: 20px;
}
.admin-shot-dialog p {
  margin: 12px 42px 0 4px;
  color: var(--muted);
  font-size: 11px;
}
.admin-shot-close {
  position: sticky;
  top: 0;
  z-index: 3;
  float: right;
  width: 40px;
  height: 40px;
  margin: 0 0 -40px auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(20,17,15,.82);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

@media (max-width: 1120px) {
  .home-admin-phones { transform: scale(.9); transform-origin: center; }
  .admin-real-grid { grid-template-columns: 1fr; gap: 30px; }
  .admin-real-copy { max-width: 760px; }
  .admin-real-stage { max-width: 700px; width: 100%; margin: auto; }
  .admin-capability-card { grid-template-columns: minmax(300px,.8fr) 1.2fr; gap: 38px; }
}

@media (max-width: 920px) {
  .home-admin-phones { min-height: 560px; transform: none; max-width: 670px; width: 100%; margin: auto; }
  .admin-capability-card,
  .admin-capability-card.is-reverse { grid-template-columns: 1fr; min-height: auto; gap: 34px; }
  .admin-capability-card.is-reverse .admin-capability-media,
  .admin-capability-card.is-reverse .admin-capability-copy { order: initial; }
  .admin-capability-media { min-height: 490px; }
  .admin-benefit-grid { grid-template-columns: 1fr; }
  .admin-benefit-card { min-height: auto; }
  .admin-benefit-card h3 { margin-top: 25px; }
}

@media (max-width: 640px) {
  .feature-hero-badges { gap: 7px; }
  .feature-hero-badges span { padding: 9px 11px; font-size: 8px; }
  .home-admin-phones { min-height: 420px; }
  .home-admin-phone { padding: 7px; border-radius: 26px; }
  .home-admin-phone::before { top: 10px; width: 58px; height: 13px; }
  .home-admin-phone img { border-radius: 20px; }
  .home-admin-phone-main { width: 182px; height: 382px; top: 2px; }
  .home-admin-phone-left,
  .home-admin-phone-right { width: 142px; height: 312px; top: 78px; }
  .home-admin-phone-left { left: -2px; }
  .home-admin-phone-right { right: -2px; }
  .home-admin-badge { right: 1%; bottom: 4px; padding: 9px 12px; font-size: 7px; }
  .admin-real-intro { padding-top: 20px; }
  .admin-real-copy h2 { font-size: 43px; }
  .admin-real-stage { min-height: 430px; }
  .admin-real-stage::before { inset: 3% 0 1%; border-radius: 28px; }
  .admin-real-phone { padding: 6px; border-radius: 25px; }
  .admin-real-phone::before { top: 9px; width: 54px; height: 12px; }
  .admin-real-phone img { border-radius: 19px; }
  .admin-real-phone-main { width: 182px; height: 386px; top: 4px; }
  .admin-real-phone-left,
  .admin-real-phone-right { width: 140px; height: 310px; top: 88px; }
  .admin-real-phone-left { left: -4px; }
  .admin-real-phone-right { right: -4px; }
  .admin-real-hint { right: 4px; bottom: 4px; padding: 8px 10px; font-size: 7px; }
  .admin-capability-list { gap: 16px; }
  .admin-capability-card { padding: 18px; border-radius: 25px; }
  .admin-capability-media { min-height: 420px; border-radius: 21px; }
  .admin-phone-shell { width: 205px; height: 380px; border-radius: 27px; }
  .admin-phone-shell img { border-radius: 20px; }
  .admin-capability-copy h3 { font-size: 40px; }
  .admin-capability-copy > p { font-size: 13px; }
  .admin-benefit-card { padding: 21px; border-radius: 23px; }
  .admin-shot-dialog { padding: 12px; border-radius: 23px; }
  .admin-shot-dialog img { border-radius: 16px; }
}

/* =====================================================================
   VOWLY 4.0 — editorial wedding studio redesign
   ===================================================================== */
:root {
  --bg: #f6f3f0;
  --surface: #fffdfb;
  --surface-soft: #efe7e1;
  --surface-deep: #ddc8bc;
  --text: #3a2621;
  --muted: #786a64;
  --line: rgba(72, 48, 40, .14);
  --line-strong: rgba(72, 48, 40, .30);
  --accent: #b67569;
  --accent-soft: #ebcfc4;
  --sage: #8f9989;
  --gold: #b79760;
  --header: #0d0c0c;
  --header-text: #fffaf5;
  --dark: #201714;
  --light: #fffaf5;
  --container: min(1380px, calc(100% - 46px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-xs: 13px;
  --radius-sm: 20px;
  --radius-md: 30px;
  --radius-lg: 46px;
  --radius-pill: 999px;
  --shadow: 0 25px 80px rgba(55, 37, 29, .12);
  --shadow-soft: 0 16px 42px rgba(55, 37, 29, .08);
}

html[data-theme="dark"] {
  --bg: #171311;
  --surface: #211b18;
  --surface-soft: #2d2420;
  --surface-deep: #4a3730;
  --text: #f5ece6;
  --muted: #c1b2aa;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.26);
  --accent: #d09385;
  --accent-soft: #68433b;
  --gold: #c8a36a;
  --header: #080808;
  --header-text: #fffaf5;
  --dark: #f5ece6;
  --light: #171311;
  --shadow: 0 30px 90px rgba(0,0,0,.36);
  --shadow-soft: 0 18px 52px rgba(0,0,0,.24);
}

body {
  background:
    radial-gradient(circle at 5% 2%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 23%),
    radial-gradient(circle at 94% 22%, color-mix(in srgb, var(--gold) 7%, transparent), transparent 18%),
    var(--bg);
}
body::before { opacity: .12; }
.container { width: var(--container); }
.section { padding: 96px 0; }

/* Header */
.site-header {
  padding: 0;
  background: var(--header);
  border: 0;
}
.site-header.is-scrolled {
  padding: 0;
  background: color-mix(in srgb, var(--header) 94%, transparent);
  border: 0;
  backdrop-filter: blur(18px);
}
.header-frame {
  width: min(1460px, calc(100% - 24px));
  min-height: 78px;
  padding: 0 14px 0 18px;
  grid-template-columns: 250px 1fr auto;
  gap: 26px;
  border: 0;
  border-radius: 0 0 24px 24px;
  background: transparent;
  box-shadow: none;
}
.site-header.is-scrolled .header-frame { min-height: 68px; }
.brand img { width: 138px; filter: brightness(0) invert(1); }
.brand small {
  color: rgba(255,255,255,.54);
  border-color: rgba(255,255,255,.16);
}
.main-nav { gap: 26px; }
.main-nav a {
  color: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a::after { background: var(--gold); }
.main-nav a:hover, .main-nav a.is-active { color: #fff; }
.header-actions { gap: 8px; }
.language-link,
.theme-toggle,
.menu-toggle {
  width: 40px;
  height: 40px;
  border-color: rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.language-link:hover,
.theme-toggle:hover,
.menu-toggle:hover { background: #fff; color: #171313; }
.header-order {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  background: #fff;
  color: #171313;
  font-size: 10px;
  letter-spacing: .04em;
}
.menu-toggle span { background: currentColor; }

/* Controls */
.eyebrow {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .20em;
}
.eyebrow::before { width: 28px; }
.button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: .04em;
}
.button-dark { background: var(--text); color: var(--bg); }
.button-light { background: #fff; color: #251b18; }
.button-outline { border-color: var(--line-strong); }
.text-link { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }

/* Home hero inspired by the supplied reference */
.home-hero {
  min-height: 850px;
  padding: 150px 0 54px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.55)),
    radial-gradient(circle at 28% 0%, #24201e, #080808 62%);
  color: #fff;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 240px;
  opacity: .14;
  background:
    radial-gradient(circle at 28% 10%, rgba(255,255,255,.22), transparent 28%),
    repeating-linear-gradient(125deg, transparent 0 50px, rgba(255,255,255,.025) 51px 52px);
}
.hero-rule { display: none; }
.hero-layout {
  position: relative;
  min-height: 620px;
  padding: 58px 70px 34px;
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(420px, .95fr);
  grid-template-areas: "gallery copy";
  gap: 52px;
  align-items: center;
  border-radius: 48px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.94), rgba(255,255,255,.985)),
    radial-gradient(circle at 85% 25%, rgba(183,151,96,.18), transparent 22%),
    repeating-linear-gradient(35deg, transparent 0 68px, rgba(71,44,34,.022) 69px 70px);
  color: #3a2621;
  box-shadow: 0 35px 100px rgba(0,0,0,.22);
}
html[data-theme="dark"] .hero-layout {
  background:
    linear-gradient(120deg, rgba(36,29,26,.96), rgba(28,23,21,.985)),
    radial-gradient(circle at 85% 25%, rgba(183,151,96,.12), transparent 22%);
  color: var(--text);
}
.hero-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: inherit;
  pointer-events: none;
}
.hero-copy {
  grid-area: copy;
  padding: 0 8px 0 0;
  position: relative;
  z-index: 3;
}
.hero-copy .eyebrow { color: var(--gold); }
.hero-copy h1 {
  max-width: 650px;
  margin: 18px 0 22px;
  color: inherit;
  font-size: clamp(50px, 5.6vw, 88px);
  line-height: .97;
  letter-spacing: -.045em;
}
.hero-copy > p {
  max-width: 580px;
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-size: 15px;
  line-height: 1.72;
}
.hero-buttons { margin-top: 28px; gap: 18px; }
.hero-speed {
  margin-top: 32px;
  padding: 13px 16px;
  border: 1px solid rgba(58,38,33,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  color: #3a2621;
}
html[data-theme="dark"] .hero-speed { background: rgba(255,255,255,.05); color: var(--text); }
.hero-speed strong { font-size: 25px; }
.hero-gallery {
  grid-area: gallery;
  height: 640px;
  max-width: 610px;
  width: 100%;
  margin: -118px auto -26px;
  position: relative;
  perspective: 1400px;
  z-index: 4;
}
.hero-poster {
  padding: 10px;
  overflow: hidden;
  border: 2px solid #c9beb7;
  border-radius: 42px;
  background: linear-gradient(180deg, #f7f6f4, #dedad7);
  box-shadow: 0 32px 78px rgba(0,0,0,.30);
}
.hero-poster::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 86px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080808;
  z-index: 5;
}
.hero-poster::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 78px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(10,10,10,.72);
  z-index: 5;
}
.poster-top { display: none; }
.hero-poster img { width: 100%; height: 100%; border-radius: 31px; object-fit: cover; object-position: center top; }
.poster-1 { width: 278px; height: 586px; left: 47%; top: 20px; transform: translateX(-50%) rotate(2deg); z-index: 3; }
.poster-2 { width: 218px; height: 470px; left: 0; top: 132px; transform: rotate(-8deg); z-index: 1; }
.poster-3 { width: 210px; height: 455px; right: 0; top: 112px; transform: rotate(8deg); z-index: 2; }
.hero-poster:hover { transform: translateY(-12px) rotate(0deg) !important; }
.hero-stamp {
  right: 2%;
  bottom: 14px;
  width: 88px;
  height: 88px;
  border-color: rgba(183,151,96,.55);
  background: rgba(255,255,255,.75);
  color: #987744;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
}
.hero-proof {
  margin-top: 20px;
  padding-top: 0;
  justify-content: center;
  gap: 10px;
  border: 0;
}
.hero-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.05);
  font-size: 8px;
}
.marquee {
  width: min(1320px, calc(100% - 46px));
  margin: -21px auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.marquee div { padding: 12px 0; }
.marquee span { font-size: 12px; }

/* Editorial section headings */
.section-intro,
.process-head {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.55fr);
  gap: 58px;
  align-items: end;
}
.section-intro h2,
.why-heading h2,
.process-head h2,
.feature-control-copy h2 {
  margin: 13px 0 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.04em;
}
.section-intro p,
.process-head > p { margin: 0; color: var(--muted); line-height: 1.68; }

/* Catalog like the supplied example */
.home-catalog { background: var(--bg); }
.design-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 52px 24px;
}
.design-card { min-width: 0; }
.design-preview {
  height: 440px;
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--accent-soft) 42%, transparent), transparent 36%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--surface-soft) 70%, transparent));
  box-shadow: inset 0 0 0 1px var(--line);
}
.design-preview::after { opacity: .55; }
.screen-canvas {
  width: 192px;
  height: 360px;
  border: 7px solid #171717;
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(32,20,16,.22);
}
.screen-canvas::before { top: 5px; width: 66px; height: 16px; }
.design-index { left: 15px; top: 14px; font-size: 10px; }
.design-tag {
  right: 12px;
  top: 12px;
  border-radius: var(--radius-pill);
}
.live-label {
  left: 14px;
  bottom: 13px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(8px);
}
.design-info { padding: 15px 5px 0; }
.design-meta { font-size: 8px; }
.design-info h3 { margin: 8px 0 7px; font-size: 26px; }
.design-info p { min-height: 58px; font-size: 11px; line-height: 1.62; }
.design-actions { margin-top: 12px; padding-top: 11px; }
.design-actions > a { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.circle-order { width: 38px; height: 38px; }

/* Advantages */
.why-section { background: var(--surface); border: 0; }
.why-layout { gap: 70px; }
.why-heading { top: 110px; }
.why-heading > p { max-width: 500px; }
.why-decoration {
  width: 120px;
  height: 120px;
  margin-top: 34px;
  border-color: var(--line-strong);
}
.why-decoration span { font-size: 58px; }
.why-decoration i { height: 175px; }
.why-list { border: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item {
  min-height: 245px;
  padding: 26px;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}
.why-item h3 { font-size: 31px; line-height: 1.04; }
.why-item p { font-size: 12px; }

/* Real admin section */
.admin-showcase-section {
  margin: 0;
  padding: 100px 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(183,151,96,.13), transparent 25%),
    #151111;
}
.admin-showcase-layout { gap: 64px; }
.admin-showcase-copy h2 { font-size: clamp(48px, 5vw, 74px); }
.admin-showcase-copy > p { max-width: 560px; }
.home-admin-phones,
.admin-real-stage { filter: drop-shadow(0 26px 48px rgba(0,0,0,.28)); }

/* Process board */
.process-section { overflow: hidden; }
.process-head h2 { max-width: 900px; }
.process-board {
  display: grid;
  grid-template-columns: minmax(420px,.92fr) minmax(520px,1.08fr);
  gap: 24px;
  align-items: stretch;
}
.process-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 35%, #77716e, #1d1918 70%);
  box-shadow: var(--shadow);
}
.process-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(0,0,0,.18) 72%);
}
.process-phone {
  width: 278px;
  height: 565px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 10px;
  border: 2px solid #cfc6c0;
  border-radius: 42px;
  background: #f5f2ef;
  box-shadow: 0 32px 80px rgba(0,0,0,.38);
  transform: rotate(-4deg) translateY(30px);
}
.process-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 84px;
  height: 20px;
  z-index: 4;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #070707;
}
.process-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 31px; }
.process-ribbon { position: absolute; z-index: 2; width: 170px; height: 330px; border: 18px solid var(--gold); border-left: 0; border-radius: 50%; opacity: .9; filter: drop-shadow(0 8px 12px rgba(0,0,0,.2)); }
.process-ribbon-one { left: 30px; top: 120px; transform: rotate(30deg); }
.process-ribbon-two { right: 22px; bottom: 70px; transform: rotate(205deg); }
.process-visual > b {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 4;
  color: rgba(255,255,255,.72);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
}
.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.process-steps li {
  min-height: 290px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.process-steps li > span {
  position: absolute;
  right: 12px;
  bottom: -32px;
  color: color-mix(in srgb, var(--gold) 12%, transparent);
  font-family: var(--serif);
  font-size: 180px;
  line-height: .8;
}
.process-steps li > div { position: relative; z-index: 2; }
.process-steps h3 {
  margin: 8px 0 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.process-steps p { max-width: 330px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Extras */
.extras-section { background: var(--surface); }
.extras-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
.extra-card {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}
.extra-card > span { color: var(--gold); }
.extra-card h3 { font-size: 28px; }

.final-cta { padding: 90px 0; background: var(--bg); }
.final-cta-inner {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 25%),
    var(--surface);
  box-shadow: var(--shadow);
}

/* Internal pages */
.page-hero {
  padding: 150px 0 70px;
  background:
    linear-gradient(180deg, #0d0c0c 0 78px, transparent 78px),
    radial-gradient(circle at 84% 30%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 21%);
}
.page-hero-grid {
  padding: 45px 50px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.page-hero h1 { font-size: clamp(50px, 7vw, 96px); line-height: .95; }
.catalog-toolbar {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.filter-tabs button { border-radius: var(--radius-pill); }
.catalog-search input { border-radius: var(--radius-pill); }

.feature-page-hero .page-hero-grid,
.faq-hero .page-hero-grid,
.prices-hero .page-hero-grid,
.catalog-hero .page-hero-grid { align-items: center; }
.admin-real-intro { padding-top: 70px; }
.admin-real-grid { gap: 60px; }
.admin-real-stage::before { border-radius: 38px; }
.admin-capability-list { gap: 28px; }
.admin-capability-card {
  padding: 28px;
  border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.admin-capability-media { border-radius: 28px; }
.admin-benefit-card { border-radius: 28px; }

.price-row,
.extra-price-table article,
.faq-item,
.product-screen,
.product-order-box,
.settings-board,
.feature-story {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.product-screen { background: var(--surface); }
.product-screen img { border-radius: 29px; }

/* Footer */
.site-footer {
  margin-top: 50px;
  padding-top: 82px;
  overflow: hidden;
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at 70% 0, rgba(183,151,96,.09), transparent 28%),
    #0d0c0c;
  color: rgba(255,255,255,.76);
}
.site-footer .footer-grid > div,
.site-footer .footer-grid > nav {
  padding: 0;
  border: 0;
  background: transparent;
}
.footer-brand img { filter: brightness(0) invert(1); }
.footer-mark { color: rgba(255,255,255,.035); }
.footer-column b,
.footer-contact b { color: #fff; }
.footer-bottom { border-color: rgba(255,255,255,.12); }
.to-top { border-radius: 50%; }

/* Modal */
.order-modal-grid { border-radius: 34px; overflow: hidden; }
.order-form input,
.order-form textarea { border-radius: 14px; }
.modal-close { border-radius: 50%; }

/* Reveal feels restrained and hand-crafted */
.reveal { transform: translateY(18px); transition-duration: .62s; }

@media (max-width: 1220px) {
  .header-frame { grid-template-columns: 190px 1fr auto; }
  .brand small { display: none; }
  .hero-layout { grid-template-columns: minmax(430px,1fr) minmax(390px,.9fr); padding-left: 48px; padding-right: 48px; }
  .hero-gallery { transform: scale(.92); transform-origin: center; }
  .design-grid { grid-template-columns: repeat(3,1fr); }
  .process-board { grid-template-columns: minmax(360px,.8fr) minmax(500px,1.2fr); }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 28px, 820px); }
  .site-header { padding: 8px 0 0; background: transparent; }
  .site-header.is-scrolled { padding: 8px 0 0; background: transparent; }
  .header-frame {
    min-height: 62px;
    grid-template-columns: 1fr auto;
    border-radius: 20px;
    background: color-mix(in srgb, var(--header) 94%, transparent);
    backdrop-filter: blur(18px);
  }
  .main-nav {
    top: 79px;
    left: 12px;
    right: 12px;
    border-radius: 24px;
    background: color-mix(in srgb, var(--header) 96%, transparent);
    border-color: rgba(255,255,255,.15);
  }
  .main-nav a { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.12); }
  .home-hero { padding-top: 118px; min-height: auto; }
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "gallery";
    padding: 42px 34px 24px;
    gap: 24px;
    border-radius: 38px;
  }
  .hero-copy { text-align: center; padding: 0; }
  .hero-copy h1, .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-speed { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-gallery { height: 560px; margin: 0 auto -10px; transform: none; max-width: 650px; }
  .design-grid { grid-template-columns: repeat(2,1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 36px; }
  .why-heading { position: static; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .process-head { grid-template-columns: 1fr; gap: 20px; }
  .process-board { grid-template-columns: 1fr; }
  .process-visual { min-height: 570px; }
  .admin-showcase-layout { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero-grid { grid-template-columns: 1fr; padding: 34px; }
}

@media (max-width: 650px) {
  :root { --container: calc(100% - 20px); }
  .section { padding: 70px 0; }
  .header-frame { width: calc(100% - 12px); min-height: 58px; padding: 0 9px 0 13px; }
  .brand img { width: 112px; }
  .language-link, .theme-toggle, .menu-toggle { width: 36px; height: 36px; }
  .home-hero { padding: 92px 0 34px; }
  .hero-layout { padding: 31px 18px 12px; border-radius: 28px; }
  .hero-copy h1 { font-size: 46px; }
  .hero-copy > p { font-size: 13px; }
  .hero-buttons { display: grid; width: 100%; }
  .hero-buttons .button { width: 100%; }
  .hero-gallery { height: 410px; margin-top: 6px; }
  .hero-poster { padding: 7px; border-radius: 30px; }
  .hero-poster::before { top: 10px; width: 58px; height: 14px; }
  .hero-poster::after { bottom: 10px; width: 56px; }
  .hero-poster img { border-radius: 22px; }
  .poster-1 { width: 170px; height: 356px; top: 20px; }
  .poster-2, .poster-3 { width: 132px; height: 276px; top: 96px; }
  .poster-2 { left: 0; }
  .poster-3 { right: 0; }
  .hero-stamp { width: 68px; height: 68px; font-size: 9px; bottom: 4px; }
  .hero-proof { margin-top: 14px; gap: 7px; }
  .hero-proof span { flex: 1; padding: 8px; font-size: 6.5px; text-align: center; }
  .marquee { width: calc(100% - 20px); margin-top: -17px; }
  .section-intro, .process-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .section-intro h2, .why-heading h2, .process-head h2 { font-size: 43px; }
  .design-grid { grid-template-columns: 1fr; gap: 38px; }
  .design-preview { height: 430px; }
  .screen-canvas { width: 188px; height: 348px; }
  .design-info p { min-height: auto; }
  .why-list { grid-template-columns: 1fr; }
  .why-item { min-height: auto; padding: 22px; border-radius: 24px; }
  .why-decoration { display: none; }
  .process-visual { min-height: 470px; border-radius: 28px; }
  .process-phone { width: 204px; height: 418px; border-radius: 32px; transform: rotate(-3deg) translateY(25px); }
  .process-phone img { border-radius: 23px; }
  .process-ribbon { width: 115px; height: 220px; border-width: 12px; }
  .process-ribbon-one { left: 5px; top: 100px; }
  .process-ribbon-two { right: 0; bottom: 50px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li { min-height: 220px; padding: 24px; border-radius: 25px; }
  .process-steps li > span { font-size: 135px; }
  .extras-grid { grid-template-columns: 1fr; }
  .extra-card { min-height: 210px; border-radius: 24px; }
  .final-cta-inner { padding: 34px 22px; border-radius: 28px; }
  .page-hero { padding: 100px 0 45px; }
  .page-hero-grid { padding: 25px 20px; border-radius: 26px; }
  .page-hero h1 { font-size: 50px; }
  .admin-capability-card { border-radius: 26px; }
  .site-footer { border-radius: 26px 26px 0 0; }
}


/* =====================================================================
   VOWLY 4.1 — compact palette header and dropdown navigation
   ===================================================================== */
.site-header {
  padding: 0 6px;
  background: transparent;
  border: 0;
}
.site-header.is-scrolled {
  padding: 0 6px;
  background: transparent;
  backdrop-filter: none;
}
.header-frame {
  position: relative;
  width: 100%;
  min-height: 74px;
  padding: 0 18px 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--line));
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--text);
  box-shadow: 0 12px 32px rgba(66, 43, 35, .10);
  backdrop-filter: blur(18px);
}
html[data-theme="dark"] .header-frame {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .26);
}
.site-header.is-scrolled .header-frame { min-height: 66px; }
.brand img {
  width: 138px;
  filter: none;
}
html[data-theme="dark"] .brand img { filter: brightness(0) invert(1); }
.brand small {
  color: var(--muted);
  border-color: var(--line);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.language-link,
.theme-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  color: var(--text);
}
.language-link:hover,
.theme-toggle:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.header-order,
.header-catalog,
.menu-toggle {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.header-order {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.header-order:hover,
.header-catalog:hover,
.menu-toggle:hover { transform: translateY(-1px); }
.header-order:hover { background: color-mix(in srgb, var(--accent) 84%, #000); }
.header-catalog:hover,
.menu-toggle:hover {
  background: var(--surface-soft);
  color: var(--text);
  border-color: var(--accent);
}
.header-order i,
.header-catalog i { font-style: normal; }
.header-catalog i { color: var(--accent); letter-spacing: .12em; }
.menu-toggle {
  width: auto;
  height: 40px;
  position: relative;
  padding-right: 42px;
}
.menu-toggle b { font: inherit; }
.menu-toggle span {
  position: absolute;
  left: auto;
  right: 15px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: top .2s ease, transform .2s ease;
}
.menu-toggle span:nth-of-type(1) { top: 15px; }
.menu-toggle span:nth-of-type(2) { top: 23px; }
.menu-toggle.is-open span:nth-of-type(1) { top: 19px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-of-type(2) { top: 19px; transform: rotate(-45deg); }

/* Desktop navigation is opened only from the right-side menu button. */
.main-nav {
  position: fixed;
  top: 84px;
  right: 12px;
  left: auto;
  width: min(360px, calc(100% - 24px));
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(59, 38, 31, .18);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 120;
}
.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.main-nav a {
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.main-nav a::after { display: none; }
.main-nav a:hover,
.main-nav a.is-active {
  background: var(--surface-soft);
  color: var(--text);
}

/* The short proof chips requested for removal are hidden even if a cached template remains. */
.hero-proof { display: none !important; }

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled { padding: 0 5px; }
  .header-frame {
    width: 100%;
    min-height: 66px;
    padding: 0 12px 0 16px;
    border-radius: 0 0 24px 24px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
  }
  .main-nav { top: 74px; right: 8px; left: auto; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 760px) {
  .brand small,
  .header-order,
  .header-catalog { display: none; }
  .header-actions { gap: 6px; }
}

@media (max-width: 520px) {
  .site-header,
  .site-header.is-scrolled { padding: 0 4px; }
  .header-frame {
    min-height: 62px;
    padding: 0 8px 0 12px;
    border-radius: 0 0 20px 20px;
  }
  .brand img { width: 108px; }
  .language-link,
  .theme-toggle { width: 36px; height: 36px; }
  .menu-toggle { min-height: 36px; padding: 0 38px 0 13px; }
  .menu-toggle span { right: 13px; }
  .main-nav { top: 70px; right: 6px; width: calc(100% - 12px); border-radius: 20px; }
}


/* =====================================================================
   VOWLY 4.2 — right-side navigation drawer
   ===================================================================== */
body.menu-open { overflow: hidden; }

/* The catalog chip was removed because it duplicated the primary order CTA. */
.header-catalog { display: none !important; }

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 135;
  background: rgba(26, 21, 19, .30);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: clamp(390px, 31vw, 560px);
  height: 100dvh;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 30px 0 0 30px;
  background: var(--surface);
  color: var(--text);
  box-shadow: -28px 0 90px rgba(42, 28, 23, .20);
  backdrop-filter: none;
  overflow: hidden auto;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(102%);
  transform-origin: right center;
  transition: transform .38s cubic-bezier(.22,.72,.22,1), visibility .38s ease;
  z-index: 140;
}
.main-nav.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.nav-panel-top {
  min-height: 72px;
  padding: 0 24px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 2;
  border-radius: 28px 0 0 28px;
  background: #1c1816;
  color: #fff;
}
.nav-panel-top > span {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .18em;
}
.nav-close {
  width: 44px;
  height: 44px;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
}
.nav-close i {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 21px;
  height: 1px;
  background: currentColor;
}
.nav-close i:first-child { transform: rotate(45deg); }
.nav-close i:last-child { transform: rotate(-45deg); }
.nav-close:hover { background: rgba(255,255,255,.10); }
.nav-panel-body { padding: 62px 48px 44px; }
.nav-panel-title {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.nav-links { display: grid; }
.main-nav .nav-links a {
  min-height: 64px;
  padding: 0 2px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  transition: color .2s ease, padding-left .2s ease;
}
.main-nav .nav-links a:first-child { border-top: 1px solid var(--line); }
.main-nav .nav-links a span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}
.main-nav .nav-links a:hover,
.main-nav .nav-links a.is-active {
  padding-left: 8px;
  background: transparent;
  color: var(--accent);
}
.nav-panel-note {
  margin-top: 44px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
}
.nav-panel-note > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-panel-note p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.nav-panel-note a {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-panel-note a i { font-style: normal; font-size: 15px; }

@media (max-width: 760px) {
  .main-nav { width: min(92vw, 480px); border-radius: 26px 0 0 26px; }
  .nav-panel-top { min-height: 66px; border-radius: 24px 0 0 24px; }
  .nav-panel-body { padding: 42px 28px 32px; }
  .nav-panel-title { font-size: 32px; }
  .main-nav .nav-links a { min-height: 58px; font-size: 16px; }
}

@media (max-width: 520px) {
  .main-nav { width: calc(100% - 12px); border-radius: 24px 0 0 24px; }
  .nav-panel-top { padding: 0 14px 0 20px; }
  .nav-panel-body { padding: 34px 20px 26px; }
  .nav-panel-title { margin-bottom: 24px; font-size: 28px; }
  .nav-panel-note { margin-top: 30px; padding: 20px; border-radius: 20px; }
}

/* =====================================================================
   VOWLY 4.3 — compact catalog with category grid and phone cards
   ===================================================================== */
.brand small {
  max-width: none;
  white-space: nowrap;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .08em;
}

.catalog-showcase {
  min-height: 100vh;
  padding: 150px 0 110px;
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 24%),
    var(--bg);
}
.catalog-showcase-inner {
  width: min(1510px, calc(100% - 48px));
}
.catalog-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.catalog-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.catalog-category-list {
  width: min(1040px, 100%);
  margin: 58px auto 118px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.catalog-category-list button {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--muted);
  box-shadow: 0 12px 32px rgba(56, 38, 31, .045);
  font-size: 15px;
  letter-spacing: .025em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.catalog-category-list button:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  color: var(--text);
}
.catalog-category-list button.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 15px 36px rgba(45, 31, 26, .13);
}
html[data-theme="dark"] .catalog-category-list button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.catalog-design-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 96px 42px;
}
.catalog-product-card {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.catalog-phone-preview {
  height: 550px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.catalog-phone-preview::after { display: none; }
.catalog-phone-shell {
  width: 254px;
  height: 520px;
  border: 8px solid #111;
  border-radius: 39px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(24, 18, 16, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}
.catalog-phone-shell::before {
  top: 7px;
  width: 76px;
  height: 18px;
  background: #070707;
}
.catalog-phone-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 66px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  z-index: 4;
}
.catalog-phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 29px;
}
.catalog-phone-preview:hover .catalog-phone-shell {
  transform: translateY(-10px);
  box-shadow: 0 28px 58px rgba(24, 18, 16, .18);
}
.catalog-product-info {
  padding-top: 8px;
  text-align: center;
}
.catalog-product-info h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}
.catalog-product-info h3 a:hover { color: var(--accent); }
.catalog-product-info p {
  min-height: 0;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.catalog-product-price {
  display: block;
  margin-top: 23px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}
.catalog-product-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.catalog-view-button,
.catalog-order-button {
  min-height: 43px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.catalog-view-button {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--text);
}
.catalog-order-button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
}
.catalog-view-button:hover,
.catalog-order-button:hover { transform: translateY(-2px); }
.catalog-view-button:hover {
  background: color-mix(in srgb, var(--gold) 10%, transparent);
}
.catalog-order-button:hover {
  background: color-mix(in srgb, var(--gold) 86%, #000);
}
.catalog-showcase .empty-state {
  margin-top: 80px;
}

@media (max-width: 1280px) {
  .catalog-design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .brand small { display: inline-block; }
  .catalog-showcase { padding-top: 125px; }
  .catalog-category-list { margin-bottom: 86px; }
  .catalog-design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 76px 30px; }
}

@media (max-width: 760px) {
  .brand small { display: none; }
  .catalog-showcase-inner { width: min(100% - 24px, 680px); }
  .catalog-heading h1 { font-size: 44px; }
  .catalog-category-list {
    margin: 38px auto 70px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .catalog-category-list button {
    min-height: 50px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 590px) {
  .catalog-showcase { padding: 105px 0 75px; }
  .catalog-heading h1 { font-size: 37px; line-height: 1.04; }
  .catalog-design-grid { grid-template-columns: 1fr; gap: 68px; }
  .catalog-phone-preview { height: 500px; }
  .catalog-phone-shell { width: 232px; height: 475px; border-radius: 36px; }
  .catalog-phone-shell img { border-radius: 27px; }
  .catalog-product-info h3 { font-size: 17px; }
}


/* =====================================================================
   VOWLY 4.4 — four-column compact cards + editorial benefit section
   ===================================================================== */

/* Remove the outer preview/card frame. The black phone frame stays intact. */
.catalog-product-card,
.home-catalog-product-card,
.catalog-phone-preview,
.home-catalog .catalog-phone-preview {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.catalog-phone-preview::before,
.catalog-phone-preview::after,
.home-catalog .catalog-phone-preview::before,
.home-catalog .catalog-phone-preview::after { display: none !important; }

.catalog-showcase { padding-bottom: 92px; }
.catalog-showcase-inner { width: min(1560px, calc(100% - 44px)); }
.catalog-category-list { margin-bottom: 82px; }
.catalog-design-grid,
.home-design-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 70px 30px;
}
.catalog-product-card { text-align: left; }
.catalog-phone-preview {
  height: 470px;
  align-items: flex-start;
}
.catalog-phone-shell {
  width: 218px;
  height: 448px;
  border-width: 7px;
  border-radius: 35px;
  box-shadow: 0 18px 38px rgba(24, 18, 16, .11);
}
.catalog-phone-shell::before {
  top: 6px;
  width: 70px;
  height: 17px;
}
.catalog-phone-shell::after { bottom: 5px; width: 60px; }
.catalog-phone-shell img { border-radius: 27px; }
.catalog-product-info { padding: 12px 4px 0; text-align: left; }
.catalog-product-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}
.catalog-product-info h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.catalog-product-price {
  margin: 0;
  white-space: nowrap;
  font-size: 23px;
  line-height: 1.1;
}
.catalog-product-info p {
  margin-top: 8px;
  font-size: 12px;
}
.catalog-product-actions {
  margin-top: 18px;
  justify-content: flex-start;
  gap: 8px;
}
.catalog-view-button,
.catalog-order-button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}

/* Home catalog: exactly four templates, then one quiet text action. */
.home-catalog { padding: 92px 0 100px; }
.home-catalog .section-intro { margin-bottom: 48px; }
.home-catalog .section-intro h2 { font-size: clamp(44px, 5vw, 72px); }
.home-catalog .section-intro > div:last-child .text-link { display: none; }
.home-design-grid { gap: 56px 26px; }
.home-catalog .catalog-phone-preview { height: 440px; }
.home-catalog .catalog-phone-shell { width: 204px; height: 420px; }
.home-catalog .catalog-product-info { padding-top: 10px; }
.home-catalog .catalog-product-info h3 { font-size: 15px; }
.home-catalog .catalog-product-price { font-size: 21px; }
.home-catalog-more {
  margin-top: 58px;
  display: flex;
  justify-content: center;
}
.home-catalog-more a {
  padding: 10px 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-catalog-more a span {
  font-size: 18px;
  transition: transform .2s ease;
}
.home-catalog-more a:hover span { transform: translateX(4px); }

/* Why electronic: editorial two-column scene matching the supplied reference. */
.why-showcase {
  padding: 104px 0 112px;
  background: var(--bg);
  border: 0;
}
.why-showcase-head {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
  align-items: end;
  gap: 70px;
}
.why-showcase-head h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.6vw, 82px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
}
.why-showcase-head > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  text-align: right;
}
.why-showcase-board {
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: stretch;
}
.why-showcase-visual {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent-soft) 34%, transparent), transparent 52%),
    var(--surface-soft);
  box-shadow: 0 18px 50px rgba(48, 35, 29, .10);
  isolation: isolate;
}
.why-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(25,19,17,.12), rgba(25,19,17,.40)),
    var(--why-image);
  background-size: cover;
  background-position: center top;
  filter: blur(12px) saturate(.65);
  transform: scale(1.12);
  opacity: .76;
}
.why-showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.10), color-mix(in srgb, var(--surface) 35%, transparent));
}
.why-phone {
  width: 286px;
  height: 575px;
  margin-bottom: -42px;
  position: relative;
  overflow: hidden;
  border: 9px solid #111;
  border-radius: 45px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(15, 11, 10, .30);
  transform: rotate(-4deg);
  transition: transform .4s cubic-bezier(.2,.75,.2,1);
}
.why-showcase-visual:hover .why-phone { transform: translateY(-8px) rotate(-2deg); }
.why-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  z-index: 2;
  width: 84px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080808;
}
.why-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.why-showcase-visual > b {
  position: absolute;
  left: 25px;
  bottom: 22px;
  color: rgba(255,255,255,.84);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .25em;
}
.why-confetti {
  position: absolute;
  width: 16px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    70px -80px 0 -3px var(--gold),
    148px 42px 0 -4px var(--accent-soft),
    -110px 92px 0 -5px var(--gold),
    -174px -48px 0 -4px var(--accent);
  opacity: .88;
  transform: rotate(36deg);
}
.why-confetti-a { left: 22%; top: 22%; }
.why-confetti-b { right: 16%; top: 48%; transform: rotate(-28deg) scale(.75); }
.why-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.why-showcase-card {
  min-height: 298px;
  padding: 42px 42px 34px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(48, 35, 29, .09);
}
.why-showcase-card h3 {
  max-width: 360px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.why-showcase-card p {
  max-width: 410px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.52;
}
.why-showcase-card > span {
  position: absolute;
  right: 18px;
  bottom: -35px;
  color: color-mix(in srgb, var(--gold) 10%, transparent);
  font-family: var(--serif);
  font-size: 180px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}
html[data-theme="dark"] .why-showcase-card { background: var(--surface); }
html[data-theme="dark"] .why-showcase-card > span { color: rgba(255,255,255,.035); }

@media (max-width: 1220px) {
  .catalog-design-grid,
  .home-design-grid { column-gap: 20px; }
  .catalog-phone-preview { height: 430px; }
  .catalog-phone-shell { width: 196px; height: 405px; }
  .home-catalog .catalog-phone-preview { height: 405px; }
  .home-catalog .catalog-phone-shell { width: 184px; height: 380px; }
  .catalog-product-head { grid-template-columns: 1fr; gap: 6px; }
  .catalog-product-price { font-size: 21px; }
  .why-showcase-board { grid-template-columns: minmax(380px, .85fr) 1.35fr; }
  .why-showcase-card { padding: 34px; }
}

@media (max-width: 1020px) {
  .catalog-design-grid,
  .home-design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 28px; }
  .catalog-phone-preview,
  .home-catalog .catalog-phone-preview { height: 470px; }
  .catalog-phone-shell,
  .home-catalog .catalog-phone-shell { width: 218px; height: 448px; }
  .catalog-product-head { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; }
  .why-showcase-head { grid-template-columns: 1fr; gap: 22px; }
  .why-showcase-head > p { max-width: 720px; text-align: left; }
  .why-showcase-board { grid-template-columns: 1fr; }
  .why-showcase-visual { min-height: 560px; }
  .why-showcase-grid { gap: 18px; }
}

@media (max-width: 680px) {
  .catalog-showcase-inner { width: min(100% - 22px, 620px); }
  .catalog-design-grid,
  .home-design-grid { grid-template-columns: 1fr; gap: 58px; }
  .catalog-phone-preview,
  .home-catalog .catalog-phone-preview { height: 430px; }
  .catalog-phone-shell,
  .home-catalog .catalog-phone-shell { width: 202px; height: 414px; }
  .catalog-product-info { max-width: 390px; margin: 0 auto; }
  .catalog-product-head { grid-template-columns: minmax(0, 1fr) auto; }
  .home-catalog { padding: 72px 0 80px; }
  .home-catalog-more { margin-top: 44px; }
  .why-showcase { padding: 76px 0 82px; }
  .why-showcase-head { margin-bottom: 36px; }
  .why-showcase-head h2 { font-size: 45px; }
  .why-showcase-head > p { font-size: 14px; }
  .why-showcase-visual { min-height: 480px; border-radius: 24px; }
  .why-phone { width: 224px; height: 455px; border-radius: 38px; }
  .why-showcase-grid { grid-template-columns: 1fr; }
  .why-showcase-card { min-height: 230px; padding: 28px 26px; border-radius: 24px; }
  .why-showcase-card h3 { font-size: 23px; }
  .why-showcase-card p { font-size: 13px; }
  .why-showcase-card > span { font-size: 145px; }
}


/* =====================================================================
   VOWLY 4.5 — light palette fixes, readable final CTA, seamless marquee
   ===================================================================== */

/* The light theme uses the warm VOWLY palette instead of black panels. */
html[data-theme="light"] .home-hero {
  background:
    radial-gradient(circle at 18% 10%, rgba(190, 151, 142, .34), transparent 31%),
    radial-gradient(circle at 88% 18%, rgba(183, 151, 96, .18), transparent 25%),
    linear-gradient(180deg, #eadfd9 0%, #f3ebe7 100%);
  color: var(--text);
}
html[data-theme="light"] .home-hero::before {
  opacity: .48;
  background:
    radial-gradient(circle at 28% 10%, rgba(255,255,255,.72), transparent 30%),
    repeating-linear-gradient(125deg, transparent 0 50px, rgba(112,74,62,.028) 51px 52px);
}
html[data-theme="light"] .hero-layout {
  box-shadow: 0 34px 90px rgba(93, 58, 47, .15);
}
html[data-theme="light"] .hero-copy > p {
  color: color-mix(in srgb, var(--text) 68%, transparent);
}
html[data-theme="light"] .hero-speed {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  background: rgba(255,255,255,.74);
  color: var(--text);
}
html[data-theme="light"] .hero-stamp {
  background: rgba(255, 250, 247, .84);
}

html[data-theme="light"] .admin-showcase-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(183,151,96,.18), transparent 27%),
    radial-gradient(circle at 8% 86%, rgba(190,151,142,.25), transparent 30%),
    linear-gradient(135deg, #e8d7d1, #f4ebe7 68%, #eadfd8);
  color: var(--text);
}
html[data-theme="light"] .admin-showcase-copy > p,
html[data-theme="light"] .admin-showcase-section .small-note {
  color: var(--muted);
}
html[data-theme="light"] .admin-showcase-section .feature-checks li {
  color: var(--text);
}
html[data-theme="light"] .admin-showcase-section .button-light {
  background: var(--accent);
  color: #fff;
}
html[data-theme="light"] .home-admin-phones,
html[data-theme="light"] .admin-real-stage {
  filter: drop-shadow(0 26px 48px rgba(80, 48, 39, .18));
}

html[data-theme="light"] .process-visual {
  background:
    linear-gradient(145deg, rgba(255,255,255,.45), rgba(255,255,255,.08)),
    radial-gradient(circle at 50% 32%, #dbc4bd, #b98e82 72%);
  box-shadow: 0 24px 64px rgba(87, 52, 42, .17);
}
html[data-theme="light"] .process-visual::before {
  background: radial-gradient(circle at 50% 48%, transparent 0 42%, rgba(91,52,41,.12) 74%);
}
html[data-theme="light"] .process-visual > b { color: rgba(67, 40, 33, .75); }

/* Footer remains rich, but uses warm brown instead of black in light mode. */
html[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 72% 0, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(145deg, #765349, #5d4039);
}

/* Fix the washed-out final call-to-action in the light theme. */
.final-cta-inner { color: var(--text); }
.final-cta-inner > span { color: var(--accent); }
.final-cta h2 { color: var(--text); }
.final-cta p { color: var(--muted); }
.final-cta .button-light {
  background: var(--accent);
  color: #fff;
}
html[data-theme="dark"] .final-cta-inner { color: var(--text); }
html[data-theme="dark"] .final-cta h2 { color: var(--text); }
html[data-theme="dark"] .final-cta p { color: var(--muted); }

/* Full-width, seamless and permanently filled ticker. */
.marquee {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}
.marquee .marquee-track {
  width: max-content;
  min-width: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  animation: vowlyMarquee 30s linear infinite;
  will-change: transform;
}
.marquee .marquee-group {
  min-width: 100vw;
  flex: 0 0 auto;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  white-space: nowrap;
  animation: none;
}
.marquee .marquee-group span {
  flex: 0 0 auto;
  font-size: 12px;
}
.marquee .marquee-group i { flex: 0 0 auto; }
@keyframes vowlyMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 760px) {
  .marquee .marquee-track { animation-duration: 23s; }
  .marquee .marquee-group {
    min-width: max-content;
    padding: 11px 18px;
    gap: 24px;
  }
  .marquee .marquee-group span { font-size: 10px; }
}

/* =====================================================================
   VOWLY 4.6 — catalog typography, themed drawer and modern FAQ
   ===================================================================== */

/* Catalog heading: quieter, neater and easier to scan. */
.catalog-heading { max-width: 760px; }
.catalog-heading h1 {
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.05;
  letter-spacing: .045em;
  text-wrap: balance;
}
.catalog-category-list button {
  border-color: color-mix(in srgb, var(--line-strong) 58%, transparent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .015em;
}
html[data-theme="dark"] .catalog-category-list button {
  border-color: rgba(255,255,255,.16);
  background: #251f1c;
  color: #d6c8c1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 10px 28px rgba(0,0,0,.12);
}
html[data-theme="dark"] .catalog-category-list button:hover {
  border-color: color-mix(in srgb, var(--accent) 72%, #fff 12%);
  background: #2d2521;
  color: #fff;
}
html[data-theme="dark"] .catalog-category-list button.is-active {
  border-color: color-mix(in srgb, var(--accent) 84%, #fff 8%);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Right drawer: themed in both modes, without black blocks or numbering. */
.menu-backdrop {
  background: rgba(60, 43, 37, .28);
}
html[data-theme="dark"] .menu-backdrop {
  background: rgba(5, 4, 4, .50);
}
.main-nav {
  border-left: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background:
    radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 31%),
    #f8f2ef;
  color: #3d2924;
  box-shadow: -28px 0 90px rgba(82, 53, 44, .20);
}
.nav-panel-top {
  border-bottom: 1px solid rgba(109, 72, 61, .12);
  background: linear-gradient(135deg, #e8d8d2, #f1e6e2);
  color: #4b312b;
}
.nav-close { color: #4b312b; }
.nav-close:hover { background: rgba(111, 73, 62, .08); }
.nav-panel-title { color: #3f2a25; }
.main-nav .nav-links a {
  min-height: 62px;
  grid-template-columns: 1fr;
  gap: 0;
  border-color: rgba(92, 62, 53, .13);
  color: #4b3530;
}
.main-nav .nav-links a:first-child { border-top-color: rgba(92, 62, 53, .13); }
.main-nav .nav-links a:hover,
.main-nav .nav-links a.is-active {
  padding-left: 12px;
  color: var(--accent);
}
.main-nav .nav-links a span { display: none; }

html[data-theme="dark"] .main-nav {
  border-left-color: rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 88% 8%, rgba(190,151,142,.13), transparent 30%),
    #211b18;
  color: #f3eae5;
  box-shadow: -28px 0 90px rgba(0,0,0,.44);
}
html[data-theme="dark"] .nav-panel-top {
  border-bottom-color: rgba(255,255,255,.08);
  background: linear-gradient(135deg, #332824, #2a211e);
  color: #f4ebe6;
}
html[data-theme="dark"] .nav-close { color: #f4ebe6; }
html[data-theme="dark"] .nav-close:hover { background: rgba(255,255,255,.07); }
html[data-theme="dark"] .nav-panel-title { color: #f5ede8; }
html[data-theme="dark"] .main-nav .nav-links a {
  border-color: rgba(255,255,255,.10);
  color: #d5c8c1;
}
html[data-theme="dark"] .main-nav .nav-links a:first-child { border-top-color: rgba(255,255,255,.10); }
html[data-theme="dark"] .main-nav .nav-links a:hover,
html[data-theme="dark"] .main-nav .nav-links a.is-active { color: #e3a99b; }

.nav-manager-card {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-color: rgba(104, 67, 57, .14);
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(234,216,210,.68));
  box-shadow: 0 16px 38px rgba(86, 54, 45, .08);
}
.nav-manager-copy > span {
  display: block;
  color: #3f2b26;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.nav-manager-copy p {
  margin: 8px 0 0;
  color: #7b6962;
  font-size: 12px;
  line-height: 1.55;
}
.nav-manager-copy small {
  margin-top: 9px;
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .035em;
}
.nav-panel-note .nav-manager-link {
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 75%, transparent);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}
.nav-panel-note .nav-manager-link svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.nav-panel-note .nav-manager-link span { display: none; }
.nav-panel-note .nav-manager-link:hover {
  transform: translateY(-2px) rotate(-3deg);
  background: color-mix(in srgb, var(--accent) 88%, #000);
}
html[data-theme="dark"] .nav-manager-card {
  border-color: rgba(255,255,255,.10);
  background: linear-gradient(145deg, #302622, #2a211e);
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
}
html[data-theme="dark"] .nav-manager-copy > span { color: #f3e9e4; }
html[data-theme="dark"] .nav-manager-copy p { color: #b8aaa3; }

/* Modern FAQ composition. */
.faq-modern-hero {
  padding: 154px 0 68px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-soft) 82%, var(--bg)), var(--bg));
}
.faq-modern-hero::after {
  content: "FAQ";
  position: absolute;
  right: 2vw;
  bottom: -7vw;
  color: color-mix(in srgb, var(--accent) 7%, transparent);
  font-family: var(--serif);
  font-size: clamp(150px, 24vw, 420px);
  line-height: .75;
  pointer-events: none;
}
.faq-modern-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .58fr);
  align-items: end;
  gap: 70px;
}
.faq-modern-hero h1 {
  max-width: 900px;
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7.1vw, 106px);
  font-weight: 400;
  line-height: .90;
  letter-spacing: -.05em;
}
.faq-modern-lead { padding-bottom: 7px; }
.faq-modern-lead > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-modern-lead > a {
  min-height: 48px;
  padding: 0 18px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.faq-modern-lead > a:hover { transform: translateY(-2px); background: var(--surface); }
.faq-modern-lead svg {
  width: 29px;
  height: 29px;
  padding: 7px;
  border-radius: 50%;
  background: var(--accent);
  fill: #fff;
}

.faq-modern-section { padding: 72px 0 116px; }
.faq-modern-shell {
  display: grid;
  grid-template-columns: minmax(285px, .50fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: start;
}
.faq-modern-aside {
  min-height: 440px;
  padding: 38px;
  position: sticky;
  top: 110px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 32%),
    var(--surface);
  box-shadow: 0 22px 60px rgba(60, 41, 34, .09);
}
.faq-modern-aside::after {
  content: "?";
  position: absolute;
  right: -18px;
  bottom: -65px;
  color: color-mix(in srgb, var(--accent) 9%, transparent);
  font-family: var(--serif);
  font-size: 270px;
  line-height: 1;
}
.faq-modern-aside > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .20em;
}
.faq-modern-aside h2 {
  max-width: 310px;
  margin: 26px 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.faq-modern-aside > p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.faq-modern-meta {
  margin-top: 42px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.faq-modern-meta b {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}
.faq-modern-meta span {
  max-width: 90px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.faq-modern-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}
.faq-modern-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 12px 38px rgba(57, 39, 33, .055);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.faq-modern-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
}
.faq-modern-item.is-open {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  background: var(--surface);
}
.faq-modern-item button {
  min-height: 88px;
  padding: 17px 22px;
  grid-template-columns: 46px minmax(0, 1fr) 38px;
  gap: 17px;
  background: transparent;
}
.faq-question-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--accent);
  font-family: var(--serif);
  font-size: 19px;
}
.faq-modern-item button b {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.faq-modern-item button > i {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.faq-modern-item button > i span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 17px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}
.faq-modern-item button > i span:last-child { transform: rotate(90deg); }
.faq-modern-item.is-open button > i span:last-child { transform: rotate(0); }
.faq-modern-item > div > p {
  max-width: 790px;
  margin: 0 70px 0 85px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.faq-modern-item.is-open > div > p { margin-bottom: 26px; }
html[data-theme="dark"] .faq-modern-aside,
html[data-theme="dark"] .faq-modern-item {
  border-color: rgba(255,255,255,.10);
  background: #241e1b;
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}
html[data-theme="dark"] .faq-modern-item:hover,
html[data-theme="dark"] .faq-modern-item.is-open {
  border-color: color-mix(in srgb, var(--accent) 58%, rgba(255,255,255,.12));
  background: #2b231f;
}

@media (max-width: 920px) {
  .faq-modern-hero { padding-top: 128px; }
  .faq-modern-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-modern-lead { max-width: 650px; }
  .faq-modern-shell { grid-template-columns: 1fr; }
  .faq-modern-aside { min-height: auto; position: static; }
}

@media (max-width: 640px) {
  .catalog-heading h1 { font-size: 32px; letter-spacing: .03em; }
  .catalog-category-list button { font-size: 11px; }
  .nav-manager-card { grid-template-columns: 1fr auto; padding: 18px; }
  .nav-manager-copy > span { font-size: 20px; }
  .nav-manager-copy p { font-size: 11px; }
  .nav-panel-note .nav-manager-link { width: 52px; height: 52px; min-height: 52px; }
  .faq-modern-hero { padding: 112px 0 50px; }
  .faq-modern-hero h1 { font-size: 50px; }
  .faq-modern-section { padding: 50px 0 78px; }
  .faq-modern-aside { padding: 28px 24px; border-radius: 24px; }
  .faq-modern-aside h2 { font-size: 34px; }
  .faq-modern-item { border-radius: 20px; }
  .faq-modern-item button {
    min-height: 78px;
    padding: 14px 15px;
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 12px;
  }
  .faq-question-mark { width: 34px; height: 34px; }
  .faq-modern-item button b { font-size: 15px; }
  .faq-modern-item button > i { width: 32px; height: 32px; }
  .faq-modern-item button > i span { left: 9px; right: 9px; top: 15px; }
  .faq-modern-item > div > p { margin-left: 65px; margin-right: 22px; font-size: 13px; }
}
.faq-modern-item button[aria-expanded="true"] > i { transform: none; }

/* =====================================================================
   VOWLY 4.7 — compact rhythm, polished controls and richer motion
   ===================================================================== */

/* Header controls */
.theme-toggle {
  width: 68px !important;
  height: 42px !important;
  padding: 3px !important;
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line)) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--surface-soft) 78%, transparent) !important;
  color: var(--muted) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.50), 0 8px 24px rgba(75,48,40,.07);
  isolation: isolate;
}
.theme-toggle .theme-icon {
  position: relative !important;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  opacity: 1 !important;
  transform: none !important;
  transition: color .28s ease, transform .28s ease !important;
}
.theme-toggle .theme-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle .theme-icon-moon svg { fill: currentColor; stroke: none; }
.theme-toggle .theme-knob {
  position: absolute;
  z-index: 1;
  left: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 5px 16px rgba(74,46,38,.16);
  transition: transform .32s cubic-bezier(.22,.8,.25,1), background .25s ease;
}
html[data-theme="light"] .theme-toggle .theme-icon-sun,
html[data-theme="dark"] .theme-toggle .theme-icon-moon { color: var(--accent); }
html[data-theme="dark"] .theme-toggle .theme-knob { transform: translateX(28px); }
.theme-toggle:hover {
  border-color: var(--accent) !important;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-soft)) !important;
  color: var(--text) !important;
  transform: translateY(-1px);
}
.theme-toggle:hover .theme-icon-sun { transform: rotate(18deg) !important; }
.theme-toggle:hover .theme-icon-moon { transform: rotate(-10deg) !important; }
.language-link {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 22px rgba(75,48,40,.06);
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.language-link:hover { transform: translateY(-2px); }
.header-order,
.menu-toggle { box-shadow: 0 9px 22px rgba(71,44,36,.08); }

/* The drawer contact block now contains only the useful sentence and action. */
.nav-manager-card {
  padding: 18px 18px 18px 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}
.nav-manager-copy p {
  margin: 0;
  color: #5f4942;
  font-size: 13px;
  line-height: 1.55;
}
html[data-theme="dark"] .nav-manager-copy p { color: #d4c5be; }
.nav-panel-note .nav-manager-link {
  width: 54px;
  height: 54px;
  min-height: 54px;
}

/* Compact vertical rhythm on the home page. */
.home-catalog { padding: 62px 0 48px; }
.home-catalog .section-intro { margin-bottom: 34px; }
.home-catalog-more { margin-top: 34px; }
.why-showcase { padding: 54px 0 66px; }
.why-showcase-head { margin-bottom: 40px; }
.admin-showcase-section { padding-top: 72px; padding-bottom: 72px; }
.process-section { padding-top: 70px; padding-bottom: 70px; }
.process-head { margin-bottom: 38px; }
.extras-section { padding-top: 68px; padding-bottom: 68px; }
.extras-section .section-intro { margin-bottom: 38px; }
.final-cta { padding: 54px 0 44px; }
.final-cta-inner { padding-top: 42px; padding-bottom: 42px; }
.home-catalog + .why-showcase,
.why-showcase + .admin-showcase-section,
.admin-showcase-section + .process-section,
.process-section + .extras-section { margin-top: 0; }

/* More crafted reveal motion. */
.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(.992);
  filter: blur(4px);
  transition:
    opacity .72s cubic-bezier(.2,.75,.25,1),
    transform .72s cubic-bezier(.2,.75,.25,1),
    filter .72s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}
.text-drop {
  opacity: 0;
  transform: translate3d(0,-24px,0);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity .7s ease,
    transform .8s cubic-bezier(.18,.82,.25,1),
    clip-path .8s cubic-bezier(.18,.82,.25,1);
}
.text-drop.is-text-visible {
  opacity: 1;
  transform: translate3d(0,0,0);
  clip-path: inset(0 0 0 0);
}

/* Hover motion across primary interface elements. */
.button,
.header-order,
.menu-toggle,
.catalog-view-button,
.catalog-order-button {
  position: relative;
  overflow: hidden;
}
.button::before,
.header-order::before,
.catalog-order-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 34%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transition: left .55s ease;
}
.button:hover::before,
.header-order:hover::before,
.catalog-order-button:hover::before { left: 120%; }
.button:hover i,
.header-order:hover i { transform: translate(3px,-2px); }
.button i,
.header-order i { transition: transform .22s ease; }
.catalog-product-card,
.extra-card,
.why-showcase-card,
.process-steps li,
.faq-modern-item {
  transition: transform .32s cubic-bezier(.2,.72,.25,1), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.catalog-product-card:hover { transform: translateY(-7px); }
.catalog-product-card .catalog-phone-shell { transition: transform .42s cubic-bezier(.2,.75,.25,1), box-shadow .42s ease; }
.catalog-product-card:hover .catalog-phone-shell {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 28px 55px rgba(45,31,26,.17);
}
.extra-card:hover,
.why-showcase-card:hover,
.process-steps li:hover,
.faq-modern-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  box-shadow: 0 24px 56px rgba(62,42,35,.12);
}
.extra-card:hover > span { transform: rotate(-8deg) scale(1.08); }
.extra-card > span { transition: transform .3s ease; }
.home-admin-phone { transition: transform .42s cubic-bezier(.2,.75,.25,1), filter .35s ease; }
.home-admin-phones:hover .home-admin-phone-left { transform: translate(-9px,-7px) rotate(-10deg); }
.home-admin-phones:hover .home-admin-phone-main { transform: translateY(-11px) rotate(0); }
.home-admin-phones:hover .home-admin-phone-right { transform: translate(9px,-5px) rotate(10deg); }

/* Compact footer. */
.site-footer {
  margin-top: 18px;
  padding: 50px 0 16px;
  border-radius: 28px 28px 0 0;
}
.footer-grid {
  grid-template-columns: 1.25fr .42fr .42fr .72fr;
  gap: 28px;
  align-items: start;
}
.footer-brand img { width: 128px; }
.footer-brand p {
  max-width: 390px;
  margin: 14px 0 12px;
  font-size: 12px;
  line-height: 1.6;
}
.footer-brand > span { font-size: 8px; letter-spacing: .12em; }
.footer-column b,
.footer-contact b { margin-bottom: 13px; font-size: 10px; letter-spacing: .13em; }
.footer-column a,
.footer-contact a { margin-top: 8px; font-size: 12px; }
.footer-contact small { margin-top: 8px; font-size: 10px; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  font-size: 9px;
}
.footer-mark { bottom: -56px; font-size: 170px; }

@media (max-width: 980px) {
  .home-catalog { padding: 54px 0 42px; }
  .why-showcase { padding: 48px 0 58px; }
  .admin-showcase-section,
  .process-section,
  .extras-section { padding-top: 58px; padding-bottom: 58px; }
  .final-cta { padding: 44px 0 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .theme-toggle { width: 62px !important; height: 38px !important; }
  .theme-toggle .theme-knob { width: 28px; height: 28px; }
  html[data-theme="dark"] .theme-toggle .theme-knob { transform: translateX(26px); }
  .theme-toggle .theme-icon { width: 25px; height: 25px; }
  .home-catalog { padding: 46px 0 36px; }
  .home-catalog .section-intro { margin-bottom: 28px; }
  .home-catalog-more { margin-top: 28px; }
  .why-showcase { padding: 42px 0 50px; }
  .why-showcase-head { margin-bottom: 30px; }
  .admin-showcase-section,
  .process-section,
  .extras-section { padding-top: 50px; padding-bottom: 50px; }
  .final-cta { padding: 36px 0 28px; }
  .final-cta-inner { padding-top: 30px; padding-bottom: 30px; }
  .site-footer { margin-top: 10px; padding: 38px 0 14px; border-radius: 22px 22px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 24px; padding-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .text-drop { opacity: 1; transform: none; clip-path: none; }
}


/* =====================================================================
   VOWLY 4.8 — spacing and animation reliability fixes
   ===================================================================== */

/* Never hide headings independently from their sections. */
.text-drop,
.text-drop.is-text-visible,
main h1,
main h2 {
  opacity: 1;
  transform: none;
  clip-path: none;
  filter: none;
}
.reveal.is-visible h1,
.reveal.is-visible h2 {
  animation: vowlyHeadingDrop .68s cubic-bezier(.2,.78,.25,1) both;
}
@keyframes vowlyHeadingDrop {
  from { opacity: .25; transform: translate3d(0,-15px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}

/* Main screen: less empty space above and inside the first composition. */
.home-hero {
  min-height: auto;
  padding: 112px 0 30px;
}
.home-hero::before { top: 62px; }
.hero-layout {
  min-height: 565px;
  padding: 38px 56px 28px;
  gap: 38px;
}
.hero-copy h1 { margin-top: 14px; margin-bottom: 18px; }
.hero-copy > p { line-height: 1.62; }
.hero-buttons { margin-top: 23px; }
.hero-speed { margin-top: 24px; }
.hero-gallery {
  height: 570px;
  margin: -72px auto -18px;
}

/* Why-electronic cards: keep the decorative numerals visible and readable. */
.why-showcase-card > div {
  position: relative;
  z-index: 2;
}
.why-showcase-card > span {
  right: 20px;
  bottom: -4px;
  z-index: 1;
  font-size: 152px;
  color: color-mix(in srgb, var(--gold) 13%, transparent);
}
html[data-theme="dark"] .why-showcase-card > span {
  color: rgba(255,255,255,.065);
}
.why-showcase-head h2,
.catalog-heading h1 {
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: none !important;
  transform: none !important;
}

/* More compact right-side navigation drawer. */
.main-nav { width: clamp(360px, 28vw, 500px); }
.nav-panel-top {
  min-height: 62px;
  padding: 0 20px 0 26px;
}
.nav-close { width: 40px; height: 40px; }
.nav-close i { top: 19px; }
.nav-panel-body { padding: 30px 34px 26px; }
.nav-panel-title {
  margin-bottom: 18px;
  font-size: clamp(27px, 2vw, 34px);
}
.main-nav .nav-links a {
  min-height: 49px;
  font-size: 16px;
}
.nav-panel-note,
.nav-manager-card {
  margin-top: 20px;
  padding: 15px 16px;
  border-radius: 19px;
}
.nav-manager-copy p {
  font-size: 12px;
  line-height: 1.45;
}
.nav-panel-note .nav-manager-link {
  width: 48px;
  height: 48px;
  min-height: 48px;
}
.nav-panel-note .nav-manager-link svg { width: 22px; height: 22px; }

@media (max-width: 1180px) {
  .home-hero { padding-top: 104px; }
  .hero-layout {
    min-height: 540px;
    padding: 34px 40px 24px;
    gap: 24px;
  }
  .hero-gallery { height: 540px; margin-top: -56px; }
}

@media (max-width: 920px) {
  .home-hero { padding: 96px 0 26px; }
  .hero-layout {
    min-height: auto;
    padding: 34px 28px 28px;
  }
  .hero-gallery {
    height: 520px;
    margin: 4px auto -8px;
  }
  .main-nav { width: min(90vw, 460px); }
  .nav-panel-body { padding: 26px 26px 24px; }
}

@media (max-width: 640px) {
  .home-hero { padding: 84px 0 20px; }
  .hero-layout {
    padding: 26px 17px 22px;
    border-radius: 28px;
  }
  .hero-gallery { height: 402px; margin-top: 6px; }
  .why-showcase-card > span {
    bottom: -2px;
    font-size: 124px;
  }
  .main-nav { width: calc(100% - 10px); }
  .nav-panel-top { min-height: 58px; padding: 0 13px 0 18px; }
  .nav-panel-body { padding: 22px 18px 20px; }
  .nav-panel-title { margin-bottom: 12px; font-size: 25px; }
  .main-nav .nav-links a { min-height: 45px; font-size: 15px; }
  .nav-panel-note,
  .nav-manager-card { margin-top: 15px; padding: 13px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal.is-visible h1,
  .reveal.is-visible h2 { animation: none; }
}


/* =====================================================================
   VOWLY 4.9 — mobile two-column catalog and reordered hero composition
   ===================================================================== */

.hero-mobile-cta { display: none; }

@media (max-width: 680px) {
  /* Catalog cards stay two per row on phones, as in the supplied reference. */
  .catalog-showcase-inner {
    width: min(100% - 18px, 620px);
  }
  .catalog-design-grid,
  .home-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 42px;
  }
  .catalog-product-card,
  .home-catalog-product-card {
    min-width: 0;
    text-align: center;
  }
  .catalog-phone-preview,
  .home-catalog .catalog-phone-preview {
    height: 286px;
    align-items: flex-start;
  }
  .catalog-phone-shell,
  .home-catalog .catalog-phone-shell {
    width: 132px;
    height: 270px;
    border-width: 5px;
    border-radius: 24px;
    box-shadow: 0 12px 26px rgba(24,18,16,.12);
  }
  .catalog-phone-shell::before,
  .home-catalog .catalog-phone-shell::before {
    top: 4px;
    width: 46px;
    height: 12px;
  }
  .catalog-phone-shell::after,
  .home-catalog .catalog-phone-shell::after {
    bottom: 3px;
    width: 40px;
    height: 3px;
  }
  .catalog-phone-shell img,
  .home-catalog .catalog-phone-shell img {
    border-radius: 18px;
  }
  .catalog-product-info,
  .home-catalog .catalog-product-info {
    max-width: none;
    margin: 0;
    padding: 9px 2px 0;
    text-align: center;
  }
  .catalog-product-head,
  .home-catalog .catalog-product-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .catalog-product-info h3,
  .home-catalog .catalog-product-info h3 {
    width: 100%;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
  }
  .catalog-product-info p,
  .home-catalog .catalog-product-info p {
    min-height: 30px;
    margin: 5px 0 0;
    font-size: 9px;
    line-height: 1.45;
    text-align: center;
  }
  .catalog-product-price,
  .home-catalog .catalog-product-price {
    order: 3;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1;
  }
  .catalog-product-actions,
  .home-catalog .catalog-product-actions {
    margin-top: 13px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .catalog-view-button,
  .catalog-order-button {
    width: 100%;
    min-height: 34px;
    padding: 0 8px;
    font-size: 10px;
  }

  /* Mobile hero order: heading and copy, phones, then the single catalog CTA. */
  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero-copy {
    order: 1;
    text-align: center;
  }
  .hero-copy .hero-buttons,
  .hero-copy .hero-speed {
    display: none;
  }
  .hero-copy h1 {
    margin: 12px auto 14px;
  }
  .hero-copy > p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-gallery {
    order: 2;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 0;
  }
  .hero-mobile-cta {
    order: 3;
    display: flex;
    justify-content: center;
    padding: 10px 0 2px;
  }
  .hero-mobile-cta .button {
    width: min(100%, 310px);
    min-height: 46px;
  }
}

@media (max-width: 390px) {
  .catalog-design-grid,
  .home-design-grid {
    column-gap: 9px;
    row-gap: 38px;
  }
  .catalog-phone-preview,
  .home-catalog .catalog-phone-preview {
    height: 262px;
  }
  .catalog-phone-shell,
  .home-catalog .catalog-phone-shell {
    width: 120px;
    height: 246px;
  }
  .catalog-product-info h3,
  .home-catalog .catalog-product-info h3 {
    font-size: 11px;
  }
  .catalog-product-info p,
  .home-catalog .catalog-product-info p {
    font-size: 8.5px;
  }
}


/* =====================================================================
   VOWLY 5.0 — compact prices hero with invitation previews
   ===================================================================== */

/* The old internal-page black strip sat directly below the light header. */
.prices-hero {
  padding: 102px 0 34px;
  background:
    radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 28%),
    radial-gradient(circle at 88% 24%, color-mix(in srgb, var(--gold) 9%, transparent), transparent 24%),
    transparent;
  border-bottom: 0;
}

.prices-hero-card {
  min-height: 390px;
  padding: 38px 42px 34px 48px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(350px, .72fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(132deg, color-mix(in srgb, var(--surface) 97%, transparent), color-mix(in srgb, var(--surface-soft) 78%, var(--surface))),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.prices-hero-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -100px;
  top: -150px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
  box-shadow: 0 0 0 38px color-mix(in srgb, var(--gold) 4%, transparent), 0 0 0 76px color-mix(in srgb, var(--accent) 3%, transparent);
  pointer-events: none;
}

.prices-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.prices-hero-copy h1 {
  max-width: 700px;
  margin: 16px 0 18px;
  font-family: var(--serif);
  font-size: clamp(47px, 5.8vw, 78px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
}

.prices-hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.prices-hero-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.prices-hero-points span {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.prices-hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent);
}

.prices-hero-visual {
  min-height: 314px;
  position: relative;
  z-index: 2;
  align-self: end;
}

.prices-phone {
  position: absolute;
  bottom: -38px;
  display: block;
  overflow: hidden;
  border: 7px solid #171515;
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(42, 31, 26, .20);
  transform-origin: center bottom;
  transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s ease;
}

.prices-phone::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080808;
}

.prices-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.prices-phone-1 {
  width: 158px;
  height: 316px;
  left: 8%;
  z-index: 2;
  transform: rotate(-7deg) translateY(12px);
}

.prices-phone-2 {
  width: 178px;
  height: 350px;
  left: 35%;
  z-index: 4;
  transform: rotate(1deg);
}

.prices-phone-3 {
  width: 152px;
  height: 304px;
  right: 2%;
  z-index: 1;
  transform: rotate(8deg) translateY(18px);
}

.prices-hero-visual:hover .prices-phone-1 { transform: rotate(-9deg) translate(-5px, 2px); }
.prices-hero-visual:hover .prices-phone-2 { transform: rotate(0) translateY(-8px); box-shadow: 0 31px 70px rgba(42, 31, 26, .25); }
.prices-hero-visual:hover .prices-phone-3 { transform: rotate(10deg) translate(5px, 7px); }

.prices-hero-badge {
  position: absolute;
  right: 2%;
  top: 22px;
  z-index: 6;
  width: 88px;
  height: 88px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--gold) 50%, var(--line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--text);
  box-shadow: 0 15px 35px rgba(55,37,29,.12);
  backdrop-filter: blur(12px);
  transform: rotate(7deg);
}

.prices-hero-badge b,
.prices-hero-badge small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.prices-hero-badge strong {
  margin: 3px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

html[data-theme="dark"] .prices-hero {
  background:
    radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 28%),
    radial-gradient(circle at 88% 24%, color-mix(in srgb, var(--gold) 8%, transparent), transparent 24%),
    transparent;
}

html[data-theme="dark"] .prices-hero-card {
  background: linear-gradient(132deg, #211b18, #2b221e);
}

/* Keep the price page visually connected to the hero instead of leaving a void. */
.prices-hero + .price-designs { padding-top: 58px; }

@media (max-width: 1040px) {
  .prices-hero-card {
    grid-template-columns: minmax(0, 1fr) 360px;
    padding-left: 38px;
  }
  .prices-hero-copy h1 { font-size: clamp(45px, 6.2vw, 68px); }
  .prices-phone-1 { left: 0; }
  .prices-phone-2 { left: 29%; }
}

@media (max-width: 820px) {
  .prices-hero { padding: 92px 0 26px; }
  .prices-hero-card {
    min-height: auto;
    padding: 31px 28px 0;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .prices-hero-copy { max-width: 650px; margin: 0 auto; }
  .prices-hero-copy h1 { margin-left: auto; margin-right: auto; }
  .prices-hero-copy > p { margin-left: auto; margin-right: auto; }
  .prices-hero-points { justify-content: center; }
  .prices-hero-visual { width: min(100%, 490px); min-height: 290px; margin: 0 auto; }
  .prices-phone-1 { width: 138px; height: 274px; left: 9%; }
  .prices-phone-2 { width: 155px; height: 305px; left: 34%; }
  .prices-phone-3 { width: 132px; height: 264px; right: 7%; }
  .prices-hero-badge { right: 5%; top: 30px; width: 78px; height: 78px; }
  .prices-hero + .price-designs { padding-top: 44px; }
}

@media (max-width: 520px) {
  .prices-hero { padding: 78px 0 20px; }
  .prices-hero-card { padding: 24px 16px 0; border-radius: 27px; }
  .prices-hero-copy h1 { margin-top: 12px; font-size: 43px; line-height: .96; }
  .prices-hero-copy > p { font-size: 12px; line-height: 1.6; }
  .prices-hero-points { margin-top: 17px; gap: 6px; }
  .prices-hero-points span { min-height: 30px; padding: 0 10px; font-size: 7px; }
  .prices-hero-visual { min-height: 238px; }
  .prices-phone { border-width: 5px; border-radius: 24px; bottom: -30px; }
  .prices-phone::before { top: 4px; width: 44px; height: 11px; }
  .prices-phone-1 { width: 108px; height: 218px; left: 3%; }
  .prices-phone-2 { width: 122px; height: 242px; left: 33%; }
  .prices-phone-3 { width: 104px; height: 210px; right: 2%; }
  .prices-hero-badge { width: 66px; height: 66px; right: 1%; top: 20px; }
  .prices-hero-badge strong { font-size: 15px; }
  .prices-hero + .price-designs { padding-top: 36px; }
}

/* ===== VOWLY 6.0: badges, promo checkout, polished order form ===== */
.catalog-phone-preview{position:relative}.catalog-badge{position:absolute;right:8%;top:3%;z-index:6;min-width:54px;height:54px;padding:0 12px;border-radius:50%;display:grid;place-items:center;background:#ef315c;color:#fff;font-size:10px;font-weight:800;letter-spacing:.08em;box-shadow:0 12px 30px rgba(239,49,92,.28)}.catalog-badge.badge-hit,.product-card-badge.badge-hit{background:#c99a4d}.catalog-price-stack{display:flex;align-items:flex-end;gap:9px}.catalog-price-stack s{color:var(--muted);font-size:10px}.product-card-badge{background:#ef315c!important;color:#fff!important}.product-labels .badge-new,.product-labels .badge-hit{color:#fff}.order-modal{width:min(980px,calc(100% - 24px));border-radius:30px;overflow:hidden}.order-modal-grid{grid-template-columns:.72fr 1.28fr;min-height:650px}.order-aside{padding:48px 40px;background:linear-gradient(155deg,#2a1d19,#513128);position:relative;overflow:hidden}.order-aside::after{content:"V";position:absolute;right:-40px;bottom:-105px;font:300px var(--serif);color:rgba(255,255,255,.035)}.order-aside h2{font-size:53px;line-height:.95}.order-benefits{display:grid;gap:10px;margin-top:30px}.order-benefits p{margin:0;display:flex;gap:9px;align-items:flex-start;color:rgba(255,255,255,.66);font-size:10px;line-height:1.45}.order-benefits i{width:19px;height:19px;flex:none;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.12);color:#e5b3a7;font-style:normal}.order-form-wrap{padding:38px 42px}.order-product-summary{display:grid;grid-template-columns:62px 1fr auto;gap:14px;align-items:center;padding:12px;border:1px solid var(--line);border-radius:18px;background:color-mix(in srgb,var(--surface) 92%,var(--surface-soft))}.order-product-summary img{width:62px;height:76px;border-radius:13px;object-fit:cover;object-position:top;background:var(--surface-soft)}.order-product-summary>div{display:grid;gap:3px}.order-product-summary span{color:var(--muted);font-size:8px;text-transform:uppercase;letter-spacing:.1em}.order-product-summary strong{font-family:var(--serif);font-size:22px;font-weight:400}.order-product-summary>b{font-family:var(--serif);font-size:20px;font-weight:400}.order-form{margin-top:18px;gap:14px}.order-two-col{display:grid;grid-template-columns:1fr 1fr;gap:12px}.promo-control{display:grid;grid-template-columns:1fr auto;border:1px solid var(--line);border-radius:999px;background:var(--bg);overflow:hidden}.promo-control input{border:0!important;box-shadow:none!important;background:transparent!important;min-width:0}.promo-control button{min-width:105px;border:0;border-left:1px solid var(--line);background:var(--surface);font-size:9px;font-weight:800;color:var(--accent);transition:.2s}.promo-control button:hover{background:var(--accent);color:#fff}.promo-control button.is-applied{background:var(--text);color:var(--bg)}#promoMessage.is-success{color:#41845c}#promoMessage.is-error{color:#b34a4a}.order-price-box{padding:15px 16px;border-radius:17px;background:color-mix(in srgb,var(--surface-soft) 62%,transparent);display:grid;gap:9px}.order-price-box>div{display:flex;justify-content:space-between;gap:20px;font-size:10px}.order-price-box b{font-weight:700}.order-price-box em{font-style:normal;color:var(--accent)}.order-total-row{padding-top:10px;border-top:1px solid var(--line);align-items:baseline}.order-total-row strong{font-family:var(--serif);font-size:25px;font-weight:400}.order-success>a{display:inline-flex;margin-top:16px;padding:11px 17px;border-radius:999px;background:var(--text);color:var(--bg);font-size:10px;font-weight:800}
@media(max-width:780px){.order-modal-grid{grid-template-columns:1fr}.order-aside{display:none}.order-form-wrap{padding:48px 22px 24px}.order-modal{border-radius:24px}.order-product-summary{grid-template-columns:54px 1fr auto}.order-product-summary img{width:54px;height:66px}.order-product-summary strong{font-size:19px}.order-product-summary>b{font-size:17px}}
@media(max-width:520px){.order-form-wrap{padding:45px 14px 18px}.order-two-col{grid-template-columns:1fr}.order-product-summary{grid-template-columns:48px 1fr}.order-product-summary>b{grid-column:2}.order-product-summary img{width:48px;height:60px}.promo-control button{min-width:92px}.catalog-badge{width:44px;height:44px;min-width:44px;font-size:8px;right:4%}.catalog-price-stack{flex-direction:column;align-items:flex-end;gap:1px}}
.price-row-value{display:grid;justify-items:end;gap:3px}.price-row-value s{font-size:10px;color:var(--muted)}.price-row-value strong{font-family:var(--serif);font-size:24px;font-weight:400}
@media(max-width:640px){.price-row-value{grid-column:2;justify-items:start}.price-row-value strong{font-size:20px}}

/* ===== VOWLY 6.1: compact order form and reliable modal scrolling ===== */
.order-modal{
  width:min(720px,calc(100% - 24px));
  max-height:calc(100dvh - 24px);
  padding:0;
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  border-radius:28px;
  background:var(--surface);
  scrollbar-width:thin;
  scrollbar-color:var(--accent-soft) transparent;
}
.order-modal::-webkit-scrollbar{width:7px}
.order-modal::-webkit-scrollbar-thumb{background:var(--accent-soft);border-radius:999px}
.order-modal-grid{
  display:block;
  min-height:0;
  border-radius:inherit;
  overflow:visible;
}
.order-aside{display:none!important}
.order-form-wrap{
  min-width:0;
  padding:54px 34px 28px;
}
.modal-close{
  position:sticky;
  float:right;
  right:14px;
  top:14px;
  margin:14px 14px -44px 0;
  width:38px;
  height:38px;
  z-index:20;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background:color-mix(in srgb,var(--surface) 90%,transparent);
  color:var(--text);
  box-shadow:0 8px 22px rgba(43,31,26,.08);
  backdrop-filter:blur(12px);
}
.order-product-summary{
  grid-template-columns:58px minmax(0,1fr) auto;
  gap:13px;
  padding:11px 14px 11px 11px;
  border-radius:18px;
}
.order-product-summary img{width:58px;height:70px;border-radius:12px}
.order-product-summary strong{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:21px;
}
.order-product-summary>b{font-size:19px;white-space:nowrap}
.order-form{
  margin-top:18px;
  gap:13px;
}
.order-form label{gap:6px}
.order-form label>span{font-size:10px}
.order-form input,
.order-form textarea{
  min-height:50px;
  padding:12px 15px;
  background:color-mix(in srgb,var(--bg) 88%,var(--surface));
}
.order-field-main input{font-size:17px}
.promo-control{min-height:50px;border-radius:16px}
.promo-control button{min-width:112px;font-size:9px}
.order-price-box{
  padding:13px 15px;
  border-radius:16px;
  gap:7px;
}
.order-total-row strong{font-size:23px}
.order-consent{
  grid-template-columns:18px 1fr!important;
  gap:9px!important;
  align-items:start;
  margin-top:1px;
}
.order-consent span{font-size:9px!important;line-height:1.45}
.submit-button{
  min-height:50px;
  position:relative;
  z-index:2;
}
.form-message{min-height:14px}
.order-success{padding:56px 20px 36px}

@media(max-width:640px){
  .order-modal{
    width:calc(100% - 12px);
    max-height:calc(100dvh - 12px);
    border-radius:22px;
  }
  .order-form-wrap{padding:50px 14px 16px}
  .modal-close{right:8px;top:8px;margin:8px 8px -38px 0;width:34px;height:34px;font-size:20px}
  .order-product-summary{grid-template-columns:48px minmax(0,1fr) auto;padding:9px 10px 9px 9px;gap:10px}
  .order-product-summary img{width:48px;height:58px}
  .order-product-summary strong{font-size:17px}
  .order-product-summary>b{font-size:15px}
  .order-form{margin-top:14px;gap:11px}
  .order-form input{min-height:47px}
  .promo-control{min-height:47px;grid-template-columns:minmax(0,1fr) 94px}
  .promo-control button{min-width:0;padding:0 8px}
  .order-price-box{padding:12px 13px}
  .submit-button{min-height:48px}
}

/* ===== VOWLY 6.2: customer name and flexible contact method ===== */
.contact-method-field{
  min-width:0;
  margin:0;
  padding:0;
  border:0;
}
.contact-method-field legend{
  margin:0 0 7px;
  padding:0;
  color:var(--text);
  font-size:10px;
  font-weight:700;
}
.contact-methods{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.contact-methods label{
  display:block;
  min-width:0;
  cursor:pointer;
}
.contact-methods input{
  position:absolute;
  width:1px!important;
  height:1px!important;
  min-height:0!important;
  opacity:0;
  pointer-events:none;
}
.contact-methods span{
  min-height:44px;
  padding:0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:14px;
  background:color-mix(in srgb,var(--bg) 78%,var(--surface));
  color:var(--muted);
  font-size:10px!important;
  font-weight:750;
  transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.contact-methods label:hover span{
  border-color:var(--accent-soft);
  color:var(--text);
  transform:translateY(-1px);
}
.contact-methods input:checked + span{
  border-color:var(--accent);
  background:var(--accent);
  color:#fff;
  box-shadow:0 8px 20px color-mix(in srgb,var(--accent) 22%,transparent);
}
.contact-methods input:focus-visible + span{
  outline:3px solid color-mix(in srgb,var(--accent) 20%,transparent);
  outline-offset:2px;
}
html[data-theme="dark"] .contact-methods span{
  background:color-mix(in srgb,var(--surface-soft) 72%,transparent);
}
.order-field small{
  line-height:1.4;
}
@media(max-width:420px){
  .contact-methods{gap:6px}
  .contact-methods span{min-height:41px;padding:0 5px;font-size:9px!important}
}

/* ===== VOWLY 6.3: supplied light/dark logos ===== */
.theme-logo-wrap{
  position:relative;
  display:block;
  flex:0 0 auto;
  width:178px;
  height:54px;
}
.theme-logo-wrap .theme-logo{
  position:absolute;
  inset:0;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  object-fit:contain;
  object-position:left center;
  transition:opacity .22s ease,transform .22s ease;
}
.theme-logo-dark{opacity:0;visibility:hidden;transform:translateY(3px)}
html[data-theme="dark"] .theme-logo-light{opacity:0;visibility:hidden;transform:translateY(-3px)}
html[data-theme="dark"] .theme-logo-dark{opacity:1;visibility:visible;transform:none}
.brand{gap:16px}
.brand small{max-width:118px}
.footer-brand .theme-logo-wrap{width:190px;height:60px;margin-bottom:8px}
@media(max-width:920px){.theme-logo-wrap{width:156px;height:48px}.brand small{display:none}}
@media(max-width:640px){.theme-logo-wrap{width:132px;height:42px}.footer-brand .theme-logo-wrap{width:170px;height:54px}}
