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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1C2331;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 40px;
  color: #1C2331;
  margin-bottom: 12px;
}

.section-header-light h2 {
  color: #FFFFFF;
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.7);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: #E8581C;
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 16px;
  color: #6B7280;
}

.section-updated {
  font-size: 14px;
  color: #7CB518;
  font-style: italic;
}

.section-updated i {
  margin-right: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #E8581C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #d04e18;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 88, 28, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #E8581C;
  border: 1.5px solid #E8581C;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-ghost:hover {
  background: #E8581C;
  color: #FFFFFF;
}

.btn-dark {
  background: #1C2331;
  color: #FFFFFF;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.btn-dark:hover {
  background: #2a3447;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1C2331 0%, #2C5F8A 60%, #1C2331 100%);
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 2px,
      transparent 2px,
      transparent 8px
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 68px;
  color: #FFFFFF;
  margin-bottom: 16px;
  animation: fadeSlideLeft 0.8s ease-out;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
  animation: fadeSlideLeft 0.8s ease-out 0.1s both;
}

.hero-badges {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  animation: fadeSlideLeft 0.8s ease-out 0.2s both;
}

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

.hero-badge-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #E8581C;
}

.hero-badge-icon {
  font-size: 24px;
  color: #7CB518;
  margin-bottom: 2px;
}

.hero-badge-updated {
  font-size: 18px;
  font-weight: 600;
  color: #7CB518;
}

.hero-badge-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  animation: fadeSlideLeft 0.8s ease-out 0.3s both;
}

/* Hero Price Card */
.hero-card-wrapper {
  display: flex;
  justify-content: center;
  animation: fadeSlideRight 0.8s ease-out 0.2s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-card-header {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.hero-card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.hero-card-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card-row .price-green { color: #7CB518; font-weight: 600; }
.hero-card-row .price-orange { color: #E8581C; font-weight: 600; }

.hero-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: #7CB518;
}

.hero-card-footer i {
  margin-right: 4px;
}

/* ============================================
   SECTION 2: TRUST BAR
   ============================================ */
.trust-bar {
  background: #E8581C;
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  justify-content: center;
}

.trust-item i {
  font-size: 24px;
  opacity: 0.9;
}

.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.trust-item span {
  font-size: 13px;
  opacity: 0.85;
}

/* ============================================
   SECTION 3: PRICE TABLE
   ============================================ */
.price-section {
  background: #F5F4F0;
  padding: 70px 0;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
}

.price-table thead tr {
  background: #1C2331;
}

.price-table thead th {
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}

.price-table tbody tr {
  transition: background 0.2s ease;
}

.price-table tbody tr:hover {
  background: #f0f4ff;
}

.price-table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
  white-space: nowrap;
}

.brand-cell {
  font-weight: 600;
  color: #1C2331;
}

.price-cell {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: #E8581C;
}

.change-up {
  color: #7CB518;
  font-weight: 600;
}

.change-down {
  color: #DC2626;
  font-weight: 600;
}

.change-stable {
  color: #9CA3AF;
}

.grade-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #F0F4FF;
  color: #1C2331;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.table-disclaimer {
  text-align: center;
  font-size: 13px;
  color: #9CA3AF;
  font-style: italic;
  margin-top: 20px;
  padding: 0 16px;
}

/* ============================================
   SECTION 4: BRANDS
   ============================================ */
.brands-section {
  background: #FFFFFF;
  padding: 70px 0;
}

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

.brand-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.brand-card-logo {
  width: 50px;
  height: 50px;
  background: #F5F4F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: #6B7280;
}

.brand-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1C2331;
  margin-bottom: 8px;
}

.brand-card-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 44px;
}

.brand-card-divider {
  height: 1px;
  background: #E5E7EB;
  margin-bottom: 16px;
}

.brand-card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #E8581C;
  margin-bottom: 12px;
}

.brand-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.brand-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #F5F4F0;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
}

/* ============================================
   SECTION 5: CITIES
   ============================================ */
.cities-section {
  background: #F5F4F0;
  padding: 70px 0;
}

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

.city-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #E8581C;
}

.city-card i {
  font-size: 28px;
  color: #E8581C;
  margin-bottom: 4px;
}

.city-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1C2331;
}

