/* ================================================================
   VikVita — style.css
   Architecture : Section-scoped semantic
   Tokens       : --tone-* family
   Typography   : Lora (headings) + Nunito (body)
   Palette      : Pastel azure / light blue
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --tone-main      : #1A78BE;
  --tone-support   : #4AAECB;
  --tone-cta       : #145DA0;
  --tone-cta-dark  : #0F4677;
  --tone-light     : #EBF5FC;
  --tone-lighter   : #F4FAFD;
  --tone-surface   : #DDEEF8;
  --tone-accent    : #30B0C7;
  --tone-text      : #1C2B3A;
  --tone-muted     : #587085;
  --tone-border    : #C4DFF0;
  --tone-white     : #FFFFFF;
  --tone-ok        : #2DA87A;
  --tone-warn      : #E07940;

  --f-head : 'Lora', Georgia, serif;
  --f-body : 'Nunito', system-ui, sans-serif;

  --r-xs   : 6px;
  --r-sm   : 10px;
  --r-md   : 18px;
  --r-lg   : 28px;
  --r-pill : 100px;

  --sh-soft : 0 2px 16px rgba(26,120,190,.08);
  --sh-card : 0 4px 28px rgba(26,120,190,.13);
  --sh-lift : 0 10px 40px rgba(26,120,190,.18);

  --max-w  : 1140px;
  --sec-gap: 86px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family  : var(--f-body);
  color        : var(--tone-text);
  background   : var(--tone-lighter);
  line-height  : 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--tone-main); text-decoration: none; transition: color .2s; }
a:hover { color: var(--tone-cta); }
ul  { list-style: none; }
button { cursor: pointer; }

/* ── TYPE SCALE ──────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.22; }
h1 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }
p  { margin-bottom: 1rem; }
.text-muted  { color: var(--tone-muted); }
.text-center { text-align: center; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.wrap        { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sec-pad     { padding: var(--sec-gap) 0; }
.sec-pad--sm { padding: 48px 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  padding        : 13px 30px;
  border-radius  : var(--r-pill);
  font-family    : var(--f-body);
  font-size      : .97rem;
  font-weight    : 700;
  border         : 2px solid transparent;
  transition     : all .22s ease;
  line-height    : 1;
  white-space    : nowrap;
}
.btn-primary {
  background  : var(--tone-cta);
  color       : var(--tone-white);
  box-shadow  : 0 4px 18px rgba(20,93,160,.28);
}
.btn-primary:hover {
  background  : var(--tone-cta-dark);
  color       : var(--tone-white);
  transform   : translateY(-2px);
  box-shadow  : 0 7px 26px rgba(20,93,160,.35);
}
.btn-ghost {
  background  : transparent;
  color       : var(--tone-main);
  border-color: var(--tone-main);
}
.btn-ghost:hover {
  background  : var(--tone-main);
  color       : var(--tone-white);
}
.btn-lg { padding: 15px 38px; font-size: 1.05rem; }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.sec-label {
  display     : inline-block;
  font-size   : .75rem;
  font-weight : 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color       : var(--tone-support);
  margin-bottom: 12px;
}
.sec-title   { margin-bottom: 14px; }
.sec-intro   {
  max-width: 620px;
  color    : var(--tone-muted);
  font-size: 1.02rem;
}
.sec-head-center { text-align: center; margin-bottom: 52px; }
.sec-head-center .sec-intro { margin: 0 auto; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position    : sticky;
  top         : 0;
  z-index     : 200;
  background  : var(--tone-white);
  border-bottom: 1px solid var(--tone-border);
  box-shadow  : var(--sh-soft);
  transition  : box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 4px 22px rgba(26,120,190,.16); }

.header-row {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  height         : 70px;
  gap            : 20px;
}
.site-logo svg   { height: 40px; width: auto; }

.main-nav {
  display    : flex;
  align-items: center;
  gap        : 28px;
}
.main-nav a {
  font-weight: 600;
  font-size  : .91rem;
  color      : var(--tone-text);
}
.main-nav a:hover { color: var(--tone-main); }

.header-right {
  display    : flex;
  align-items: center;
  gap        : 14px;
  flex-shrink: 0;
}
.header-tel {
  font-weight: 700;
  font-size  : .88rem;
  color      : var(--tone-main);
  white-space: nowrap;
}

.nav-burger {
  display       : none;
  flex-direction: column;
  gap           : 5px;
  background    : none;
  border        : none;
  padding       : 4px;
}
.nav-burger span {
  display      : block;
  width        : 24px;
  height       : 2px;
  background   : var(--tone-text);
  border-radius: 2px;
  transition   : all .25s;
}

/* ================================================================
   HERO
   ================================================================ */
