:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --navy: #0b1f3a;
  --navy-deep: #071529;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #eef1f5;
  --green: #16a34a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.container { width: min(1120px, 92%); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
.muted { color: var(--muted); font-size: .92rem; }
.link { color: var(--orange); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: none; border-radius: 10px; padding: .8rem 1.4rem;
  font: inherit; font-weight: 700; cursor: pointer; transition: .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-block { width: 100%; margin-top: .5rem; }

/* Header */
.site-header { background: var(--navy-deep); color: #fff; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .9rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 900; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--orange); border-radius: 9px; font-size: 1.2rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; font-size: 1.1rem; }
.brand-text small { font-size: .56rem; letter-spacing: .18em; color: #cbd5e1; font-weight: 600; }
.main-nav { display: flex; gap: 1.5rem; margin-left: auto; font-weight: 600; font-size: .95rem; }
.main-nav a { color: #e2e8f0; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: #fff; border-color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-cta { padding: .7rem 1.2rem; }
.header-login { padding: .7rem 1.1rem; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(105deg, rgba(7,21,41,.88) 0%, rgba(7,21,41,.72) 45%, rgba(7,21,41,.55) 100%),
    url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: #fff;
  padding: 3.5rem 0 4rem;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.eyebrow { color: var(--orange); font-weight: 700; letter-spacing: .12em; font-size: .8rem; margin-bottom: .6rem; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.05; }
.hero .accent { color: var(--orange); }
.hero .lede { margin: 1.2rem 0 1.8rem; color: #cbd5e1; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Fuel card */
.fuel-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.fuel-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.fuel-card-head h3, .fuel-card-head .panel-title-like { font-size: 1rem; color: var(--orange); margin: 0; }
.updated { font-size: .72rem; color: var(--muted); }
.fuel-list { list-style: none; }
.fuel-item { display: flex; align-items: center; gap: .7rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.fuel-icon { font-size: 1.1rem; }
.fuel-name { font-weight: 600; }
.fuel-price { margin-left: auto; color: var(--green); font-weight: 800; }
.fuel-price small { color: var(--muted); font-weight: 600; }
.fuel-loading { padding: 1rem 0; color: var(--muted); }

/* Panels */
.panels { padding: 2.5rem 0; }
.panels-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.4rem; align-items: start; max-width: 900px; margin-inline: auto; }
.panel { background: #fff; border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.panel-dark { background: var(--navy); color: #fff; }
.panel-title { font-size: .95rem; margin-bottom: 1rem; color: var(--orange); }
.panel-title.light { color: #fbbf24; }

/* Promotions */
.promotions-section { padding: 2.5rem 0 3rem; background: #fff; border-top: 1px solid var(--line); }
.promotions-head { margin-bottom: 1.5rem; }
.promotions-head h2 { font-size: 1.6rem; color: var(--navy-deep); margin: .25rem 0 .4rem; }
.promotions-head .eyebrow.light { color: var(--orange); }
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.promo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.promo-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7,21,41,.1); }
.promo-img {
  height: 120px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  font-size: 2.5rem;
}
.promo-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.promo-body h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--navy-deep); line-height: 1.3; }
.promo-desc { font-size: .82rem; color: var(--muted); margin-bottom: .6rem; flex: 1; line-height: 1.45; }
.promo-price { color: var(--orange); font-weight: 800; font-size: 1.05rem; margin-bottom: .4rem; }
.badge { display: inline-block; align-self: flex-start; background: #dc2626; color: #fff; font-size: .65rem; font-weight: 800; padding: .25rem .5rem; border-radius: 6px; letter-spacing: .05em; }

/* Animated notice ticker */
.notice-ticker {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), #fbbf24);
  color: #fff;
  overflow: hidden;
  border-bottom: 2px solid rgba(255,255,255,.2);
  animation: ticker-glow 2.5s ease-in-out infinite;
}
.notice-ticker.hidden { display: none; }
.notice-ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .55rem 0;
  max-width: 100%;
}
.notice-ticker-label {
  flex-shrink: 0;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .08em;
  padding-left: 4%;
  text-transform: uppercase;
  white-space: nowrap;
}
.notice-ticker-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.notice-ticker-content {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-right: 3rem;
}
.notice-ticker-content:hover { animation-play-state: paused; }
.notice-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9rem;
}
.notice-ticker-item a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ticker-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

/* What's New section */
.whats-new-section {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.whats-new-section.hidden { display: none; }
.whats-new-head { margin-bottom: 1.5rem; }
.whats-new-head h2 { font-size: 1.6rem; color: var(--navy-deep); margin: .25rem 0 .4rem; }
.whats-new-list { display: flex; flex-direction: column; gap: .85rem; }
.whats-new-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  animation: slide-up .5s ease both;
}
.whats-new-card:nth-child(2) { animation-delay: .08s; }
.whats-new-card:nth-child(3) { animation-delay: .16s; }
.whats-new-card:nth-child(4) { animation-delay: .24s; }
.whats-new-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #fff7ed;
  border-radius: 10px;
  font-size: 1.3rem;
  animation: pulse-icon 2s ease-in-out infinite;
}
.whats-new-body { flex: 1; min-width: 0; }
.whats-new-body p { font-weight: 600; color: var(--navy-deep); line-height: 1.45; }
.whats-new-body a {
  display: inline-block;
  margin-top: .35rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .88rem;
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* 24/7 fuel (QfixGo) */
.fuel-247 {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0b1f3a 0%, #1a0a0a 45%, #0b1f3a 100%);
  color: #fff;
  border-bottom: 4px solid var(--orange);
}
.fuel-247-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.fuel-247-eyebrow { color: #fbbf24; }
.fuel-247 h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .35rem;
}
.fuel-247-highlight { color: #ef4444; }
.fuel-247-sub {
  display: inline-block;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #1a0a0a;
  font-weight: 800;
  font-size: .95rem;
  padding: .35rem .75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.fuel-247-tagline {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
}
.fuel-247-tagline::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: #ef4444;
  margin-top: .5rem;
  border-radius: 2px;
}
.fuel-247-lede {
  color: #cbd5e1;
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.fuel-247-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.fuel-247-features li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .75rem;
}
.fuel-247-features span { font-size: 1.25rem; flex-shrink: 0; }
.fuel-247-features strong { display: block; font-size: .82rem; margin-bottom: .1rem; }
.fuel-247-features p { font-size: .72rem; color: #94a3b8; margin: 0; }
.fuel-247-steps {
  list-style: none;
  counter-reset: fuel-step;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin-bottom: 1.5rem;
}
.fuel-247-steps li {
  counter-increment: fuel-step;
  font-size: .82rem;
  color: #e2e8f0;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.4;
}
.fuel-247-steps li::before {
  content: counter(fuel-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: #ef4444;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.fuel-247-steps strong { color: #fbbf24; }
.fuel-247-poster {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  border: 2px solid rgba(255,255,255,.12);
  animation: fuel-poster-float 4s ease-in-out infinite;
}
.fuel-247-poster img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes fuel-poster-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Rewards */
.rewards-label { color: #cbd5e1; font-size: .85rem; }
.rewards-coming { color: #cbd5e1; font-size: .88rem; line-height: 1.5; margin: .5rem 0 1.2rem; }
.points-row { display: flex; align-items: center; justify-content: space-between; margin: .3rem 0 1.2rem; }
.points { font-size: 2.6rem; font-weight: 900; }
.points small { font-size: .8rem; color: #fbbf24; margin-left: .3rem; }
.qr { width: 64px; height: 64px; background: #fff; color: var(--navy); border-radius: 8px; display: grid; place-items: center; font-size: 2rem; padding: 0; overflow: hidden; }
.qr.qr-ready { padding: 4px; }
.qr canvas { display: block; width: 100%; height: 100%; }
.qr-hint { font-size: .68rem; color: #94a3b8; margin-top: .4rem; }

/* Enlarged QR overlay */
.qr-overlay { position: fixed; inset: 0; background: rgba(7,21,41,.7); display: grid; place-items: center; padding: 1rem; z-index: 210; }
.qr-overlay.hidden { display: none; }
.qr-card { position: relative; background: #fff; border-radius: 18px; padding: 2rem; text-align: center; width: min(340px, 100%); box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.qr-card h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.qr-big { margin: 1.2rem auto .6rem; display: grid; place-items: center; }
.qr-big canvas { width: 240px; height: 240px; }
.qr-member { font-weight: 700; color: var(--ink); }
.rewards-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; text-align: center; font-size: .65rem; color: #cbd5e1; margin-bottom: 1.2rem; }
.rewards-icons span { display: block; font-size: 1.3rem; margin-bottom: .3rem; }

.fine-print { font-size: .72rem; color: var(--muted); margin-top: .6rem; }

/* Info bar */
.info-bar { background: #fff; border-top: 1px solid var(--line); padding: 2rem 0; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.info-item { display: flex; gap: .9rem; }
.info-ico { font-size: 1.6rem; color: var(--orange); }
.info-item strong { display: block; font-size: .85rem; margin-bottom: .25rem; }
.info-item p { font-size: .82rem; color: var(--ink); }

/* Local SEO section */
.local-seo { padding: 2.5rem 0; background: #f8fafc; border-top: 1px solid var(--line); }
.local-seo h2 { font-size: 1.35rem; color: var(--navy-deep); margin-bottom: .75rem; margin-top: 1.5rem; }
.local-seo h2:first-child { margin-top: 0; }
.local-seo p { font-size: .92rem; line-height: 1.65; color: #475569; max-width: 720px; margin-bottom: .75rem; }
.faq-list { max-width: 720px; margin-bottom: 1rem; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: .6rem; background: #fff; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: .85rem 1rem; color: var(--navy-deep); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1rem 1rem; margin: 0; font-size: .9rem; line-height: 1.6; color: #475569; }
.seo-suburbs { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: .75rem 0 0; max-width: 720px; }
.seo-suburbs li { background: #e2e8f0; color: var(--navy-deep); font-size: .78rem; font-weight: 600; padding: .35rem .65rem; border-radius: 999px; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange); font-weight: 600; }
.seo-landing section { margin-bottom: 1.5rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #cbd5e1; padding: 2rem 0 1rem; margin-top: 1rem; }
.footer-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 1.2rem; margin: 0 auto; font-size: .9rem; }
.footer-nav a:hover { color: #fff; }
.social { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.social span { font-size: 1.2rem; }
.copyright { text-align: center; font-size: .75rem; color: #64748b; margin-top: 1.2rem; }

/* Auth modal */
.auth-overlay { position: fixed; inset: 0; background: rgba(7,21,41,.6); display: grid; place-items: center; padding: 1rem; z-index: 200; }
.auth-overlay.hidden { display: none; }
.auth-card { position: relative; background: #fff; border-radius: 18px; width: min(400px, 100%); max-height: calc(100vh - 2rem); overflow-y: auto; padding: 2rem; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.auth-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; color: var(--muted); cursor: pointer; }
.auth-head { text-align: center; margin-bottom: 1.4rem; }
.auth-head .brand-mark { width: 46px; height: 46px; margin: 0 auto .7rem; font-size: 1.4rem; }
.auth-head h3 { font-size: 1.25rem; }
.auth-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 1rem; }
.auth-label input { display: block; width: 100%; margin-top: .35rem; padding: .8rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; box-sizing: border-box; }
.auth-label input:focus { outline: 2px solid var(--orange); border-color: transparent; }
.phone-field { display: flex; align-items: stretch; margin-top: .35rem; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.phone-field:focus-within { outline: 2px solid var(--orange); border-color: transparent; }
.phone-prefix { display: flex; align-items: center; padding: 0 .85rem; background: #f1f5f9; color: var(--ink); font-weight: 700; border-right: 1px solid var(--line); font-size: .95rem; white-space: nowrap; }
.phone-field input { flex: 1; min-width: 0; margin-top: 0; border: none; border-radius: 0; }
.phone-field input:focus { outline: none; }
.auth-error { color: #dc2626; font-size: .82rem; margin-top: .8rem; text-align: center; min-height: 1rem; }
.auth-switch { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.auth-switch a { color: var(--orange); font-weight: 600; }
.auth-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .78rem; font-weight: 500; color: var(--muted); margin-bottom: .85rem; line-height: 1.45; }
.auth-check input { margin-top: .15rem; flex-shrink: 0; }
.auth-check a { color: var(--orange); font-weight: 600; }
.hidden { display: none; }

/* Legal pages */
.legal-page { padding: 2.5rem 1rem 3rem; max-width: 780px; color: var(--ink); }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: .5rem; }
.legal-page h2 { font-size: 1.1rem; margin: 1.6rem 0 .6rem; color: var(--navy-deep); }
.legal-page p, .legal-page li { font-size: .92rem; line-height: 1.65; color: #334155; }
.legal-page ul { padding-left: 1.2rem; margin: .5rem 0 1rem; }
.legal-page a { color: var(--orange); font-weight: 600; }
.legal-updated { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.legal-intro { font-size: 1rem; margin-bottom: 1.5rem; }
.footer-nav-full { margin: 0 auto; justify-content: center; }
.copyright a { color: #94a3b8; }
.copyright a:hover { color: #fff; }
.acl-notice { text-align: center; font-size: .7rem; color: #64748b; margin-top: .5rem; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.4; }

/* Privacy banner (Australian APP 5 collection notice) */
.privacy-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-deep); color: #e2e8f0; padding: 1rem; z-index: 300; box-shadow: 0 -8px 30px rgba(0,0,0,.25); }
.privacy-banner.hidden { display: none; }
.privacy-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.privacy-banner p { font-size: .82rem; line-height: 1.45; margin: 0; flex: 1; min-width: 220px; }
.privacy-banner a { color: var(--orange); font-weight: 600; }
.privacy-controls { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }
.privacy-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.btn-sm { padding: .45rem .75rem; font-size: .78rem; }
.btn.danger, .btn-outline.danger { border-color: #fca5a5; color: #fecaca; }
.collection-notice { font-size: .75rem; color: var(--muted); line-height: 1.4; margin-bottom: 1rem; padding: .65rem .75rem; background: #f8fafc; border-radius: 8px; border: 1px solid var(--line); }

/* Shown only inside the mobile menu */
.mobile-only { display: none; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .panels-grid, .info-grid, .fuel-247-grid { grid-template-columns: 1fr; }
  .fuel-247-poster { max-width: 420px; margin: 0 auto; order: -1; }
  .header-actions { margin-left: auto; }
  .header-cta { display: none; }
  .header-login { padding: .55rem .9rem; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--navy-deep); padding: 1rem 6%; gap: 1rem;
  }
  .main-nav.open { display: flex; }
  .mobile-only { display: block; }
  .nav-auth { padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.12); }
  .nav-auth[data-open-auth="register"] { color: var(--orange); font-weight: 700; }
}

/* Small phones */
@media (max-width: 560px) {
  .container { width: 90%; }
  .notice-ticker-label { display: none; }
  .notice-ticker-inner { padding: .5rem 0; }
  .notice-ticker-content { font-size: .82rem; }
  .whats-new-card { flex-direction: column; align-items: flex-start; }
  .fuel-247-features, .fuel-247-steps { grid-template-columns: 1fr; }
  .hero {
    padding: 2.5rem 0 3rem;
    background-image:
      linear-gradient(180deg, rgba(7,21,41,.92) 0%, rgba(7,21,41,.78) 100%),
      url('../images/hero-banner.jpg');
    background-position: center 35%;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .promotions-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .rewards-icons { font-size: .6rem; }
  .info-bar { padding: 1.5rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .auth-card { padding: 1.5rem; border-radius: 14px; }
  .auth-overlay { padding: .6rem; }
  .brand-text { font-size: .95rem; }
  .header-login { padding: .5rem .8rem; font-size: .9rem; }
}
