*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-card: rgba(17, 17, 27, 0.8);
  --bg-card-hover: rgba(25, 25, 40, 0.9);
  --border: rgba(57, 255, 20, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --green: #39FF14;
  --green-dim: rgba(57, 255, 20, 0.15);
  --green-glow: rgba(57, 255, 20, 0.3);
  --purple: #a855f7;
  --cyan: #06b6d4;
  --orange: #f97316;
  --red: #ef4444;
  --text: #f0f0f5;
  --text-secondary: #9ca3af;
  --accent: #c8ff00;
  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(57, 255, 20, 0.06);
  top: -200px;
  right: -100px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.04);
  bottom: 30%;
  left: -150px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--green);
  color: #000;
}

.btn-primary:hover {
  background: #4dff33;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: #000;
  font-weight: 700;
}

.btn-accent:hover {
  background: #d4ff1a;
  box-shadow: 0 0 30px rgba(200, 255, 0, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-highlight {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-selector {
  position: relative;
}

.lang-toggle {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: border-color 0.3s;
}

.lang-toggle:hover {
  border-color: var(--border);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(17, 17, 27, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  gap: 2px;
  flex-direction: column;
  z-index: 200;
}

.lang-dropdown.open {
  display: flex;
}

.lang-btn {
  background: none;
  border: none;
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(57, 255, 20, 0.1);
}

.lang-btn.active {
  background: var(--green-dim);
}

.mobile-lang-row {
  display: flex;
  gap: 8px;
  padding: 4px 0;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
}

.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  padding: 160px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  background: linear-gradient(145deg, rgba(20, 20, 35, 0.9), rgba(10, 10, 20, 0.95));
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(57, 255, 20, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-screen {
  padding: 20px 16px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-msg {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  line-height: 1.5;
  animation: fadeInUp 0.6s ease both;
}

.phone-msg:nth-child(2) { animation-delay: 0.2s; }
.phone-msg:nth-child(3) { animation-delay: 0.4s; }
.phone-msg:nth-child(4) { animation-delay: 0.6s; }

.msg-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.msg-icon.win {
  color: var(--green);
  font-weight: bold;
}

.msg-quota {
  color: var(--green);
  font-weight: 600;
}

.phone-msg strong {
  color: var(--green);
}

.top-badges {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.float-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(17, 17, 27, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  animation: float 3s ease-in-out infinite;
}

.float-badge-link {
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  animation-delay: 1.5s;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.float-badge-link:hover {
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.2);
}

.float-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
}

.float-label {
  color: var(--text-secondary);
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.stats-bar {
  padding: 40px 0;
  position: relative;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: rgba(57, 255, 20, 0.3);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.05);
}

.stat-icon {
  width: 40px;
  height: 40px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 48px;
}

.section-subtitle.left {
  text-align: left;
}

.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon.purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple);
}

.feature-icon.green {
  background: var(--green-dim);
  color: var(--green);
}

.feature-icon.cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan);
}

.feature-icon.orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.bento-stats {
  padding: 80px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.bento-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bento-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.bento-value {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.bento-value.green {
  color: var(--green);
}

.bento-value .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--green);
  font-size: 0.9rem;
  vertical-align: middle;
  margin-left: 8px;
}

.bento-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.how-it-works {
  padding: 100px 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 12px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 40px;
  height: 40px;
}

.step-icon.telegram svg {
  width: 44px;
  height: 44px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  width: 60px;
  flex-shrink: 0;
}

.step-connector svg {
  width: 100%;
}

.tips-stats {
  padding: 100px 0;
}

.tips-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.tips-period {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.tips-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.metric-value.green {
  color: var(--green);
}

.form-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dot.win {
  background: var(--green);
}

.dot.loss {
  background: var(--red);
}

.tips-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab {
  padding: 8px 20px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s;
}

.tab.active {
  background: var(--green-dim);
  border-color: var(--green);
  color: var(--green);
}

.tab:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  height: 300px;
}

.live-feed {
  padding: 80px 0;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feed-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feed-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.feed-league {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feed-flag {
  border-radius: 2px;
}

.feed-time {
  font-weight: 600;
  color: var(--text);
}

.feed-teams {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

.feed-teams span:nth-child(2) {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.8rem;
}

.feed-pick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 10px;
  margin-bottom: 12px;
}

.pick-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.pick-odds {
  background: var(--green);
  color: #000;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.feed-confidence {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
}

.confidence-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #4dff33);
  border-radius: 2px;
  transition: width 1s ease;
}

.testimonials {
  padding: 100px 0;
}

.testimonials-wrapper {
  position: relative;
}

.testimonial-arrow {
  display: none;
}

.testimonial-dots {
  display: none;
}

.testimonials-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.testimonial-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(57, 255, 20, 0.08);
  border-color: rgba(57, 255, 20, 0.3);
}

.testimonial-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .testimonials-wrapper {
    position: relative;
  }

  .testimonials-gallery {
    display: flex;
    overflow: hidden;
  }

  .testimonial-img-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    transition: transform 0.4s ease;
  }

  .testimonial-img-card:hover {
    transform: none;
  }

  .testimonial-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border);
    color: var(--green);
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(8px);
  }

  .testimonial-arrow svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-prev {
    left: 8px;
  }

  .testimonial-next {
    right: 8px;
  }

  .testimonial-arrow:hover {
    background: rgba(57, 255, 20, 0.15);
  }

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

  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
  }

  .testimonial-dot.active {
    background: var(--green);
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
  }
}

.cta-section {
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(168, 85, 247, 0.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.partners {
  padding: 80px 0;
  background: var(--green);
}

.partners .section-title {
  color: #000;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}

.partner-logo:hover {
  filter: grayscale(0);
  transform: translateY(-3px);
}

.partner-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
}

@media (max-width: 768px) {
  .partners-grid {
    gap: 20px;
  }

  .partner-logo {
    width: calc(50% - 10px);
    padding: 12px 16px;
  }

  .partner-logo img {
    height: 32px;
    max-width: 120px;
  }
}

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-partners {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.partner {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: var(--green-dim);
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

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

.copyright {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .lang-selector {
    display: none;
  }

  .nav-cta {
    padding: 6px 12px;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .stat-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px 24px;
    gap: 16px;
    text-align: left;
  }

  .stat-number {
    font-size: 2rem;
  }

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

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

  .testimonial-card {
    min-width: 100%;
  }

  .tips-header {
    flex-direction: column;
    gap: 16px;
  }

  .tips-metrics {
    gap: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-content {
    padding: 48px 24px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .chart-container {
    padding: 20px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .phone-mockup {
    width: 280px;
  }

  .bento-value {
    font-size: 2.2rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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