/* ═══════════════════════════════════════════════
   LIONSHIELD FINANCIAL SERVICES — PREMIUM STYLES
   Dark Luxury · Gold Accents · Refined Typography
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --black:      #080A0E;
  --dark1:      #0D0F14;
  --dark2:      #111418;
  --dark3:      #181C23;
  --dark4:      #1E2330;
  --border:     rgba(201,168,76,0.12);
  --border-sub: rgba(255,255,255,0.06);

  --gold:       #C9A84C;
  --gold-light: #E2C678;
  --gold-dim:   #8A6E2A;
  --gold-glow:  rgba(201,168,76,0.15);

  --white:      #F4F0E8;
  --white2:     #C8C4BC;
  --text-muted: #7A7672;

  --red-soft:   #EF9A9A;
  --green-soft: #81C784;
  --blue-soft:  #90CAF9;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.03) inset;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.08);

  --section-pad: 100px 48px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white2);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

section {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark1); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(8,10,14,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--gold-light); background: rgba(201,168,76,0.06); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
  padding: 68px 64px 64px;
  overflow: hidden;
  background: linear-gradient(135deg, #07090F, #0F1725, #151C2B);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(201,168,76,0.05) 0%,
    transparent 50%,
    rgba(10,8,4,0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
}

/* ── Hero Layout (two-column) ── */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
}

.hero-left {
  max-width: 620px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
/* ── Premium Slider Card ── */
.hero-slider-card {
    position: relative;
    width:100%;
    max-width:100%;

    aspect-ratio: 1500 / 650;
    height: auto;

    border-radius: 20px;
    overflow: hidden;

    border: 1px solid rgba(201,168,76,.35);
    background: rgba(20,24,32,.45);

    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s ease-in-out, transform 5s ease-out;
}

.slide.active {
  transform: scale(1);
}

.slide.active { opacity: 1; }

/* ── Hero Stats ── */
.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  color: var(--white2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-highlight{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-bottom:36px;

    padding:12px 22px;

    border:1px solid rgba(201,168,76,.28);

    background:linear-gradient(
        135deg,
        rgba(201,168,76,.12),
        rgba(201,168,76,.04)
    );

    color:#E2C678;

    border-radius:8px;

    font-size:.9rem;

    font-weight:600;

    box-shadow:0 8px 30px rgba(201,168,76,.08);
}

.hero-highlight strong{
    color:#ffffff;
}

/* ── Buttons ── */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  background: rgba(13,15,20,0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 640px;
}

.stat-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   FEATURE STRIP
   ══════════════════════════════════════ */
.feature-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-right: 1px solid var(--border-sub);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { color: var(--gold-light); background: rgba(201,168,76,0.04); }

.feature-icon { font-size: 1.1rem; }

/* ══════════════════════════════════════
   SECTION TYPOGRAPHY
   ══════════════════════════════════════ */
.section-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }

.section-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--dark2);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.card:hover::before { opacity: 1; }

.card-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-body {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Check List ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--white2);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(201,168,76,0.08);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-list strong { color: var(--white); font-weight: 600; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Disclaimer ── */
.disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border-sub);
  margin-top: 12px;
  opacity: 0.8;
}

/* ══════════════════════════════════════
   TAX HERO
   ══════════════════════════════════════ */
.tax-hero {
  background: var(--dark1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.tax-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  align-items: start;
}

.tax-big-num {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.tax-big-num::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.83rem;
}

.compare-table thead tr {
  background: var(--dark3);
}

.compare-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-sub);
}

.compare-table th:nth-child(3) { color: var(--gold); }

.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-sub);
  vertical-align: middle;
  line-height: 1.5;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.compare-table tr:hover td { background: rgba(201,168,76,0.03); }

.compare-table td:first-child {
  font-weight: 500;
  color: var(--white2);
}

.compare-table .bad {
  color: var(--red-soft);
  opacity: 0.85;
}

.compare-table .bad::before {
  content: '✗ ';
  font-size: 0.75rem;
}

.compare-table .good {
  color: var(--green-soft);
}

.compare-table .good::before {
  content: '✓ ';
  font-size: 0.75rem;
  font-weight: 700;
}

/* ══════════════════════════════════════
   INVEST CARD
   ══════════════════════════════════════ */
.invest-card {
  background: var(--dark2);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.invest-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.invest-card-header {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 100%);
  border-bottom: 1px solid var(--border-sub);
}

