@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}

:root {
  --coral: #ff6b6b;
  --coral-deep: #e85d4c;
  --teal: #4ecdc4;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --paper: #ffffff;
  --mist: #f8fafc;
  --soft: #f1f5f9;
  --shadow: 0 10px 25px -3px rgb(15 23 42 / 0.08), 0 4px 6px -2px rgb(15 23 42 / 0.04);
  --radius: 1.25rem;
  --grad: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  --focus: 0 0 0 3px rgb(78 205 196 / 0.45);
  --max: 72rem;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  font-size: 1.05rem;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 80;
  background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: .75rem;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-soft { background: linear-gradient(180deg, #fff, #f8fafc); }
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 46rem; }
.center .lead { margin-inline: auto; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--muted); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; font-size: .78rem;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.03em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 750; }
h3 { font-size: 1.2rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3rem; padding: .85rem 1.35rem; border-radius: 1rem;
  text-decoration: none; font-weight: 600; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff; background: var(--grad); box-shadow: 0 10px 20px rgb(255 107 107 / 0.22);
}
.btn-secondary {
  background: #fff; border-color: var(--line); color: var(--ink);
}
.btn-ghost { background: transparent; color: var(--ink); }
.btn-block { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(226 232 240 / 0.8);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 4.25rem; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; min-width: 0; }
.brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.brand > span { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name { font-weight: 700; font-size: 1.05rem; }
.brand-sub { font-size: .75rem; color: #6b7280; margin-top: -2px; }
.nav-desktop { display: none; align-items: center; gap: .85rem; }
.nav-desktop a { text-decoration: none; color: #374151; font-weight: 500; }
.nav-desktop a:hover { color: var(--coral); }
.menu-toggle {
  width: 2.75rem; height: 2.75rem; border: 0; background: transparent;
  display: inline-flex; align-items: center; justify-content: center; border-radius: .8rem;
}
.nav-mobile {
  display: none; border-top: 1px solid var(--line); padding: 1rem 0 1.25rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a, .nav-mobile .btn { display: block; padding: .7rem 0; text-decoration: none; }
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--line); border-radius: .8rem;
  min-height: 2.5rem; padding: 0 .7rem; cursor: pointer;
}
.lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + .4rem);
  background: #fff; border: 1px solid var(--line); border-radius: .9rem;
  box-shadow: var(--shadow); min-width: 9rem; padding: .4rem;
}
.lang-menu.is-open { display: grid; }
.lang-menu a { display: flex; gap: .5rem; align-items: center; padding: .55rem .7rem; text-decoration: none; border-radius: .6rem; }
.lang-menu a:hover { background: var(--soft); }
.flag { width: 1.15rem; height: .85rem; border-radius: 2px; object-fit: cover; }

.hero {
  position: relative; overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
}
.hero-shapes, .hero-shapes span {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-shapes span {
  border-radius: 50%; filter: blur(40px); opacity: .55;
}
.blob-a { width: 28rem; height: 28rem; background: rgb(255 107 107 / 0.22); left: -6rem; top: -4rem; }
.blob-b { width: 24rem; height: 24rem; background: rgb(78 205 196 / 0.2); right: -4rem; bottom: -6rem; left: auto; top: auto; }
.blob-c { width: 14rem; height: 14rem; background: rgb(148 163 184 / 0.25); left: 40%; top: 20%; }
.hero-grid {
  position: relative; display: grid; gap: 3rem; align-items: center;
}
.guarantees { display: grid; gap: .7rem; margin-top: 1.75rem; }
.guarantees li { display: flex; gap: .65rem; align-items: flex-start; color: #374151; }
.dot {
  width: 1.15rem; height: 1.15rem; border-radius: 999px; flex: none;
  background: var(--grad); margin-top: .2rem;
}

.hero-visual { position: relative; min-height: 28rem; }
.screen-frame {
  background: #0f172a; border-radius: 1.4rem; padding: .7rem;
  box-shadow: var(--shadow); color: #fff; width: min(100%, 24rem);
}
.screen-inner {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 1rem; overflow: hidden; min-height: 16rem;
}
.screen-bar { display: flex; justify-content: space-between; padding: .8rem 1rem; font-size: .8rem; color: #cbd5e1; }
.screen-photo {
  height: 9rem; margin: 0 1rem; border-radius: .9rem;
  background: linear-gradient(135deg, #94a3b8, #64748b 40%, #4ecdc4);
}
.screen-copy { padding: 1rem; }
.screen-copy strong { display: block; font-size: 1.15rem; }
.phone {
  position: absolute; right: 0; bottom: 1rem; width: 11rem;
  background: #111827; border-radius: 1.6rem; padding: .45rem;
  box-shadow: var(--shadow); color: #111;
}
.phone-screen { background: #fff; border-radius: 1.25rem; padding: .8rem; min-height: 13rem; }
.qr-box {
  width: 5.5rem; height: 5.5rem; margin: .4rem auto;
  background:
    linear-gradient(#111 2px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(90deg, #111 2px, transparent 2px) 0 0 / 12px 12px,
    #fff;
  border: 8px solid #fff; outline: 1px solid #e5e7eb;
}
.photo-card {
  position: absolute; left: 1rem; top: 2.2rem; width: 7.5rem;
  background: #fff; border-radius: 1rem; padding: .4rem; box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.photo-card .swatch {
  height: 4.6rem; border-radius: .7rem;
  background: linear-gradient(160deg, #cbd5e1, #4ecdc4 70%);
}
.toast {
  position: absolute; background: #fff; border-radius: 999px; box-shadow: var(--shadow);
  padding: .45rem .85rem; font-size: .82rem; font-weight: 600; color: #334155;
}
.toast-a { right: 1rem; top: .4rem; animation: float 4.5s ease-in-out infinite; }
.toast-b { left: 0; bottom: 5.5rem; animation: float 6s ease-in-out infinite .4s; }
.toast-c { right: 8.5rem; bottom: 1.4rem; animation: float 5.2s ease-in-out infinite .8s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid rgb(226 232 240 / 0.9);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow);
}
.icon-box {
  width: 2.75rem; height: 2.75rem; border-radius: .9rem; color: #fff;
  display: grid; place-items: center; background: var(--grad); margin-bottom: 1rem;
}
.icon-box svg { width: 1.25rem; height: 1.25rem; }

.steps { display: grid; gap: 1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step-num {
  width: 2.4rem; height: 2.4rem; border-radius: 999px; display: grid; place-items: center;
  color: #fff; background: var(--grad); font-weight: 700;
}
.flow {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; align-items: center;
  margin-top: 2rem;
}
.flow-node {
  background: #fff; border-radius: 999px; padding: .7rem 1rem; box-shadow: var(--shadow);
  font-weight: 600; font-size: .95rem;
}
.flow-arrow { color: #94a3b8; font-size: 1.2rem; }

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.tab {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  min-height: 2.75rem; padding: 0 1rem; cursor: pointer; font-weight: 600; color: #4b5563;
}
.tab[aria-selected="true"] { background: var(--grad); color: #fff; border-color: transparent; }
.tab-panel[hidden] { display: none; }
.mock-wide { min-height: 16rem; }

.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .55rem; }
.check-list li { display: flex; gap: .6rem; }
.check-list li::before {
  content: ""; width: .7rem; height: .7rem; border-radius: 999px; margin-top: .45rem;
  background: var(--grad); flex: none;
}

.price-card {
  max-width: 44rem;
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.4rem 2rem;
  box-shadow: 0 18px 40px -12px rgb(255 107 107 / 0.18);
}
.price-row {
  display: grid;
  gap: .85rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.price-row:first-child { padding-top: .35rem; }
.price-row h2 { margin-bottom: .4rem; }
.price-row .kicker { margin-bottom: .45rem; }
.price-row.is-featured {
  margin: 0 -.4rem;
  padding: 1.35rem .4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgb(255 107 107 / 0.08), rgb(78 205 196 / 0.1));
}
.price-amount {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.price-amount span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.price-aside {
  margin: 0;
  font-weight: 650;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, rgb(255 107 107 / 0.12), rgb(78 205 196 / 0.16));
  border-radius: 2rem; padding: 3rem 1.5rem; text-align: center;
}
.faq details {
  background: #fff; border-radius: 1rem; padding: 1rem 1.15rem; box-shadow: var(--shadow);
  margin-bottom: .75rem;
}
.faq summary { cursor: pointer; font-weight: 650; }
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; color: #4b5563; }
.copy { color: #6b7280; font-size: .92rem; margin-top: 2rem; }

.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
label { display: block; font-weight: 600; margin-bottom: .35rem; }
.hint { font-weight: 400; color: #6b7280; font-size: .9rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="file"], select, textarea {
  width: 100%; border: 1px solid #d1d5db; border-radius: .9rem; min-height: 3rem;
  padding: .7rem .9rem; background: #fff;
}
textarea { min-height: 8rem; resize: vertical; }
.field-error { color: #b42318; font-size: .9rem; margin-top: .3rem; }
.alert {
  border-radius: 1rem; padding: 1rem 1.1rem; margin-bottom: 1rem;
}
.alert-ok { background: #ecfdf3; color: #067647; }
.alert-err { background: #fef3f2; color: #b42318; }
.hp {
  position: absolute !important; left: -10000px; height: 1px; overflow: hidden;
}
.checkbox { display: flex; gap: .65rem; align-items: flex-start; }
.checkbox input { width: 1.2rem; height: 1.2rem; margin-top: .2rem; }

.cookie-banner {
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 50;
  background: #fff; border-radius: 1.2rem; box-shadow: var(--shadow);
  padding: 1rem 1.1rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
}

.memorial-shell { min-height: 100vh; background: #fbfcfd; }
.memorial-header, .memorial-footer {
  background: #fff; border-bottom: 1px solid var(--line);
}
.memorial-footer { border-top: 1px solid var(--line); border-bottom: 0; padding: 1.2rem 0; }
.memorial-header .header-inner { min-height: 3.6rem; }
.portrait {
  display: block;
  width: min(100%, 18rem); aspect-ratio: 4/5; margin: 0 auto 1.5rem;
  border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow); background: #e2e8f0;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.gallery img, .gallery svg { width: 100%; height: 8rem; object-fit: cover; border-radius: 1rem; }
.demo-banner {
  background: #fff7ed; color: #9a3412; border-radius: 1rem; padding: .8rem 1rem; margin-bottom: 1.5rem;
}
.preview-box {
  margin-top: 1rem; border: 1px dashed #cbd5e1; border-radius: 1rem; min-height: 8rem;
  display: grid; place-items: center; overflow: hidden; background: #fff;
}
.preview-box img { max-height: 16rem; }

@media (min-width: 768px) {
  .price-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
  .price-amount, .price-aside { text-align: right; }
  .grid-2, .form-row { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .nav-desktop .nav-home { display: none; }
  .nav-mobile { display: none !important; }
}
