@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========== DESIGN TOKENS ========== */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.12);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-1: #06d6a0;
  --accent-2: #118ab2;
  --accent-3: #073b4c;
  --accent-gradient: linear-gradient(135deg, #06d6a0, #118ab2);
  --accent-gradient-hover: linear-gradient(135deg, #05c493, #0f7a9e);
  --amazon-orange: #ff9900;
  --amazon-gradient: linear-gradient(135deg, #ff9900, #e68a00);
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(6, 214, 160, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(6, 214, 160, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(17, 138, 178, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent-1); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
}

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

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.logo span { font-weight: 400; opacity: 0.7; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-1);
  background: rgba(6, 214, 160, 0.08);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========== HERO ========== */
.hero {
  text-align: center;
  padding: 5rem 0 3rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.2);
  color: var(--accent-1);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ========== BIKE GRID ========== */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

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

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

/* ========== BIKE CARD ========== */
.bike-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.bike-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(6, 214, 160, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.bike-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.bike-card:hover .bike-card-image img {
  transform: scale(1.05);
}

.bike-card-brand {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bike-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.bike-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.bike-card-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bike-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.spec-pill {
  text-align: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.25rem;
}

.spec-pill-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-1);
  display: block;
}

.spec-pill-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  display: block;
}

.bike-card-cta {
  display: block;
  text-align: center;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.bike-card-cta:hover {
  background: var(--accent-gradient-hover);
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
  transform: scale(1.02);
}

/* ========== DETAIL PAGE ========== */
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}

.detail-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary), var(--accent-3));
  aspect-ratio: 4/3;
}

.detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info { padding-top: 1rem; }

.detail-brand-badge {
  display: inline-block;
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.2);
  color: var(--accent-1);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.detail-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.highlight-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.highlight-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-1);
  display: block;
}

.highlight-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  display: block;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-amazon {
  background: var(--amazon-gradient);
  color: #111;
}

.btn-amazon:hover {
  color: #111;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.4);
  transform: translateY(-2px);
}

.btn-official {
  background: var(--accent-gradient);
  color: #fff;
}

.btn-official:hover {
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 214, 160, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-glass);
  color: var(--text-secondary);
}

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

/* ========== SPECS TABLE ========== */
.specs-section {
  padding: 3rem 0;
}

.specs-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-glass);
  transition: background var(--transition-fast);
}

.specs-table tr:last-child { border-bottom: none; }
.specs-table tr:hover { background: rgba(6, 214, 160, 0.03); }

.specs-table th,
.specs-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
}

.specs-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.specs-table td {
  color: var(--text-primary);
  font-weight: 500;
}

/* ========== DESCRIPTION SECTION ========== */
.description-section {
  padding: 2rem 0 3rem;
}

.description-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.description-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px;
}

.description-text ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.description-text li {
  margin-bottom: 0.5rem;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-fast);
}

.feature-item:hover {
  border-color: rgba(6, 214, 160, 0.2);
  background: rgba(6, 214, 160, 0.03);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--accent-1); }
.breadcrumbs span { margin: 0 0.4rem; opacity: 0.5; }

/* ========== COMPARE TABLE (index) ========== */
.compare-section {
  padding: 3rem 0 4rem;
}

.compare-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.compare-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.85rem;
}

.compare-table thead th {
  background: rgba(6, 214, 160, 0.08);
  color: var(--accent-1);
  font-weight: 700;
  padding: 0.9rem 1rem;
  text-align: left;
  white-space: nowrap;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-secondary);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody tr:hover td {
  background: rgba(6, 214, 160, 0.03);
  color: var(--text-primary);
}

.compare-table .model-name {
  color: var(--text-primary);
  font-weight: 600;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about .logo { margin-bottom: 0.75rem; display: inline-block; }

.footer-about p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-brands h4 {
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-links ul,
.footer-brands ul {
  list-style: none;
}

.footer-links li,
.footer-brands li {
  margin-bottom: 0.4rem;
}

.footer-links a,
.footer-brands a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-brands a:hover {
  color: var(--accent-1);
}

.footer-disclaimer {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border-glass);
  }
  .bikes-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 3rem 0 2rem; }
  .detail-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .bike-card-specs {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.bike-card {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.bike-card:nth-child(1) { animation-delay: 0.05s; }
.bike-card:nth-child(2) { animation-delay: 0.1s; }
.bike-card:nth-child(3) { animation-delay: 0.15s; }
.bike-card:nth-child(4) { animation-delay: 0.2s; }
.bike-card:nth-child(5) { animation-delay: 0.25s; }
.bike-card:nth-child(6) { animation-delay: 0.3s; }
.bike-card:nth-child(7) { animation-delay: 0.35s; }
.bike-card:nth-child(8) { animation-delay: 0.4s; }
.bike-card:nth-child(9) { animation-delay: 0.45s; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--accent-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }

/* ========== CONTACT FORM ========== */
.contact-container {
    max-width: 600px;
    margin: 4rem auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-header { text-align: center; margin-bottom: 2rem; }
.contact-header h1 { font-size: 2rem; margin-bottom: 0.5rem; font-weight: 800; letter-spacing: -0.03em; }
.contact-header p { color: var(--text-secondary); font-size: 0.9rem; }

.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(6, 214, 160, 0.1);
}

textarea.form-control { min-height: 120px; resize: vertical; }

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.2);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.hp-field { display: none !important; }

@media (max-width: 480px) {
    .contact-container { padding: 1.5rem; margin: 2rem 1rem; }
}

/* ========== EEAT REVIEW BOXES ========== */
.eeat-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.eeat-pros, .eeat-cons {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.eeat-pros h3 { color: #4ade80; margin-bottom: 1rem; font-size: 1.1rem; }
.eeat-cons h3 { color: #f87171; margin-bottom: 1rem; font-size: 1.1rem; }
.eeat-pros ul, .eeat-cons ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.eeat-pros li, .eeat-cons li { margin-bottom: 0.8rem; position: relative; padding-left: 1.5rem; font-size: 0.95rem; line-height: 1.4; color: var(--text-secondary); }
.eeat-pros li::before { content: "✓"; color: #4ade80; position: absolute; left: 0; font-weight: bold; }
.eeat-cons li::before { content: "✕"; color: #f87171; position: absolute; left: 0; font-weight: bold; }

.eeat-ideal {
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.1), rgba(17, 138, 178, 0.1));
    border: 1px solid rgba(6, 214, 160, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.eeat-ideal h3 { margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--text-primary); }
.eeat-ideal p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; margin-bottom: 0; }

@media (max-width: 768px) {
    .eeat-box { grid-template-columns: 1fr; gap: 1rem; }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    margin-top: 5rem;
    margin-bottom: 4rem;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-medium);
}
.faq-item:hover {
    border-color: rgba(6, 214, 160, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}
.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

