/* ============================================================
   Veriflo Compliance — mobile.css
   Loads ONLY on screens ≤ 768px (see media attr on <link> tag)
   Completely separate from styles.css (desktop).
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --color-navy:        #0F2458;
  --color-navy-light:  #1a3a7c;
  --color-navy-dark:   #09193d;
  --color-amber:       #D97706;
  --color-amber-hover: #b45309;
  --color-amber-light: #FEF3C7;
  --color-amber-border:#FDE68A;
  --color-white:       #FFFFFF;
  --color-gray-50:     #F8FAFC;
  --color-gray-100:    #F1F5F9;
  --color-gray-200:    #E2E8F0;
  --color-gray-400:    #94A3B8;
  --color-gray-500:    #64748B;
  --color-gray-700:    #374151;
  --color-gray-900:    #111827;
  --color-fine-red:    #DC2626;
  --color-fine-bg:     #FEF2F2;
  --color-green:       #16A34A;
  --color-green-bg:    #F0FDF4;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --pad:          1.25rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-gray-900);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gray-900);
}
h1 { font-size: 1.95rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; font-weight: 600; }

.lead { font-size: 1.05rem; line-height: 1.7; color: var(--color-gray-500); }
.text-muted  { color: var(--color-gray-500); }
.text-center { text-align: center; }
.text-navy   { color: var(--color-navy); }
.text-amber  { color: var(--color-amber); }
.text-green  { color: var(--color-green); }
.mt-2 { margin-top: 1rem; }
.check { color: var(--color-green); font-weight: 700; }
.dash  { color: var(--color-gray-400); }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--color-navy); color: #fff;
  padding: .5rem 1rem; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; padding: 0 var(--pad); }
.section { padding: 2.75rem 0; }
.section--gray { background: var(--color-gray-50); padding: 2.75rem 0; }
.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.75rem 0;
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--color-white); }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { margin-bottom: .65rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 var(--pad);
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.logo span { color: var(--color-amber); }

/* Hide the standalone top-bar CTA — it lives in the menu instead */
.nav-inner > .nav-cta { display: none !important; }

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .6rem;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-height slide-over menu */
.nav-links {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 1rem var(--pad) 2rem;
  gap: .25rem;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(.4, 0, .2, 1);
  z-index: 299;
  border-top: 1px solid var(--color-gray-200);
}
.nav-links.open { transform: translateX(0); }

/* Nav links inside the menu */
.nav-links li > a {
  display: block;
  padding: .95rem var(--pad);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: var(--radius);
  transition: background 150ms, color 150ms;
  -webkit-tap-highlight-color: transparent;
}
.nav-links li > a:hover,
.nav-links li > a.active {
  background: var(--color-gray-100);
  color: var(--color-navy);
}
.nav-links li > a.active { font-weight: 600; }