.hero-wrap {
  background : linear-gradient(140deg, #e8f4fb 0%, #d4eaf6 45%, #c0dfF2 100%);
  overflow   : hidden;
  position   : relative;
}
.hero-wrap::after {
  content    : '';
  position   : absolute;
  right      : -10%;
  top        : -20%;
  width      : 60%;
  height     : 140%;
  background : radial-gradient(ellipse, rgba(74,174,203,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  align-items          : center;
  gap                  : 52px;
  padding              : 78px 0 64px;
  position             : relative;
  z-index              : 1;
}
.hero-tag {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  background     : rgba(26,120,190,.1);
  border         : 1px solid rgba(26,120,190,.22);
  color          : var(--tone-main);
  font-weight    : 800;
  font-size      : .77rem;
  letter-spacing : .1em;
  text-transform : uppercase;
  padding        : 6px 14px;
  border-radius  : var(--r-pill);
  margin-bottom  : 22px;
}
.hero-h1        { margin-bottom: 18px; }
.hero-sub {
  font-size   : 1.05rem;
  color       : var(--tone-muted);
  max-width   : 470px;
  margin-bottom: 32px;
}
.hero-actions {
  display    : flex;
  flex-wrap  : wrap;
  gap        : 12px;
  margin-bottom: 36px;
}
.hero-bullets {
  display  : flex;
  flex-wrap: wrap;
  gap      : 14px;
}
.hero-bullet {
  display    : flex;
  align-items: center;
  gap        : 8px;
  font-size  : .87rem;
  font-weight: 600;
  color      : var(--tone-muted);
}
.bullet-dot {
  width        : 8px;
  height       : 8px;
  min-width    : 8px;
  border-radius: 50%;
  background   : var(--tone-ok);
}

.hero-media { position: relative; }
.hero-img-box {
  border-radius: var(--r-lg);
  overflow     : hidden;
  box-shadow   : var(--sh-lift);
}
.hero-img-box img {
  width     : 100%;
  height    : 450px;
  object-fit: cover;
}
.hero-float-badge {
  position    : absolute;
  bottom      : 22px;
  left        : 22px;
  background  : var(--tone-white);
  border-radius: var(--r-md);
  padding     : 10px 16px;
  box-shadow  : var(--sh-card);
  display     : flex;
  align-items : center;
  gap         : 10px;
  font-size   : .84rem;
  font-weight : 700;
}
.hero-float-badge svg { color: var(--tone-main); flex-shrink: 0; }
.hero-float-badge small {
  display    : block;
  font-weight: 400;
  color      : var(--tone-muted);
  font-size  : .75rem;
  margin-top : 2px;
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-bar {
  background  : var(--tone-white);
  border-top  : 1px solid var(--tone-border);
  border-bottom:1px solid var(--tone-border);
}
.trust-row {
  display        : flex;
  align-items    : center;
  justify-content: space-around;
  flex-wrap      : wrap;
  gap            : 20px;
  padding        : 28px 0;
}
.trust-chip {
  display    : flex;
  align-items: center;
  gap        : 12px;
  font-size  : .9rem;
  font-weight: 600;
}
.trust-chip-ico {
  width           : 42px;
  height          : 42px;
  min-width       : 42px;
  border-radius   : 50%;
  background      : var(--tone-light);
  display         : flex;
  align-items     : center;
  justify-content : center;
}
.trust-chip-ico svg { width: 20px; height: 20px; color: var(--tone-main); }
.trust-chip-lbl small {
  display    : block;
  font-weight: 400;
  color      : var(--tone-muted);
  font-size  : .77rem;
  margin-top : 2px;
}

/* ================================================================
   PROBLEM / FOR WHOM
   ================================================================ */
.problem-sec { background: var(--tone-lighter); }
.problem-cols {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 60px;
  align-items          : center;
}
.challenge-list {
  margin-top: 26px;
  display   : flex;
  flex-direction: column;
  gap       : 18px;
}
.challenge-item {
  display: flex;
  gap    : 14px;
  align-items: flex-start;
}
.ch-icon {
  width         : 32px;
  height        : 32px;
  min-width     : 32px;
  border-radius : 50%;
  background    : var(--tone-light);
  border        : 1.5px solid var(--tone-border);
  display       : flex;
  align-items   : center;
  justify-content: center;
  margin-top    : 2px;
}
.ch-icon svg { width: 15px; height: 15px; color: var(--tone-main); }
.ch-body strong { display: block; font-size: .96rem; margin-bottom: 3px; }
.ch-body span   { font-size: .9rem; color: var(--tone-muted); }

.problem-photos {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows   : auto auto;
  gap                  : 16px;
}
.photo-box {
  border-radius: var(--r-md);
  overflow     : hidden;
  box-shadow   : var(--sh-card);
}
.photo-box img {
  width     : 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display   : block;
}
.photo-box:hover img  { transform: scale(1.04); }
.photo-box--tall      { grid-row: 1 / 3; }
.photo-box--tall img  { height: 100%; min-height: 240px; }
.photo-box:not(.photo-box--tall) img { height: 200px; }

/* ================================================================
   LIFESTYLE / TIP CARDS
   ================================================================ */
.lifestyle-sec { background: var(--tone-light); }
.cards-grid {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  gap                  : 22px;
}
.tip-card {
  background   : var(--tone-white);
  border-radius: var(--r-lg);
  overflow     : hidden;
  box-shadow   : var(--sh-card);
  transition   : transform .28s ease, box-shadow .28s ease;
}
.tip-card:hover {
  transform : translateY(-6px);
  box-shadow: var(--sh-lift);
}
.tip-card-img { width: 100%; height: 172px; object-fit: cover; }
.tip-card-body { padding: 18px 18px 22px; }
.tip-ico {
  width         : 38px;
  height        : 38px;
  border-radius : var(--r-sm);
  background    : var(--tone-light);
  display       : flex;
  align-items   : center;
  justify-content: center;
  margin-bottom : 10px;
}
.tip-ico svg { width: 20px; height: 20px; color: var(--tone-main); }
.tip-card h3 { font-size: .97rem; margin-bottom: 7px; }
.tip-card p  { font-size: .86rem; color: var(--tone-muted); line-height: 1.55; margin: 0; }

/* ================================================================
   PRODUCT SECTION
   ================================================================ */
.product-sec {
  background: var(--tone-white);
  position  : relative;
  overflow  : hidden;
}
.product-sec::before {
  content   : '';
  position  : absolute;
  top       : -100px;
  right     : -100px;
  width     : 500px;
  height    : 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,174,203,.07) 0%, transparent 70%);
  pointer-events: none;
}
.product-cols {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 68px;
  align-items          : center;
  position             : relative;
  z-index              : 1;
}
.product-visual-area { display: flex; justify-content: center; }
.prod-frame {
  position : relative;
  max-width: 360px;
  width    : 100%;
}
.prod-frame::before {
  content      : '';
  position     : absolute;
  inset        : -30px;
  background   : radial-gradient(circle, var(--tone-light) 0%, transparent 68%);
  border-radius: 50%;
  z-index      : 0;
}
.prod-frame img {
  position  : relative;
  z-index   : 1;
  width     : 100%;
  filter    : drop-shadow(0 14px 36px rgba(26,120,190,.22));
}

.prod-quote {
  background  : var(--tone-light);
  border-left : 4px solid var(--tone-main);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding     : 14px 18px;
  font-style  : italic;
  font-size   : .95rem;
  color       : var(--tone-muted);
  margin      : 20px 0 28px;
}
.feat-list {
  display       : flex;
  flex-direction: column;
  gap           : 13px;
  margin-bottom : 30px;
}
.feat-row {
  display    : flex;
  align-items: flex-start;
  gap        : 12px;
}
.feat-check {
  width         : 22px;
  height        : 22px;
  min-width     : 22px;
  border-radius : 50%;
  background    : var(--tone-ok);
  display       : flex;
  align-items   : center;
  justify-content: center;
  margin-top    : 2px;
  flex-shrink   : 0;
}
.feat-check svg { width: 11px; height: 11px; color: #fff; }
.feat-row span  { font-size: .95rem; }

.price-row {
  display      : flex;
  align-items  : center;
  gap          : 20px;
  padding      : 18px 22px;
  background   : var(--tone-light);
  border       : 1px solid var(--tone-border);
  border-radius: var(--r-md);
  flex-wrap    : wrap;
}
.price-tag {
  font-family: var(--f-head);
  font-size  : 2.1rem;
  font-weight: 700;
  color      : var(--tone-cta);
  line-height: 1;
}
.price-note {
  font-size   : .78rem;
  color       : var(--tone-muted);
  font-family : var(--f-body);
  font-weight : 400;
  margin-top  : 4px;
}

/* ================================================================
   REVIEWS / TESTIMONIALS
   ================================================================ */
.reviews-sec { background: var(--tone-lighter); }
.reviews-cols {
  display              : grid;
  grid-template-columns: repeat(3,1fr);
  gap                  : 26px;
}
.review-card {
  background   : var(--tone-white);
  border-radius: var(--r-lg);
  padding      : 28px;
  box-shadow   : var(--sh-card);
  border       : 1px solid var(--tone-border);
  position     : relative;
}
.review-card::after {
  content     : '\201C';
  position    : absolute;
  top         : 14px;
  right       : 18px;
  font-family : var(--f-head);
  font-size   : 5.5rem;
  color       : var(--tone-surface);
  line-height : 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: #F5A520; font-size: .9rem; }
.review-body {
  font-size  : .95rem;
  color      : var(--tone-muted);
  margin-bottom: 20px;
  line-height: 1.68;
  position   : relative;
  z-index    : 1;
}
.reviewer {
  display    : flex;
  align-items: center;
  gap        : 12px;
}
.rev-avatar {
  width         : 44px;
  height        : 44px;
  min-width     : 44px;
  border-radius : 50%;
  background    : var(--tone-light);
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-weight   : 700;
  font-size     : .95rem;
  color         : var(--tone-main);
}
.rev-name  { font-weight: 700; font-size: .9rem; }
.rev-place { font-size: .78rem; color: var(--tone-muted); }

/* ================================================================
   ORDER SECTION
   ================================================================ */
.order-sec {
  background: linear-gradient(140deg, #1569A8 0%, #1060A0 45%, #0C4C88 100%);
  position  : relative;
  overflow  : hidden;
}
.order-sec::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(74,174,203,.22) 0%, transparent 60%);
  pointer-events: none;
}
.order-cols {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 68px;
  align-items          : center;
  position             : relative;
  z-index              : 1;
}
.order-copy { color: var(--tone-white); }
.order-copy h2 { color: var(--tone-white); margin-bottom: 14px; }
.order-copy > p {
  color       : rgba(255,255,255,.72);
  font-size   : 1rem;
  margin-bottom: 28px;
}
.order-perks {
  display       : flex;
  flex-direction: column;
  gap           : 14px;
}
.perk-row {
  display    : flex;
  align-items: center;
  gap        : 12px;
  font-size  : .94rem;
  font-weight: 600;
  color      : rgba(255,255,255,.82);
}
.perk-ico {
  width         : 34px;
  height        : 34px;
  min-width     : 34px;
  border-radius : 50%;
  background    : rgba(255,255,255,.14);
  display       : flex;
  align-items   : center;
  justify-content: center;
}
.perk-ico svg { width: 16px; height: 16px; color: #fff; }

.order-card {
  background   : var(--tone-white);
  border-radius: var(--r-lg);
  padding      : 36px;
  box-shadow   : 0 10px 48px rgba(0,0,0,.22);
}
.form-headline { font-family: var(--f-head); font-size: 1.18rem; font-weight: 700; margin-bottom: 6px; }
.form-price    {
  font-family : var(--f-head);
  font-size   : 2rem;
  font-weight : 700;
  color       : var(--tone-cta);
  margin-bottom: 24px;
  line-height : 1;
}
.form-price small {
  font-family : var(--f-body);
  font-size   : .78rem;
  font-weight : 400;
  color       : var(--tone-muted);
  margin-left : 6px;
}
.field { margin-bottom: 15px; }
.field label {
  display     : block;
  font-weight : 700;
  font-size   : .83rem;
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width         : 100%;
  padding       : 11px 15px;
  border        : 1.5px solid var(--tone-border);
  border-radius : var(--r-sm);
  font-family   : var(--f-body);
  font-size     : .95rem;
  color         : var(--tone-text);
  background    : var(--tone-white);
  transition    : border-color .2s, box-shadow .2s;
  outline       : none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--tone-main);
  box-shadow  : 0 0 0 3px rgba(26,120,190,.12);
}
.form-legal {
  font-size  : .77rem;
  color      : var(--tone-muted);
  line-height: 1.55;
  margin-top : 10px;
}
.form-legal a { color: var(--tone-main); }
.submit-btn   { width: 100%; justify-content: center; margin-top: 14px; font-size: 1.04rem; }
.form-footer-note {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 6px;
  font-size      : .8rem;
  color          : var(--tone-muted);
  margin-top     : 12px;
}
.form-footer-note svg { color: var(--tone-ok); flex-shrink: 0; }

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-sec  { background: var(--tone-white); }
.faq-body { max-width: 760px; margin: 0 auto; }

.faq-block { border-bottom: 1px solid var(--tone-border); }
.faq-block:first-child { border-top: 1px solid var(--tone-border); }

.faq-trigger {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  gap             : 16px;
  padding         : 20px 0;
  font-weight     : 700;
  font-size       : .98rem;
  cursor          : pointer;
  color           : var(--tone-text);
  background      : none;
  border          : none;
  width           : 100%;
  text-align      : left;
  font-family     : var(--f-body);
  transition      : color .2s;
}
.faq-trigger:hover  { color: var(--tone-main); }
.faq-trigger.open   { color: var(--tone-main); }
.faq-arrow {
  width         : 26px;
  height        : 26px;
  min-width     : 26px;
  border-radius : 50%;
  background    : var(--tone-light);
  display       : flex;
  align-items   : center;
  justify-content: center;
  transition    : transform .28s ease, background .2s;
}
.faq-trigger.open .faq-arrow { transform: rotate(180deg); background: var(--tone-main); }
.faq-arrow svg { width: 14px; height: 14px; color: var(--tone-main); }
.faq-trigger.open .faq-arrow svg { color: #fff; }

.faq-panel {
  max-height : 0;
  overflow   : hidden;
  transition : max-height .35s ease, padding-bottom .3s ease;
}
.faq-panel.open { max-height: 500px; padding-bottom: 20px; }
.faq-text {
  font-size  : .95rem;
  color      : var(--tone-muted);
  line-height: 1.72;
  padding-right: 42px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-sec { background: var(--tone-light); }
.contact-cols {
  display              : grid;
  grid-template-columns: repeat(3,1fr);
  gap                  : 28px;
}
.contact-box {
  background   : var(--tone-white);
  border-radius: var(--r-lg);
  padding      : 30px;
  text-align   : center;
  box-shadow   : var(--sh-soft);
  border       : 1px solid var(--tone-border);
}
.contact-ico {
  width         : 52px;
  height        : 52px;
  border-radius : 50%;
  background    : var(--tone-light);
  display       : flex;
  align-items   : center;
  justify-content: center;
  margin        : 0 auto 16px;
}
.contact-ico svg { width: 24px; height: 24px; color: var(--tone-main); }
.contact-box h3  { font-size: 1rem; margin-bottom: 8px; }
.contact-box a   { font-size: .93rem; }
.contact-box p   { font-size: .93rem; color: var(--tone-muted); margin: 0; }
.contact-detail  { margin-top: 6px; font-size: .8rem !important; color: var(--tone-muted) !important; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #0D2438;
  color      : rgba(255,255,255,.6);
  padding    : 44px 0 28px;
}
.footer-cols {
  display              : grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap                  : 44px;
  margin-bottom        : 32px;
}
.footer-brand-desc {
  font-size  : .87rem;
  max-width  : 290px;
  margin-top : 14px;
  line-height: 1.68;
}
.footer-col-head {
  font-family   : var(--f-body);
  font-weight   : 700;
  font-size     : .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color         : rgba(255,255,255,.35);
  margin-bottom : 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-nav a:hover { color: var(--tone-support); }

.footer-hr {
  border    : none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin    : 0 0 20px;
}
.footer-base {
  display      : flex;
  align-items  : center;
  justify-content: space-between;
  flex-wrap    : wrap;
  gap          : 10px;
  font-size    : .82rem;
}
.footer-legal-note {
  font-size  : .76rem;
  color      : rgba(255,255,255,.3);
  max-width  : 680px;
  margin-top : 14px;
  line-height: 1.62;
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-bar {
  position   : fixed;
  bottom     : 0;
  left       : 0;
  right      : 0;
  z-index    : 999;
  background : var(--tone-white);
  border-top : 2px solid var(--tone-border);
  box-shadow : 0 -4px 28px rgba(0,0,0,.1);
  padding    : 18px 0;
  transform  : translateY(100%);
  transition : transform .4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-row {
  display    : flex;
  align-items: center;
  gap        : 24px;
  flex-wrap  : wrap;
}
.cookie-text {
  font-size  : .88rem;
  color      : var(--tone-muted);
  flex       : 1;
  min-width  : 250px;
  margin     : 0;
}
.cookie-text a { color: var(--tone-main); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ck-btn {
  padding       : 9px 20px;
  border-radius : var(--r-pill);
  font-weight   : 700;
  font-size     : .87rem;
  border        : none;
  font-family   : var(--f-body);
  transition    : all .2s;
  cursor        : pointer;
}
.ck-accept { background: var(--tone-cta); color: #fff; }
.ck-accept:hover { background: var(--tone-cta-dark); }
.ck-decline {
  background  : var(--tone-lighter);
  color       : var(--tone-muted);
  border      : 1px solid var(--tone-border);
}
.ck-decline:hover { background: var(--tone-surface); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ================================================================
   LEGAL PAGE LAYOUT
   ================================================================ */
.legal-hero { background: var(--tone-light); padding: 52px 0; border-bottom: 1px solid var(--tone-border); }
.legal-hero h1 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-top: 14px; }
.legal-meta { font-size: .85rem; color: var(--tone-muted); margin-top: 8px; }

.legal-body  { max-width: 780px; margin: 0 auto; padding: var(--sec-gap) 24px; }
.legal-body h2 { margin: 32px 0 12px; font-size: 1.25rem; }
.legal-body h3 { margin: 22px 0 8px; font-size: 1.05rem; }
.legal-body p  { font-size: .95rem; color: var(--tone-muted); }
.legal-body ul { margin: 12px 0 16px 20px; list-style: disc; }
.legal-body ul li { font-size: .95rem; color: var(--tone-muted); margin-bottom: 6px; }
.legal-date { font-size: .82rem; color: var(--tone-muted); margin-top: 8px; }

/* legal-page (section wrapper used in new pages) */
.legal-page { padding: var(--sec-gap) 0; }
.legal-wrap {
  max-width   : 780px;
  margin      : 0 auto;
  padding     : 0 24px;
}
.legal-wrap h2 { margin: 36px 0 12px; font-size: 1.2rem; color: var(--tone-dark); }
.legal-wrap p  { font-size: .95rem; color: var(--tone-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-wrap ul { margin: 10px 0 18px 22px; list-style: disc; }
.legal-wrap ul li { font-size: .93rem; color: var(--tone-muted); margin-bottom: 7px; line-height: 1.65; }
.legal-wrap ul ul { margin-top: 6px; }
.legal-wrap address { font-style: normal; color: var(--tone-muted); font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }
.legal-wrap a { color: var(--tone-main); }
.legal-wrap a:hover { text-decoration: underline; }

/* breadcrumb */
.breadcrumb { font-size: .83rem; color: var(--tone-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--tone-main); }
.breadcrumb a:hover { text-decoration: underline; }

/* cookie table */
.cookie-table-wrap { overflow-x: auto; margin: 16px 0 20px; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cookie-table th,
.cookie-table td { border: 1px solid var(--tone-border); padding: 10px 14px; text-align: left; }
.cookie-table th { background: var(--tone-light); color: var(--tone-dark); font-weight: 600; }
.cookie-table td { color: var(--tone-muted); }
.cookie-table code { font-size: .82rem; background: var(--tone-light); padding: 2px 6px; border-radius: 4px; }

/* disclaimer notice */
.disclaimer-notice {
  background    : var(--tone-light);
  border-left   : 4px solid var(--tone-main);
  border-radius : 0 8px 8px 0;
  padding       : 16px 20px;
  margin-bottom : 28px;
}
.disclaimer-notice p { margin: 0; }

/* footer-grid (3-col footer for legal pages) */
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding: var(--sec-gap) 0 32px; }
.footer-logo { opacity: 1; margin-bottom: 10px; display: inline-block; }

/* ================================================================
   SUCCESS PAGE
   ================================================================ */
.success-page { padding: var(--sec-gap) 0; min-height: 60vh; display: flex; align-items: center; }
.success-card {
  max-width     : 560px;
  margin        : 0 auto;
  background    : var(--tone-white);
  border-radius : 18px;
  border        : 1px solid var(--tone-border);
  box-shadow    : var(--sh-card);
  padding       : 52px 44px;
  text-align    : center;
}
.success-icon { margin: 0 auto 28px; width: 80px; height: 80px; }
.success-icon svg { width: 80px; height: 80px; }
.success-card h1 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 16px; }
.success-lead { font-size: 1rem; color: var(--tone-muted); line-height: 1.75; margin-bottom: 30px; }
.success-details { display: flex; flex-direction: column; gap: 16px; text-align: left; margin-top: 8px; }
.success-detail-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: var(--tone-light); border-radius: 10px; }
.detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.success-detail-item div { display: flex; flex-direction: column; gap: 3px; }
.success-detail-item strong { font-size: .9rem; color: var(--tone-dark); }
.success-detail-item span { font-size: .88rem; color: var(--tone-muted); }
.success-detail-item a { color: var(--tone-main); }

/* success – responsive */
@media (max-width: 640px) {
  .success-card { padding: 36px 24px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1040px) {
  .cards-grid    { grid-template-columns: repeat(2,1fr); }
  .contact-cols  { grid-template-columns: 1fr 1fr; }
  .footer-cols   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  :root { --sec-gap: 58px; }
  .hero-grid    { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-box img { height: 320px; }
  .product-cols { grid-template-columns: 1fr; gap: 42px; }
  .product-visual-area { order: -1; }
  .problem-cols { grid-template-columns: 1fr; gap: 36px; }
  .problem-photos { grid-template-columns: 1fr 1fr; }
  .photo-box--tall { grid-row: auto; }
  .photo-box--tall img { height: 200px; min-height: unset; }
  .photo-box:not(.photo-box--tall) img { height: 200px; }
  .order-cols   { grid-template-columns: 1fr; gap: 40px; }
  .reviews-cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --sec-gap: 46px; }
  .main-nav { display: none; }
  .main-nav.open {
    display       : flex;
    flex-direction: column;
    position      : fixed;
    top           : 70px;
    left          : 0;
    right         : 0;
    background    : var(--tone-white);
    border-bottom : 1px solid var(--tone-border);
    padding       : 18px 24px 22px;
    gap           : 16px;
    box-shadow    : var(--sh-card);
    z-index       : 150;
  }
  .nav-burger { display: flex; }
  .header-tel { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cards-grid   { grid-template-columns: 1fr; }
  .contact-cols { grid-template-columns: 1fr; }
  .footer-cols  { grid-template-columns: 1fr; }
  .footer-base  { flex-direction: column; text-align: center; }
  .trust-row    { justify-content: flex-start; }
  .cookie-row   { flex-direction: column; align-items: flex-start; }
  .price-row    { flex-direction: column; align-items: flex-start; gap: 14px; }
}
