/* ===== HERO SECTION ===== */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 5rem 6%;
    min-height: 90vh;
  }
  
  .hero-text {
    flex: 1;
    max-width: 580px;
  }
  
  .hero-tag {
    display: inline-block;
    background-color: rgba(252, 184, 2, 0.1);
    color: var(--yellow-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(252, 184, 2, 0.3);
    margin-bottom: 1.5rem;
  }
  
  #hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }
  
  .highlight {
    color: var(--yellow-primary);
  }
  
  .hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .hero-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
  }
  
  /* ===== HERO MOCKUP ===== */
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mockup-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow), var(--glow);
    overflow: hidden;
  }
  
  .mockup-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
  }
  
  .mockup-topbar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
  }
  
  .mockup-topbar span:nth-child(1) { background-color: #ff5f57; }
  .mockup-topbar span:nth-child(2) { background-color: #febc2e; }
  .mockup-topbar span:nth-child(3) { background-color: #28c840; }
  
  .mockup-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mockup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .mockup-row.highlight-row {
    border-color: var(--yellow-primary);
    background-color: rgba(252, 184, 2, 0.05);
  }
  
  .platform-tag {
    font-family: var(--font-code);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
  }
  
  .platform-tag.cf { background-color: #1a3a5c; color: #4a9eff; }
  .platform-tag.lc { background-color: #2d2000; color: #ffa500; }
  .platform-tag.cc { background-color: #1a2d1a; color: #5cb85c; }
  .platform-tag.ac { background-color: #2a1a2a; color: #cc88ff; }
  
  .time-tag {
    font-family: var(--font-code);
    font-size: 0.78rem;
    color: var(--yellow-primary);
    white-space: nowrap;
  }
  
  /* ===== STATS SECTION ===== */
  #stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 3rem 6%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-secondary);
  }
  
  .stat {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid var(--border);
  }
  
  .stat:last-child {
    border-right: none;
  }
  
  .stat h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-primary);
    font-family: var(--font-code);
  }
  
  .stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  
  /* ===== FEATURES SECTION ===== */
  #features {
    padding: 6rem 6%;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex: 1 1 280px;
    max-width: 360px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-4px);
    box-shadow: var(--glow);
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
  
  .feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* ===== HOW IT WORKS ===== */
  #how-it-works {
    padding: 6rem 6%;
    background-color: var(--bg-secondary);
  }
  
  .steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .step {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex: 1 1 220px;
    max-width: 280px;
    transition: border-color 0.3s ease;
  }
  
  .step:hover {
    border-color: var(--yellow-primary);
  }
  
  .step-number {
    font-family: var(--font-code);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
    opacity: 0.8;
  }
  
  .step-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .step-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .step-arrow {
    font-size: 2rem;
    color: var(--yellow-primary);
    opacity: 0.5;
  }
  
  /* ===== PLATFORMS SECTION ===== */
  #platforms {
    padding: 6rem 6%;
  }
  
  .platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .platform-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }
  
  .platform-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-4px);
  }
  
  .platform-card img {
    height: 60px;
    margin: 0 auto 1rem;
  }
  
  .platform-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .platform-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .platform-card ul li {
    color: var(--text-secondary);
    font-size: 0.85rem;
  }
  
  /* ===== CTA SECTION ===== */
  #cta {
    padding: 6rem 6%;
    background-color: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  #cta blockquote {
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: var(--yellow-primary);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
  }
  
  #cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* HERO */
  #hero {
    flex-direction: column;
    padding: 3rem 5%;
    min-height: unset;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  #hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .hero-image {
    width: 100%;
  }

  .mockup-box {
    max-width: 100%;
  }

  .mockup-row {
    font-size: 0.8rem;
    padding: 0.6rem 0.75rem;
  }

  /* STATS */
  #stats {
    flex-wrap: wrap;
    padding: 2rem 5%;
  }

  .stat {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
  }

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

  /* FEATURES */
  #features {
    padding: 4rem 5%;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    max-width: 100%;
    width: 100%;
  }

  /* HOW IT WORKS */
  #how-it-works {
    padding: 4rem 5%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  /* PLATFORMS */
  #platforms {
    padding: 4rem 5%;
  }

  .platforms-grid {
    gap: 1rem;
  }

  .platform-card {
    flex: 1 1 140px;
    max-width: 160px;
    padding: 1.25rem;
  }

  /* CTA */
  #cta {
    padding: 4rem 5%;
  }

  #cta blockquote {
    font-size: 1.2rem;
  }
}