/* Vinícius Raposo — AI Infrastructure Architect Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a1628;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

/* Background Effects */
.bg-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 10%, rgba(148,163,184,0.08), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(249,115,22,0.1), transparent 30%),
    linear-gradient(to bottom, rgba(15,30,60,0.3), rgba(10,22,40,1));
}

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

/* Layout */
.container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

@media (min-width: 640px) { .container { padding: 20px 32px; } }
@media (min-width: 1024px) { .container { padding: 20px 40px; } }

/* Header */
.header {
  position: sticky;
  top: 16px;
  z-index: 50;
  border-radius: 24px;
  border: 1px solid rgba(251,146,60,0.35);
  background: rgba(8,25,50,0.8);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 25px 50px -12px rgba(0,0,0,0.5),
    0 0 30px -5px rgba(249,115,22,0.2),
    inset 0 1px 0 rgba(251,146,60,0.3);
  padding: 16px 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: block; text-decoration: none; }
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
}
.brand-title {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 2px;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) { .nav { display: flex; } }

.nav-link {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 9999px;
  background: transparent;
}
.nav-link:hover {
  color: #fb923c;
  background: rgba(249,115,22,0.12);
}
.nav-link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.nav-icon { width: 16px; height: 16px; }

.btn-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #f97316;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(249,115,22,0.35);
  transition: background 0.2s ease;
}
@media (min-width: 768px) { .btn-mobile { display: none; } }
.btn-mobile:hover { background: #fb923c; }

/* Hero */
.hero {
  display: grid;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { 
  .hero { 
    grid-template-columns: 1.05fr 0.95fr; 
    padding: 96px 0;
  } 
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(251,146,60,0.3);
  background: rgba(249,115,22,0.12);
  font-size: 14px;
  color: #fdba74;
  margin-bottom: 24px;
}
.badge-icon { width: 16px; height: 16px; color: #fb923c; }

h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 896px;
}
@media (min-width: 640px) { h1 { font-size: 60px; } }
@media (min-width: 1024px) { h1 { font-size: 72px; } }

.gradient-text {
  background: linear-gradient(to right, #fb923c, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.75;
  color: #cbd5e1;
  max-width: 672px;
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 16px;
  background: #f97316;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(249,115,22,0.4);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #fb923c;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(249,115,22,0.08);
  border-color: rgba(251,146,60,0.4);
  transform: translateY(-2px);
}

.hero-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
  color: #94a3b8;
}
.hero-footer-icon { width: 20px; height: 20px; color: #cbd5e1; }

/* Hero Graphic */
.hero-graphic {
  position: relative;
  display: none;
  width: 100%;
  max-width: 460px;
  height: 360px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-graphic { display: flex; } }

.hero-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(148,163,184,0.08);
  filter: blur(64px);
}

.graphic-rect-1 {
  position: absolute;
  width: 288px;
  height: 288px;
  transform: rotate(45deg);
  border-radius: 2rem;
  border: 1px solid rgba(203,213,225,0.15);
  background: rgba(148,163,184,0.03);
  box-shadow: 0 0 80px rgba(148,163,184,0.1);
}
.graphic-rect-2 {
  position: absolute;
  width: 224px;
  height: 224px;
  transform: rotate(45deg);
  border-radius: 1.75rem;
  border: 1px solid rgba(203,213,225,0.12);
  background: rgba(148,163,184,0.03);
}
.graphic-rect-3 {
  position: absolute;
  width: 160px;
  height: 160px;
  transform: rotate(45deg);
  border-radius: 1.5rem;
  border: 1px solid rgba(203,213,225,0.18);
  background: rgba(148,163,184,0.05);
}
.graphic-center {
  position: relative;
  width: 112px;
  height: 112px;
  transform: rotate(45deg);
  border-radius: 1.5rem;
  border: 1px solid rgba(251,146,60,0.4);
  background: linear-gradient(to bottom right, rgba(249,115,22,0.2), rgba(251,146,60,0.15));
  box-shadow: 0 0 60px rgba(249,115,22,0.4);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.graphic-center-inner {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(253,186,116,0.5);
  background: rgba(251,146,60,0.2);
}

.graphic-dot {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 20px currentColor;
}
.dot-1 { left: 64px; top: 112px; width: 12px; height: 12px; background: #cbd5e1; color: rgba(203,213,225,0.9); }
.dot-2 { right: 80px; top: 80px; width: 12px; height: 12px; background: #fb923c; color: rgba(251,146,60,0.9); }
.dot-3 { bottom: 80px; right: 96px; width: 12px; height: 12px; background: #94a3b8; color: rgba(148,163,184,0.9); }
.dot-4 { bottom: 112px; left: 96px; width: 8px; height: 8px; background: #e2e8f0; color: rgba(226,232,240,0.9); }

.graphic-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, currentColor 50%, transparent);
}
.line-1 { left: 80px; top: 128px; width: 128px; transform: rotate(-12deg); color: rgba(203,213,225,0.5); }
.line-2 { right: 96px; top: 112px; width: 112px; transform: rotate(45deg); color: rgba(251,146,60,0.5); }
.line-3 { bottom: 112px; right: 112px; width: 128px; transform: rotate(-45deg); color: rgba(148,163,184,0.5); }

/* Sections */
.section { padding: 56px 0; }
.section--flush { padding-top: 0; }
.section--tight { padding-top: 24px; }
.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #fb923c);
  border-radius: 2px;
}

.section-description {
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
  max-width: 672px;
}
@media (min-width: 768px) { .section-description { text-align: right; } }

/* Feature Cards */
.features-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .features-grid { grid-template-columns: repeat(6, 1fr); } }

.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,25,50,0.7);
  padding: 20px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,146,60,0.5);
  background: rgba(15,30,50,0.8);
  box-shadow: 0 10px 25px -5px rgba(249,115,22,0.2);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(203,213,225,0.15);
  background: rgba(148,163,184,0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 35px rgba(148,163,184,0.1);
}
.feature-card:hover .feature-icon-wrapper {
  color: #fb923c;
  border-color: rgba(251,146,60,0.3);
  box-shadow: 0 0 35px rgba(249,115,22,0.2);
}
.feature-icon { width: 24px; height: 24px; }

.feature-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}
.feature-description {
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
  margin-top: 12px;
}

