:root {
  --bg: #f5f0e8;
  --white: #ffffff;
  --ink: #0f0e0c;
  --muted: #6b6560;
  --dim: #b0aaa4;
  --border: #e0d9d0;
  --card: #ffffff;
  --tg: #229ED9;
  --tg-dark: #1a7ab5;
  --tg-soft: #e8f5fd;
  --orange: #ff6b35;
  --orange-soft: #fff3ee;
  --purple: #7c3aed;
  --purple-soft: #f3eeff;
  --green: #16a34a;
  --green-soft: #f0fdf4;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --yellow: #fbbf24;
  --pink: #ec4899;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
}
.topbar .tg-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--tg); color: white;
  padding: 2px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 700; margin: 0 6px;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 1px;
  color: var(--ink);
}
.logo span { color: var(--tg); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: white;
  padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}
.nav-cta:hover { background: var(--wa-dark); transform: translateY(-1px); }
.nav-cta svg { width: 17px; height: 17px; }

/* ── HERO ── */
.hero {
  padding: 80px 60px 0;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  min-height: 85vh;
}

.hero-left { padding-bottom: 80px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tg-soft);
  border: 1px solid rgba(34,158,217,0.25);
  color: var(--tg);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.hero-tag svg { width: 16px; height: 16px; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.hero h1 .tg-color { color: var(--tg); }

.hero-desc {
  font-size: 17px; color: var(--muted);
  line-height: 1.8; margin-bottom: 40px; max-width: 460px;
}

.hero-ctas { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }

.btn-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 18px 28px; border-radius: 14px;
  font-size: 17px; font-weight: 800;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa-big:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.btn-wa-big svg { width: 24px; height: 24px; flex-shrink: 0; }

.btn-micro {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--dim);
}
.btn-micro svg { width: 13px; height: 13px; color: var(--wa); }

.hero-badges {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; margin-top: 6px;
  box-shadow: var(--shadow-sm);
}
.avs { display: flex; }
.av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--white); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.av:first-child { margin-left: 0; }
.badge-txt { font-size: 12px; color: var(--muted); line-height: 1.4; }
.badge-txt strong { color: var(--ink); display: block; font-size: 13px; }

/* ── HERO RIGHT: Telegram Chat + Image Grid ── */
.hero-right {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 0;
}

/* Image gallery grid floating */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: -40px;
  position: relative; z-index: 2;
}

.img-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.img-card:hover { transform: scale(1.03); }
.img-card:nth-child(2) { margin-top: -20px; }
.img-card:nth-child(3) { margin-top: 10px; }

