@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/SchibstedGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/SchibstedGrotesk-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #FBF7EF;
  --surface: #F4ECDF;
  --surface-2: #EAE0CC;
  --white: #FFFDF8;
  --ink: #23201A;
  --muted: #6F6557;
  --accent: #2E5B44;
  --accent-dark: #1F4230;
  --accent-2: #C06B3E;
  --sage: #B9CDB9;
  --dark: #20362B;
  --border: #DCCEB6;
  --font-display: "Schibsted Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --fs-display: clamp(2.7rem, 5.6vw, 4.4rem);
  --fs-h1: clamp(2.2rem, 4.6vw, 3.4rem);
  --fs-h2: clamp(1.7rem, 3.2vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.88rem;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 56px;
  --space-xl: 104px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-sm: 0 2px 10px rgba(35, 32, 26, 0.06);
  --shadow-md: 0 14px 34px rgba(35, 32, 26, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.65;
  font-size: var(--fs-body);
  overflow-x: clip;
}
main {
  flex: 1 0 auto;
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
::selection {
  background: var(--accent);
  color: #FFFDF8;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #FFFDF8;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 {
  font-size: var(--fs-h1);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.section-dark h1 em, .section-dark h2 em, .cta-band h2 em {
  color: var(--sage);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.nav ul {
  display: flex;
  gap: 28px;
}
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 10px 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.overline::before {
  content: "✦";
  color: var(--accent);
}
.overline-light {
  color: var(--sage);
}
.overline-light::before {
  color: var(--accent-2);
}
.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
}
.lead-light {
  color: rgba(243, 238, 227, 0.8);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 26px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #FFFDF8;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-light {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--sage);
  border-color: var(--sage);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.chip i {
  color: var(--accent-2);
}
.chip-dark {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.3);
  color: #FFFDF8;
}
.chip-dark i {
  color: var(--sage);
}
.hero {
  padding: 76px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 320px at 88% 8%, rgba(185, 205, 185, 0.4), transparent 70%),
    radial-gradient(520px 280px at 8% 92%, rgba(231, 201, 180, 0.35), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: var(--fs-display);
  margin: 18px 0 20px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}
.hero-facts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
}
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}
.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 253, 0.45) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 55% {
    transform: translateX(-130%);
  }
  90%, 100% {
    transform: translateX(130%);
  }
}
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.float-badge i {
  color: var(--accent-2);
}
.fb-1 {
  top: 26px;
  left: -34px;
}
.fb-2 {
  bottom: 34px;
  right: -22px;
}
.marquee {
  background: var(--accent);
  color: #F6F1E7;
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid var(--accent-dark);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  padding-right: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-alt {
  background: var(--surface);
}
.section-deep {
  background: var(--surface-2);
}
.section-dark {
  background: var(--dark);
  color: #F3EEE3;
}
.texture-dots {
  background-image: radial-gradient(rgba(35, 32, 26, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ghost {
  position: absolute;
  top: 34px;
  right: 4%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(35, 32, 26, 0.05);
  user-select: none;
  pointer-events: none;
}
.ghost-light {
  color: rgba(243, 238, 227, 0.06);
}
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 52px;
  max-width: 780px;
}
.sec-head h2 {
  font-size: var(--fs-h2);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.svc-card.featured {
  grid-row: span 2;
  background: var(--accent);
  border-color: var(--accent-dark);
  color: #FFFDF8;
}
.svc-card.featured h3 {
  font-size: 1.6rem;
}
.svc-card.wide {
  grid-column: 2 / 4;
}
.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.4rem;
}
.featured .svc-icon {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.3);
  color: var(--sage);
}
.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
}
.price-light {
  color: #FFFDF8;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-2);
  transition: gap 0.3s ease;
}
.link-more:hover {
  gap: 12px;
}
.link-light {
  color: var(--sage);
}
.method-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: start;
}
.acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.act {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.act-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 6px;
}
.act h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.act p {
  color: var(--muted);
  font-size: 0.95rem;
}
.method-media .frame {
  aspect-ratio: 3 / 4;
}
.caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.caption i {
  color: var(--accent-2);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}
