:root {
  --cream: #f3eee4;
  --cream-soft: #efe9dc;
  --white: #fbf9f4;
  --ink: #1e1b16;
  --ink-soft: #2a261f;
  --gold: #be955c;
  --gold-soft: #d3b489;
  --muted: #6f6a60;
  --line: #e2dbcc;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 20px 60px rgba(30, 27, 22, 0.12);
  --font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}

.hero__title em,
.section__head h2 em,
.contact__content h2 em {
  font-size: 1.06em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.badge--light {
  background: transparent;
  border-color: rgba(243, 238, 228, 0.25);
  color: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 27, 22, 0.25);
}

.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 238, 228, 0.85);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(30, 27, 22, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: block;
  width: 42px;
  height: 42px;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 0.95rem; letter-spacing: 0.06em; }
.brand__text small { font-size: 0.62rem; letter-spacing: 0.34em; color: var(--muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__cta { display: none; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding-block: 56px 40px; }

.hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-block: 26px 22px;
}

.hero__text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  gap: 44px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__meta-item svg { color: var(--ink); flex-shrink: 0; }
.hero__meta-item strong { display: block; font-size: 0.92rem; }
.hero__meta-item span { font-size: 0.8rem; color: var(--muted); }

.dots { display: flex; }
.dots i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--cream);
}
.dots i:first-child { background: var(--gold-soft); }
.dots i:last-child { background: var(--muted); margin-left: -10px; }

.hero__visual {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 34px 34px 20px;
  box-shadow: var(--shadow);
}

.showcase {
  position: relative;
  padding-bottom: 8px;
}

.laptop { width: 88%; margin-inline: auto; }

.laptop__screen {
  background: #0d0b09;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  border: 1px solid #3a352c;
  border-bottom: none;
}