/* Best Fit Section */
.best-fit {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,25,50,0.7);
  padding: 24px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .best-fit { padding: 32px; } }

.best-fit-content {
  display: grid;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .best-fit-content {
    grid-template-columns: 160px 1fr;
  }
}

.best-fit-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .best-fit-left {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 32px;
  }
}

.best-fit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(251,146,60,0.4);
  background: rgba(249,115,22,0.12);
  color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 45px rgba(249,115,22,0.35);
}
.best-fit-icon svg { width: 36px; height: 36px; }

.best-fit-title { font-size: 30px; font-weight: 700; }
@media (min-width: 768px) { .best-fit-title-mobile { display: none; } }
@media (max-width: 767px) { .best-fit-title-desktop { display: none; } }

.best-fit-text {
  font-size: 16px;
  line-height: 2;
  color: #cbd5e1;
}
@media (min-width: 768px) {
  .best-fit-right {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 16px;
  }
}

/* Project Cards */
.projects-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } }

.project-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,25,50,0.7);
  padding: 20px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,146,60,0.5);
  background: rgba(15,30,50,0.8);
  box-shadow: 0 10px 25px -5px rgba(249,115,22,0.2);
}

.project-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(203,213,225,0.15);
  background: rgba(148,163,184,0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 40px rgba(148,163,184,0.1);
}
.project-icon { width: 28px; height: 28px; }

.project-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}
.project-description {
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
  margin-top: 16px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fb923c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.project-link:hover { color: #fdba74; }
.project-link svg { width: 16px; height: 16px; }

/* CTA Section */
.cta-section {
  margin-bottom: 32px;
  border-radius: 24px;
  border: 1px solid rgba(251,146,60,0.5);
  background: linear-gradient(to right, rgba(148,163,184,0.05), #0a1628, rgba(148,163,184,0.05));
  padding: 1px;
  box-shadow: 0 0 50px rgba(148,163,184,0.1);
}
.cta-inner {
  position: relative;
  border-radius: 24px;
  background: rgba(8,25,50,0.85);
  padding: 28px;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-inner { padding: 36px; } }

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(148,163,184,0.08), transparent 25%),
    radial-gradient(circle at 85% 40%, rgba(148,163,184,0.08), transparent 28%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(251,146,60,0.3);
  background: rgba(249,115,22,0.1);
  color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 35px rgba(249,115,22,0.25);
}
.cta-icon svg { width: 32px; height: 32px; }

.cta-title { font-size: 30px; font-weight: 700; }
.cta-subtitle { margin-top: 8px; color: #94a3b8; }

/* Footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand-name { font-size: 18px; font-weight: 700; color: #ffffff; }
.footer-brand-title { font-size: 14px; color: #64748b; margin-top: 2px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.footer-nav a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #ffffff; }

.footer-copyright {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: #475569;
}

/* Icon Placeholder */
.icon { display: block; }

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(203,213,225,0.2);
  background: transparent;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: rgba(251,146,60,0.4);
  color: #fb923c;
  background: rgba(249,115,22,0.06);
}
.filter-btn.active {
  border-color: rgba(251,146,60,0.7);
  background: rgba(249,115,22,0.12);
  color: #fb923c;
}

/* Empty State */
.projects-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  border-radius: 16px;
  border: 1px dashed rgba(203,213,225,0.2);
  text-align: center;
}
.projects-empty svg {
  width: 40px;
  height: 40px;
  color: #475569;
  margin-bottom: 4px;
}
.projects-empty-full {
  padding: 80px 24px;
}
.projects-empty-title {
  font-size: 18px;
  font-weight: 600;
  color: #cbd5e1;
}
.projects-empty-sub {
  font-size: 14px;
  color: #64748b;
  max-width: 340px;
}

/* View All Button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(203,213,225,0.35);
  background: transparent;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-view-all svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.btn-view-all:hover {
  border-color: rgba(251,146,60,0.7);
  color: #fb923c;
  background: rgba(249,115,22,0.06);
}
.btn-view-all:hover svg { transform: translateX(3px); }

/* Page Hero (Projects / About) */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}
.page-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 16px;
  max-width: 700px;
}
@media (min-width: 640px) { .page-title { font-size: 60px; } }
.page-description {
  font-size: 18px;
  line-height: 1.75;
  color: #cbd5e1;
  max-width: 580px;
  margin-top: 20px;
}

