:root {
  --bg: #f7efe7;
  --paper: #fffaf4;
  --paper2: #fff3ee;
  --text: #3a261c;
  --muted: #6d5449;
  --accent: #c98f87;
  --accent-dark: #a96f68;
  --accent2: #b99a70;
  --dark: #2a1b14;
  --line: rgba(234, 219, 208, .92);
  --line-strong: rgba(169, 111, 104, .28);
  --shadow: 0 28px 78px rgba(64, 35, 22, .13);
  --soft-shadow: 0 14px 36px rgba(64, 35, 22, .10);
  --glass-shadow: 0 20px 56px rgba(64, 35, 22, .13), inset 0 1px 0 rgba(255, 255, 255, .78), inset 0 -1px 0 rgba(169, 111, 104, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --serif: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --section-y: clamp(58px, 7vw, 92px);
  --ease: cubic-bezier(.2, .72, .22, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 6%, rgba(201, 143, 135, .22), transparent 34%),
    radial-gradient(circle at 82% 7%, rgba(185, 154, 112, .16), transparent 30%),
    linear-gradient(180deg, #fbf4ed 0%, var(--bg) 52%, #f5e9de 100%);
  color: var(--text);
  line-height: 1.56;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.04;
  margin: 0 0 20px;
  color: var(--dark);
  font-weight: 560;
}


h1 {
  font-size: clamp(40px, 5.25vw, 66px);
  line-height: 1.08;
  letter-spacing: -.035em;
  max-width: 720px;
  font-weight: 540;
  color: #302119;
  text-wrap: balance;
}

h2 {
  font-size: clamp(31px, 3.6vw, 52px);
  letter-spacing: -.026em;
  font-weight: 560;
  text-wrap: balance;
}

h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -.018em;
}

p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

::selection {
  background: rgba(201, 143, 135, .34);
  color: var(--dark);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  z-index: 150;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 8px 24px rgba(201, 143, 135, .35);
}

.page-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  opacity: .34;
  z-index: -1;
}

.orb-a {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 120px;
  background: rgba(201, 143, 135, .32);
  animation: orbMove 18s ease-in-out infinite;
}

.orb-b {
  width: 270px;
  height: 270px;
  right: -92px;
  bottom: 120px;
  background: rgba(185, 154, 112, .24);
  animation: orbMove 20s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(247, 239, 231, .82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(234, 219, 208, .88);
  transition: box-shadow .26s var(--ease), background .26s var(--ease), padding .26s var(--ease), border-color .26s var(--ease);
}

.site-header.is-scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  background: rgba(247, 239, 231, .94);
  border-color: rgba(201, 143, 135, .24);
  box-shadow: 0 16px 36px rgba(64, 35, 22, .09);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  line-height: 1;
  border-radius: 18px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(64, 35, 22, .09);
}

.logo-mark img { width: 48px; height: 48px; display: block; }
.logo-copy { display: grid; }
.logo-title { font-family: var(--serif); font-size: 27px; letter-spacing: -.025em; }
.logo small { margin-top: 5px; color: var(--muted); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  padding: 11px 13px;
  border-radius: 14px;
  transition: color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--dark);
  background: rgba(255, 250, 244, .74);
  box-shadow: inset 0 0 0 1px rgba(201, 143, 135, .15);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--dark) !important;
  color: #fff !important;
  padding-inline: 18px !important;
  box-shadow: 0 12px 28px rgba(42, 27, 20, .14);
}

.nav-cta:hover { background: #1f130f !important; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 244, .80);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
  transition: transform .25s var(--ease), opacity .2s ease;
}

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

.hero,
.section-grid,
.about,
.faq,
.seo,
.pain,
.formats,
.cta,
.site-footer {
  width: min(var(--container), calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

.hero,
.section-grid,
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: var(--section-y) 0;
}

.hero {
  min-height: 84vh;
  padding-top: clamp(58px, 7vw, 86px);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 28px -8vw auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.70), rgba(201,143,135,.16) 48%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

.hero-text { max-width: 730px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #a98762;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}

.lead {
  font-size: clamp(18px, 1.7vw, 21px);
  max-width: 650px;
  color: #665047;
  line-height: 1.72;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 12px;
  color: rgba(58, 38, 28, .86);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 250, 244, .46);
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 12px 28px rgba(64,35,22,.07);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.hero-media {
  display: grid;
  gap: 18px;
  align-self: center;
}

.hero-card,
.image-frame,
.about picture {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 86px rgba(64, 35, 22, .16);
  background: rgba(255, 250, 244, .56);
  transform: translateZ(0);
  align-self: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .74);
}

.hero-card {
  aspect-ratio: 4 / 5;
  max-height: 600px;
  width: min(455px, 100%);
  justify-self: end;
}

.image-frame,
.about picture { aspect-ratio: 1 / 1; }
.hero-card picture,
.image-frame picture,
.about picture { width: 100%; height: 100%; display: block; }
.hero-card img,
.image-frame img,
.about img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .26), transparent 28%),
    linear-gradient(0deg, rgba(42, 27, 20, .12), transparent 34%);
}