.city-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
}

.city-link {
  font-size: 13px;
  color: #E8581C;
  font-weight: 600;
  margin-top: 4px;
}

.city-link i {
  font-size: 11px;
  color: #E8581C;
  margin-bottom: 0;
}

/* ============================================
   SECTION 6: TREND
   ============================================ */
.trend-section {
  background: #1C2331;
  padding: 70px 0;
}

.trend-chart-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

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

.trend-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.trend-stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.trend-stat-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.trend-stat-date {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SECTION 7: BUYING GUIDE
   ============================================ */
.guide-section {
  background: #FFFFFF;
  padding: 70px 0;
}

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

.guide-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.guide-card:hover {
  border-color: #E8581C;
}

.guide-card:hover .guide-icon {
  color: #E8581C;
}

.guide-icon {
  font-size: 36px;
  color: #E8581C;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.guide-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1C2331;
  margin-bottom: 10px;
}

.guide-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
}

/* ============================================
   SECTION 8: FAQ
   ============================================ */
.faq-section {
  background: #F5F4F0;
  padding: 70px 0;
}

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

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-left: 3px solid #E8581C;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1C2331;
  text-align: left;
  gap: 12px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #E8581C;
}

.faq-question i {
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
}

/* ============================================
   SECTION 9: INTERNAL LINKS
   ============================================ */
.links-section {
  background: #1C2331;
  padding: 70px 0;
}

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

.links-group h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8581C;
  display: inline-block;
}

.links-group li {
  margin-bottom: 10px;
}

.links-group a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.links-group a:hover {
  color: #E8581C;
  padding-left: 4px;
}

/* ============================================
   SECTION 10: CTA
   ============================================ */
.cta-section {
  background: #E8581C;
  padding: 60px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-content h2 {
  font-size: 36px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form input,
.cta-form select {
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-form select {
  cursor: pointer;
}

.cta-form select option {
  color: #1C2331;
  background: #FFFFFF;
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: #FFFFFF;
}

/* ============================================
   SECTION 11: FOOTER
   ============================================ */
.site-footer {
  background: #111827;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: #E8581C;
  border-color: #E8581C;
  color: #FFFFFF;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #E8581C;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   STICKY HEADER - REDESIGNED
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #1C2331 0%, #2A3441 100%);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
  background: linear-gradient(135deg, rgba(28, 35, 49, 0.95) 0%, rgba(42, 52, 65, 0.95) 100%);
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.header-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.header-logo::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8581C, #FF6B35);
  transition: width 0.3s ease;
}

.header-logo:hover::before {
  width: 100%;
}

.header-logo span {
  color: #E8581C;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(232, 88, 28, 0.3);
}

.header-logo:hover {
  transform: translateY(-1px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.header-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 88, 28, 0.1), transparent);
  transition: left 0.5s ease;
}

.header-nav a:hover::before {
  left: 100%;
}

.header-nav a:hover {
  color: #FFFFFF;
  background: rgba(232, 88, 28, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 88, 28, 0.2);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 22px;
  transition: color 0.3s ease;
}

.nav-toggle:hover {
  color: #E8581C;
}

/* Add subtle animation to logo */
@keyframes logoGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(232, 88, 28, 0.3); }
  50% { text-shadow: 0 0 30px rgba(232, 88, 28, 0.5); }
}

.header-logo span {
  animation: logoGlow 3s ease-in-out infinite;
}

/* ============================================
   HERO BREADCRUMB & CARD FIXES
   ============================================ */
.hero-breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.hero-breadcrumb a {
  color: #E8581C;
  text-decoration: none;
}

.hero-breadcrumb i {
  margin: 0 8px;
  font-size: 12px;
}

.hero-card-wrap {
  display: flex;
  justify-content: center;
  animation: fadeSlideRight 0.8s ease-out 0.2s both;
}

.hero-card-row .clr-green { 
  color: #7CB518; 
  font-weight: 600; 
}

.hero-card-row .clr-orange { 
  color: #E8581C; 
  font-weight: 600; 
}

/* ============================================
   CITY TREND STYLES
   ============================================ */
