/* ==========================================================================
   Quick Recipes — hub styles
   Aesthetic: warm kitchen / fresh-market. Cream canvas, herb-green primary,
   carrot-orange accent, address-bar "@cook" command motif.
   Fonts: Bricolage Grotesque (display) + Inter (body).
   ========================================================================== */

:root {
  --bg: #F6FBF3;
  --surface: #FFFFFF;
  --surface-2: #EFF7EA;
  --green: #16A34A;
  --green-dark: #0E7A38;
  --green-soft: #EAF6E4;
  --orange: #F97316;
  --orange-dark: #EA6A0A;
  --ink: #14351F;
  --body: #3C5646;
  --muted: #6B8574;
  --border: #DCEAD5;
  --border-strong: #C4DDB8;
  --shadow: 0 20px 45px rgba(16, 80, 40, 0.10);
  --shadow-sm: 0 8px 22px rgba(16, 80, 40, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --font: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
}

html { font-size: 10px; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

svg { display: block; }
img { max-width: 100%; height: auto; }

a { text-decoration: none; color: var(--green-dark); transition: color .2s, background .2s, box-shadow .2s, transform .2s; }
@media (hover: hover) { a:hover { color: var(--green); } }

h1, h2, h3, h4, h5, h6 { margin-top: 0; font-family: var(--display); color: var(--ink); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.title { font-family: var(--display); font-weight: 800; font-size: 4rem; line-height: 1.12; color: var(--ink); letter-spacing: -0.5px; }
.title-big { font-size: 5.4rem; }
.title-small { font-size: 3rem; }
.text { font-weight: 400; font-size: 1.7rem; line-height: 1.65; color: var(--body); }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(96deg, var(--green) 0%, var(--green-dark) 60%, var(--orange) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.15em;
}

.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.2rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.5rem 3rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 12px 24px rgba(16, 120, 56, 0.28);
  border-radius: 999px;
  transition: transform .12s, box-shadow .18s, filter .18s;
}
.btn:hover { color: #fff; filter: brightness(1.05); box-shadow: 0 16px 30px rgba(16, 120, 56, 0.34); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn_main { background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%); box-shadow: 0 14px 26px rgba(234, 106, 10, 0.30); }
.btn_main:hover { color: #fff; }
.btn_ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1.5rem 2.4rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--green-dark);
  background: transparent;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  transition: background .18s, border-color .18s;
}
.btn_ghost:hover { background: var(--green-soft); border-color: var(--green); color: var(--green-dark); }

/* ---------- return to top ---------- */
.return-to-top {
  position: fixed;
  bottom: -3rem;
  right: 2rem;
  width: 4.6rem;
  height: 4.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 10px 24px rgba(16, 80, 40, 0.28);
  transition: all .4s ease;
}
.return-to-top__icon { width: 2rem; height: 2rem; }
.return-to-top:hover { transform: scale(1.08); color: #fff; }
.return-to-top.back-top { bottom: 2rem; opacity: 1; }

/* ---------- animations ---------- */
@keyframes pixFadeUp { 0% { opacity: 0; transform: translateY(24px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes pixFadeDown { 0% { opacity: 0; transform: translateY(-24px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes pixFadeLeft { 0% { opacity: 0; transform: translateX(28px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes pixFadeRight { 0% { opacity: 0; transform: translateX(-28px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes pixZoomIn { 0% { opacity: 0; transform: scale(.8); } 100% { opacity: 1; transform: scale(1); } }
/* Failsafe: keep content visible even if WOW's scroll-reveal never fires
   (JS disabled, reduced motion, headless). Entrance animation still plays. */
.wow { visibility: visible !important; }
@media (prefers-reduced-motion: reduce) {
  .wow, .animated { animation: none !important; opacity: 1 !important; transform: none !important; }
}
.pixFadeUp { animation-name: pixFadeUp; }
.pixFadeDown { animation-name: pixFadeDown; }
.pixFadeLeft { animation-name: pixFadeLeft; }
.pixFadeRight { animation-name: pixFadeRight; }
.pixZoomIn { animation-name: pixZoomIn; }

/* ---------- page loader ---------- */
.page-loader { background: var(--bg); position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 99999999; }
.page-loader .loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.page-loader svg { display: none; }
.blobs { filter: url(#goo); width: 260px; height: 260px; position: relative; overflow: hidden; }
.blobs .blob-center { transform-style: preserve-3d; position: absolute; background: var(--green); top: 50%; left: 50%; width: 30px; height: 30px; transform-origin: left top; transform: scale(.9) translate(-50%, -50%); animation: blob-grow linear 3.4s infinite; border-radius: 50%; box-shadow: 0 -10px 40px -5px var(--green); }
.blob { position: absolute; background: var(--green); top: 50%; left: 50%; width: 30px; height: 30px; border-radius: 50%; animation: blobs ease-out 3.4s infinite; transform: scale(.9) translate(-50%, -50%); transform-origin: center top; opacity: 0; }
.blob:nth-child(1) { animation-delay: .2s; }
.blob:nth-child(2) { animation-delay: .4s; }
.blob:nth-child(3) { animation-delay: .6s; }
.blob:nth-child(4) { animation-delay: .8s; }
.blob:nth-child(5) { animation-delay: 1s; }
@keyframes blobs { 0% { opacity: 0; transform: scale(0) translate(calc(-300px - 50%), -50%); } 1% { opacity: 1; } 35%, 65% { opacity: 1; transform: scale(.9) translate(-50%, -50%); } 99% { opacity: 1; } 100% { opacity: 0; transform: scale(0) translate(calc(300px - 50%), -50%); } }
@keyframes blob-grow { 0%, 39% { transform: scale(0) translate(-50%, -50%); } 40%, 42% { transform: scale(1, .9) translate(-50%, -50%); } 46% { transform: scale(1.3, 1.2) translate(-50%, -50%); } 54% { transform: scale(1.7, 1.6) translate(-50%, -50%); } 58% { transform: scale(1.8, 1.7) translate(-50%, -50%); } 68%, 70% { transform: scale(1.7, 1.5) translate(-50%, -50%); } 80%, 81% { transform: scale(1.5, 1.4) translate(-50%, -50%); } 86%, 87% { transform: scale(1.2, 1.1) translate(-50%, -50%); } 90%, 91% { transform: scale(1, .9) translate(-50%, -50%); } 92%, 100% { transform: scale(0) translate(-50%, -50%); } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; left: 0; width: 100%; z-index: 100; padding: 1rem 0; transition: all .25s; }
.header-container { max-width: 1280px; }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 1.2rem 2.2rem; background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-sm); }
.site-header.pix-header-fixed { padding: .6rem 0; }
.site-header.pix-header-fixed .header-inner { background: #fff; box-shadow: 0 6px 26px rgba(16, 80, 40, 0.14); }

.site-mobile-logo { display: none; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 32px; width: auto; }
.sticky-logo { display: none; }

.site-nav { display: flex; align-items: center; gap: 20px; width: 100%; }
.site-logo { margin-right: auto; }
.close-menu { display: none; }
.menu-wrapper { display: flex; align-items: center; }
.site-main-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.site-main-menu li { padding: 0; }
.site-main-menu li > a {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  color: var(--body);
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 999px;
}
.site-main-menu li > a:hover { color: var(--green-dark); background: var(--green-soft); text-decoration: none; }
.site-main-menu li > a.active { color: var(--green-dark); background: var(--green-soft); }
.site-nav > .btn { flex: 0 0 auto; }

.toggle-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.toggle-menu .bar { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--green-dark); transition: all .2s; }

.mask-overlay { position: fixed; inset: 0; background: rgba(20, 53, 31, 0.5); z-index: 99; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 5rem 0 6rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 420px at 82% 8%, rgba(249, 115, 22, 0.10), transparent 60%),
    radial-gradient(720px 500px at 8% 0%, rgba(22, 163, 74, 0.12), transparent 62%);
}
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,163,74,.10) 1.4px, transparent 1.4px);
  background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%); mask-image: linear-gradient(180deg, #000, transparent 70%); opacity: .5; }
.hero__split { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.02fr; align-items: center; gap: 54px; }

.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1.4rem; color: var(--green-dark); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-sm); }
.hero__eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18); }
.hero__title { margin: 2rem 0 1.6rem; font-size: 5rem; line-height: 1.08; }
.hero__subtitle { max-width: 520px; margin: 0 0 2.8rem; color: var(--body); font-size: 1.75rem; }
.hero__subtitle strong { color: var(--ink); }
.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust { list-style: none; margin: 2.8rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: 1.45rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- browser / SERP mockup ---------- */
.qr-browser { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.qr-browser__bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.qr-browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #CFE3C3; }
.qr-browser__dot:nth-child(1) { background: #F7A99B; }
.qr-browser__dot:nth-child(2) { background: #FBD08A; }
.qr-browser__dot:nth-child(3) { background: #9CDFB0; }

.qr-omni { display: flex; align-items: center; gap: 8px; flex: 1; margin-left: 8px; background: #fff; border: 1.5px solid var(--border-strong); border-radius: 999px; padding: 8px 14px; min-width: 0; }
.qr-omni__bolt { width: 16px; height: 16px; color: var(--orange); flex: 0 0 auto; }
.qr-cmd { font-weight: 800; color: var(--green-dark); font-family: var(--font); }
.qr-omni__ing { color: var(--body); font-size: 1.4rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.qr-omni__caret { width: 2px; height: 18px; background: var(--green); margin-left: auto; animation: qrBlink 1.1s steps(1) infinite; flex: 0 0 auto; }
@keyframes qrBlink { 50% { opacity: 0; } }

.qr-browser__body { padding: 20px 22px 24px; }
.qr-serp__query { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.qr-serp__q { font-size: 1.45rem; color: var(--ink); font-weight: 600; }
.qr-serp__engine { display: inline-flex; align-items: center; gap: 5px; font-size: 1.25rem; color: var(--muted); white-space: nowrap; }

.qr-recipe { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--cream, #fff); margin-bottom: 12px; transition: transform .15s, box-shadow .15s; }
.qr-recipe:last-child { margin-bottom: 0; }
.qr-recipe:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.qr-recipe__thumb { width: 56px; height: 56px; border-radius: 12px; flex: 0 0 auto; background: linear-gradient(135deg, #FFE3C2, #F9B67A); }
.qr-recipe__thumb--a { background: linear-gradient(135deg, #FFD9A8, #F9843C); }
.qr-recipe__thumb--b { background: linear-gradient(135deg, #C8ECC6, #4FBE6C); }
.qr-recipe__thumb--c { background: linear-gradient(135deg, #FFE0B0, #F26B4B); }
.qr-recipe__meta { flex: 1; min-width: 0; }
.qr-recipe__title { font-family: var(--font); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin: 0 0 3px; line-height: 1.25; }
.qr-recipe__url { font-size: 1.25rem; color: var(--muted); }
.qr-timer { display: inline-flex; align-items: center; gap: 5px; flex: 0 0 auto; font-size: 1.3rem; font-weight: 700; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; padding: 5px 11px; }
.qr-timer svg { width: 15px; height: 15px; }

/* ==========================================================================
   How it works
   ========================================================================== */
.howto { padding: 7rem 0 6rem; }
.howto__header { max-width: 720px; margin: 0 auto 5rem; }
.howto__title { font-size: 3.6rem; margin: 0 0 1.4rem; }
.howto__intro { color: var(--muted); margin: 0; }
.howto__row { display: flex; align-items: flex-start; justify-content: center; gap: 18px; }
.howto-step { flex: 1 1 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.howto-step__head { min-height: 118px; }
.howto-step__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: var(--green-soft); color: var(--green-dark); font-family: var(--display); font-weight: 800; font-size: 1.7rem; margin-bottom: 14px; }
.howto-step__title { font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: var(--ink); margin: 0 0 8px; line-height: 1.25; }
.howto-step__desc { color: var(--muted); font-size: 1.45rem; margin: 0; }
.howto-step__visual { margin-top: 16px; }
.howto-arrow { flex: 0 0 44px; display: flex; align-items: center; justify-content: center; color: var(--border-strong); margin-top: 60px; }
.howto-arrow svg { width: 44px; height: 24px; }

.qr-omni--step { flex: none; margin: 0; flex-wrap: wrap; gap: 6px; }
.qr-omni--step .qr-omni__caret { margin-left: 2px; }
.qr-chip { font-size: 1.25rem; font-weight: 600; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; padding: 4px 10px; }

.qr-translate { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.qr-translate__in { font-family: var(--font); font-size: 1.35rem; color: var(--body); background: var(--surface-2); border: 1px dashed var(--border-strong); border-radius: 10px; padding: 8px 12px; width: 100%; }
.qr-translate__mark svg { width: 40px; height: 40px; }
.qr-translate__out { font-family: var(--font); font-size: 1.35rem; color: var(--ink); background: var(--green-soft); border-radius: 10px; padding: 8px 12px; width: 100%; }
.qr-translate__out strong { color: var(--green-dark); }

.qr-serp--step { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.qr-serp--step .qr-serp__query { padding-bottom: 10px; margin-bottom: 10px; }
.qr-serp--step .qr-recipe { padding: 9px; margin-bottom: 9px; }
.qr-serp--step .qr-recipe__thumb { width: 42px; height: 42px; }

/* ==========================================================================
   Command reference
   ========================================================================== */
.cmds { padding: 6rem 0; }
.cmds__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.cmds__title { font-size: 3.4rem; margin: 0 0 1.4rem; }
.cmds__intro { color: var(--muted); margin: 0 0 2rem; }
.cmds__note { display: flex; align-items: flex-start; gap: 10px; font-size: 1.4rem; color: var(--green-dark); background: var(--green-soft); border-radius: var(--radius-sm); padding: 14px 16px; }
.cmds__note svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; color: var(--green); }

.cmds__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cmds__row { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.cmds__cmd { font-family: var(--font); font-weight: 600; font-size: 1.45rem; color: var(--ink); white-space: nowrap; }
.cmds__arrow { width: 34px; height: 14px; flex: 0 0 auto; color: var(--orange); }
.cmds__out { font-size: 1.4rem; color: var(--muted); min-width: 0; }
.cmds__out b { color: var(--green-dark); }

.qr-cmd--sm { display: inline-flex; align-items: center; font-weight: 800; color: var(--green-dark); background: var(--green-soft); border-radius: 6px; padding: 1px 7px; }

/* ==========================================================================
   Why
   ========================================================================== */
.why { padding: 6rem 0 7rem; }
.why__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.why__title { font-size: 3.4rem; margin: 0 0 1.4rem; }
.why__intro { color: var(--muted); margin: 0; }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why__item { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); }
.why__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green-dark); }
.why__icon svg { width: 23px; height: 23px; }
.why__h { font-family: var(--display); font-weight: 700; font-size: 1.65rem; color: var(--ink); margin: 2px 0 6px; }
.why__p { font-size: 1.4rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ==========================================================================
   Bottom CTA
   ========================================================================== */
.cta { padding: 2rem 0 8rem; }
.cta__panel { position: relative; overflow: hidden; text-align: center; background: linear-gradient(150deg, #10371F 0%, #0B2A17 100%); border-radius: 28px; padding: 5rem 3rem; box-shadow: var(--shadow); }
.cta__panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 240px at 80% 10%, rgba(249, 115, 22, 0.22), transparent 60%), radial-gradient(500px 300px at 10% 100%, rgba(22, 163, 74, 0.28), transparent 60%); pointer-events: none; }
.cta__title { position: relative; font-family: var(--display); font-weight: 800; font-size: 3.4rem; line-height: 1.15; color: #fff; margin: 0 0 2.4rem; }
.cta__title .gradient-text { background: linear-gradient(96deg, #7FE3A6, #FFB877); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta__omni { position: relative; display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.10); border: 1.5px solid rgba(255, 255, 255, 0.22); border-radius: 999px; padding: 10px 18px; margin: 0 auto 2.6rem; }
.cta__omni .qr-omni__bolt { color: var(--orange); }
.cta__omni .qr-cmd { color: #7FE3A6; }
.cta__omni-type { color: rgba(255, 255, 255, 0.75); font-size: 1.5rem; }
.cta__omni .qr-omni__caret { background: #7FE3A6; }
.cta__btn { position: relative; }
.cta__fine { position: relative; margin: 1.8rem 0 0; color: rgba(255, 255, 255, 0.6); font-size: 1.35rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: linear-gradient(180deg, #10371F 0%, #0B2A17 100%); color: rgba(255, 255, 255, 0.75); }
.footer .container { max-width: 1280px; }
.footer-content { padding: 5rem 0 3rem; }
.footer-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo img { height: 32px; width: auto; }
.footer-menu { display: flex; flex-direction: column; gap: 18px; }
.footer__title { color: rgba(255, 255, 255, 0.5); font-size: 1.35rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.footer-nav-wrapper { display: flex; gap: 60px; }
.footer-link { display: block; color: rgba(255, 255, 255, 0.8); line-height: 2; font-size: 1.55rem; }
.footer-link:hover { color: #7FE3A6; text-decoration: none; }
.footer-copyright { padding: 2rem 2rem 3rem; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.10); }
.footer-copyright p { margin: 0; font-size: 1.4rem; color: rgba(255, 255, 255, 0.55); }

/* ---------- modal ---------- */
.modal-content { border: none; border-radius: 20px; overflow: hidden; }
.modal-body p { font-size: 1.55rem; line-height: 1.6; color: var(--body); }
.modal-body strong { color: var(--green-dark); }
.about-btn .btn { color: #fff; }

/* ==========================================================================
   Inner pages
   ========================================================================== */
.inner-page { min-height: calc(78vh - 70px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 0; text-align: center; }
.inner-page .title { margin-bottom: 1.4rem; }
.inner-page .text { max-width: 620px; margin: 0 auto; color: var(--muted); }
.inner-page > .container { position: relative; z-index: 1; }
.inner-figure { margin: 3.4rem auto; max-width: 300px; }
.inner-figure__svg { width: 100%; height: auto; filter: drop-shadow(0 18px 30px rgba(16, 80, 40, 0.12)); }
.uninstall-section .inner-figure { max-width: 640px; }
.inner-figure__img { width: 100%; height: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.inner-page .btn { margin-top: 1rem; }
.remove-page-content { max-width: 640px; margin: 0 auto; }

.contact-section { padding: 5rem 0 8rem; }
.contact-section .title { margin-bottom: 4.4rem; }
.contact-section__wrap { width: 100%; }
.contact-card { height: 100%; min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 3.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.contact-card__subtitle { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--ink); margin-bottom: 1.6rem; }
.contact-card__text { flex: 1 1 auto; margin-bottom: 2rem; font-size: 1.55rem; color: var(--muted); }

.uninstall-section, .removed-section, .thanks-page { padding: 5rem 0 7rem; }

/* legal */
.terms-section { padding: 5rem 0 6rem; }
.terms-section .title { margin-bottom: 3.4rem; }
.terms-privacy { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 3.4rem 0; }
.terms-privacy .container { max-width: 900px; }
.terms-privacy h2 { font-family: var(--display); font-size: 2.2rem; color: var(--green-dark); margin: 3rem 0 1rem; }
.terms-privacy h3 { font-size: 1.8rem; color: var(--ink); margin: 2rem 0 .8rem; }
.terms-privacy p, .terms-privacy li { font-size: 1.55rem; line-height: 1.7; color: var(--body); }
.terms-privacy p, .terms-privacy table, .terms-privacy ul, .terms-privacy ol { margin-bottom: 2rem; }
.terms-privacy ul, .terms-privacy ol { padding-left: 2.4rem; }
.terms-privacy li { margin: .6rem 0; }
.terms-privacy a { color: var(--green); }
.terms-privacy strong { color: var(--ink); }
.terms-privacy table { width: 100%; border-collapse: collapse; font-size: 1.45rem; }
.terms-privacy th, .terms-privacy td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.terms-privacy th { background: var(--green-soft); color: var(--green-dark); font-weight: 700; }
.terms-privacy .caps { font-size: 1.4rem; background: rgba(249, 201, 93, 0.10); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; color: var(--body); }
.decor { display: none; }
