@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy-dark: #080c20;
  --navy-twilight: #12173a;
  --indigo-twilight: #221447;
  --purple-deep: #2c1654;
  --navy: #0a1128;
  --navy-2: #060b1e;
  --navy-3: #18224d;
  --gold: #f59e0b;
  --gold-2: #fbbf24;
  --gold-light: #fef3c7;
  --gold-hover: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.36);
  --orange: #f59e0b;
  --orange-2: #fbbf24;
  --orange-3: #fef3c7;
  --ink: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --soft-2: #ffffff;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 20px rgba(8, 12, 32, 0.06);
  --shadow: 0 20px 50px rgba(8, 12, 32, 0.12);
  --shadow-xl: 0 32px 80px rgba(8, 12, 32, 0.18);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: #ffffff; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 64px, 1440px); margin: auto; }
.skip-link { position: absolute; left: -9999px; }

/* ==========================================================================
   Luxury Dark Twilight Header (Single-Row Guaranteed Across All Displays)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: #080c20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.header-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-icon-emblem {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 4px 14px var(--gold-glow);
  flex-shrink: 0;
}

.brand-text {
  font-size: 16.5px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 850;
  color: #ffffff;
  white-space: nowrap;
}

.brand-accent {
  color: var(--gold);
}

.brand-subline {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 4px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: none;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 320px;
  background: #0d1230;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .22s cubic-bezier(.16,1,.3,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 14px;
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  transition: all .15s ease;
}

.dropdown-link:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  transform: translateX(4px);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-contact {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c20;
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 6px 18px var(--gold-glow);
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header-contact:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.45);
  color: #080c20;
}

/* ==========================================================================
   Prestigious Legal Hero Section (Seamless Merged Background & Updated CTA)
   ========================================================================== */
.hero-legal-wrap {
  background: linear-gradient(135deg, #080c20 0%, #12173a 45%, #251445 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-legal-watermark {
  position: absolute;
  top: 12%;
  left: 4%;
  font-size: clamp(80px, 12vw, 170px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  text-transform: uppercase;
  z-index: 0;
}

.hero-legal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 560px;
}

.hero-legal-left {
  max-width: 640px;
  padding-bottom: 40px;
}

.hero-legal-headline {
  margin: 0 0 20px;
}

.serif-title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.text-gold {
  color: var(--gold);
}

.hero-legal-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0 0 32px;
  font-weight: 400;
}

.btn-gold-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c20;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 8px;
  box-shadow: 0 14px 35px var(--gold-glow);
  transition: all .22s ease;
  text-decoration: none;
}

.btn-gold-hero:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.5);
  color: #080c20;
}

.btn-gold-hero .btn-icon {
  font-size: 18px;
}

.hero-legal-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

/* Seamless blend: multi-edge radial & linear feathering */
.hero-team-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: cover;
  background: transparent;
  mask-image: radial-gradient(ellipse at 50% 55%, black 48%, rgba(0, 0, 0, 0.85) 68%, transparent 98%),
              linear-gradient(to bottom, black 80%, transparent 100%),
              linear-gradient(to right, black 88%, transparent 100%),
              linear-gradient(to left, black 88%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, black 48%, rgba(0, 0, 0, 0.85) 68%, transparent 98%),
                      linear-gradient(to bottom, black 80%, transparent 100%),
                      linear-gradient(to right, black 88%, transparent 100%),
                      linear-gradient(to left, black 88%, transparent 100%);
}

/* Bottom Feature Strip (Matching Reference Image) */
.hero-bottom-strip {
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 3;
}

.hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.strip-item {
  background: rgba(8, 12, 32, 0.95);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: background .2s ease;
}

.strip-item:hover {
  background: rgba(18, 24, 58, 0.98);
}

.strip-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

.strip-icon {
  font-size: 24px;
  color: var(--gold);
}

.strip-text strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}

.strip-text span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* ==========================================================================
   Page Hero for Sub-Pages
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #080c20 0%, #12173a 50%, #251445 100%);
  color: #ffffff;
  padding: 64px 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.page-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.page-hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 54px);
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.12;
}

.page-hero-text .eyebrow {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.page-hero-text .lead {
  color: #cbd5e1;
  font-size: 17px;
  margin-bottom: 24px;
}

.breadcrumb {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ==========================================================================
   General Buttons, Badges, Typography
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 12px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c20;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45);
  color: #080c20;
}

.btn-dark {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-twilight));
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 12, 32, 0.3);
}

.btn-light {
  background: #ffffff;
  border-color: #cbd5e1;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.btn-light:hover {
  border-color: var(--gold);
  color: var(--gold-hover);
}