.stats-mini {
  margin-bottom: 0;
}
.stat b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  display: block;
  line-height: 1;
}
.section-dark .stat b {
  color: var(--sage);
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.section-dark .stat-label {
  color: rgba(243, 238, 227, 0.7);
}
.bars-block {
  border-top: 1px solid rgba(243, 238, 227, 0.2);
  padding-top: 34px;
}
.bars-title {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 238, 227, 0.6);
  margin-bottom: 22px;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  height: 170px;
}
.bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 10px;
}
.bar {
  background: linear-gradient(180deg, var(--sage), var(--accent));
  border-radius: 3px 3px 0 0;
  transition: height 1s ease;
}
.h-1 {
  height: 62%;
}
.h-2 {
  height: 74%;
}
.h-3 {
  height: 86%;
}
.h-4 {
  height: 100%;
}
.bar-label {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(243, 238, 227, 0.6);
}
.check-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 36px;
}
.check-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
  font-weight: 600;
  font-size: 0.95rem;
}
.check-grid i {
  color: var(--accent);
  font-size: 1.15rem;
}
.media-side .frame {
  aspect-ratio: 4 / 5;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.rev-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--accent-2);
  display: flex;
  gap: 3px;
}
.rev-card p {
  font-size: 0.95rem;
  color: var(--muted);
}
.rev-foot {
  font-weight: 800;
  color: var(--ink);
  margin-top: auto;
}
.rev-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--muted);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.plan.hot {
  background: var(--ink);
  color: var(--bg);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 34px;
  background: var(--accent-2);
  color: #FFFDF8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.plan .price {
  font-size: 2rem;
}
.plan.hot .price {
  color: var(--sage);
}
.plan-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -8px;
}
.plan.hot .plan-note {
  color: rgba(251, 247, 239, 0.6);
}
.plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 18px;
}
.plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.plan-list i {
  color: var(--accent);
}
.plan.hot .plan-list i {
  color: var(--sage);
}
.plan-fine {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.form-panel h2 {
  font-size: var(--fs-h2);
  margin: 10px 0 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-panel .btn {
  width: 100%;
  max-width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 91, 68, 0.14);
  outline: none;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0 22px;
  font-size: 0.88rem;
  color: var(--muted);
}
.consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  margin-top: 2px;
}
.faq-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.help-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}
.help-card h3 {
  margin: 10px 0 12px;
}
.help-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.card-soft {
  background: var(--surface);
}
.memo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.contact-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-md);
  padding: 30px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 600;
}
.contact-line i {
  color: var(--accent-2);
}
.contact-card .contact-line i {
  color: var(--sage);
}
.contact-line a:hover {
  color: var(--accent-2);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-2);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.cta-band {
  background: var(--dark);
  color: #F3EEE3;
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "✦";
  position: absolute;
  right: 6%;
  top: 24px;
  font-size: 7rem;
  color: rgba(185, 205, 185, 0.12);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.cta-band h2 {
  font-size: var(--fs-h2);
  margin: 12px 0 16px;
}
.cta-media .frame {
  aspect-ratio: 4 / 3;
}
.site-footer {
  background: var(--ink);
  color: #EDE6D8;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 44px;
  padding: 64px 0 44px;
}
.logo-footer .logo-name {
  color: #EDE6D8;
}
.f-about {
  margin-top: 18px;
  color: rgba(237, 230, 216, 0.7);
  font-size: 0.95rem;
  max-width: 40ch;
}
.f-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--sage);
  margin-bottom: 18px;
}
.f-links li, .f-contact li {
  padding: 6px 0;
  font-size: 0.95rem;
}
.f-links a:hover {
  color: var(--sage);
}
.f-contact a:hover {
  color: var(--sage);
}
.disclaimer {
  border-top: 1px solid rgba(237, 230, 216, 0.18);
  padding: 26px 0;
}
.disclaimer p {
  font-size: 0.85rem;
  color: rgba(237, 230, 216, 0.6);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 26px;
  font-size: 0.9rem;
  color: rgba(237, 230, 216, 0.75);
}
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #FFFDF8;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 60;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
}
.page-hero {
  padding: 84px 0 64px;
  background:
    radial-gradient(560px 300px at 90% 0%, rgba(185, 205, 185, 0.4), transparent 70%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  margin: 16px 0 18px;
  max-width: 22ch;
}
.page-hero .hero-facts {
  margin-top: 26px;
}
.svc-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.svc-row.rev .svc-text {
  order: 2;
}
.svc-row.rev .svc-media {
  order: 1;
}
.svc-text h2 {
  font-size: var(--fs-h2);
  margin: 10px 0 16px;
}
.svc-text p {
  color: var(--muted);
  margin-bottom: 16px;
}
.includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
}
.includes i {
  color: var(--accent);
}
.svc-text .chip-row {
  margin-bottom: 22px;
}
.svc-text .svc-foot {
  margin-top: 0;
}
.svc-media .frame {
  aspect-ratio: 4 / 3;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.addon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.addon i {
  font-size: 1.3rem;
  color: var(--accent);
}
.addon b {
  flex: 1;
  font-size: 0.95rem;
}
.addon span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-2);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-table thead th {
  background: var(--surface-2);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td i {
  color: var(--accent);
  font-size: 1.1rem;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.story-body p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.principles {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 760px;
}
.principles li {
  display: flex;
  gap: 22px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(243, 238, 227, 0.15);
  font-size: 1.05rem;
}
.principles b {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-2);
  font-size: 1.2rem;
}
.quote-block {
  margin-top: 56px;
  padding: 34px 38px;
  border-left: 3px solid var(--accent-2);
  background: rgba(255, 253, 248, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block i {
  font-size: 2rem;
  color: var(--sage);
}
.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  margin: 10px 0 16px;
}
.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 44px;
  align-items: start;
}
.faq-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 20px 40px;
}
.article-head h1 {
  margin: 16px 0 22px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.article-meta i {
  color: var(--accent-2);
}
.meta-sep {
  color: var(--accent-2);
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFDF8;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}
.avatar-lg {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  font-size: 1.2rem;
}
.author-card > div {
  min-width: 0;
}
.article-media .frame {
  aspect-ratio: 16 / 9;
}
.article-body h2 {
  font-size: var(--fs-h2);
  margin: 44px 0 16px;
}
.article-body p {
  margin-bottom: 16px;
  color: var(--muted);
}
.article-body .lead {
  font-size: 1.12rem;
  color: var(--ink);
}
.hack-box {
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0;
}
.hack-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.hack-box h3 i {
  color: var(--accent-2);
}
.hack-box p {
  margin: 0;
  font-size: 0.96rem;
}
.author-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 48px 0 24px;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.author-card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 6px;
}
.thanks-main {
  background:
    radial-gradient(600px 320px at 50% 0%, rgba(185, 205, 185, 0.35), transparent 70%),
    var(--surface);
}
.thanks-panel {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 56px 52px;
  text-align: center;
}
.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFDF8;
  font-size: 2rem;
  margin-bottom: 18px;
}
.thanks-panel h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 12px 0 16px;
}
.thanks-lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 36px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 36px;
}
.step {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 22px;
  border-top: 3px solid var(--accent-2);
}
.step b {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-2);
}
.step h3 {
  font-size: 1.05rem;
  margin: 8px 0;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
}
.thanks-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.thanks-contact .contact-line {
  color: var(--ink);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 20px 72px;
  word-break: break-word;
}
[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
[data-aos="fade-up"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
}
[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}
[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}
.legal-content h1 {
  font-size: 2.1rem;
  margin: 12px 0 8px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent-2);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}