.city-region {
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-trend {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.city-trend-stable {
  color: #9CA3AF;
}

.city-trend-up {
  color: #7CB518;
}

.city-trend-down {
  color: #DC2626;
}

/* ============================================
   LINK CARDS GRID
   ============================================ */
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.link-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  color: #FFFFFF;
  text-decoration: none;
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.link-card i {
  font-size: 32px;
  color: #E8581C;
  margin-bottom: 16px;
}

.link-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.link-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE — TABLET (768–1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 52px; }
  .hero-badge-price { font-size: 34px; }
  .section-header h2 { font-size: 34px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .link-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================
   RESPONSIVE — MOBILE (<768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 50px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .hero-badges { flex-direction: column; gap: 16px; align-items: center; }
  .hero-badge { width: 100%; max-width: 280px; }
  .hero-badge-price { font-size: 28px; }
  .hero-card-wrap { justify-content: center; }

  .section-header h2 { font-size: 28px; }
  .section-subtitle { font-size: 16px; }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand-card {
    padding: 24px 20px;
    text-align: center;
  }

  .brand-card-logo {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .brand-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .brand-card-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .brand-card-divider {
    margin: 16px 0;
  }

  .brand-card-price {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .brand-card-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .brand-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .brand-card .btn {
    width: 100%;
    justify-content: center;
  }

  .price-section {
    padding: 60px 0;
  }

  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table {
    min-width: 600px;
    font-size: 14px;
  }

  .price-table th {
    padding: 12px 8px;
    font-size: 13px;
  }

  .price-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .price-cell {
    font-size: 14px;
  }

  .brand-cell {
    font-size: 13px;
  }

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

  .city-card {
    padding: 24px 20px;
    text-align: center;
  }

  .city-card i {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .city-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .city-price {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .city-region {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .city-trend {
    font-size: 11px;
    justify-content: center;
  }

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

  .guide-card {
    padding: 24px 20px;
    text-align: center;
  }

  .guide-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .guide-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .guide-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .trend-section {
    padding: 60px 0;
  }

  .trend-chart-wrapper {
    height: 250px;
    margin-bottom: 32px;
  }

  .trend-stats {
    flex-direction: column;
    gap: 16px;
  }

  .trend-stat-box {
    padding: 16px;
    text-align: center;
  }

  .trend-stat-label {
    font-size: 12px;
  }

  .trend-stat-value {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .trend-stat-date {
    font-size: 12px;
  }

  .faq-section {
    padding: 60px 0;
  }

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

  .faq-item {
    border-radius: 12px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
    padding-right: 48px;
  }

  .faq-question i {
    right: 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .faq-answer p {
    margin-bottom: 12px;
  }

  .faq-answer ul {
    margin-bottom: 12px;
  }

  .faq-answer li {
    margin-bottom: 6px;
  }

  .links-section {
    padding: 60px 0;
  }

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

  .link-card {
    padding: 24px 20px;
    text-align: center;
  }

  .link-card i {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .link-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .link-card p {
    font-size: 14px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .cta-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .footer-brand p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-links ul {
    gap: 8px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* ============================================
     MOBILE HEADER
     ============================================ */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: #1C2331;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    width: 100%;
  }

  .site-header.scrolled {
    background: #1C2331;
  }

  .header-inner {
    padding: 14px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-logo::before {
    display: none;
  }

  .nav-toggle {
    display: block;
    font-size: 24px;
    padding: 8px;
    position: relative;
    z-index: 100001;
  }

  .header-nav {
    display: none;
  }

  .header-nav.active {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #1C2331 !important;
    z-index: 99999 !important;
    padding: 72px 16px 24px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    flex-direction: column !important;
    gap: 10px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    align-items: stretch !important;
  }

  .header-nav a {
    display: block;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
  }

  .header-nav a:hover,
  .header-nav a:active {
    background: rgba(232, 88, 28, 0.15);
    border-color: rgba(232, 88, 28, 0.3);
  }

  /* Push hero below fixed header */
  .hero {
    padding-top: 72px;
  }

  /* Keep hero below header */
  .hero,
  .hero-overlay,
  .hero-grid,
  .hero-content,
  .hero-card-wrap,
  .hero-card {
    z-index: 1 !important;
  }

  main {
    position: relative;
    z-index: 1;
  }

  /* Mobile body */
  html, body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }
}
