/* ============================================
   IMMIGRATION APPEAL SYSTEM — STYLESHEET
   ============================================ */

:root {
  --navy:    #0B1F3A;
  --navy-light: #122848;
  --gold:    #C8973A;
  --gold-light: #E0B060;
  --white:   #FFFFFF;
  --off-white: #F5F6F8;
  --grey-100: #EEF0F3;
  --grey-300: #BCC3CE;
  --grey-500: #7A8799;
  --grey-700: #3E4A5A;
  --danger:  #C0392B;
  --warning: #D4830A;
  --success: #1A7A4A;
  --text:    #1A2535;
  --text-muted: #5A6577;
  --radius:  8px;
  --radius-lg: 14px;
  --shadow:  0 2px 12px rgba(11,31,58,0.10);
  --shadow-lg: 0 8px 32px rgba(11,31,58,0.16);
  --transition: 0.2s ease;
  --max-width: 1100px;
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }
a  { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
strong { color: var(--text); font-weight: 600; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }
.text-center { text-align: center; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--navy);
  padding: 0 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: -0.02em;
}
.navbar-brand span { color: var(--gold); }
.navbar-links { display: flex; gap: 1.5rem; align-items: center; }
.navbar-links a {
  color: var(--grey-300);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.navbar-links a:hover { color: var(--white); }
.lang-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,0.2); }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 4px 0;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  color: var(--white);
  padding: 5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,151,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200,151,58,0.18);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.hero-meta-item .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.hero-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.05rem; }
