/* ============ Taxi Masood – Dark Premium Theme ============ */
:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --bg-3: #16161c;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --gold: #f5c518;
  --gold-2: #ffd84d;
  --text: #f4f4f5;
  --muted: #a3a3ac;
  --radius: 18px;
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
::selection { background: var(--gold); color: #111; }

#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; letter-spacing: 0.15em; }
.loader-logo span { color: var(--gold); }
.loader-bar { width: 220px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-2)); animation: load 1.4s ease forwards; }
@keyframes load { to { width: 100%; } }

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 5vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: #111; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}
.logo-text { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.1em; font-size: 1rem; line-height: 1.2; }
.logo-text span { color: var(--gold); }
.logo-text small { display: block; font-weight: 400; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.25em; text-transform: uppercase; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.25s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

#langToggle {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 999px;
  color: var(--muted); font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  padding: 8px 14px; cursor: pointer; transition: border-color 0.3s;
}
#langToggle:hover { border-color: var(--gold); }
#langToggle .active { color: var(--gold); }
.lang-sep { margin: 0 4px; opacity: 0.4; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 999px; cursor: pointer; border: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e8b400);
  color: #111; box-shadow: 0 8px 30px rgba(245, 197, 24, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(245, 197, 24, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--text);
  border: 1px solid var(--card-border); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }
.btn-call { background: var(--card); border: 1px solid var(--card-border); color: var(--gold); padding: 10px 18px; font-size: 0.85rem; }
.btn-call:hover { border-color: var(--gold); }
.btn-big { font-size: 1.15rem; padding: 18px 42px; }

#menuToggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
#menuToggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero with video ---------- */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; background: #0a0a0c;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
  filter: brightness(0.72) contrast(1.12) saturate(1.05);
}
#scene3d { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(8, 8, 10, 0.88) 0%, rgba(8, 8, 10, 0.55) 38%, rgba(8, 8, 10, 0.25) 68%, rgba(8, 8, 10, 0.45) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(8, 8, 10, 0.5) 0%, transparent 22%);
}
.hero-content { position: relative; z-index: 2; padding: 140px 5vw 90px; max-width: 720px; }
.hero-badge {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  background: rgba(245, 197, 24, 0.1); border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--gold-2); padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
#hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.8rem); font-weight: 800; letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
#hero h1 .accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-2) 60%, #fff3c4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin-top: 22px; font-size: clamp(1rem, 1.6vw, 1.15rem); color: #cfcfd6; max-width: 540px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-stats {
  display: flex; gap: clamp(28px, 4.5vw, 60px); margin-top: 54px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 26px;
}
.stat-value { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1; }
.stat-num { color: var(--gold); }
.stat-label { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 7px; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.35); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.wheel { width: 3px; height: 8px; background: var(--gold); border-radius: 3px; animation: wheel 1.6s ease infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

section { padding: 110px 5vw; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin-top: 14px; }

.reveal { opacity: 0; transform: translateY(40px); }
.no-js .reveal, .reveal.shown { opacity: 1; transform: none; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 26px; }
.service-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--card-border); border-radius: var(--radius);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d; will-change: transform;
}
.service-card:hover {
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.service-img { position: relative; height: 210px; overflow: hidden; }
.service-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-2) 0%, transparent 40%);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 22px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.94rem; margin-bottom: 20px; flex: 1; }
.card-link { color: var(--gold); font-weight: 600; font-size: 0.92rem; transition: letter-spacing 0.25s; }
.card-link:hover { letter-spacing: 0.03em; }

.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fleet-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--card-border); background: var(--bg-2);
  min-height: 320px;
}
.fleet-card.big { grid-column: 1 / -1; min-height: 460px; }
.fleet-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.fleet-card:hover img { transform: scale(1.06); }
.fleet-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px;
  background: linear-gradient(to top, rgba(5,5,8,0.92) 20%, transparent);
}
.fleet-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  background: rgba(245, 197, 24, 0.15); border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold-2); padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.fleet-card h3 { font-size: 1.3rem; }
.fleet-card figcaption p { color: #c9c9d1; font-size: 0.92rem; margin-top: 6px; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.why-item {
  text-align: center; padding: 36px 24px;
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}
.why-item:hover { transform: translateY(-6px); border-color: rgba(245,197,24,0.4); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-item p { color: var(--muted); font-size: 0.9rem; }

.testimonial {
  margin-top: 64px; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(245,197,24,0.2); border-radius: var(--radius);
  padding: 48px 40px; position: relative;
}
.quote-mark { font-family: var(--font-head); font-size: 4.5rem; color: var(--gold); line-height: 0.5; margin-bottom: 18px; }
.testimonial p { font-size: 1.12rem; font-style: italic; color: var(--text); }
.testimonial-author { margin-top: 20px; color: var(--muted); font-size: 0.92rem; }
.stars { color: var(--gold); letter-spacing: 2px; margin-left: 8px; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 14px;
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(245,197,24,0.4); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; padding: 22px 26px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--gold); font-size: 1.4rem; font-weight: 400; transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; color: var(--muted); }

