:root {
  --bg-1: #fff6e8;
  --bg-2: #f9e2d1;
  --bg-3: #f2c7ba;
  --brand: #ed5a3c;
  --brand-2: #f39b6d;
  --brand-deep: #bc3c24;
  --text: #2b201e;
  --muted: #765e58;
  --white: #fffaf5;
  --line: rgba(88, 56, 51, 0.12);
  --shadow: 0 24px 60px rgba(109, 52, 31, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-display: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Trebuchet MS", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 100% -10%, rgba(243, 155, 109, 0.35), transparent 60%),
    radial-gradient(800px 580px at -5% 100%, rgba(237, 90, 60, 0.28), transparent 58%),
    linear-gradient(140deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}

#app {
  position: relative;
  z-index: 1;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 250, 245, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-panel {
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: 56px 32px;
}

.section-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .section-panel {
    padding: 36px 20px;
  }

  .section-subtitle {
    margin-bottom: 24px;
  }
}

/* Base button styles - extended by component classes */
button {
  font-family: inherit;
}

img {
  max-width: 100%;
}

/* Shell & Layout */
.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 36px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
}

.hero {
  padding: 24px;
}

.topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(237, 90, 60, 0.14);
}

.lang-switch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lang-btn,
.cta-btn,
.ghost-btn {
  border: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  font-family: inherit;
}

.lang-btn {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(237, 90, 60, 0.1);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 12px 22px rgba(188, 60, 36, 0.25);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.hero-copy h1 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5.1vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.72;
  font-size: 16px;
}

.actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-btn,
.ghost-btn {
  border-radius: 16px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 800;
}

.cta-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 26px rgba(188, 60, 36, 0.24);
}

.ghost-btn {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(237, 90, 60, 0.16);
}

.cta-btn:hover,
.ghost-btn:hover,
.lang-btn:hover {
  transform: translateY(-1px);
}

.hero-visual {
  border-radius: var(--radius-lg);
  min-height: 240px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 244, 237, 0.86)),
    linear-gradient(125deg, rgba(243, 155, 109, 0.42), rgba(237, 90, 60, 0.34));
  border: 1px solid rgba(237, 90, 60, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 106px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(88, 35, 22, 0.18);
  animation: liftIn 700ms ease both;
}

.hero-visual img:nth-child(2) { animation-delay: 90ms; }
.hero-visual img:nth-child(3) { animation-delay: 180ms; }
.hero-visual img:nth-child(4) { animation-delay: 260ms; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.stat-card p {
  margin: 0;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gallery-wrap {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.profile-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(99, 46, 28, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: fadeUp 700ms ease both;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(99, 46, 28, 0.2);
}

.profile-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.profile-info {
  padding: 12px;
  text-align: left;
}

.profile-name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.profile-desc {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.side {
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  align-content: start;
}

.logo {
  margin: 0;
  font-size: 44px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
  color: var(--brand-deep);
}

.side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.feature {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.fade {
  animation: fadeUp 700ms ease both;
}

.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 170ms; }
.delay-3 { animation-delay: 260ms; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .gallery-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 14px, 1180px);
    margin-bottom: 20px;
  }

  .hero,
  .side {
    padding: 16px;
  }

  .gallery-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 12vw, 48px);
  }

  .profile-img {
    height: 150px;
  }
}

/* Download Modal */
.download-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  background: rgba(18, 11, 8, 0.48);
  backdrop-filter: blur(6px);
  padding: 12px;
}

.download-modal {
  width: min(480px, 100%);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 250, 245, 0.95);
  border: 1px solid rgba(237, 90, 60, 0.16);
  box-shadow: 0 24px 54px rgba(79, 35, 21, 0.24);
  color: var(--text);
}

.download-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.download-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.progress-wrap {
  margin-top: 14px;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(237, 90, 60, 0.14);
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 160ms linear;
}

.download-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.download-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(99, 46, 28, 0.14);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.step-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.step-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Carousel */
.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 400ms ease;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  font-size: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 12px);
  margin-right: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testimonial-name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.testimonial-location {
  margin: 2px 0 10px;
  font-size: 12px;
  color: var(--muted);
}

.stars {
  color: #ffb400;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(237, 90, 60, 0.25);
  cursor: pointer;
  transition: background 180ms ease;
}

