/* ═══════════════════════════════════════════════
   Home Works Now – Shared Stylesheet
   ═══════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── SVG Icon System ── */
.ico { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; flex-shrink: 0; }
.ico path, .ico circle, .ico polyline, .ico line, .ico rect, .ico polygon, .ico ellipse { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

:root {
  --navy:     #0f2044;
  --navy2:    #1a3060;
  --navy3:    #0a1830;
  --orange:   #f97316;
  --orange2:  #ea6a0a;
  --orange-lt:#fff4ed;
  --white:    #ffffff;
  --gray50:   #f8f9fa;
  --gray100:  #f1f3f5;
  --gray200:  #e9ecef;
  --gray300:  #ced4da;
  --gray500:  #adb5bd;
  --gray600:  #6c757d;
  --gray700:  #495057;
  --gray800:  #343a40;
  --text:     #1e293b;
  --radius:   10px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,.16);
  --t:        .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-lg { padding: 17px 34px; font-size: 1.1rem; }

.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.38); }

.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,.92); }

.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-white-outline:hover { background: rgba(255,255,255,.1); }

/* ── Section Utilities ── */
section { padding: 80px 0; }

.section-label {
  display: inline-block;
  background: rgba(249,115,22,.12);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.section-label-white {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title-white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray600);
  max-width: 640px;
}
.section-sub-white { color: rgba(255,255,255,.78); }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Top Bar ── */
.topbar {
  background: var(--navy3);
  color: rgba(255,255,255,.8);
  font-size: .83rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--orange); }
.topbar-items { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar-item  { display: flex; align-items: center; gap: 6px; }
.badge-emergency {
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: .8; }
}

/* ── Header / Nav ── */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}
.nav-inner nav {
  flex: 1;
  justify-content: center;
}

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.logo-img { height: 52px; width: auto; display: block; }
footer .logo-img { height: 48px; filter: brightness(0) invert(1); }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name    { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.logo-tagline { font-size: .68rem; color: var(--gray600); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }

/* ── Photo Strip (inner pages) ── */
.photo-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 0 0 0 0; }
.photo-strip img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); display: block; }
@media (max-width: 768px) { .photo-strip { grid-template-columns: 1fr 1fr; } .photo-strip img { height: 180px; } }

/* ── Photo Gallery ── */
.photo-gallery { padding: 80px 0; background: var(--gray50); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 12px;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-img:hover { transform: scale(1.03); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-wide { grid-column: span 2; height: 220px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-img { height: 180px; }
}

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  padding: 8px 13px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray800);
  transition: var(--t);
}
nav a:hover, nav a.active { color: var(--navy); background: var(--gray100); }
nav a.active { color: var(--orange); background: var(--orange-lt); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--t);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 65%, #1d4080 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.4);
  color: #fdb97d; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900; line-height: 1.12; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 580px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.page-hero-aside {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 240px;
  flex-shrink: 0;
}
.page-hero-aside h4 { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.hero-aside-items { display: flex; flex-direction: column; gap: 12px; }
.hero-aside-item  { display: flex; gap: 10px; align-items: center; }
.hero-aside-icon  { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.hero-aside-icon .ico { width: 22px; height: 22px; }
.hero-aside-text  { font-size: .88rem; color: rgba(255,255,255,.82); line-height: 1.4; }
.hero-aside-text strong { color: var(--white); display: block; font-size: .92rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  background: var(--gray50);
  border-bottom: 1px solid var(--gray200);
  font-size: .82rem;
  color: var(--gray600);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--gray600); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--gray300); }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

/* ── Forms ── */
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--gray800); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray300);
  border-radius: 6px;
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

/* ── Quote Sidebar Card ── */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 90px;
}
.quote-card-header {
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -32px -28px 24px;
  padding: 20px 28px;
  text-align: center;
}
.quote-card-header h3 { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.quote-card-header p { color: rgba(255,255,255,.7); font-size: .82rem; }

/* ── Stats Bar ── */
.stats-bar { background: var(--orange); padding: 28px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { color: var(--white); }
.stat-number { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: .83rem; opacity: .88; font-weight: 500; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--t);
  border-bottom: 4px solid transparent;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-bottom-color: var(--orange); }

.card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(15,32,68,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.12rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.card p   { font-size: .9rem; color: var(--gray600); }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: .88rem; font-weight: 700;
  color: var(--orange); transition: gap var(--t);
}
.card-link:hover { gap: 10px; }

/* ── Bullet Lists ── */
.bullet-list { display: flex; flex-direction: column; gap: 7px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .9rem; color: var(--gray800);
}
.bullet-list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 7px;
}
.bullet-list.white li { color: rgba(255,255,255,.82); }
.bullet-list.white li::before { background: var(--orange); }

