/* ============================================
   CLAIM THE MAX — Main Stylesheet
   Brand: Dark Navy + Orange + White
   Fonts: Anton (headlines), Poppins (subheads), Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --orange: #FF5A1F;
  --orange-dark: #e04a10;
  --navy: #0B1C2C;
  --navy-mid: #0e2236;
  --navy-light: #1E3A5F;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
  --gray-light: #f4f6f9;
  --gray-mid: #8a9bb0;
  --gray-text: #ccd6e0;
  --font-headline: 'Anton', sans-serif;
  --font-sub: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.28);
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-sub); font-weight: 700; line-height: 1.2; }
.headline-display {
  font-family: var(--font-headline);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-mid { background: var(--navy-mid); color: var(--white); }
.section-gray { background: var(--gray-light); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,90,31,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-lg { padding: 20px 40px; font-size: 1.1rem; }
.section-label {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-mid .section-subtitle { color: var(--gray-text); }

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo span { color: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-call {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.btn-call:hover { background: var(--orange-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-text);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,90,31,0.08); }
.mobile-nav.open { display: flex; }

/* ── STICKY CALL BAR (mobile) ── */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(30,58,95,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255,90,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,90,31,0.12);
  border: 1px solid rgba(255,90,31,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--gray-text);
  font-family: var(--font-sub);
  font-weight: 500;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.07); }
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,90,31,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-card h3 {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--orange);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.88rem;
}
.trust-item .icon { font-size: 1rem; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.problem-card:hover {
  border-color: rgba(255,90,31,0.35);
  transform: translateY(-4px);
}
.problem-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}
.problem-card p { font-size: 0.88rem; color: var(--gray-text); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-header {
  background: var(--navy);
  padding: 32px 28px 24px;
  color: var(--white);
}
.service-card-header .icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card-header h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-card-header p { font-size: 0.85rem; color: var(--gray-text); }
.service-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body ul { margin-bottom: 20px; flex: 1; }
.service-card-body ul li {
  font-size: 0.88rem;
  color: #444;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.service-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.service-card-body .btn { width: 100%; justify-content: center; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(255,90,31,0.2));
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--orange);
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.step-card p { font-size: 0.85rem; color: #666; }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,90,31,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; color: var(--gray-text); }
.why-visual {
  background: var(--navy-light);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-stat-card {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
}
.why-stat-card strong {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.why-stat-card span { font-size: 0.85rem; color: var(--gray-text); }

/* ── LOCATIONS ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.location-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--orange);
}
.location-card .icon { font-size: 2rem; margin-bottom: 12px; }
.location-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--white); }
.location-card p { font-size: 0.85rem; color: var(--gray-text); margin-bottom: 16px; }
.location-card a {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sub);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--orange);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; font-size: 0.92rem; color: var(--gray-text); line-height: 1.75; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}
.form-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.9rem; color: var(--gray-text); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.09);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 1.05rem; padding: 16px; }
.form-note { font-size: 0.78rem; color: var(--gray-mid); margin-top: 10px; text-align: center; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #c0390a 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.final-cta h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-primary {
  background: var(--white);
  color: var(--orange);
  font-size: 1.05rem;
}
.final-cta .btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}
.final-cta .btn-secondary {
  border-color: rgba(255,255,255,0.6);
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: var(--gray-text);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.footer-contact-item .icon { color: var(--orange); margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: #666; }
.footer-disclaimer {
  font-size: 0.75rem;
  color: #555;
  max-width: 700px;
  line-height: 1.6;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--navy-mid);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb li {
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-family: var(--font-sub);
}
.breadcrumb li a { color: var(--gray-text); transition: color var(--transition); }
.breadcrumb li a:hover { color: var(--orange); }
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child { color: var(--orange); }
.breadcrumb li:last-child::after { display: none; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(30,58,95,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.05;
}
.page-hero p { font-size: 1.05rem; color: var(--gray-text); max-width: 580px; margin-bottom: 28px; }

/* ── SERVICE PAGE SPECIFICS ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.content-body h2 { font-size: 1.6rem; margin: 36px 0 14px; color: var(--charcoal); }
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 16px; font-size: 0.95rem; color: #444; line-height: 1.75; }
.content-body ul { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.content-body ul li {
  font-size: 0.92rem;
  color: #444;
  padding-left: 22px;
  position: relative;
}
.content-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.sidebar { position: sticky; top: 90px; }
.sidebar-form {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-form .form-title { font-size: 1.15rem; }
.sidebar-cta-box {
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.sidebar-cta-box h4 { font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta-box p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 16px; }
.sidebar-cta-box a { display: block; background: var(--white); color: var(--orange); padding: 12px; border-radius: var(--radius); font-weight: 700; font-family: var(--font-sub); }

/* ── RELATED LINKS ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.related-card {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  transition: background var(--transition);
}
.related-card:hover { background: #e9ecf0; }
.related-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.related-card span { font-size: 0.8rem; color: var(--orange); font-weight: 600; font-family: var(--font-sub); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; margin-bottom: 16px; }
.contact-info p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(255,90,31,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; color: var(--gray-text); font-weight: 500; margin-bottom: 4px; }
.contact-detail p { font-size: 1rem; font-weight: 600; color: var(--white); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SUCCESS MSG ── */
.form-success {
  display: none;
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.4);
  color: #27ae60;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .btn-call { display: none; }
  .hamburger { display: flex; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 56px; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 70px; }
  .problem-grid,
  .services-grid,
  .locations-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .trust-bar-inner { gap: 16px; }
  .trust-item { font-size: 0.8rem; }
  .hero h1 { font-size: 2.1rem; }
}

/* ── LOGO IMAGE ── */
.logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* White background pill for dark header */
  
  
  
}
footer .logo-img img {
  height: 40px;
  opacity: 0.92;
}

/* Logo override - transparent on dark bg */
.logo-img img {
  height: 52px !important;
  width: auto !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
footer .logo-img img {
  height: 44px !important;
}

/* ═══════════════════════════════════════
   REVIEWS CAROUSEL
═══════════════════════════════════════ */
.reviews-section { background: #0B1C2C; padding: 80px 0; overflow: hidden; }
.reviews-track-wrap { position: relative; overflow: hidden; margin-top: 48px; }
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-track-wrap::before { left: 0; background: linear-gradient(to right, #0B1C2C, transparent); }
.reviews-track-wrap::after  { right: 0; background: linear-gradient(to left, #0B1C2C, transparent); }
.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: #112840;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 26px;
  width: 320px;
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}
.review-card:hover { border-color: rgba(255,90,31,0.4); }
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 0.88rem;
  color: #ccd6e0;
  line-height: 1.72;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5A1F, #1E3A5F);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.85rem; color: #fff; }
.review-location { font-size: 0.75rem; color: #8a9bb0; margin-top: 1px; }
.review-tag {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,90,31,0.12);
  color: #FF5A1F;
  border: 1px solid rgba(255,90,31,0.25);
  padding: 3px 9px;
  border-radius: 99px;
}

/* ═══════════════════════════════════════
   AI CHAT WIDGET
═══════════════════════════════════════ */
#ai-chat-bubble {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 998;
}
#ai-chat-toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5A1F, #c0390a);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(255,90,31,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
#ai-chat-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(255,90,31,0.55); }
.chat-ping {
  position: absolute;
  top: 2px; right: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid white;
  animation: chatPing 2s infinite;
}
@keyframes chatPing {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
#ai-chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: #0e2236;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 500px;
}
#ai-chat-window.open { display: flex; animation: chatSlideUp 0.25s ease; }
@keyframes chatSlideUp { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
.chat-header {
  background: linear-gradient(135deg, #FF5A1F, #c0390a);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-header-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.chat-header-info h4 { font-size: 0.85rem; font-weight: 700; color: white; }
.chat-header-info p { font-size: 0.7rem; color: rgba(255,255,255,0.8); }
.chat-header-close { margin-left: auto; background: none; border: none; color: white; font-size: 1.1rem; cursor: pointer; opacity: 0.8; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
}
.chat-msg { display: flex; gap: 8px; align-items: flex-start; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,90,31,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.chat-msg.user .chat-msg-avatar { background: rgba(255,255,255,0.1); }
.chat-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px 12px 12px 2px;
  padding: 10px 13px;
  font-size: 0.8rem;
  color: #ccd6e0;
  line-height: 1.6;
  max-width: 230px;
}
.chat-msg.user .chat-bubble {
  background: rgba(255,90,31,0.15);
  border-color: rgba(255,90,31,0.2);
  border-radius: 12px 12px 2px 12px;
  color: white;
}
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 4px 0; }
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8a9bb0;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,80%,100% { transform: scale(0.7); opacity:0.4; } 40% { transform: scale(1); opacity:1; } }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.chat-quick-btn {
  background: rgba(255,90,31,0.1);
  border: 1px solid rgba(255,90,31,0.25);
  color: #FF5A1F;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 99px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
}
.chat-quick-btn:hover { background: rgba(255,90,31,0.2); }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 8px 14px;
  color: white;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
}
.chat-input::placeholder { color: rgba(255,255,255,0.3); }
.chat-send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #FF5A1F;
  border: none;
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chat-send:hover { background: #e04a10; }

/* ═══════════════════════════════════════
   CONTRAST FIX — HOW IT WORKS SECTION
═══════════════════════════════════════ */
.step-card h3 { color: #ffffff !important; }
.step-card p  { color: #ccd6e0 !important; }
.section-dark .section-subtitle { color: #ccd6e0 !important; }
.section-mid  .section-subtitle { color: #ccd6e0 !important; }
.why-item p   { color: #ccd6e0 !important; }
.hero-sub     { color: #d4dfe8 !important; }

/* ═══════════════════════════════════════
   LICENSE BADGE IN FOOTER
═══════════════════════════════════════ */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,90,31,0.08);
  border: 1px solid rgba(255,90,31,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 16px;
}
.license-badge .icon { font-size: 1.1rem; }
.license-badge-text strong { display: block; font-size: 0.82rem; color: #fff; font-weight: 700; }
.license-badge-text span   { font-size: 0.72rem; color: #8a9bb0; }

/* ═══════════════════════════════════════
   ANIMATED STATS / INFOGRAPHIC SECTION
═══════════════════════════════════════ */
.infographic-section { background: #0e2236; padding: 70px 0; }
.infographic-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.infographic-card {
  background: #112840;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.infographic-card:hover { transform: translateY(-4px); border-color: rgba(255,90,31,0.3); }
.infographic-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #FF5A1F, #c0390a);
}
.infographic-icon { font-size: 2.2rem; margin-bottom: 14px; }
.infographic-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.6rem;
  color: #FF5A1F;
  line-height: 1;
  margin-bottom: 8px;
}
.infographic-label { font-size: 0.82rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.infographic-sub { font-size: 0.75rem; color: #8a9bb0; line-height: 1.5; }

@media(max-width:768px) {
  .infographic-grid { grid-template-columns: repeat(2,1fr); }
  #ai-chat-window { width: 300px; }
}

/* ═══════════════════════════════════════
   OPPAGA ANIMATED CHART SECTION
═══════════════════════════════════════ */
.oppaga-section {
  background: #0B1C2C;
  padding: 80px 0;
  overflow: hidden;
}
.oppaga-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.oppaga-copy { }
.oppaga-copy .section-label { margin-bottom: 12px; }
.oppaga-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  color: white;
}
.oppaga-headline em { font-style: normal; color: #FF5A1F; }
.oppaga-copy p {
  font-size: 0.95rem;
  color: #ccd6e0;
  line-height: 1.75;
  margin-bottom: 24px;
}
.oppaga-source {
  font-size: 0.72rem;
  color: #8a9bb0;
  font-style: italic;
  margin-top: 8px;
}

/* Chart */
.oppaga-chart {
  background: #1E3A5F;
  border-radius: 16px;
  padding: 36px 32px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.oppaga-big-stat {
  text-align: center;
  margin-bottom: 32px;
}
.oppaga-pct {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  color: #FF5A1F;
  display: inline-block;
}
.oppaga-pct-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.oppaga-pct-sub {
  font-size: 0.88rem;
  color: #ccd6e0;
  font-style: italic;
  margin-top: 4px;
}
.bars-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: 160px;
  padding: 0 8px;
}
.bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}
.bar-label {
  font-size: 0.75rem;
  color: #ccd6e0;
  font-weight: 600;
  text-align: center;
}
.bar-amount {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: white;
  text-align: center;
}
.bar-body {
  width: 100%;
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bar-body.animated { transform: scaleY(1); }
.bar-without {
  background: linear-gradient(to top, #4a7fa5, #6fa3c9);
  height: 30%;
}
.bar-with {
  background: linear-gradient(to top, #c0390a, #FF5A1F);
  height: 100%;
  transition-delay: 0.3s;
}
.bar-value-inside {
  position: absolute;
  bottom: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  color: white;
}
.oppaga-baseline {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 4px;
}
.oppaga-source-line {
  text-align: center;
  font-size: 0.7rem;
  color: #8a9bb0;
  margin-top: 16px;
  font-style: italic;
}

/* ═══════════════════════════════════════
   MEGA NAV DROPDOWN
═══════════════════════════════════════ */
.main-nav { position: relative; }
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-wrap > a::after { content: '▾'; font-size: 0.65rem; opacity: 0.7; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0e2236;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(6px);
  z-index: 500;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 0.8rem;
  color: #ccd6e0;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(255,90,31,0.1); color: white; }
.nav-dropdown a .dd-icon { font-size: 0.9rem; width: 16px; text-align: center; }

@media(max-width:768px) {
  .oppaga-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   NAV DROPDOWN — HOVER FIX + CLICK SUPPORT
   Adds a hover bridge so gap doesn't close the menu
═══════════════════════════════════════ */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap > a { 
  display: flex; align-items: center; gap: 4px; 
  padding-bottom: 8px; /* extends hover zone */
}
/* Bridge gap between link and dropdown */
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 14px; /* covers the gap */
  background: transparent;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0e2236;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 500;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Keep open while hovering dropdown itself */
.nav-dropdown:hover { opacity: 1; pointer-events: all; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 7px;
  font-size: 0.8rem;
  color: #ccd6e0;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { 
  background: rgba(255,90,31,0.12); 
  color: white; 
}
.nav-dropdown a .dd-icon { 
  font-size: 0.9rem; 
  width: 18px; 
  text-align: center;
  flex-shrink: 0;
}
/* Dropdown open class for JS toggle */
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* ── BLOG PAGE ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: #112840;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,90,31,0.3);
}
.blog-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF5A1F;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-excerpt { font-size: 0.8rem; color: #8a9bb0; line-height: 1.65; flex: 1; }
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.blog-read-more { font-size: 0.78rem; font-weight: 700; color: #FF5A1F; font-family: var(--font-sub); }
.blog-date { font-size: 0.72rem; color: #8a9bb0; }

/* ── CLAIMS PROCESS PAGE ── */
.process-timeline { margin-top: 48px; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #FF5A1F, rgba(255,90,31,0.1));
}
.timeline-step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.timeline-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0B1C2C;
  border: 3px solid #FF5A1F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: #FF5A1F;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px #0B1C2C;
}
.timeline-content {
  background: #112840;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 22px 26px;
  flex: 1;
  transition: border-color 0.25s;
}
.timeline-content:hover { border-color: rgba(255,90,31,0.25); }
.timeline-content h3 { font-size: 1.05rem; color: white; margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; color: #ccd6e0; line-height: 1.7; }
.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,90,31,0.1);
  border: 1px solid rgba(255,90,31,0.2);
  color: #FF5A1F;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 10px;
  font-family: var(--font-sub);
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.right-card {
  background: #112840;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 4px solid #FF5A1F;
  border-radius: 0 12px 12px 0;
  padding: 20px;
}
.right-card h4 { font-size: 0.9rem; color: white; margin-bottom: 6px; }
.right-card p { font-size: 0.82rem; color: #8a9bb0; line-height: 1.65; }

.download-box {
  background: linear-gradient(135deg, rgba(255,90,31,0.12), rgba(30,58,95,0.4));
  border: 1px solid rgba(255,90,31,0.3);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.download-box h3 { font-size: 1.2rem; color: white; margin-bottom: 8px; }
.download-box p { font-size: 0.88rem; color: #ccd6e0; margin-bottom: 20px; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF5A1F;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.download-btn:hover { background: #e04a10; }

@media(max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .process-timeline::before { left: 28px; }
  .timeline-num { width: 56px; height: 56px; font-size: 1.1rem; }
}
