@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111418;
  --dark2: #1a1f26;
  --amber: #f5a623;
  --amber-dark: #c7841a;
  --amber-light: #ffc94d;
  --red: #e03131;
  --green: #2f9e44;
  --white: #f8f9fa;
  --grey-light: #f1f3f5;
  --grey: #868e96;
  --grey-dark: #495057;
  --border: #dee2e6;
  --text: #212529;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--black);
  color: var(--grey);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 6px 0;
  border-bottom: 1px solid #222;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-ticker {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ticker-item { display: flex; align-items: center; gap: 6px; }
.ticker-label { color: #555; text-transform: uppercase; letter-spacing: 0.05em; }
.ticker-val { color: var(--amber); font-weight: 600; }
.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }
.topbar-date { color: #555; white-space: nowrap; }

/* ─── NAV ─── */
nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--amber); }
.logo-icon {
  width: 32px; height: 32px;
  background: var(--amber);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: #adb5bd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(245,166,35,0.12);
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: white; font-size: 22px; }

/* ─── HERO ─── */
.hero {
  background: var(--dark);
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.05) 0%, transparent 50%);
  padding: 60px 24px 50px;
  color: var(--white);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--amber);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-sub {
  color: #adb5bd;
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Barlow', sans-serif;
}
.btn-primary {
  background: var(--amber);
  color: var(--black);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,166,35,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid #444;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* ─── PRICE CARD ─── */
.price-card {
  background: var(--dark2);
  border: 1px solid #2a2f36;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}
.price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.price-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(47,158,68,0.15);
  color: #69db7c;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
}
.live-dot {
  width: 6px; height: 6px;
  background: #69db7c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.main-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.main-price sup { font-size: 32px; vertical-align: top; margin-top: 12px; }
.main-price sub { font-size: 20px; color: var(--grey); font-weight: 400; }
.price-change {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.change-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}
.change-badge.down { background: rgba(224,49,49,0.15); color: #ff6b6b; }
.change-badge.up { background: rgba(47,158,68,0.15); color: #69db7c; }
.change-text { color: var(--grey); font-size: 13px; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.mini-price {
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2f36;
  border-radius: 10px;
  padding: 14px;
}
.mini-price-label { font-size: 11px; color: var(--grey); margin-bottom: 4px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.05em; }
.mini-price-val { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); }
.mini-price-val.petrol { color: #74c0fc; }
.price-source { font-size: 11px; color: #555; font-family: 'JetBrains Mono', monospace; }

/* ─── SECTION ─── */
section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 16px; height: 2px; background: var(--amber); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.1;
}
.section-sub { color: var(--grey-dark); font-size: 16px; margin-top: 10px; max-width: 560px; }

/* ─── REGION TABLE ─── */
.region-section { background: var(--grey-light); }
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.region-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.region-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.region-card.cheapest::after {
  content: 'CHEAPEST';
  position: absolute;
  top: 10px; right: -20px;
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 28px;
  transform: rotate(45deg);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.region-name { font-size: 13px; color: var(--grey); margin-bottom: 8px; font-weight: 500; }
.region-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.region-price span { font-size: 14px; color: var(--grey); font-family: 'Barlow', sans-serif; font-weight: 400; }
.region-trend { font-size: 12px; font-family: 'JetBrains Mono', monospace; }
.region-trend.up { color: var(--red); }
.region-trend.down { color: var(--green); }
.region-trend.flat { color: var(--grey); }
.data-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--grey);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── FUEL CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.fuel-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.fuel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: var(--amber); }
.fuel-card.featured {
  border-color: var(--amber);
  box-shadow: 0 4px 24px rgba(245,166,35,0.15);
}
.fuel-card-badge {
  background: var(--amber);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fuel-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.fuel-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.fuel-card-tagline { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.fuel-card-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.fuel-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--grey-dark);
}
.feature-icon { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.fuel-card-cta { margin-top: auto; }
.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  background: var(--dark);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-card:hover { background: var(--amber); color: var(--black); }
.fuel-card.featured .btn-card { background: var(--amber); color: var(--black); }
.fuel-card.featured .btn-card:hover { background: var(--dark); color: white; }
.affiliate-note { font-size: 11px; color: var(--grey); text-align: center; margin-top: 8px; }

/* ─── WHY ─── */
.why-section { background: var(--dark); color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.why-item { }
.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.why-text { font-size: 14px; color: #868e96; line-height: 1.7; }

/* ─── EMAIL SIGNUP ─── */
.signup-section {
  background: linear-gradient(135deg, var(--amber) 0%, #e8920a 100%);
  padding: 56px 24px;
}
.signup-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.signup-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.signup-sub { color: rgba(0,0,0,0.65); margin-bottom: 28px; font-size: 16px; }
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.signup-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  background: white;
}
.signup-input::placeholder { color: #adb5bd; }
.btn-signup {
  background: var(--black);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-signup:hover { background: var(--dark2); transform: translateY(-1px); }
.signup-terms { font-size: 11px; color: rgba(0,0,0,0.5); margin-top: 12px; }

/* ─── BLOG PREVIEWS ─── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  background: white;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.post-thumb {
  height: 160px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.post-body { padding: 20px; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.post-cat {
  background: rgba(245,166,35,0.1);
  color: var(--amber-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-date { font-size: 12px; color: var(--grey); font-family: 'JetBrains Mono', monospace; }
.post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.post-excerpt { font-size: 14px; color: var(--grey-dark); line-height: 1.6; margin-bottom: 16px; }
.post-link {
  font-size: 13px;
  color: var(--amber-dark);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-link:hover { color: var(--amber); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: #868e96;
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 22px; margin-bottom: 12px; display: inline-flex; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #868e96; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #555; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--amber); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .price-card { margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .signup-form { flex-direction: column; }
  .main-price { font-size: 56px; }
  .topbar-ticker { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── UTILS ─── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.compare-all { text-align: center; margin-top: 32px; }

/* ─── AD SLOTS ─── */
.ad-slot {
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
  margin: 24px auto;
  max-width: 728px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #adb5bd;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ad-slot-sidebar {
  max-width: 100%;
  min-height: 250px;
}
.ad-slot-leaderboard {
  max-width: 100%;
  min-height: 90px;
}
.ad-slot-inline {
  max-width: 100%;
  min-height: 250px;
  margin: 32px auto;
}

/* ─── LEAD GEN FORM ─── */
.lead-gen {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border: 2px solid var(--amber);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.lead-gen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}
.lead-gen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .lead-gen-inner { grid-template-columns: 1fr; }
}
.lead-gen-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.lead-gen-text p {
  color: #868e96;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.lead-gen-text .lead-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.lead-gen-text .lead-stat {
  text-align: center;
}
.lead-gen-text .lead-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  display: block;
  line-height: 1;
}
.lead-gen-text .lead-stat-label {
  font-size: 10px;
  color: #555;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lead-gen-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.lead-gen-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.lead-field {
  margin-bottom: 14px;
}
.lead-field label {
  display: block;
  font-size: 12px;
  color: #868e96;
  margin-bottom: 5px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lead-field input,
.lead-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.lead-field input::placeholder { color: #555; }
.lead-field input:focus,
.lead-field select:focus { border-color: var(--amber); }
.lead-field select option { background: var(--dark); color: white; }
.btn-lead {
  width: 100%;
  padding: 14px;
  background: var(--amber);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s;
  margin-top: 4px;
}
.btn-lead:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,166,35,0.3); }
.lead-gen-form .lead-terms {
  font-size: 11px;
  color: #555;
  text-align: center;
  margin-top: 12px;
}