/* Divider before the CTA in the menu */
.nav-mobile-cta {
  display: block;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--color-gray-200);
}
.nav-mobile-cta a {
  display: block !important;
  width: 100%;
  padding: 1rem var(--pad) !important;
  background: var(--color-amber) !important;
  color: var(--color-white) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 3px 10px rgba(217,119,6,.35);
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .9rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
  transition: background 150ms, box-shadow 150ms;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--color-amber);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(217,119,6,.3);
}
.btn-primary:active { background: var(--color-amber-hover); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-outline:active { background: var(--color-navy); color: #fff; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .88rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-amber { background: var(--color-amber-light); color: #92400e; border: 1px solid var(--color-amber-border); }
.badge-navy  { background: rgba(15,36,88,.08); color: var(--color-navy); }
.badge-green { background: var(--color-green-bg); color: var(--color-green); }

/* ============================================================
   HERO (index.html)
   ============================================================ */
.hero {
  background: var(--color-navy);
  padding: 2.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}
.hero-inner { padding: 0 var(--pad); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 1rem;
}
.hero h1, h1#hero-heading {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}
.highlight { color: var(--color-amber); }
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  margin-bottom: .75rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.75rem;
}
.hero-visual { margin-top: 2.25rem; }
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.hero-card-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.icon-red   { background: rgba(220,38,38,.18); }
.icon-amber { background: rgba(217,119,6,.18); }
.icon-blue  { background: rgba(59,130,246,.18); }
.icon-green { background: rgba(22,163,74,.18); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.3; }
.hero-stat-value {
  font-size: .98rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-heading);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-navy-dark, #09193d);
  padding: .75rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.trust-strip-inner {
  display: flex;
  gap: 1.5rem;
  padding: 0 var(--pad);
  white-space: nowrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.trust-icon {
  width: 18px; height: 18px;
  background: var(--color-amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
}

/* grid-2, grid-3, grid-4 → single column on mobile */
.grid-2, .grid-3, .grid-4 { display: flex; flex-direction: column; gap: 1rem; }

/* ============================================================
   VIOLATION CARDS (index.html)
   ============================================================ */
.violation-card {
  background: var(--color-fine-bg);
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.violation-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-fine-red);
  margin-bottom: .5rem;
}
.fine-amount {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-fine-red);
  display: block;
  margin: .4rem 0;
}
.fine-note { font-size: .82rem; color: var(--color-gray-500); }

/* ============================================================
   HOW IT WORKS STEPS (index.html)
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.steps::before { display: none; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 0;
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.5rem var(--pad) 2.25rem;
}
.page-hero h1 {
  color: var(--color-white);
  font-size: 1.85rem;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.page-hero .lead { color: rgba(255,255,255,.8); font-size: 1rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-amber);
  padding: 2.5rem var(--pad);
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); font-size: 1.5rem; margin-bottom: .75rem; line-height: 1.25; }
.cta-banner p  { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }
.cta-banner-actions { display: flex; flex-direction: column; gap: .75rem; }
.cta-banner .btn-primary {
  background: var(--color-white);
  color: var(--color-amber);
  box-shadow: none;
}
.cta-banner .btn-ghost {
  border-color: rgba(255,255,255,.5);
  color: var(--color-white);
}

/* ============================================================
   PRICING CARDS (pricing.html)
   ============================================================ */
.pricing-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.pricing-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  position: relative;
}
.pricing-card.featured { border-color: var(--color-navy); border-width: 2px; }
.popular-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--color-amber); color: var(--color-white);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 999px;
}
.pricing-card-top { padding: 1.5rem; background: var(--color-gray-50); }
.pricing-card.featured .pricing-card-top { background: var(--color-navy); }
.pricing-tier-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--color-gray-500); margin-bottom: .35rem;
}
.pricing-card.featured .pricing-tier-label { color: rgba(255,255,255,.6); }
.pricing-card-top h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.pricing-card.featured .pricing-card-top h3 { color: var(--color-white); }
.pricing-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .5rem; }
.price-amount { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; color: var(--color-amber); }
.price-period { font-size: .9rem; color: var(--color-gray-500); }
.pricing-card.featured .price-period { color: rgba(255,255,255,.6); }
.pricing-card-desc { font-size: .88rem; color: var(--color-gray-500); }
.pricing-card.featured .pricing-card-desc { color: rgba(255,255,255,.75); }
.pricing-card-features { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.pricing-card-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; }
.pricing-card-features .check { color: var(--color-green); font-weight: 700; flex-shrink: 0; }
.pricing-card-features .dash { color: var(--color-gray-400); flex-shrink: 0; }
.pricing-card-cta { padding: 1rem 1.5rem 1.5rem; }
.pricing-card-cta .btn { display: block; width: 100%; }

/* Add-ons grid (pricing.html) */
.add-ons-grid { display: flex; flex-direction: column; gap: .75rem; }
.add-on-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.add-on-icon { font-size: 1.3rem; flex-shrink: 0; }
.add-on-price { font-family: var(--font-mono); font-weight: 700; color: var(--color-navy); white-space: nowrap; }

/* ============================================================
   COMPARE TABLE (about.html)
   ============================================================ */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .82rem; min-width: 480px; }