.legal-content p {
  margin-bottom: 14px;
  color: var(--muted);
}
.legal-stand {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
}
.callout {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
  margin: 26px 0;
}
.callout p {
  margin: 0;
  color: var(--ink);
}
@media (max-width: 1020px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card.wide {
    grid-column: 1 / 3;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .rev-grid, .plan-grid {
    grid-template-columns: 1fr;
  }
  .method-grid, .check-wrap, .form-grid, .faq-grid, .story-grid, .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .duo-grid {
    display: flex;
    flex-direction: column;
  }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-row.rev .svc-text {
    order: 1;
  }
  .svc-row.rev .svc-media {
    order: 2;
  }
  .faq-aside {
    position: static;
  }
  .addon-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 920px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }
  .nav.open {
    max-height: 440px;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 4%;
  }
  .nav a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px dashed var(--border);
  }
  .nav-toggle {
    display: inline-flex;
  }
}
@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-grid > *,
  .method-grid > *,
  .form-grid > *,
  .check-wrap > *,
  .cta-grid > *,
  .story-layout > *,
  .order-grid > *,
  .testimonial-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .table-wrap {
    overflow-x: visible;
  }
  .compare-table {
    min-width: 0;
    display: block;
  }
  .compare-table thead {
    display: none;
  }
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }
  .compare-table tr {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .compare-table td {
    padding: 6px 16px;
  }
  .compare-table td:first-child {
    font-weight: 800;
    color: var(--ink);
  }
}
@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }
  .hero {
    padding: 52px 0 64px;
  }
  .hero-grid {
    gap: 40px;
  }
  .author-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .logo {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo a,
  a.logo {
    flex-direction: column;
  }
  .logo-name {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .f-col {
    word-break: break-all;
  }
  .hero-media {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .float-badge,
  .fb-1,
  .fb-2 {
    position: static;
    max-width: 100%;
  }
  .svc-grid, .values-grid, .addon-grid, .check-grid, .form-row, .steps, .stats {
    grid-template-columns: 1fr;
  }
  .svc-card.wide {
    grid-column: auto;
  }
  .acts {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .thanks-panel {
    padding: 40px 24px;
  }
  .footer-bottom {
    font-size: 0.85rem;
  }
  .disclaimer p {
    font-size: 0.82rem;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(1180px, 94%);
  }
  .section {
    padding: 52px 0;
  }
  .hero {
    padding: 40px 0 48px;
  }
  .form-panel,
  .thanks-panel,
  .help-card,
  .contact-card {
    padding: 24px 16px;
  }
  .btn {
    padding: 12px 18px;
    font-size: 0.92rem;
  }
  .legal-content {
    padding: 40px 12px 56px;
  }
  .field input, .field select, .field textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track, .shine::after {
    animation: none;
  }
  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms;
  }
}