.laptop__base {
  height: 12px;
  background: linear-gradient(#4a443a, #2a261f);
  border-radius: 0 0 14px 14px;
  width: 108%;
  margin-left: -4%;
}

.mini-browser {
  background: var(--cream);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.mini-browser__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}

.mini-dot { width: 7px; height: 7px; border-radius: 50%; }
.mini-dot--r { background: #e0685c; }
.mini-dot--y { background: #e3b341; }
.mini-dot--g { background: #57ab5a; }

.mini-url {
  flex: 1;
  margin-left: 6px;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.55rem;
  color: var(--muted);
  padding: 3px 10px;
  max-width: 180px;
}

.mini-site { padding: 14px 18px 18px; }

.mini-site__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-logo {
  display: block;
  width: 16px;
  height: 16px;
}

.mini-site__nav b { font-size: 0.55rem; letter-spacing: 0.05em; }

.mini-links { display: flex; gap: 6px; margin-left: auto; margin-right: 8px; }
.mini-links i { width: 22px; height: 3px; border-radius: 2px; background: var(--line); }

.mini-pill {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.45rem;
  padding: 3px 8px;
  border-radius: 999px;
}

.mini-site__hero p {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mini-line {
  display: block;
  width: 46%;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  margin-block: 8px 10px;
}

.mini-btns { display: flex; gap: 6px; }

.mini-b-dark {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.45rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
}

.mini-b-light {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.45rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
}

.mini-site__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.mini-site__cards span {
  height: 58px;
  border-radius: 6px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
}

.phone {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 21%;
  min-width: 96px;
  background: #0d0b09;
  border: 1px solid #3a352c;
  border-radius: 18px;
  padding: 7px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.phone__notch {
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: #3a352c;
  margin: 2px auto 6px;
}

.phone__screen {
  background: var(--cream);
  border-radius: 12px;
  padding: 10px 9px 12px;
}

.mini-logo--phone { margin-bottom: 7px; }

.phone__screen p {
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 7px;
}

.ph-block {
  display: block;
  height: 26px;
  border-radius: 5px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  margin-top: 9px;
}

.ph-line {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  margin-top: 6px;
}

.ph-line--short { width: 60%; }

.showcase__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 14px 20px;
}

.showcase__bar small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.showcase__bar strong { font-size: 0.95rem; }

.features { padding-block: 24px 10px; }

.features__card {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 13px;
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--gold);
  flex-shrink: 0;
}

.feature strong { display: block; font-size: 0.9rem; line-height: 1.25; }
.feature span { font-size: 0.76rem; color: var(--muted); }

.section { padding-block: 90px; }

.section__head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section__head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-block: 22px 16px;
}

.section__head p { color: var(--muted); font-size: 1.02rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card__num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.service-card h3 { font-size: 1.25rem; margin-block: 12px 10px; }

.service-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 18px; }

.service-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  margin-bottom: 7px;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.service-card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.service-card--accent p { color: #b7b0a3; }

.service-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  background: transparent;
  border: 1.5px dashed var(--gold-soft);
}

.service-card--cta:hover { box-shadow: none; border-color: var(--gold); }

.service-card__cta-text {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-card--cta > p:not(.service-card__cta-text) { margin-bottom: 4px; }

.section--dark {
  background: var(--ink);
  color: var(--cream);
}

.section--dark .section__head p { color: #b7b0a3; }

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 260px;
  padding: 36px 28px;
  border: 1.5px dashed rgba(243, 238, 228, 0.25);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.slot__badge {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7b0a3;
  border: 1px solid rgba(243, 238, 228, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
}

.slot__title em { font-size: 2.1rem; color: var(--gold-soft); }

.slot__text {
  font-size: 0.9rem;
  color: #b7b0a3;
  max-width: 26ch;
}

.slot--cta {
  border-style: solid;
  border-color: rgba(190, 149, 92, 0.6);
  background: rgba(190, 149, 92, 0.08);
}

.slot--cta:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(190, 149, 92, 0.14);
}

.slot__badge--gold {
  color: var(--gold-soft);
  border-color: rgba(190, 149, 92, 0.5);
}

.slot__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 11px 24px;
  border: 1px solid var(--cream);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  transition: background 0.25s ease, color 0.25s ease;
}

.slot--cta:hover .slot__btn { background: var(--cream); color: var(--ink); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}

.step__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 18px;
}

.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.section--contact { padding-top: 40px; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact__content h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-block: 22px 16px;
}

.contact__content > p { color: var(--muted); margin-bottom: 30px; }

.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  margin-bottom: 14px;
}

.contact__list svg { color: var(--gold); flex-shrink: 0; }

.contact__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
}

.form-field__optional {
  font-weight: 500;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea { resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 149, 92, 0.18);
}

.form-note {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(87, 171, 90, 0.12);
  border: 1px solid rgba(87, 171, 90, 0.35);
  color: #2e6b30;
  font-size: 0.9rem;
}

.form-note--error {
  background: rgba(224, 104, 92, 0.12);
  border-color: rgba(224, 104, 92, 0.4);
  color: #a83a2e;
}

.form-field--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: 40px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand--footer .brand__mark {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(243, 238, 228, 0.2);
}
.brand--footer .brand__text small { color: #b7b0a3; }

.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }

.footer__nav a {
  font-size: 0.9rem;
  color: #b7b0a3;
  transition: color 0.2s ease;
}

.footer__nav a:hover { color: var(--cream); }

.footer__copy { font-size: 0.8rem; color: #8a8578; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay2 { transition-delay: 0.24s; }
.reveal--delay3 { transition-delay: 0.36s; }

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

@media (max-width: 1080px) {
  .features__card { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .works__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__content { text-align: left; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .header__cta { display: none; }
}

@media (max-width: 760px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px 4%;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: 90;
  }

  .nav.is-open { transform: translateY(0); }

  .nav__link { padding: 12px 8px; font-size: 1.05rem; }
  .nav__link::after { display: none; }

  .nav__cta { display: inline-flex; justify-content: center; margin-top: 10px; }

  .features__card { grid-template-columns: 1fr 1fr; padding: 24px; }
  .works__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding-block: 64px; }
  .hero__meta { flex-direction: column; gap: 18px; }
  .contact__form { padding: 26px 20px; }
}

@media (max-width: 480px) {
  .features__card { grid-template-columns: 1fr; }
  .phone { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

.hero__content--animated > * {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__content--animated > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content--animated > *:nth-child(2) { animation-delay: 0.15s; }
.hero__content--animated > *:nth-child(3) { animation-delay: 0.3s; }
.hero__content--animated > *:nth-child(4) { animation-delay: 0.45s; }
.hero__content--animated > *:nth-child(5) { animation-delay: 0.6s; }

.showcase {
  perspective: 1000px;
}

.showcase .laptop,
.showcase .phone {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.35s ease-out;
  will-change: transform;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

.phone { animation: float 5s ease-in-out infinite; }

.btn--dark {
  position: relative;
  overflow: hidden;
}

.btn--dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(243, 238, 228, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn--dark:hover::after { left: 130%; }

.section--proof { padding-top: 70px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 80px;
}

.stat { text-align: center; }

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.stat > span {
  font-size: 0.88rem;
  color: #b7b0a3;
}

.google-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(520px, 100%);
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.google-cta svg { flex-shrink: 0; }

.google-cta span:not(.arrow) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.google-cta strong { font-size: 1rem; }
.google-cta small { font-size: 0.85rem; color: var(--muted); }
.google-cta .arrow { color: var(--gold); font-size: 1.1rem; }

@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 760px) {
  .stats { padding: 34px 24px; margin-bottom: 56px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content--animated > * { animation: none; }
  .phone { animation: none; }
  .showcase .laptop, .showcase .phone { transform: none; }
}

.container--narrow { width: min(820px, 92%); margin-inline: auto; }

.legal { padding-block: 60px 90px; }

.legal h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-block: 22px 10px;
}

.legal__updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 44px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-block: 40px 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal h3 { font-size: 1.05rem; margin-block: 20px 8px; }

.legal p, .legal li { color: var(--ink-soft); font-size: 0.97rem; }

.legal p { margin-bottom: 12px; }

.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }

.legal a { color: var(--gold); font-weight: 600; }
.legal a:hover { text-decoration: underline; }

.legal mark {
  background: rgba(227, 179, 65, 0.25);
  border-radius: 4px;
  padding: 1px 6px;
  font-style: italic;
  color: var(--ink);
}

.header--simple .header__inner { justify-content: space-between; }

.footer__copy a { color: #b7b0a3; text-decoration: underline; }
.footer__copy a:hover { color: var(--cream); }

.form-rgpd {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.form-rgpd a { color: var(--gold); text-decoration: underline; }

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  width: min(860px, 100%);
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.plan h3 {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.plan__price {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  line-height: 1.1;
  margin-block: 10px 12px;
}

.plan__price span {
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--muted);
}

.plan__gift {
  align-self: flex-start;
  background: rgba(190, 149, 92, 0.12);
  border: 1px solid rgba(190, 149, 92, 0.4);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 13px;
  margin-bottom: 22px;
}

.plan ul {
  flex: 1;
  margin-bottom: 28px;
}

.plan li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.plan--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.plan--featured .plan__price span { color: #b7b0a3; }

.plan__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan--featured .btn--outline {
  border-color: var(--cream);
  color: var(--cream);
}

.plan--featured .btn--outline:hover {
  background: var(--cream);
  color: var(--ink);
}

.plans__note {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.faq {
  width: min(820px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item[open] { border-color: var(--gold-soft); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