.case-type-list { list-style: none; }
.case-type-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}
.case-type-list li:last-child { border-bottom: none; }
.case-type-list .icon { color: var(--gold); font-size: 1.1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,151,58,0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
}
.btn-full { width: 100%; display: block; }
.btn-danger {
  background: var(--danger);
  color: var(--white);
}
.btn-danger:hover { background: #a93226; }

/* ---- URGENCY BAND ---- */
.urgency-band {
  background: #7B1113;
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.urgency-band strong { color: #FFD580; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: 1.25rem 1.25rem;
}
.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-icon { color: var(--gold); font-size: 1.1rem; }

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-heading { margin-bottom: 0.75rem; }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(200,151,58,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ---- TOOL CARDS ---- */
.tool-card {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.tool-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.tool-card h3 { color: var(--navy); margin: 0.75rem 0 0.5rem; font-size: 1.1rem; }
.tool-card p  { font-size: 0.88rem; margin-bottom: 1rem; }
.tool-card .free-badge {
  display: inline-block;
  background: rgba(26,122,74,0.12);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.tool-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }

/* ---- PROCESS STEPS ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 0.25rem; }
.step-content p  { margin-bottom: 0; font-size: 0.9rem; }

/* ---- PACKAGE BOX ---- */
.package-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.package-box h3 { color: var(--white); margin-bottom: 1.5rem; }
.package-items { list-style: none; }
.package-items li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.package-items li:last-child { border-bottom: none; }
.package-items .check { color: var(--gold); flex-shrink: 0; font-weight: 700; }
.package-price {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.package-price .price-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}
.package-price .price-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.review-avatar {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.review-country { font-size: 0.75rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-100);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- MULTI-STEP FORM ---- */
.form-section {
  background: var(--off-white);
  min-height: 100vh;
  padding: 3rem 1.25rem;
}
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.progress-bar-wrap {
  background: var(--grey-100);
  border-radius: 99px;
  height: 6px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.progress-bar-fill {
  background: var(--gold);
  height: 100%;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.progress-label {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-step-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-label .req { color: var(--danger); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  font-family: var(--font-main);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; }
.radio-item, .checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.92rem;
}
.radio-item:hover, .checkbox-item:hover {
  border-color: var(--gold);
  background: rgba(200,151,58,0.04);
}
.radio-item.selected, .checkbox-item.selected {
  border-color: var(--gold);
  background: rgba(200,151,58,0.08);
  font-weight: 500;
}
.radio-item input, .checkbox-item input { accent-color: var(--gold); }
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: 1rem;
}
.form-error {
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}

/* ---- PROCESSING SCREEN ---- */
.processing-screen {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.processing-spinner {
  width: 56px; height: 56px;
  border: 4px solid var(--grey-100);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing-log { text-align: left; margin: 1.5rem 0; }
.log-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}
.log-item.done { opacity: 1; transform: none; color: var(--text); }
.log-item.done .log-icon { color: var(--success); }
.log-icon { width: 18px; height: 18px; flex-shrink: 0; font-size: 0.9rem; }

/* ---- RESULT PREVIEW ---- */
.result-screen { display: none; }
.risk-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.risk-high   { background: rgba(192,57,43,0.12); color: var(--danger); }
.risk-medium { background: rgba(212,131,10,0.12); color: var(--warning); }
.risk-low    { background: rgba(26,122,74,0.12);  color: var(--success); }
.result-section { margin-bottom: 1.5rem; }
.result-section h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.missing-docs { list-style: none; }
.missing-docs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  color: var(--danger);
}
.included-docs { list-style: none; }
.included-docs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: var(--text-muted);
}
.included-docs .check { color: var(--gold); }
.result-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.result-cta-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.result-cta-box p  { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; font-size: 0.9rem; }
.result-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}
.result-price small {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* ---- CHECKOUT ---- */
.checkout-section { background: var(--off-white); min-height: 100vh; padding: 3rem 1.25rem; }
.checkout-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
.checkout-main .card { margin-bottom: 1.5rem; }
.order-summary {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow);
}
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.9rem;
}
.order-line:last-of-type { border-bottom: none; }
.order-line .label { color: var(--text-muted); max-width: 200px; }
.order-line .val { font-weight: 700; color: var(--navy); }
.order-total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--navy);
}
.order-total .label { font-weight: 700; color: var(--navy); }
.order-total .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.upsell-box {
  background: rgba(200,151,58,0.07);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.upsell-box h4 { color: var(--navy); margin-bottom: 0.4rem; font-size: 0.97rem; }
.upsell-box p  { font-size: 0.83rem; margin-bottom: 0.75rem; color: var(--text-muted); }
.upsell-price  { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; display: block; }
.upsell-check-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.secure-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.secure-badge .icon { color: var(--success); }

/* ---- TOOL SPECIFIC ---- */
.tool-section { background: var(--off-white); min-height: 100vh; padding: 3rem 1.25rem; }
.tool-wrapper { max-width: 640px; margin: 0 auto; }
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.option-btn {
  padding: 0.85rem 1rem;
  border: 2px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  color: var(--text);
}
.option-btn:hover { border-color: var(--gold); }
.option-btn.selected {
  border-color: var(--gold);
  background: rgba(200,151,58,0.08);
  font-weight: 600;
  color: var(--navy);
}
.tool-result-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  margin-top: 2rem;
  display: none;
}
.tool-result-box h3 { color: var(--white); margin-bottom: 1rem; }
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.result-row:last-of-type { border-bottom: none; }
.result-row .r-label { color: rgba(255,255,255,0.65); }
.result-row .r-val { font-weight: 600; color: var(--white); }
.result-row .r-val.danger { color: #FF7B73; }
.result-row .r-val.warn   { color: #FFD580; }
.result-row .r-val.ok     { color: #74DBA5; }

/* ---- DASHBOARD ---- */
.dashboard-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
.case-status-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-pending  { background: rgba(212,131,10,0.12); color: var(--warning); }
.status-complete { background: rgba(26,122,74,0.12);  color: var(--success); }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 1.25rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.84rem; line-height: 1.65; }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.disclaimer-text {
  max-width: 700px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
  font-size: 0.76rem;
}

/* ---- ALERTS ---- */
.alert {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.alert-warning { background: rgba(212,131,10,0.1); color: #7A4A00; border-left: 3px solid var(--warning); }
.alert-danger   { background: rgba(192,57,43,0.08);  color: #7A1A10; border-left: 3px solid var(--danger);  }
.alert-success  { background: rgba(26,122,74,0.08);   color: #0A4A28; border-left: 3px solid var(--success); }

/* ---- UTILITY ---- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.text-gold   { color: var(--gold); }
.text-danger { color: var(--danger); }
.text-success{ color: var(--success); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy); }
.font-bold   { font-weight: 700; }
.bg-navy { background: var(--navy); }
.bg-off  { background: var(--off-white); }
.divider { border: none; border-top: 1px solid var(--grey-100); margin: 2rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .grid-3     { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .checkout-wrapper { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 640px) {
  .grid-3     { grid-template-columns: 1fr; }
  .grid-2     { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .trust-strip-inner { gap: 1.25rem; }
  .navbar-links .hide-mobile { display: none; }
  .hamburger { display: block; }
}