.hero-card::after,
.image-frame::after,
.about picture::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent 34%, rgba(42, 27, 20, .06));
}

.hero-insight {
  width: min(430px, 94%);
  justify-self: start;
  margin-top: -44px;
  margin-left: -34px;
  position: relative;
  z-index: 4;
}

.glass-action {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,250,244,.58), rgba(255,243,238,.34));
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(1.22);
  -webkit-backdrop-filter: blur(22px) saturate(1.22);
}

.hero-insight span {
  display: block;
  margin-bottom: 5px;
  color: #a98762;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-insight strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  letter-spacing: -.01em;
}

.hero-insight p {
  margin: 7px 0 0;
  color: #72594e;
  font-size: 14px;
  line-height: 1.55;
}

.float-card { animation: floatCard 8s ease-in-out infinite; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 880;
  letter-spacing: -.008em;
  border: 1px solid rgba(255,255,255,.58);
  cursor: pointer;
  overflow: hidden;
  color: var(--text);
  background: rgba(255,250,244,.42);
  box-shadow: 0 16px 34px rgba(64, 35, 22, .10), inset 0 1px 0 rgba(255,255,255,.76);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease), color .24s var(--ease), filter .24s var(--ease);
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 12px;
  z-index: -2;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.08) 45%, rgba(255,255,255,.24));
  opacity: .78;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 22px 46px rgba(64, 35, 22, .16), inset 0 1px 0 rgba(255,255,255,.84);
}

.btn:active { transform: translateY(0) scale(.985); }
.btn:focus-visible { outline: 3px solid rgba(201, 143, 135, .35); outline-offset: 3px; }

.primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(201,143,135,.82), rgba(169,111,104,.72));
  border-color: rgba(255,255,255,.48);
  box-shadow: 0 20px 46px rgba(169, 111, 104, .25), inset 0 1px 0 rgba(255,255,255,.38);
}

.primary::before { background: linear-gradient(135deg, rgba(255,255,255,.32), transparent 45%, rgba(255,255,255,.16)); }
.primary:hover { filter: saturate(1.04) contrast(1.02); }

.secondary {
  color: var(--dark);
  background: rgba(255, 250, 244, .42);
  border-color: rgba(201, 143, 135, .35);
}

.light {
  background: rgba(255, 250, 244, .76);
  color: var(--text);
  border-color: rgba(255, 255, 255, .68);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
  transform: scale(0);
  animation: ripple .62s linear;
  pointer-events: none;
  z-index: -1;
}

.pain,
.formats { padding: var(--section-y) 0; text-align: center; }
.section-head { max-width: 860px; margin: 0 auto 34px; text-align: center; }
.section-head .eyebrow { justify-content: center; }

.cards,
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  text-align: left;
}

.cards article,
.pricing article,
.soft-panel,
.faq details,
.tg-form,
.seo {
  background: linear-gradient(145deg, rgba(255, 250, 244, .68), rgba(255, 243, 238, .46));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px) saturate(1.16);
  -webkit-backdrop-filter: blur(20px) saturate(1.16);
}

.cards article {
  min-height: 142px;
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 750;
  color: #4d362b;
}

.cards article,
.pricing article,
.soft-panel,
.faq details,
.tg-form,
.seo-list span {
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.cards article:hover,
.pricing article:hover,
.soft-panel:hover,
.seo-list span:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow);
  border-color: var(--line-strong);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.checklist li {
  padding: 12px 0 12px 34px;
  position: relative;
  font-size: 19px;
  color: #4b342a;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(201, 143, 135, .14);
  color: var(--accent-dark);
  font-weight: 950;
  font-size: 14px;
}