/* Expanded Projects Grid */
.projects-grid-full {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .projects-grid-full { grid-template-columns: 1fr; } }

.project-card-featured {
  padding: 0;
}
.project-card-inner {
  padding: 28px 32px;
}
.project-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.project-tag {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  border: 1px solid rgba(203,213,225,0.15);
  background: rgba(148,163,184,0.06);
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}
.project-subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin-top: 4px;
  margin-bottom: 16px;
}
.project-highlights {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-highlights li {
  font-size: 14px;
  color: #94a3b8;
  padding-left: 16px;
  position: relative;
}
.project-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f97316;
}

/* About Page */
.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.about-block h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(to right, #f97316, #fb923c);
  border-radius: 2px;
}
.about-block p {
  font-size: 16px;
  line-height: 1.85;
  color: #cbd5e1;
  margin-top: 12px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.about-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,25,50,0.7);
  padding: 24px;
}
.about-card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
}
.skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}
.skill-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #fb923c;
}
.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.about-link:hover { color: #fb923c; }

/* ============================================================
   PRODUCTS — Conversion grid (new for index.html)
   ============================================================ */
.products-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,25,50,0.7);
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,146,60,0.4);
  background: rgba(15,30,50,0.8);
  box-shadow: 0 20px 25px -5px rgba(249,115,22,0.15);
}

.product-card--featured {
  border-color: rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.06);
}
.product-card--featured:hover {
  border-color: rgba(249,115,22,0.6);
  box-shadow: 0 20px 25px -5px rgba(249,115,22,0.25);
}

.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fb923c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.product-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(203,213,225,0.15);
  background: rgba(148,163,184,0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(148,163,184,0.08);
}
.product-card:hover .product-icon-wrapper {
  color: #fb923c;
  border-color: rgba(251,146,60,0.3);
  box-shadow: 0 0 30px rgba(249,115,22,0.15);
}
.product-icon { width: 22px; height: 22px; }

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.product-price {
  font-size: 13px;
  font-weight: 600;
  color: #fb923c;
  margin-top: -4px;
}

.product-description {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 8px;
}
.product-features li {
  font-size: 13px;
  color: #64748b;
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

/* Hero proof bar */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  align-items: center;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.proof-number {
  font-size: 28px;
  font-weight: 900;
  color: #f97316;
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}


/* Audit fixes — GEO/AEO, revenue CTAs, and maintainable homepage sections */
.hero-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 16px;
}

.text-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}
.text-link:hover { color: #fb923c; }

.income-streams-section { padding: 32px 0; }
.income-streams {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.income-stream {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  color: #94a3b8;
}
.income-stream strong { color: #e2e8f0; }

.products-grid-compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.affiliate-section {
  background: rgba(249,115,22,0.04);
  border-radius: 24px;
  border: 1px solid rgba(249,115,22,0.15);
  margin: 48px 0;
}
.affiliate-inner {
  padding: 8px 0;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.affiliate-badge {
  background: rgba(249,115,22,0.15);
  color: #f97316;
  border: 1px solid rgba(249,115,22,0.3);
  margin: 0 auto 24px;
  display: inline-flex;
}
.affiliate-badge-icon { width: 14px; height: 14px; }
.affiliate-title {
  font-size: clamp(22px, 4vw, 32px);
  margin: 0 0 16px;
  line-height: 1.2;
}
.affiliate-copy {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 28px;
}
.affiliate-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 0 0 28px;
  font-size: 14px;
  color: #64748b;
}
.affiliate-point {
  display: flex;
  align-items: center;
  gap: 8px;
}
.affiliate-cta {
  color: #0a0e1a;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}
.affiliate-note {
  font-size: 13px;
  color: #64748b;
  margin: 12px 0 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}
.faq-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,25,50,0.7);
  padding: 24px;
}
.faq-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
}
.faq-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}


.btn-card {
  margin-top: 12px;
  display: inline-flex;
  align-self: flex-start;
}
.btn-card-small { font-size: 13px; }
.products-grid-code { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.features-grid-three { grid-template-columns: repeat(3, 1fr); }
.sidebar-note {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px;
}
.plain-link {
  color: inherit;
  text-decoration: none;
}
.plain-link:hover { color: #fb923c; }