/* ── Check Lists ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: var(--gray800);
}
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.check-list.white li { color: rgba(255,255,255,.82); }

/* ── Step Process ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 18px;
  position: relative; padding-bottom: 28px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-line {
  position: absolute; left: 17px; top: 36px; bottom: 0;
  width: 2px; background: var(--gray200);
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 5px; }
.step-body h4 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.step-body p  { font-size: .85rem; color: var(--gray600); }

/* ── Testimonials ── */
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: .93rem; color: var(--gray800);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name   { font-size: .9rem; font-weight: 700; color: var(--navy); }
.reviewer-detail { font-size: .78rem; color: var(--gray600); }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray200);
}
.faq-item:first-child { border-top: 1px solid var(--gray200); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; cursor: pointer; user-select: none;
  font-size: .98rem; font-weight: 700; color: var(--navy);
  transition: color var(--t);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gray100); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange-lt); color: var(--orange); }
.faq-answer {
  font-size: .92rem; color: var(--gray700); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 4px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ── CTA Banner ── */
.cta-banner { background: var(--orange); padding: 64px 0; }
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.cta-text p  { color: rgba(255,255,255,.85); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Service Area Tags ── */
.area-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray50); border: 1.5px solid var(--gray200);
  border-radius: 8px; padding: 11px 16px;
  font-size: .9rem; font-weight: 600; color: var(--navy); transition: var(--t);
}
.area-tag:hover { border-color: var(--orange); background: var(--orange-lt); }
.area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-desc  { font-size: .87rem; color: rgba(255,255,255,.58); margin-top: 14px; line-height: 1.7; }
.footer-licenses { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.license-tag {
  font-size: .7rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11);
  border-radius: 4px; padding: 3px 8px; color: rgba(255,255,255,.55);
}
.footer-col h4 {
  font-size: .8rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.58); transition: color var(--t); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item  { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; }
.fci-icon { width: 18px; height: 18px; color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.fci-icon .ico { width: 18px; height: 18px; }
.fci-text  { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.5; }
.fci-text a { color: rgba(255,255,255,.82); }
.fci-text a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { font-size: .8rem; color: rgba(255,255,255,.55); text-decoration: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 6px; padding: 5px 11px; transition: var(--t); }
.footer-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11);
  border-radius: 6px; padding: 5px 12px;
  font-size: .73rem; color: rgba(255,255,255,.55); font-weight: 600;
}

/* ── Dropdown Navigation ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  padding: 8px 13px; border-radius: 6px;
  font-size: .88rem; font-weight: 600; color: var(--gray800);
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  transition: var(--t); user-select: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--navy); background: var(--gray100); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 220px; padding: 6px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 300; border: 1px solid var(--gray200);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border-radius: 6px; font-size: .86rem; font-weight: 600;
  color: var(--gray700); transition: var(--t); background: none;
}
.nav-dropdown-menu a:hover { background: var(--gray100); color: var(--navy); }
.nav-dropdown-divider { height: 1px; background: var(--gray200); margin: 5px 0; }

/* ── Blog / Article ── */
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 14px;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 36px 0 14px; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.article-body p  { font-size: .97rem; color: var(--gray700); margin-bottom: 16px; line-height: 1.75; }
.article-body ul,
.article-body ol { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 8px; }
.article-body ul li,
.article-body ol li { font-size: .95rem; color: var(--gray700); padding-left: 4px; }
.article-body ul { list-style: none; }
.article-body ul li::before { content: '▸'; color: var(--orange); margin-right: 8px; font-size: .8rem; }
.article-body ol { list-style: decimal; padding-left: 20px; }
.article-body strong { color: var(--navy); }
.article-tip {
  background: rgba(249,115,22,.06); border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px; margin: 24px 0;
}
.article-tip p { margin: 0; font-size: .93rem; color: var(--gray700); }
.article-tip strong { color: var(--orange); }
.article-cta-box {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 32px 36px; margin: 40px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.article-cta-box h3 { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.article-cta-box p  { color: rgba(255,255,255,.72); font-size: .88rem; }

/* comparison table */
.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .9rem; }
.comparison-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray200); color: var(--gray700); }
.comparison-table tr:nth-child(even) td { background: var(--gray50); }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); }

/* blog card */
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--t);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.blog-card-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.blog-card-cat {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; position: absolute; top: 14px; left: 14px; z-index: 1;
}
.blog-card-body { padding: 22px 22px 24px; }
.blog-card-meta { font-size: .78rem; color: var(--gray500); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p  { font-size: .87rem; color: var(--gray600); margin-bottom: 14px; }
.blog-card-link { font-size: .85rem; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; gap: 5px; }
.blog-card-link:hover { gap: 8px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  nav {
    display: none; flex-direction: column; width: 100%;
    position: absolute; top: 100%; left: 0;
    background: var(--white); box-shadow: var(--shadow); padding: 12px 16px; gap: 2px;
    z-index: 200;
  }
  nav.open { display: flex; }
  nav a    { width: 100%; padding: 11px 14px; }
  .nav-toggle { display: flex; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  header { position: relative; }
  /* Mobile dropdowns */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 11px 14px; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; box-shadow: none; border: none;
    padding: 0 0 4px 16px; display: none; min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }
  .nav-dropdown-menu a { padding: 9px 12px; font-size: .88rem; }
  .article-cta-box { flex-direction: column; text-align: center; padding: 24px; }
  .comparison-table { font-size: .82rem; }
  .comparison-table th, .comparison-table td { padding: 9px 10px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner   { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .page-hero-aside { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}