.compare-table th,
.compare-table td { padding: .65rem .75rem; border-bottom: 1px solid var(--color-gray-200); text-align: left; }
.compare-table th { background: var(--color-gray-100); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--color-gray-500); }
.compare-table .check { color: var(--color-green); font-weight: 700; }
.compare-table .dash  { color: var(--color-gray-400); }

/* ============================================================
   FAQ (faq.html)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-gray-200); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 150ms;
}
.faq-question:hover { color: var(--color-navy); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-navy);
  font-size: 1rem;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--color-gray-700); font-size: .95rem; line-height: 1.7; }
.faq-answer-inner p { margin-bottom: .75rem; }
.cfr-cite {
  display: inline-block;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  border-radius: 4px;
  padding: .1rem .45rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--color-navy);
}
/* FAQ sidebar nav — hide on mobile, content is full width */
nav[aria-label="FAQ categories"] { display: none; }
/* FAQ layout: remove the desktop sidebar grid */
.faq-page-inner { display: block !important; }

/* ============================================================
   CONTACT FORM (contact.html)
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; font-size: .9rem;
  margin-bottom: .4rem; color: var(--color-gray-700);
}
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gray-900);
  background: var(--color-white);
  transition: border-color 150ms;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--color-navy); box-shadow: 0 0 0 3px rgba(15,36,88,.1); }
.form-error { font-size: .82rem; color: var(--color-fine-red); margin-top: .35rem; min-height: 1.2rem; }
.required { color: var(--color-fine-red); }
/* Stack two-column form rows on mobile */
.form-row { display: flex; flex-direction: column; gap: 0; }
/* Contact layout — single column on mobile */
.contact-layout { display: block !important; }

/* ============================================================
   ALERT / NOTICE BANNERS
   ============================================================ */
.alert-banner {
  background: var(--color-amber-light);
  border: 1px solid var(--color-amber-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem var(--pad);
  margin-bottom: 1.5rem;
}
.alert-banner h4 { color: var(--color-navy); margin-bottom: .4rem; font-size: 1rem; }
.alert-banner p  { font-size: .9rem; color: var(--color-gray-700); }

/* ============================================================
   MISSION CALLOUT (about.html)
   ============================================================ */
.mission-callout {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem var(--pad);
  margin-bottom: 2rem;
}
.mission-callout blockquote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.55;
}
/* About grid — single column */
.about-grid { display: block !important; }
.about-grid > * + * { margin-top: 2rem; }

/* ============================================================
   CREDENTIAL BADGES (about.html)
   ============================================================ */
.credential-badge {
  display: flex; align-items: center; gap: .9rem;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: .9rem 1.1rem;
}
.credential-seal { font-size: 1.4rem; }
.credential-text strong { display: block; font-size: .93rem; color: var(--color-navy); }
.credential-text span   { font-size: .8rem; color: var(--color-gray-500); }

/* About image placeholder */
.about-img-placeholder {
  background: var(--color-gray-100);
  border: 2px dashed var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem var(--pad);
  text-align: center;
  color: var(--color-gray-400);
}
.img-icon { font-size: 2.5rem; margin-bottom: .75rem; }

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--color-gray-200); margin: 2rem 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.5rem var(--pad) 0;
}
.footer-main { display: flex; flex-direction: column; gap: 2rem; }
.footer .logo { font-size: 1.2rem; color: var(--color-white); margin-bottom: .35rem; display: inline-block; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer h5 {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: .7rem;
}
.footer-links-list { display: flex; flex-direction: column; gap: .4rem; }
.footer-links-list a { font-size: .88rem; color: rgba(255,255,255,.7); padding: .15rem 0; }
.footer-contact-info p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: .35rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  margin-top: 2rem;
}
.footer-bottom-inner { padding: 0; }
.footer-bottom p { font-size: .77rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: .4rem; }

/* ============================================================
   SERVICES PAGE — specific styles
   ============================================================ */
/* Service section two-col layouts become single col */
.service-layout { display: block !important; }
.service-layout > * + * { margin-top: 2rem; }

/* ============================================================
   UTILITY — hide desktop-only elements
   ============================================================ */
.desktop-only { display: none !important; }