.invest-card-body { padding: 24px 28px; }

.give-get {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.give-get-box {
  flex: 1;
  min-width: 160px;
  background: var(--dark3);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm);
  padding: 20px 20px 16px;
  transition: border-color 0.2s;
}
.give-get-box:hover { border-color: var(--border); }

.give-get-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.give-get-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.give-get-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 300;
}

.big-return {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.keyman-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 16px;
}

.kf-box { flex: 1; }
.kf-box-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.kf-box-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.kf-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   LAW CARD
   ══════════════════════════════════════ */
.law-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 16px;
  box-shadow: 0 0 60px rgba(201,168,76,0.04) inset;
}

.law-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 20px;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   DEADLINE CARD
   ══════════════════════════════════════ */
.deadline-card {
  background: var(--dark2);
  border: 1px solid rgba(239,154,154,0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.deadline-date {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--red-soft);
  letter-spacing: -0.04em;
}

.deadline-month {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--red-soft);
  letter-spacing: 0.08em;
  margin-top: 8px;
  opacity: 0.8;
}

/* ══════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════ */
.timeline {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.timeline-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  font-weight: 700;
  transition: transform 0.2s;
}
.timeline-dot:hover { transform: scale(1.06); }

.timeline-dot-1 { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); }
.timeline-dot-2 { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.10); }
.timeline-dot-3 { border-color: rgba(201,168,76,0.7); background: rgba(201,168,76,0.14); }
.timeline-dot-4 { border-color: var(--gold); background: rgba(201,168,76,0.20); }

.timeline-pct {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.timeline-date {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.timeline-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   ALERT BOX
   ══════════════════════════════════════ */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
}

.alert-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.alert-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.alert-body {
  font-size: 0.82rem;
  color: var(--white2);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   INFO BOX
   ══════════════════════════════════════ */
.info-box {
  background: rgba(129,199,132,0.05);
  border: 1px solid rgba(129,199,132,0.15);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

/* ══════════════════════════════════════
   GOVERNMENT BADGE
   ══════════════════════════════════════ */
.govt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,140,200,0.08);
  border: 1px solid rgba(100,140,200,0.2);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.govt-badge-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* ── Tags ── */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-sub);
  padding: 5px 12px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: rgba(201,168,76,0.3); color: var(--gold-light); }

/* ══════════════════════════════════════
   DOCUMENT TABLE
   ══════════════════════════════════════ */
.doc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.82rem;
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.doc-table th {
  padding: 14px 20px;
  background: var(--dark3);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-sub);
}

.doc-table th:first-child { text-align: left; }

.doc-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-sub);
  color: var(--white2);
  text-align: center;
}

.doc-table td:first-child { text-align: left; }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.doc-table tr:hover td { background: rgba(201,168,76,0.025); }

.doc-table .check {
  color: var(--green-soft);
  font-size: 1rem;
  font-weight: 700;
}

.doc-table .cross {
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ══════════════════════════════════════
   NEWS CARDS
   ══════════════════════════════════════ */
.news-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--dark2);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.25s;
}

.news-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

.news-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--dark3);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-source {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--dark1);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-icon { font-size: 1.8rem; line-height: 1; }

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white2);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-sub);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-sub);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .tax-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Hero → tablet: text above, slider below, stats below */
  .hero { padding-top: 100px; gap: 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-left { max-width: 100%; order: 1; }
  .hero-right { order: 2; }
  .hero-slider-card { margin: 0 auto; }
  .hero-stats { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  .hero { padding: 88px 24px 56px; gap: 36px; }
  .hero h1 { font-size: 2.4rem; }

  section { padding: 64px 24px; }

  .cards-grid,
  .cards-2,
  .cards-3,
  .cards-4 { grid-template-columns: 1fr; }

  .give-get { flex-direction: column; }
  .give-get-arrow { transform: rotate(90deg); }

  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 12px 14px; }

  /* Hero → mobile: full-width buttons, 2x2 stats grid, full-width slider */
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .stat-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .hero-slider-card { max-width: 100%; width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .feature-strip { justify-content: flex-start; }
  .feature-item { padding: 16px 20px; }

  .tax-big-num { font-size: 5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 84px 16px 48px; }
  section { padding: 48px 16px; }
  nav { padding: 0 16px; }
  .footer-inner { padding: 48px 16px 40px; }
  .footer-bottom { padding: 16px; }
}

/* ══════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