.reverse { grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr); }
.accent-panel { background: linear-gradient(145deg, rgba(255, 250, 244, .96), rgba(255, 240, 234, .88)); }
.pricing article { min-height: 230px; }
.pricing .featured { background: #fff4f0; border: 2px solid var(--accent); transform: translateY(-8px); }
.price { font-size: 30px; color: var(--text); font-weight: 950; margin: 0 0 12px; letter-spacing: -.02em; }

.faq { padding: var(--section-y) 0; }
.faq-list { display: grid; gap: 14px; max-width: 900px; margin: auto; text-align: left; }
.faq details { padding: 0; overflow: hidden; }
.faq summary { cursor: pointer; padding: 22px 58px 22px 26px; font-weight: 900; color: var(--dark); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(201, 143, 135, .13);
  color: var(--accent-dark);
  font-size: 24px;
  line-height: 1;
  transition: transform .22s var(--ease), background .22s var(--ease);
}
.faq details[open] summary::after { content: '−'; transform: rotate(180deg); background: rgba(201, 143, 135, .22); }
.faq details p { padding: 0 26px 24px; }
.faq details > *:not(summary) { animation: faqOpen .32s var(--ease); }
.faq details[open] { background: linear-gradient(145deg, rgba(255,250,244,.78), rgba(255,243,238,.52)); box-shadow: var(--glass-shadow); }

.seo { padding: 54px; margin-top: 40px; margin-bottom: 40px; }
.seo-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.seo-list span { display: inline-flex; padding: 12px 15px; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-weight: 900; color: #60483d; }

.cta {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: 34px;
  align-items: start;
  margin-top: 40px;
  margin-bottom: 80px;
  padding: clamp(30px, 4vw, 50px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 255, 255, .20), transparent 34%),
    linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  filter: blur(6px);
}

.cta h2 { color: #fff; }
.cta p { color: #fff7f2; }
.light-eye { color: #fff3df; }

.tg-form {
  background: rgba(255, 250, 244, .96);
  color: var(--text);
  box-shadow: 0 18px 46px rgba(42, 27, 20, .16);
  position: relative;
  z-index: 1;
}

.tg-form label {
  display: grid;
  gap: 8px;
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.tg-form input,
.tg-form textarea,
.tg-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.tg-form input:focus,
.tg-form textarea:focus,
.tg-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 143, 135, .14);
}

.tg-form .btn { width: 100%; margin-top: 4px; background: var(--dark); color: #fff; }
.form-note { font-size: 13px; color: var(--muted); margin: 14px 0 0; text-align: left; }
.form-note.success { color: #2f6b43; }
.form-note.error { color: #8c3f35; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s var(--ease), visibility .22s var(--ease), transform .22s var(--ease);
  z-index: 90;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.site-footer { display: flex; justify-content: space-between; gap: 28px; padding: 30px 0; border-top: 1px solid var(--line); }
.site-footer p { margin-bottom: 5px; color: var(--dark); font-weight: 900; }
.site-footer span { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: flex-end; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 800; }
.footer-links a:hover { color: var(--dark); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger-group > * { opacity: 0; transform: translateY(22px); transition: opacity .62s var(--ease), transform .62s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.is-visible .stagger-group > * { opacity: 1; transform: translateY(0); }

@keyframes ripple { to { transform: scale(4); opacity: 0; } }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes orbMove { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(36px, -20px, 0) scale(1.06); } }

@media (max-width: 980px) {
  :root { --section-y: 58px; }
  .burger { display: flex; }
  .site-nav {
    position: fixed;
    inset: 74px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 244, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    transition: opacity .22s var(--ease), visibility .22s var(--ease), transform .22s var(--ease);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .site-nav a { width: 100%; padding: 14px 16px; }
  .hero,
  .section-grid,
  .about,
  .reverse,
  .cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-card { max-height: 560px; width: min(440px, 100%); margin: auto; justify-self: center; }
  .hero-insight { margin: -30px auto 0; justify-self: center; }
  .cards,
  .pricing { grid-template-columns: 1fr; }
  .pricing .featured { transform: none; }
  .cta { margin-bottom: 58px; }
}

@media (max-width: 640px) {
  .hero,
  .section-grid,
  .about,
  .faq,
  .seo,
  .pain,
  .formats,
  .cta,
  .site-footer { width: min(100% - 28px, var(--container)); }
  .site-header { padding-left: 14px; padding-right: 14px; }
  .logo-title { font-size: 24px; }
  .logo small { display: none; }
  h1 { font-size: clamp(36px, 11.6vw, 50px); line-height: 1.1; letter-spacing: -.032em; }
  h2 { font-size: clamp(30px, 10vw, 42px); }
  p, .lead { font-size: 17px; }
  .hero { padding-top: 44px; gap: 28px; }
  .hero-actions, .cta-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; min-height: 50px; padding: 13px 18px; }
  .hero-card { aspect-ratio: 4 / 5; max-height: 500px; }
  .hero-chips span { font-size: 12px; min-height: 34px; }
  .cards article,
  .pricing article,
  .soft-panel,
  .tg-form,
  .seo { padding: 24px; }
  .faq summary { padding: 20px 54px 20px 22px; }
  .faq details p { padding: 0 22px 22px; }
  .seo { padding: 28px 20px; }
  .site-footer { display: grid; }
  .footer-links { justify-content: flex-start; }
  .to-top { right: 14px; bottom: 14px; }
}

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