.carousel-dot.active {
  background: var(--brand);
}

@media (max-width: 980px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 720px) {
  .testimonial-card {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* Safety Promise */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(99, 46, 28, 0.1);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--brand-deep);
}

.trust-label {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.trust-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Community Vibes Masonry */
.masonry {
  column-count: 4;
  column-gap: 14px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 300ms ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(43, 32, 30, 0.7));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.masonry-item:hover .masonry-tag {
  opacity: 1;
}

@media (max-width: 980px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  .masonry {
    column-count: 1;
  }
}

/* FAQ Accordion */
.accordion {
  max-width: 760px;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.accordion-icon {
  transition: transform 250ms ease;
  font-size: 22px;
  color: var(--brand-deep);
  margin-left: 12px;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.accordion-body-inner {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* Floating Particles */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(243, 155, 109, 0.4) 50%, transparent 70%);
  filter: blur(1px);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(110vh) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-10vh) translateX(var(--drift)) scale(1.1);
    opacity: 0;
  }
}

/* 3D Tilt Cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 200ms ease;
}

.tilt-card .tilt-inner {
  transform: translateZ(20px);
}

/* Card Shine Effect */
.shine-wrap {
  position: relative;
  overflow: hidden;
}

.shine-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 600ms ease;
  pointer-events: none;
  z-index: 2;
}

.shine-wrap:hover::before {
  transform: translateX(100%);
}

/* Typing Cursor */
.typing-cursor::after {
  content: "|";
  color: var(--brand);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Gradient Text Animation */
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--brand-deep),
    var(--brand),
    var(--brand-2),
    var(--brand-deep)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Button Pulse Glow */
.pulse-glow {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 14px 26px rgba(188, 60, 36, 0.24);
  }
  50% {
    box-shadow: 0 14px 34px rgba(188, 60, 36, 0.42), 0 0 20px rgba(243, 155, 109, 0.35);
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  z-index: 100;
  width: 0%;
  transition: width 50ms linear;
}

/* Telegram Mini App Safari Overlay */
.tg-safari-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 11, 8, 0.72);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.tg-safari-overlay.visible {
  display: flex;
}

body.tg-safari-locked {
  overflow: hidden;
}

.tg-safari-modal {
  width: min(440px, 100%);
  padding: 38px 30px;
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.98);
  border: 1px solid rgba(237, 90, 60, 0.18);
  box-shadow: 0 32px 80px rgba(79, 35, 21, 0.32);
  text-align: center;
  animation: modalPop 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.tg-safari-modal .tg-safari-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.tg-safari-modal .tg-safari-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-deep);
  line-height: 1.15;
  font-family: var(--font-display);
}

.tg-safari-modal .tg-safari-desc {
  margin: 0 0 26px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.tg-safari-modal .tg-safari-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.tg-safari-modal .tg-safari-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 16px;
}

.tg-safari-continue {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.tg-safari-continue:hover {
  color: var(--brand-deep);
}

@media (max-width: 720px) {
  .tg-safari-modal {
    padding: 32px 22px;
  }

  .tg-safari-modal .tg-safari-title {
    font-size: 21px;
  }
}

/* Social Proof Popup */
.social-proof {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.94);
  border: 1px solid rgba(237, 90, 60, 0.14);
  box-shadow: 0 16px 40px rgba(109, 52, 31, 0.22);
  backdrop-filter: blur(10px);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
  pointer-events: none;
}

.social-proof.visible {
  transform: translateY(0);
  opacity: 1;
}

.social-proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(237, 90, 60, 0.18);
}

.social-proof-body {
  min-width: 0;
}

.social-proof-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 600;
}

.social-proof-text strong {
  color: var(--brand-deep);
  font-weight: 800;
}

.social-proof-time {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .social-proof {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}

/* Final CTA */
.cta-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 520px;
}

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
}

.cta-input:focus {
  outline: none;
  border-color: var(--brand);
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  height: 44px;
  border-radius: 10px;
  background: rgba(43, 32, 30, 0.9);
  color: #fff;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 36px;
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 245, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--brand-deep);
}

.footer-lang {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-lang .lang-btn {
  font-size: 12px;
  padding: 7px 12px;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand-deep);
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-input,
  .cta-form .cta-btn {
    width: 100%;
  }
}