.btn-small { min-height: 38px; padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

/* ==========================================================================
   Content Sections, Cards, Grids
   ========================================================================== */
.section { padding: 80px 0; }
.section-soft { background: #f8fafc; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 40px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
}
.section-head p { margin: 0; color: #64748b; font-size: 16px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #fcd34d;
}

.card h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 10px;
}

.card p { color: #64748b; margin: 0; font-size: 14.5px; }

.service-card {
  text-align: center;
  align-items: center;
}

.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fffbeb;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  border: 1px solid #fef3c7;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.12);
}

/* Blog Article Cards & Library */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0 54px;
}
@media(max-width: 1080px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 680px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  align-self: flex-start;
  background: #fffbeb;
  color: var(--gold-hover);
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid #fef3c7;
  text-transform: uppercase;
}
.blog-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.35;
}
.blog-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.blog-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
}
.blog-read-link {
  color: var(--gold-hover);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* SEO Content & Tables */
.seo-section { padding: 60px 0; }
.seo-body { max-width: 1080px; margin: 0 auto; }
.seo-body h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.4vw, 36px); color: var(--navy); margin: 44px 0 16px; line-height: 1.2; }
.seo-body h3 { font-size: clamp(19px, 1.8vw, 24px); color: var(--navy); margin: 30px 0 12px; }
.seo-body h4 { font-size: 17px; color: #1e355b; margin: 22px 0 8px; }
.seo-body p { color: #475569; font-size: 15.5px; line-height: 1.8; margin: 0 0 18px; }
.seo-body ul, .seo-body ol { color: #475569; font-size: 15.5px; line-height: 1.8; margin: 0 0 24px; padding-left: 26px; }
.seo-body li { margin-bottom: 9px; }
.seo-body strong { color: #091e3e; }

.info-box { background: #f8fbff; border-left: 4px solid var(--gold); border-radius: 12px; padding: 24px 28px; margin: 28px 0; box-shadow: 0 8px 24px rgba(8, 12, 32, 0.04); }
.info-box h4 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.info-box p { margin: 0; font-size: 14.5px; line-height: 1.65; color: #455870; }

.data-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.data-table { width: 100%; border-collapse: collapse; text-align: left; background: #fff; }
.data-table th { background: #080c20; color: #fff; padding: 14px 18px; font-weight: 800; font-size: 14px; }
.data-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); color: #475569; font-size: 14px; }
.data-table tr:hover td { background: #f8fafc; }

/* FAQ List */
.faq-list { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { width: 100%; border: 0; background: #fff; padding: 18px 22px; text-align: left; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq-q span { color: var(--gold); font-size: 20px; font-weight: 900; }
.faq-a { display: none; padding: 0 22px 20px; color: #64748b; font-size: 14.5px; }
.faq-item.open .faq-a { display: block; }

/* Bottom CTA Banner */
.bottom-cta {
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  background: linear-gradient(135deg, #080c20 0%, #12173a 100%);
  color: #fff;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(8, 12, 32, 0.15);
}

.bottom-cta h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  margin: 0 0 6px;
}

.bottom-cta p { margin: 0; color: #cbd5e1; font-size: 15px; }

/* Case Review Intake Form */
.case-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-form-head {
  background: linear-gradient(135deg, #080c20, #151a3c);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
}

.case-form-head h3 { margin: 0; font-size: 20px; color: #fff; }
.case-form-head p { margin: 4px 0 0; color: var(--gold); font-size: 13px; font-weight: 700; }
.case-form-body { padding: 22px; }
.field { width: 100%; min-height: 46px; border: 1px solid #cbd5e1; border-radius: 8px; margin-bottom: 12px; padding: 10px 14px; color: #1e293b; background: #fff; outline: none; transition: .15s ease; font-size: 14px; }
.field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15); }
.field.textarea { min-height: 80px; resize: vertical; }
.case-form small { display: block; text-align: center; color: #64748b; margin-top: 10px; font-size: 12px; }

/* ==========================================================================
   Modern SaaS Tabbed Pricing Card & Rate Card UI
   ========================================================================== */
.pricing-showcase-section { padding: 30px 0 60px; display: flex; flex-direction: column; align-items: center; }
.pricing-ui-wrapper { display: flex; justify-content: center; width: 100%; margin: 20px 0 48px; }
.modern-pricing-card { width: 100%; max-width: 460px; background: #ffffff; border-radius: 32px; padding: 38px 34px; box-shadow: 0 28px 75px rgba(7, 31, 69, .12), 0 0 0 1px rgba(230, 237, 246, .9); display: flex; flex-direction: column; position: relative; transition: all .3s ease; }
.modern-pricing-card:hover { box-shadow: 0 36px 95px rgba(7, 31, 69, .18); transform: translateY(-4px); }
.pricing-pill-tabs { display: flex; background: #f1f5f9; border-radius: 999px; padding: 5px; margin-bottom: 28px; gap: 4px; border: 1px solid #e2e8f0; }
.pill-tab-btn { flex: 1; border: 0; background: transparent; padding: 10px 8px; font-size: 12.5px; font-weight: 800; color: #64748b; border-radius: 999px; cursor: pointer; transition: all .22s ease; text-align: center; white-space: nowrap; }
.pill-tab-btn:hover { color: var(--navy); }
.pill-tab-btn.active { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080c20; box-shadow: 0 6px 16px var(--gold-glow); font-weight: 900; }
.pricing-card-header { text-align: center; margin-bottom: 18px; }
.pricing-card-amount { font-size: 58px; font-weight: 950; color: var(--navy); line-height: 1; letter-spacing: -.045em; display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.pricing-card-amount .currency { font-size: 30px; font-weight: 800; vertical-align: super; }
.pricing-card-amount .period { font-size: 16px; font-weight: 600; color: #64748b; letter-spacing: normal; }
.pricing-card-desc { font-size: 15px; color: #64748b; margin-top: 10px; font-weight: 600; }
.pricing-card-divider { height: 1px; background: #e8edf5; margin: 18px 0 24px; }
.pricing-card-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.pricing-card-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #334155; line-height: 1.45; }
.pricing-card-features li:before { content: "✓"; width: 18px; height: 18px; background: linear-gradient(180deg, var(--gold), var(--gold-hover)); color: #080c20; border-radius: 50%; display: inline-grid; place-items: center; flex: 0 0 18px; font-size: 11px; font-weight: 950; margin-top: 2px; box-shadow: 0 4px 10px var(--gold-glow); }
.btn-pill-cta { display: flex; align-items: center; justify-content: center; width: 100%; padding: 16px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080c20; font-weight: 850; font-size: 15px; border: 0; cursor: pointer; box-shadow: 0 12px 28px var(--gold-glow); transition: all .2s ease; text-decoration: none; margin-top: auto; }
.btn-pill-cta:hover { background: linear-gradient(135deg, #fbbf24, #f59e0b); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(245, 158, 11, .45); color: #080c20; }

/* Modern Rate Cards Grid */
.modern-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 32px 0 48px; }
@media(max-width: 1200px) { .modern-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 680px) { .modern-cards-grid { grid-template-columns: 1fr; } }
.modern-mini-card { background: #ffffff; border-radius: 28px; padding: 34px 28px; box-shadow: 0 18px 45px rgba(7, 31, 69, .08), 0 0 0 1px rgba(230, 237, 246, .9); display: flex; flex-direction: column; position: relative; transition: all .25s ease; }
.modern-mini-card:hover { transform: translateY(-6px); box-shadow: 0 26px 65px rgba(7, 31, 69, .15); }
.modern-mini-card.highlighted { border: 2px solid var(--gold); box-shadow: 0 24px 65px rgba(245, 158, 11, .18); transform: translateY(-6px); }
.mini-card-badge { display: inline-block; align-self: flex-start; background: #fffbeb; color: var(--gold-hover); font-size: 11.5px; font-weight: 800; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; border: 1px solid #fef3c7; }
.mini-card-badge.badge-featured { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080c20; border: 0; }
.modern-mini-card h3 { font-size: 20px; color: var(--navy); margin: 0 0 6px; letter-spacing: -.02em; }
.modern-mini-card .mini-desc { font-size: 13.5px; color: #64748b; margin: 0 0 14px; min-height: 38px; }
.modern-mini-card .mini-price { font-size: 36px; font-weight: 950; color: var(--navy); margin-bottom: 16px; letter-spacing: -.04em; }
.modern-mini-card .mini-price small { font-size: 14px; color: #64748b; font-weight: 700; }
.modern-mini-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.modern-mini-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #334155; }
.modern-mini-card li:before { content: "✓"; width: 16px; height: 16px; background: linear-gradient(180deg, var(--gold), var(--gold-hover)); color: #080c20; border-radius: 50%; display: inline-grid; place-items: center; flex: 0 0 16px; font-size: 10px; font-weight: 950; margin-top: 2px; }

/* ==========================================================================
   Luxury Twilight Footer (Without Phone Numbers)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #080c20 0%, #050816 100%);
  color: #94a3b8;
  padding: 64px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand { margin-bottom: 14px; }
.footer-desc { font-size: 13.5px; color: #94a3b8; line-height: 1.6; margin-bottom: 20px; }
.footer-contact-info p { margin: 6px 0; font-size: 13px; color: #cbd5e1; }
.footer-contact-info strong { color: var(--gold); }
.site-footer h4 { color: #ffffff; margin: 0 0 16px; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 800; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #94a3b8; font-size: 13.5px; transition: color .15s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 40px; padding-top: 24px; color: #64748b; font-size: 12.5px; }
.legal-disclaimer p { margin: 0 0 16px; line-height: 1.5; }
.footer-copyright { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a:hover { color: var(--gold); }

/* ==========================================================================
   Chatbot Widget (Online Specialist)
   ========================================================================== */
#amz-chatbot-container { position: fixed; right: 24px; bottom: 24px; z-index: 9999; font-family: var(--font); }
.amz-chat-launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #080c20;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all .25s ease;
}

.amz-chat-launcher:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25);
}

.amz-chat-avatar-thumb {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.amz-chat-avatar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amz-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #10b981;
  border: 2px solid #080c20;
  border-radius: 50%;
}

.amz-chat-launcher-text strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.1;
}

.amz-chat-launcher-text small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.amz-chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(8, 12, 32, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.95);
  transition: all .25s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.amz-chat-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.amz-chat-header {
  background: linear-gradient(135deg, #080c20, #151a3c);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.amz-chat-header-info { display: flex; align-items: center; gap: 10px; }
.amz-chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.amz-chat-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.amz-chat-header strong { display: block; font-size: 14.5px; color: #fff; }
.amz-chat-header small { display: block; font-size: 11.5px; color: var(--gold); }
.amz-chat-close { background: rgba(255, 255, 255, 0.12); border: 0; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; font-size: 14px; }
.amz-chat-close:hover { background: rgba(255, 255, 255, 0.25); }

.amz-chat-messages { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: #f8fafc; }
.amz-msg { display: flex; flex-direction: column; max-width: 86%; }
.amz-msg-bot { align-self: flex-start; }
.amz-msg-user { align-self: flex-end; }
.amz-msg-bubble { padding: 12px 15px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.amz-msg-bot .amz-msg-bubble { background: #ffffff; color: #1e293b; border: 1px solid #e2e8f0; border-bottom-left-radius: 3px; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03); }
.amz-msg-user .amz-msg-bubble { background: linear-gradient(135deg, var(--gold), var(--gold-hover)); color: #080c20; font-weight: 700; border-bottom-right-radius: 3px; box-shadow: 0 6px 16px var(--gold-glow); }
.amz-quick-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.amz-chip { background: #ffffff; border: 1px solid #cbd5e1; color: var(--navy); font-size: 11.5px; font-weight: 750; padding: 6px 10px; border-radius: 999px; cursor: pointer; transition: all .15s ease; }
.amz-chip:hover { background: #fffbeb; border-color: var(--gold); color: var(--gold-hover); transform: translateY(-1px); }
.bot-links-grid { display: grid; gap: 6px; margin-top: 8px; }
.bot-link-card { display: block; padding: 8px 10px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; text-decoration: none; transition: all .15s ease; }
.bot-link-card:hover { border-color: var(--gold); background: #fffbeb; transform: translateX(2px); }
.bot-link-card strong { display: block; font-size: 12.5px; color: var(--navy); line-height: 1.2; }
.bot-link-card span { display: block; font-size: 11px; color: #64748b; margin-top: 2px; }
.amz-typing .amz-msg-bubble { display: flex; gap: 4px; padding: 10px 14px; }
.amz-typing .dot { width: 6px; height: 6px; background: #94a3b8; border-radius: 50%; animation: amzDotBounce 1.2s infinite ease-in-out; }
.amz-typing .dot:nth-child(2) { animation-delay: .2s; }
.amz-typing .dot:nth-child(3) { animation-delay: .4s; }
@keyframes amzDotBounce { 0%,80%,100% { transform: scale(0); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }
.amz-chat-form { display: flex; padding: 10px; background: #ffffff; border-top: 1px solid #e2e8f0; gap: 6px; }
.amz-chat-form input { flex: 1; border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px 12px; font-size: 13px; color: #1e293b; outline: none; }
.amz-chat-form input:focus { border-color: var(--gold); }
.amz-chat-form button { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080c20; border: 0; cursor: pointer; display: grid; place-items: center; }
.amz-chat-form button svg { width: 16px; height: 16px; stroke: #080c20; }

/* Responsive Adjustments */
@media(max-width: 980px) {
  .header-wrap { height: auto; padding: 16px 0; flex-wrap: wrap; justify-content: center; }
  .nav { flex-wrap: wrap; gap: 10px; width: 100%; justify-content: center; }
  .header-cta { width: 100%; justify-content: center; margin-top: 10px; }
  .dropdown-menu { position: static; transform: none!important; opacity: 1; visibility: visible; pointer-events: auto; width: 100%; margin-top: 6px; display: none; }
  .nav-dropdown:hover .dropdown-menu { display: flex; }
  .hero-legal-grid { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-legal-left { max-width: 100%; margin: 0 auto; }
  .hero-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-content { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4, .grid-6, .footer-grid { grid-template-columns: 1fr; }
  .bottom-cta { flex-direction: column; text-align: center; }
}

@media(max-width: 560px) {
  .hero-strip-grid { grid-template-columns: 1fr; }
  .hero-legal-watermark { display: none; }
  .serif-title { font-size: 38px; }
}


/* Disable any background stock photo overlays */
.hero-bg, .page-hero .hero-bg, .hero:before, .page-hero:before, .hero:after, .page-hero:after {
  display: none !important;
}

/* Big Merged Homepage Hero */
.hero-legal-wrap {
  background: linear-gradient(135deg, #080c20 0%, #12173a 45%, #251445 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 50px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-legal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: flex-end;
  min-height: 620px;
}

.hero-legal-left {
  max-width: 620px;
  padding-bottom: 60px;
  align-self: center;
}

.hero-legal-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  overflow: visible;
}

.hero-team-img {
  width: 100%;
  max-width: 820px;
  height: auto;
  object-fit: cover;
  background: transparent;
  transform: scale(1.06) translateY(10px);
  transform-origin: bottom center;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 55%, rgba(0, 0, 0, 0.85) 75%, transparent 100%),
              linear-gradient(to bottom, black 85%, transparent 100%),
              linear-gradient(to right, black 90%, transparent 100%),
              linear-gradient(to left, black 90%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 55%, rgba(0, 0, 0, 0.85) 75%, transparent 100%),
                      linear-gradient(to bottom, black 85%, transparent 100%),
                      linear-gradient(to right, black 90%, transparent 100%),
                      linear-gradient(to left, black 90%, transparent 100%);
}

/* Compact, Clean Sub-Page Hero */
.page-hero {
  background: linear-gradient(135deg, #080c20 0%, #12173a 50%, #251445 100%);
  color: #ffffff;
  padding: 44px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  min-height: auto;
}

.page-hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  min-height: auto;
  padding: 0;
}

.page-hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 46px);
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.15;
}

.page-hero-text .lead {
  color: #cbd5e1;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* ==========================================================================
   4.9-Star Verified Client Reviews Grid (12 Reviews per Page)
   ========================================================================== */
.reviews-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-header-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 24px;
  width: fit-content;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-sm);
}

.reviews-header-summary .rating-num {
  font-size: 20px;
  font-weight: 950;
  color: var(--navy);
}

.reviews-header-summary .rating-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-header-summary .rating-count {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 700;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.reviews-grid-12 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 1100px) {
  .reviews-grid-12 { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 680px) {
  .reviews-grid-12 { grid-template-columns: 1fr; }
}

.review-card-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(8, 12, 32, 0.04);
  display: flex;
  flex-direction: column;
  transition: all .22s ease;
  position: relative;
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #fcd34d;
}

.review-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 800;
  color: #0b9f50;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #d1fae5;
}

.review-card-item h4 {
  font-size: 15.5px;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.35;
  font-weight: 800;
}

.review-card-item p {
  color: #475569;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.reviewer-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 800;
}

.reviewer-info span {
  display: block;
  font-size: 11.5px;
  color: #64748b;
  margin-top: 1px;
}

.review-date {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}


/* Homepage Hero with Compact Case Review Form */
.hero-legal-wrap {
  background: linear-gradient(135deg, #080c20 0%, #12173a 45%, #251445 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-legal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 390px;
  gap: 48px;
  align-items: center;
  padding-bottom: 50px;
  min-height: auto;
}

.hero-legal-left {
  max-width: 660px;
  padding-bottom: 0;
}

.hero-legal-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-legal-right .case-form {
  width: 100%;
  max-width: 390px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.btn-gold-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c20;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 8px;
  box-shadow: 0 12px 30px var(--gold-glow);
  transition: all .22s ease;
  text-decoration: none;
}


/* Smaller, Sleek Brand Logo with Shield */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

.brand-icon-emblem {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 9px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px var(--gold-glow);
  flex-shrink: 0;
}

.brand-icon-emblem svg {
  width: 20px;
  height: 20px;
  stroke: #080c20;
}

.brand-text {
  font-size: 16.5px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: #ffffff;
  text-transform: none;
}

.brand-accent {
  color: var(--gold);
}

.brand-subline {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
}


/* Hero Trust Metrics Badges */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  color: #cbd5e1;
  backdrop-filter: blur(8px);
}

.metric-pill strong {
  color: #ffffff;
  font-weight: 800;
}

.metric-pill .metric-star {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.metric-pill .metric-shield {
  font-size: 13px;
}


/* ==========================================================================
   Interactive Reinstatement Infographic Roadmap & Comparison
   ========================================================================== */
.infographic-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.infographic-intro {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.infographic-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--navy);
  margin: 0 0 14px;
}

.infographic-intro p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* 5-Step Process Roadmap Grid */
.infographic-roadmap {
  position: relative;
  margin-bottom: 60px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

@media(max-width: 1200px) {
  .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.roadmap-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 20px;
  box-shadow: 0 10px 30px rgba(8, 12, 32, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s ease;
  overflow: hidden;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 12, 32, 0.12);
  border-color: var(--gold);
}

.roadmap-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  opacity: 0;
  transition: opacity .2s ease;
}

.roadmap-card:hover:before {
  opacity: 1;
}

.roadmap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.roadmap-step-badge {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-hover);
  background: #fffbeb;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #fef3c7;
  letter-spacing: 0.04em;
}

.roadmap-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.roadmap-card h3 {
  font-size: 16.5px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
  font-weight: 800;
}

.roadmap-card p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}

.roadmap-timeline-tag {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 800;
  color: #0b9f50;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

/* Comparison Infographic Block */
.infographic-comparison {
  background: linear-gradient(135deg, #080c20 0%, #12173a 100%);
  border-radius: 28px;
  padding: 44px 40px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.comparison-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  color: #ffffff;
  margin: 0 0 8px;
}

.comparison-head p {
  color: #cbd5e1;
  font-size: 14.5px;
  margin: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media(max-width: 860px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comp-column {
  border-radius: 20px;
  padding: 30px 26px;
}

.comp-column.diy {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.comp-column.pro {
  background: rgba(245, 158, 11, 0.08);
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.15);
}

.comp-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-col-header h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-column.diy h4 { color: #f87171; }
.comp-column.pro h4 { color: var(--gold); }

.comp-rate-badge {
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
}

.comp-column.diy .comp-rate-badge { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.comp-column.pro .comp-rate-badge { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080c20; }

.comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e2e8f0;
}

.comp-column.diy .comp-list li:before {
  content: "✕";
  color: #f87171;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.comp-column.pro .comp-list li:before {
  content: "✓";
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, var(--gold), var(--gold-hover));
  color: #080c20;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 950;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ==========================================================================
   Executive Directors & Appeal Specialists Team Section
   ========================================================================== */
.team-section {
  padding: 80px 0;
  background: #ffffff;
}

.team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}

@media(max-width: 980px) {
  .team-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .team-grid-3 {
    grid-template-columns: 1fr;
  }
}

.team-member-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #080c20;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.team-member-card:hover .team-img-wrap img {
  transform: scale(1.04);
}

.team-badge-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(8, 12, 32, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-body h3 {
  font-size: 19px;
  color: var(--navy);
  margin: 0 0 4px;
  font-weight: 850;
}

.team-role {
  display: block;
  font-size: 13px;
  color: var(--gold-hover);
  font-weight: 750;
  margin-bottom: 12px;
}

.team-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.expertise-tag {
  background: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.team-body p {
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}


/* ==========================================================================
   Ecosystem Partner Logos & Badges
   ========================================================================== */
.hero-partners-strip {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-partners-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  font-weight: 750;
  margin-bottom: 12px;
}

.hero-partner-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 14px;
  transition: all .22s ease;
  backdrop-filter: blur(8px);
}

.partner-logo-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.partner-logo-pill svg {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.partner-logo-pill span {
  display: block;
  font-size: 12.5px;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.partner-logo-pill small {
  display: block;
  font-size: 10px;
  color: var(--gold);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}


/* ==========================================================================
   Master 100% Mobile Responsiveness Engine
   ========================================================================== */

/* Mobile Hamburger Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 9px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1200;
  flex-shrink: 0;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .25s ease;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

.mobile-cta-wrap {
  display: none;
  margin-top: 14px;
  width: 100%;
}

/* Tablet & Mobile Breakpoint (<= 980px) */
@media(max-width: 980px) {
  .container {
    width: min(100% - 32px, 1440px) !important;
  }

  .header-wrap {
    height: 70px !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
  }

  .brand {
    gap: 8px;
  }

  .brand-icon-emblem {
    width: 32px;
    height: 32px;
  }

  .brand-icon-emblem svg {
    width: 17px;
    height: 17px;
  }

  .brand-text {
    font-size: 14.5px !important;
  }

  .brand-subline {
    font-size: 8px !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
  }

  .desktop-only-cta {
    display: none !important;
  }

  /* Full Screen Slide-out Mobile Menu */
  .nav {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: #080c20 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 20px 20px 60px !important;
    gap: 4px !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform .28s cubic-bezier(.16,1,.3,1) !important;
    z-index: 1150 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.mobile-open {
    transform: translateX(0) !important;
  }

  .nav-link {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14.5px !important;
    border-radius: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #e2e8f0 !important;
    justify-content: space-between;
  }

  .nav-link:hover, .nav-link:active {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold) !important;
  }

  .nav-dropdown {
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 !important;
    display: flex !important;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 100% !important;
    background: #0e1333 !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin: 4px 0 8px !important;
    padding: 6px !important;
    display: none !important;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex !important;
  }

  .dropdown-link {
    padding: 9px 12px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .mobile-cta-wrap {
    display: block !important;
    padding-top: 10px;
  }

  .mobile-cta-wrap .btn-header-contact {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
    text-align: center;
  }

  /* Homepage Hero Layout on Mobile */
  .hero-legal-wrap {
    padding: 24px 0 0 !important;
  }

  .hero-legal-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding-bottom: 30px !important;
    min-height: auto !important;
  }

  .hero-legal-left {
    max-width: 100% !important;
    text-align: center !important;
  }

  .serif-title {
    font-size: clamp(28px, 6vw, 42px) !important;
    line-height: 1.12 !important;
  }

  .hero-legal-lead {
    font-size: 14.5px !important;
    margin: 0 0 20px !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .btn-gold-hero {
    width: 100% !important;
    justify-content: center !important;
    padding: 15px 18px !important;
    font-size: 13px !important;
    text-align: center;
  }

  .hero-trust-metrics {
    justify-content: center !important;
  }

  .metric-pill {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }

  .hero-partner-logos {
    justify-content: center !important;
  }

  .partner-logo-pill {
    padding: 6px 10px !important;
  }

  .partner-logo-pill span {
    font-size: 11.5px !important;
  }

  .hero-legal-right {
    width: 100% !important;
  }

  .hero-legal-right .case-form {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-strip-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .strip-item {
    padding: 14px 16px !important;
    gap: 10px !important;
  }

  .strip-text strong {
    font-size: 13px !important;
  }

  .strip-text span {
    font-size: 11px !important;
  }

  /* Grid Layouts Stack Cleanly */
  .grid-2, .grid-3, .grid-4, .grid-6,
  .roadmap-grid, .comparison-grid, .team-grid-3,
  .blog-grid, .reviews-grid-12, .modern-cards-grid,
  .footer-grid, .page-hero-content {
    grid-template-columns: 1fr !important;
  }

  .bottom-cta {
    flex-direction: column !important;
    text-align: center !important;
    padding: 24px 18px !important;
    gap: 18px !important;
  }

  .bottom-cta a.btn {
    width: 100% !important;
  }

  .footer-copyright {
    flex-direction: column !important;
    text-align: center !important;
    gap: 14px !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .section {
    padding: 50px 0 !important;
  }

  .section-head h2 {
    font-size: 26px !important;
  }
}

/* Small Smartphone Breakpoint (<= 520px) */
@media(max-width: 520px) {
  .hero-strip-grid {
    grid-template-columns: 1fr !important;
  }

  .serif-title {
    font-size: 26px !important;
  }

  .reviews-header-summary {
    flex-direction: column !important;
    border-radius: 18px !important;
    padding: 12px 18px !important;
    gap: 8px !important;
  }

  .reviews-header-summary .rating-count {
    border-left: 0 !important;
    padding-left: 0 !important;
    text-align: center;
  }

  /* Chatbot on small mobile */
  #amz-chatbot-container {
    right: 12px !important;
    bottom: 12px !important;
  }

  .amz-chat-panel {
    right: -6px !important;
    bottom: 58px !important;
    width: calc(100vw - 24px) !important;
    height: calc(100vh - 80px) !important;
  }
}


/* ==========================================================================
   Official Amazon Partner Logos Grid (Balanced 4-Badge Strip)
   ========================================================================== */
.hero-partners-strip {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.hero-partners-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

@media(max-width: 1200px) {
  .hero-partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .hero-partner-logos {
    grid-template-columns: 1fr;
  }
}

.partner-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
  transition: all .22s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  min-height: 48px;
}

.partner-logo-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.partner-logo-pill img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Tighten Hero Grid Gap to remove dead space */
.hero-legal-wrap {
  padding: 38px 0 0;
}

.hero-legal-grid {
  display: grid;
  grid-template-columns: 1.15fr 400px;
  gap: 36px;
  align-items: start;
  padding-bottom: 36px;
}

@media(max-width: 980px) {
  .hero-legal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* ==========================================================================
   Verified Reinstatement Notices & Official Proof Dossier Gallery
   ========================================================================== */
.proof-gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.proof-grid-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media(max-width: 1024px) {
  .proof-grid-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .proof-grid-gallery {
    grid-template-columns: 1fr;
  }
}

.proof-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.proof-img-frame {
  position: relative;
  width: 100%;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 280px;
}

.proof-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}

.proof-card:hover .proof-img-frame img {
  transform: scale(1.03);
}

.proof-badge-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-size: 11px;
  font-weight: 850;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-meta {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proof-meta h4 {
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 6px;
  font-weight: 850;
}

.proof-meta p {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 6px;
  line-height: 1.5;
}

.proof-meta p strong {
  color: #334155;
}

.proof-summary {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin-top: 6px !important;
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
  flex: 1;
}


/* ==========================================================================
   Interactive 20+ Official Amazon Approval Notices Dossier
   ========================================================================== */
.notices-dossier-section {
  padding: 70px 0 90px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.notice-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 40px;
}

.notice-filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  font-size: 13px;
  font-weight: 750;
  color: #334155;
  cursor: pointer;
  transition: all .2s ease;
}

.notice-filter-btn:hover {
  border-color: var(--gold);
  background: #fffdf7;
}

.notice-filter-btn.active {
  background: #201344;
  color: #ffffff;
  border-color: #201344;
  box-shadow: 0 4px 14px rgba(32, 19, 68, 0.25);
}

.notices-grid-20 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width: 1100px) {
  .notices-grid-20 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 680px) {
  .notices-grid-20 {
    grid-template-columns: 1fr;
  }
}

.amz-notice-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}

.amz-notice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border-color: var(--gold);
}

/* Amazon Header Bar inside card */
.amz-notice-topbar {
  background: #232f3e;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amz-notice-logo {
  height: 20px;
  width: auto;
}

.amz-notice-date-stamp {
  font-size: 11px;
  color: #cbd5e1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.amz-notice-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

.notice-subject-line {
  font-size: 14px;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.notice-pill-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.tag-reactivated {
  background: #ecfdf5;
  color: #0b9f50;
  border: 1px solid #a7f3d0;
}

.tag-funds {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.tag-ip {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.tag-asin {
  background: #faf5ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
}

.tag-invoice {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.notice-quote-box {
  background: #f8fafc;
  border-left: 3.5px solid #10b981;
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.notice-quote-box strong {
  color: #0f172a;
}

.notice-footer-meta {
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-footer-meta strong {
  color: #1e293b;
}

.notice-mkt-flag {
  font-weight: 800;
  color: #0f172a;
}


/* ==========================================================================
   Open 4-Column Side-by-Side Pricing Packages Grid
   ========================================================================== */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
  align-items: stretch;
}

@media(max-width: 1200px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 680px) {
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }
}

.pricing-box-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 34px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s ease;
}

.pricing-box-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: var(--gold);
}

.pricing-box-card.featured {
  background: #ffffff;
  border: 2.5px solid var(--gold);
  box-shadow: 0 16px 45px var(--gold-glow);
  transform: scale(1.02);
}

.pricing-box-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-badge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 850;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  width: fit-content;
}

.badge-standard-tag {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.badge-featured-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c20;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.badge-emergency-tag {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.pricing-plan-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 6px;
  font-weight: 850;
}

.pricing-plan-desc {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px;
  min-height: 38px;
}

.pricing-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-amount-wrap .currency {
  font-size: 24px;
  font-weight: 850;
  color: var(--navy);
}

.pricing-amount-wrap .amount {
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-amount-wrap .period {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
  margin-left: 2px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
  font-weight: 600;
}

.pricing-features-list li::before {
  content: "✓";
  color: var(--gold-hover);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-btn {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  display: inline-block;
  transition: all .2s ease;
}

.btn-plan-outline {
  background: #f8fafc;
  color: var(--navy);
  border: 1.5px solid #cbd5e1;
}

.btn-plan-outline:hover {
  background: #201344;
  color: #ffffff;
  border-color: #201344;
}

.btn-plan-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080c20;
  border: 0;
  box-shadow: 0 6px 18px var(--gold-glow);
}

.btn-plan-gold:hover {
  background: linear-gradient(135deg, #fbbf24, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.45);
}