/* Colorful gradient placeholder images */
.ig-1 { background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #ff9ff3 100%); }
.ig-2 { background: linear-gradient(135deg, #48dbfb 0%, #0abde3 50%, #006ba6 100%); }
.ig-3 { background: linear-gradient(135deg, #ff9f43 0%, #ee5a24 50%, #c0392b 100%); }
.ig-4 { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 50%, #2d3436 100%); }
.ig-5 { background: linear-gradient(135deg, #55efc4 0%, #00b894 50%, #00cec9 100%); }
.ig-6 { background: linear-gradient(135deg, #fd79a8 0%, #e84393 50%, #6c5ce7 100%); }

.img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 20px 10px 8px;
  font-size: 10px; font-weight: 700; color: white;
  letter-spacing: 0.05em;
}
.ai-gen-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  color: white; font-size: 9px; font-weight: 700;
  padding: 3px 7px; border-radius: 50px;
  letter-spacing: 0.06em;
}

/* Telegram chat mockup below */
.tg-chat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  position: relative; z-index: 3;
}
.tg-bar {
  background: var(--tg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.tg-av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.tg-name { font-size: 14px; font-weight: 700; color: white; }
.tg-status { font-size: 11px; color: rgba(255,255,255,0.7); }
.tg-body { background: #e8edf2; padding: 16px 14px; display: flex; flex-direction: column; gap: 8px; }

.tg-msg { max-width: 85%; }
.tg-msg.me { align-self: flex-end; }
.tg-msg.bot { align-self: flex-start; }
.tg-bubble {
  padding: 9px 13px; border-radius: 14px;
  font-size: 13px; line-height: 1.5;
}
.tg-msg.me .tg-bubble { background: var(--tg); color: white; border-radius: 14px 14px 2px 14px; }
.tg-msg.bot .tg-bubble { background: white; color: var(--ink); border-radius: 14px 14px 14px 2px; box-shadow: var(--shadow-sm); }
.tg-time { font-size: 10px; color: #999; margin-top: 3px; }
.tg-msg.me .tg-time { text-align: right; }

/* Generated image in chat */
.tg-image-msg {
  align-self: flex-start;
  max-width: 200px;
}
.tg-image-preview {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f64f59 100%);
  position: relative;
  box-shadow: var(--shadow);
}
.tg-image-preview .img-gen-tag {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  color: white; font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}

/* Speed badge */
.speed-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--orange);
  color: white; border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  animation: popFloat 3s ease-in-out infinite;
  z-index: 10;
}
@keyframes popFloat { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(2deg)} }
.speed-badge .big { font-family: 'Bebas Neue', sans-serif; font-size: 28px; line-height: 1; }
.speed-badge .label { font-size: 11px; font-weight: 700; line-height: 1.3; }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marquee 25s linear infinite;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.marquee-item.accent { color: var(--orange); }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ── SECTION BASE ── */
.section { padding: 96px 60px; max-width: 1280px; margin: 0 auto; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--orange); margin-bottom: 16px;
}
.sec-tag::before { content:''; width:24px; height:2px; background:var(--orange); border-radius:2px; }
.sec-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95; letter-spacing: 1px;
  color: var(--ink); margin-bottom: 16px;
}
.sec-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 540px; margin-bottom: 56px; }

/* ── PROBLEM ── */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prob-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prob-icon { font-size: 32px; margin-bottom: 16px; }
.prob-title { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.prob-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── HOW IT WORKS — Visual timeline ── */
.how-timeline { position: relative; }
.how-timeline::before {
  content: '';
  position: absolute; left: 31px; top: 0; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px);
}

.how-step {
  display: flex; gap: 24px;
  padding: 0 0 40px 0;
  position: relative;
}
.how-step:last-child { padding-bottom: 0; }

.step-dot {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  flex-shrink: 0; position: relative; z-index: 1;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}
.sd-1 { background: var(--tg); color: white; }
.sd-2 { background: var(--orange); color: white; }
.sd-3 { background: var(--purple); color: white; }
.sd-4 { background: var(--green); color: white; }

.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  flex: 1; box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.step-content:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.step-time-badge { font-size: 11px; font-weight: 700; color: var(--tg); background: var(--tg-soft); padding: 3px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.step-title { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Chat demo inside step */
.step-demo {
  margin-top: 16px;
  background: #e8edf2;
  border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.sd-row { display: flex; align-items: flex-end; gap: 6px; }
.sd-row.right { flex-direction: row-reverse; }
.sd-bubble {
  padding: 8px 12px; border-radius: 12px;
  font-size: 12px; line-height: 1.5; max-width: 200px;
}
.sd-bubble.user { background: var(--tg); color: white; border-radius: 12px 12px 2px 12px; }
.sd-bubble.bot { background: white; color: var(--ink); border-radius: 12px 12px 12px 2px; box-shadow: var(--shadow-sm); }
.sd-img {
  width: 80px; height: 80px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; box-shadow: var(--shadow-sm);
}

/* ── FEATURES ── */
.features-section { background: var(--ink); padding: 96px 60px; }
.features-inner { max-width: 1280px; margin: 0 auto; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.feat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px;
  transition: all .3s;
}
.feat-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.feat-ic { font-size: 32px; margin-bottom: 16px; display: block; }
.feat-title { font-size: 17px; font-weight: 800; color: white; margin-bottom: 10px; }
.feat-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.feat-pill {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
}
.fp-tg { background: rgba(34,158,217,0.2); color: var(--tg); }
.fp-orange { background: rgba(255,107,53,0.2); color: var(--orange); }
.fp-purple { background: rgba(124,58,237,0.2); color: #a78bfa; }

/* use cases */
.use-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px;
}
.use-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.use-ic { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.use-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.use-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── GALLERY SHOWCASE ── */
.gallery-section { padding: 96px 60px; max-width: 1280px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 12px; margin-top: 48px;
}
.gal-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gal-item:hover { transform: scale(1.03); box-shadow: var(--shadow-xl); }
.gal-item.big { grid-column: span 2; grid-row: span 2; }
.gal-bg { width: 100%; height: 100%; }
.g1 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.g2 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.g3 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.g4 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.g5 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.g6 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.g7 { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
}
.gal-prompt { font-size: 11px; color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 4px; }
.gal-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: white; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 50px; width: fit-content;
}
.gal-center-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.gal-emoji { font-size: 48px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.gal-type { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }

/* ── TESTIMONIALS ── */
.testi-section { padding: 96px 60px; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-inner { max-width: 1280px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: all .3s; position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute; top: -10px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px; color: var(--border);
  line-height: 1; pointer-events: none;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; position: relative; }
.testi-text strong { color: var(--ink); }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 800; color: var(--ink); }
.t-role { font-size: 12px; color: var(--dim); }
.t-verified { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--green); font-weight: 700; margin-top: 3px; }
.t-verified svg { width: 11px; height: 11px; }

/* ── PRICING ── */
.pricing-section { padding: 96px 60px; max-width: 1280px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }

.price-card {
  border-radius: 20px; padding: 36px 32px;
  position: relative; transition: all .3s;
  border: 2px solid var(--border);
  background: var(--white);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.price-card.featured {
  border-color: var(--tg);
  background: var(--tg);
  color: white;
}
.pop-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.price-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--dim); margin-bottom: 16px; }
.price-card.featured .price-tier { color: rgba(255,255,255,0.6); }
.price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 1; letter-spacing: 1px;
  color: var(--ink); margin-bottom: 4px;
}
.price-card.featured .price-num { color: white; }
.price-sup { font-size: 28px; }
.price-note { font-size: 12px; color: var(--dim); margin-bottom: 28px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.5); }
.price-sep { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-card.featured .price-sep { background: rgba(255,255,255,0.2); }

.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fi { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.fi.on { color: var(--ink); font-weight: 500; }
.fi.off { opacity: 0.3; text-decoration: line-through; }
.price-card.featured .fi.on { color: white; }
.price-card.featured .fi { color: rgba(255,255,255,0.5); }
.fi-ic { font-size: 15px; flex-shrink: 0; }

.btn-order {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; border-radius: 12px;
  font-size: 15px; font-weight: 800; text-decoration: none; transition: all .2s;
}
.bo-outline { background: transparent; border: 2px solid var(--border); color: var(--muted); }
.bo-outline:hover { border-color: var(--ink); color: var(--ink); background: var(--bg); }
.bo-wa { background: var(--wa); color: white; border: 2px solid var(--wa); box-shadow: 0 2px 16px rgba(37,211,102,0.3); }
.bo-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
.bo-wa svg { width: 18px; height: 18px; }
.bo-white { background: white; color: var(--ink); border: 2px solid white; }
.bo-white:hover { background: var(--bg); }

/* ── GUARANTEE ── */
.guarantee {
  margin-top: 36px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px; padding: 36px 44px;
  display: flex; align-items: center; gap: 32px;
  box-shadow: var(--shadow-sm);
}
.g-icon { font-size: 52px; flex-shrink: 0; }
.g-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.5px; color: var(--ink); margin-bottom: 8px; }
.g-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-section { padding: 96px 60px; max-width: 1280px; margin: 0 auto; }
.faq-wrap { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 40px; background: var(--white); box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; font-size: 15px; font-weight: 700; color: var(--ink);
  cursor: pointer; transition: background .2s; user-select: none;
}
.faq-q:hover { background: var(--bg); }
.faq-arrow { font-size: 20px; color: var(--dim); transition: transform .3s; }
.faq-a {
  padding: 0 28px; font-size: 14px; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 28px 22px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--tg); }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--ink);
  padding: 0 60px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 96px 0;
  position: relative; z-index: 1;
}
.final-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(34,158,217,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,107,53,0.12) 0%, transparent 40%);
}
.cta-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--tg); margin-bottom: 24px; display: block; }
.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92; letter-spacing: 1px;
  color: white; margin-bottom: 24px;
}
.final-cta h2 .stroke { -webkit-text-stroke: 2px rgba(255,255,255,0.5); color: transparent; }
.final-cta h2 .tg-hl { color: var(--tg); }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 44px; }
.final-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa); color: white;
  padding: 20px 44px; border-radius: 16px;
  font-size: 18px; font-weight: 800;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 32px rgba(37,211,102,0.4);
}
.final-btn:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 8px 48px rgba(37,211,102,0.55); }
.final-btn svg { width: 26px; height: 26px; }
.reassure-row {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 28px; flex-wrap: wrap;
}
.rr { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.3); }
.rr svg { width: 14px; height: 14px; color: var(--tg); }

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 36px 60px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
footer .logo { color: white; }
footer p { font-size: 12px; color: #333; }

/* ── FLOAT WA ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 14px 22px; border-radius: 50px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all .25s;
  animation: popUp .5s ease 1.2s both;
}
@keyframes popUp { from{transform:scale(0) translateY(20px);opacity:0} to{transform:scale(1);opacity:1} }
.float-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }
.float-wa svg { width: 22px; height: 22px; }
.float-pulse {
  position: absolute; top: -4px; right: -4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); border: 2px solid white;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(255,107,53,0.6)} 70%{box-shadow:0 0 0 9px rgba(255,107,53,0)} 100%{box-shadow:0 0 0 0 rgba(255,107,53,0)} }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; padding: 80px 24px 40px; min-height: auto; gap: 48px; }
  .img-gallery { grid-template-columns: repeat(3, 1fr); }
  .img-card:nth-child(2), .img-card:nth-child(3) { margin-top: 0; }
  .speed-badge { display: none; }
  .section, .gallery-section, .pricing-section, .faq-section { padding: 64px 24px; }
  .features-section, .testi-section { padding: 64px 24px; }
  .final-cta { padding: 0 24px; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .problem-grid, .feat-grid, .testi-grid, .pricing-grid, .use-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item.big { grid-column: span 2; }
  .guarantee { flex-direction: column; text-align: center; padding: 28px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
}