#cta-band {
  position: relative; text-align: center; border-radius: 24px; max-width: 1180px;
  overflow: hidden; border: 1px solid rgba(245, 197, 24, 0.28);
  background:
    linear-gradient(rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0.84)),
    url("../assets/hero-taxi-night.png") center 40% / cover no-repeat;
  padding: 100px 5vw;
}
.cta-inner { position: relative; z-index: 1; }
#cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-shadow: 0 4px 24px rgba(0,0,0,0.6); }
#cta-band p { color: #d6d6dd; margin: 16px 0 34px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-row { display: flex; gap: 18px; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.3);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row strong { font-family: var(--font-head); display: block; margin-bottom: 4px; }
.info-row p { color: var(--muted); }
.info-row a { color: var(--gold); }
.info-row a:hover { text-decoration: underline; }

.contact-form {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
  background: rgba(0,0,0,0.35); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 13px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s; resize: vertical; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form input[type="date"], .contact-form input[type="time"] { color-scheme: dark; }
.form-note { font-size: 0.8rem; color: var(--muted); }
.form-status {
  font-size: 0.92rem; font-weight: 600; padding: 12px 14px; border-radius: 10px;
}
.form-status.ok { background: rgba(37, 211, 102, 0.12); border: 1px solid rgba(37, 211, 102, 0.35); color: #7dffa8; }
.form-status.err { background: rgba(255, 80, 80, 0.12); border: 1px solid rgba(255, 80, 80, 0.35); color: #ffb4b4; }
.form-status.pending { background: rgba(245, 197, 24, 0.1); border: 1px solid rgba(245, 197, 24, 0.3); color: var(--gold-2); }
.booking-head h3 { font-size: 1.5rem; }
.booking-head p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.map-wrap { margin-top: 48px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; filter: grayscale(0.6) invert(0.9) hue-rotate(180deg) contrast(0.9); }

.float-order {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  display: flex; align-items: center; gap: 12px;
  background: rgba(14, 14, 18, 0.95); border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 999px; padding: 8px 22px 8px 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--text);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s, border-color 0.25s;
}
.float-order:hover { transform: translateY(-3px); border-color: var(--gold); }
.float-wa {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #25d366; display: grid; place-items: center;
  animation: waPulse 2.4s ease infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.service-area {
  padding: 80px 5vw 90px;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(245, 197, 24, 0.06), transparent 55%),
    var(--bg);
}
.service-area .area-grid {
  max-width: 1180px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}
.service-area .area-grid h3 {
  font-family: Sora, sans-serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.service-area .area-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

footer { background: var(--bg-2); border-top: 1px solid var(--card-border); padding: 70px 5vw 30px; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px;
}
.footer-logo { font-size: 1.2rem; margin-bottom: 16px; }
.footer-grid p, .footer-grid li { color: var(--muted); font-size: 0.92rem; }
.footer-grid h4 { margin-bottom: 18px; font-size: 1rem; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px; margin: 56px auto 0; padding-top: 24px;
  border-top: 1px solid var(--card-border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--muted); font-size: 0.82rem;
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw);
    background: rgba(12,12,16,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 110px 40px; gap: 28px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  #menuToggle { display: flex; z-index: 100; }
  #menuToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #menuToggle.open span:nth-child(2) { opacity: 0; }
  #menuToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .btn-call span { display: none; }
  .btn-call { padding: 10px 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { min-height: 280px; }
  .fleet-card.big { min-height: 340px; }
  .hero-video { object-position: center 40%; }
}

@media (max-width: 560px) {
  section { padding: 76px 6vw; }
  .section-head { margin-bottom: 44px; }
  .hero-content { padding: 120px 6vw 100px; }
  .hero-badge { font-size: 0.78rem; padding: 7px 14px; }
  .hero-sub { font-size: 0.98rem; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    margin-top: 40px; padding-top: 22px;
  }
  .stat-label { font-size: 0.72rem; }
  .scroll-hint { display: none; }
  .hero-video {
    object-position: center 35%;
    filter: brightness(0.62) contrast(1.15) saturate(1.05);
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.35) 35%, rgba(8, 8, 10, 0.75) 100%),
      linear-gradient(to top, var(--bg) 0%, transparent 30%);
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-img { height: 190px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions .btn { flex: 1 1 100%; }
  .map-wrap iframe { height: 300px; }
  #cta-band { padding: 76px 8vw; }
  .float-order { right: 14px; bottom: 14px; padding: 6px 16px 6px 6px; font-size: 0.82rem; }
  .float-wa { width: 40px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-area .area-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-video { display: none; }
}

/* ===== SEO article page ===== */
.article-page #navbar { background: rgba(10, 10, 12, 0.92); backdrop-filter: blur(14px); }
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 5vw 80px;
}
.article-hero { margin-bottom: 28px; }
.article-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-kicker a:hover { text-decoration: underline; }
.article-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.article-lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.article-lead strong { color: var(--text); font-weight: 600; }
.article-meta { font-size: 0.85rem; color: var(--muted); }
.article-figure {
  margin: 32px 0 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.article-figure img { width: 100%; height: auto; }
.article-body h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  color: var(--gold-2);
}
.article-body h3 {
  font-size: 1.08rem;
  margin: 24px 0 10px;
}
.article-body p, .article-body li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.article-body strong { color: var(--text); }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold-2); }
.article-body ol { padding-left: 1.25rem; margin-bottom: 18px; }
.article-body ol li { margin-bottom: 10px; }
.article-cta {
  margin-top: 48px;
  padding: 28px 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 80% at 10% 0%, rgba(245, 197, 24, 0.1), transparent 50%),
    var(--bg-2);
}
.article-cta h2 { margin-top: 0; color: var(--text); }
.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.article-teaser {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 28px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--bg-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.article-teaser h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.article-teaser p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 620px;
}
