/* ============================================================
   MS Access Expert — Design tokens
   Palette: ink navy + garnet accent (nods to the Access app icon,
   not the generic AI-cream/terracotta default). Type: Space Grotesk
   for headings/labels (structured, still geometric), Inter for
   reading copy. Literal record-data SVG mockups keep a system
   monospace font to preserve the "database record" motif.
   ============================================================ */
:root {
  --ink: #142132;
  --ink-soft: #22344a;
  --paper: #F6F5F1;
  --paper-alt: #ECE9E0;
  --card: #FFFFFF;
  --garnet: #8C2F39;
  --garnet-dark: #6B232B;
  --garnet-tint: #F7EAEA;
  --slate: #55606F;
  --slate-light: #8792A0;
  --line: #DCD8CD;
  --line-dark: #33465F;
  --ok: #3C7A5D;
  --ok-tint: #E7F1EC;

  --font-display: 'Space Grotesk', ui-sans-serif, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 33, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 33, 50, 0.10);
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Safety net against any element (e.g. a too-wide table) pushing the
     page wider than the viewport and causing horizontal scroll/bleed —
     confirmed happening on /admin/inquiries.php before the table got its
     own overflow-x:auto wrapper below. */
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
p { margin: 0; }
button { font-family: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--garnet);
  outline-offset: 2px;
}

.row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--garnet);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 16px; height: 1px; background: var(--garnet);
}

.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 20px 0; font-family: var(--font-display); font-size: 12.5px; color: var(--slate-light); }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--garnet); }
.breadcrumb .is-current { color: var(--ink); }

.section { padding: 88px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--ink); color: #EDEFF3; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h1, .section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 14px; }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 14px; }
.section-dark .section-head p { color: #AEB7C4; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--garnet); color: #fff; box-shadow: 0 1px 2px rgba(140, 47, 57, 0.15), 0 4px 14px rgba(140, 47, 57, 0.22); }
.btn-primary:hover { background: var(--garnet-dark); transform: translateY(-2px); box-shadow: 0 2px 4px rgba(140, 47, 57, 0.18), 0 10px 22px rgba(140, 47, 57, 0.28); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-dark); }
.btn-secondary:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }
.section-dark .btn-secondary { color: #fff; border-color: #445269; }
.section-dark .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-row {
  display: flex; align-items: center; gap: 32px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; color: var(--ink); }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-logo-footer {
  height: 40px; background: #fff; padding: 6px 10px; border-radius: 8px;
}

.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 10px 14px; border-radius: var(--radius);
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
}
.nav-link:hover { color: var(--garnet); }

.has-mega { position: relative; }
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px;
}
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 640px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 28px; opacity: 0; visibility: hidden; transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega .mega-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mega-col-title {
  font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--garnet); margin-bottom: 10px;
}
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul a { font-size: 14px; color: var(--slate); }
.mega-col ul a:hover { color: var(--ink); }
.mega-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.mega-footer a { font-size: 13px; font-weight: 600; color: var(--garnet); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink); }
.header-phone:hover { color: var(--garnet); }
.menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); }
.mobile-nav { display: none; }

/* ---------------- Hero ---------------- */
.hero {
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
}
.hero-row {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin-top: 18px;
}
.hero-copy h1 .accent { color: var(--garnet); }
.hero-copy p.lead {
  font-family: var(--font-body); font-size: 18px; color: var(--slate);
  margin-top: 20px; max-width: 46ch;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 40px; font-size: 13px; color: var(--slate); }
.hero-trust .stars { color: var(--garnet); letter-spacing: 1px; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; }

/* Signature: database table diagram, corrupt row -> fixed row */
.table-diagram { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.table-diagram-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 12px; color: var(--slate); }
.table-diagram-head .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.table-diagram-head span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1 1 auto; }
.table-diagram-head span:last-child { flex-shrink: 0; }

/* ---------------- Value props / feature grid ---------------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--garnet-tint);
  display: flex; align-items: center; justify-content: center; color: var(--garnet); margin-bottom: 18px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--slate); }

/* ---------------- Stat cards (light bg) ---------------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; align-items: flex-start; gap: 16px;
}
.stat-icon {
  width: 40px; height: 40px; border-radius: 9px; background: var(--garnet-tint);
  display: flex; align-items: center; justify-content: center; color: var(--garnet); flex-shrink: 0;
}
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.1; display: block; }
.stat-label { font-size: 13.5px; color: var(--slate); margin-top: 4px; }

.intro-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.intro-split .eyebrow { margin-bottom: 14px; }
.intro-split h1, .intro-split h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 18px; }
.intro-split p { color: var(--slate); font-size: 16px; margin-bottom: 14px; }

/* ---------------- Contact/appointment split layout ---------------- */
.contact-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.contact-visual { position: sticky; top: 100px; }
.contact-trust { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-trust .stat-card { padding: 18px 20px; }

/* ---------------- Services grid ---------------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover { border-color: var(--garnet); transform: translateY(-2px); }
.service-card .rec-id {
  font-family: var(--font-display); font-size: 11px; color: var(--slate-light);
  letter-spacing: 0.04em; margin-bottom: 12px; display: block;
}
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--slate); margin-bottom: 16px; }
.service-card .service-link { font-size: 13px; font-weight: 600; color: var(--garnet); display: inline-flex; align-items: center; gap: 6px; }

/* ---------------- Why us (dark band) ---------------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
.why-item { display: flex; gap: 18px; }
.why-num { font-family: var(--font-display); font-size: 13px; color: var(--garnet); flex-shrink: 0; padding-top: 3px; }
.why-item h3 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.why-item p { font-size: 14.5px; color: #AEB7C4; }

/* ---------------- Process ---------------- */
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 32px; position: relative; }
.process-step { position: relative; padding-left: 0; }
.process-step .step-tag {
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; background: var(--garnet);
  margin-bottom: 18px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--paper);
}
.section-alt .process-step .step-tag { box-shadow: 0 0 0 6px var(--paper-alt); }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--slate); }

/* ---------------- Pricing ---------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column;
}
.price-card.is-popular { border-color: var(--garnet); box-shadow: var(--shadow-md); position: relative; }
.price-card.is-popular::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 28px;
  background: var(--garnet); color: #fff; font-family: var(--font-display); font-size: 11px;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 0.04em;
}
.price-name { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); }
.price-value { font-size: 40px; font-family: var(--font-display); margin: 14px 0 4px; }
.price-value span { font-size: 14px; color: var(--slate-light); font-weight: 400; }
.price-desc { font-size: 14px; color: var(--slate); margin-bottom: 22px; }
.price-features { margin-bottom: 28px; flex-grow: 1; }
.price-features li { display: flex; gap: 10px; font-size: 14px; padding: 7px 0; color: var(--ink-soft); }
.price-features li svg { flex-shrink: 0; color: var(--ok); margin-top: 3px; }
.benefits-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 10px 20px; max-width: 420px;
}
.benefits-card li { border-bottom: 1px solid var(--line); }
.benefits-card li:last-child { border-bottom: none; }

/* ---------------- Testimonials ---------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.testimonial-stars { color: var(--garnet); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.testimonial-who { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--garnet-tint); color: var(--garnet);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
}
.testimonial-name { font-family: var(--font-display); font-size: 13px; font-weight: 600; margin: 0; }

/* ---------------- Industries ---------------- */
.industry-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.industry-chip {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 10px 14px;
  text-align: center; font-family: var(--font-display); font-size: 12px; color: var(--slate);
  background: var(--card); transition: border-color 0.15s ease;
}
.industry-chip:hover { border-color: var(--garnet); }
.industry-chip svg { display: block; margin: 0 auto 10px; color: var(--garnet); }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; text-align: left; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-q svg { flex-shrink: 0; transition: transform 0.2s ease; color: var(--garnet); }
.faq-item[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; font-size: 15px; color: var(--slate); max-width: 68ch; }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: var(--ink); border-radius: var(--radius-lg); padding: 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; color: #fff;
}
.cta-band h2 { font-size: clamp(22px, 2.8vw, 30px); color: #fff; }
.cta-band p { color: #AEB7C4; margin-top: 10px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* Lighter promo variant (e.g. blog lead-magnet banner) — cta-band's default
   text colors (white h2, light gray p) assume the dark --ink background, so
   this needs its own text colors rather than reusing cta-band's on a light
   background. */
.promo-band {
  background: var(--garnet-tint); border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.promo-band h3 { color: var(--ink); margin-bottom: 6px; font-size: 18px; }
.promo-band p { color: var(--slate); font-size: 14.5px; }

/* ---------------- Blog listing ---------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; transition: border-color 0.15s ease, transform 0.15s ease; display: flex; flex-direction: column;
}
.post-card:hover { border-color: var(--garnet); transform: translateY(-2px); }
.post-card h3 { font-size: 17px; margin-bottom: 10px; }
.post-card p { font-size: 14.5px; color: var(--slate); margin-bottom: 16px; flex-grow: 1; }
.post-card .post-link { font-size: 13px; font-weight: 600; color: var(--garnet); display: inline-flex; align-items: center; gap: 6px; }

.post-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-display); font-size: 12px; color: var(--slate-light); margin-bottom: 12px;
}
.post-meta span:not(:last-child)::after { content: '·'; margin-left: 8px; color: var(--line); }
.post-category {
  color: var(--garnet); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
}

.category-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.category-chip {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--slate);
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--card);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.category-chip:hover { border-color: var(--garnet); color: var(--garnet); }
.category-chip.is-active { background: var(--garnet); border-color: var(--garnet); color: #fff; }

/* ---------------- Article body (.prose) ---------------- */
.article-header { max-width: 760px; margin: 0 auto 40px; text-align: left; }
.article-header h1 { font-size: clamp(28px, 4vw, 42px); margin-top: 14px; }
.prose { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.prose h2 { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 26px); margin: 44px 0 16px; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-size: 18px; margin: 32px 0 12px; color: var(--ink); }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.prose ol { counter-reset: prose-ol; }
.prose ul li, .prose ol li { position: relative; margin-bottom: 12px; padding-left: 28px; }
.prose ul li::before {
  content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--garnet);
}
.prose ol li { counter-increment: prose-ol; }
.prose ol li::before {
  content: counter(prose-ol); position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--garnet);
  width: 20px; height: 20px; border-radius: 50%; background: var(--garnet-tint);
  display: flex; align-items: center; justify-content: center;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--garnet); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote {
  margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--garnet); color: var(--ink);
  font-size: 16px; background: var(--paper-alt); border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose figure { margin: 32px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.prose figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.prose figcaption { padding: 8px 16px; font-size: 12px; color: var(--slate-light); background: var(--paper-alt); text-align: right; }
.prose figcaption a { color: inherit; font-weight: 400; }
.prose table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.prose th { text-align: left; font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate); padding: 10px 14px; border-bottom: 2px solid var(--line); }
.prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.prose tr:last-child td { border-bottom: none; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

/* Decorative header graphic on individual blog posts — literal database
   record motif, matching the rest of the site, instead of a stock photo. */
.article-visual { max-width: 760px; margin: 0 auto 40px; }
.article-visual .table-diagram { box-shadow: none; border-color: var(--line); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: #C7CDD7; padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 56px; }
.footer-tagline { font-size: 13.5px; color: #8D97A6; margin: 16px 0 20px; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border: 1px solid #33465F; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-size: 10px; text-transform: uppercase; color: #C7CDD7;
}
.footer-social a:hover { border-color: var(--garnet); color: #fff; }
.footer-col-title { font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a, .footer-contact-list li { font-size: 13.5px; color: #8D97A6; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-list li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid #263447; padding: 22px 0; margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #7A8494;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

/* ---------------- WhatsApp floating button ---------------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5); }
@media (max-width: 640px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

/* ---------------- Admin panel ---------------- */
.admin-shell { min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 32px; background: var(--ink); color: #fff;
}
.admin-brand { font-family: var(--font-display); font-weight: 600; color: #fff; display: flex; align-items: center; }
.admin-brand-logo { height: 30px; background: #fff; padding: 5px 9px; border-radius: 6px; display: block; }
.admin-nav { display: flex; gap: 24px; }
.admin-nav a { font-family: var(--font-display); font-size: 13px; color: #C7CDD7; }
.admin-nav a:hover { color: #fff; }
.admin-main { flex-grow: 1; max-width: 960px; margin: 0 auto; padding: 40px 24px 80px; width: 100%; }
.admin-main h1 { font-size: 24px; margin-bottom: 28px; }
.admin-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }

.admin-form label { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate); margin: 20px 0 8px; }
.admin-form label:first-child { margin-top: 0; }
.admin-form input[type="text"], .admin-form input[type="email"], .admin-form input[type="password"],
.admin-form input[type="date"], .admin-form input[type="number"], .admin-form input[type="url"],
.admin-form textarea, .admin-form select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--paper);
}
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form .form-actions { margin-top: 28px; display: flex; gap: 12px; align-items: center; }
.admin-form .field-hint { font-size: 13px; color: var(--slate-light); margin-top: 6px; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.admin-table th { text-align: left; font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); padding: 10px 12px; border-bottom: 2px solid var(--line); }
.admin-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: middle; }
.admin-table .status-draft { color: var(--slate-light); font-family: var(--font-display); font-size: 11px; text-transform: uppercase; }
.admin-table .status-published { color: var(--ok); font-family: var(--font-display); font-size: 11px; text-transform: uppercase; }
.admin-table .status-spam { color: var(--garnet); font-family: var(--font-display); font-size: 11px; text-transform: uppercase; }
.admin-tabs { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.admin-tabs a { padding: 10px 16px; font-family: var(--font-display); font-size: 13px; color: var(--slate); text-decoration: none; border-bottom: 2px solid transparent; }
.admin-tabs a.is-active { color: var(--ink); border-bottom-color: var(--garnet); }
.admin-table .row-actions { display: flex; gap: 14px; }
.admin-table .row-actions a, .admin-table .row-actions button { font-size: 13px; font-weight: 600; color: var(--garnet); background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; }

.admin-alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14.5px; }
.admin-alert.error { background: var(--garnet-tint); color: var(--garnet-dark); }
.admin-alert.success { background: var(--ok-tint); color: var(--ok); }

.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--ink); }
.admin-login-card { background: var(--card); border-radius: var(--radius-lg); padding: 44px; width: 100%; max-width: 380px; }
.admin-login-logo { display: block; text-align: center; margin-bottom: 24px; }
.admin-login-logo img { display: inline-block; height: 40px; width: auto; }
.admin-login-card h1 { font-size: 20px; text-align: center; margin-bottom: 28px; }
.admin-login-back { display: block; text-align: center; margin-top: 24px; font-size: 13.5px; color: var(--slate); }
.admin-login-back:hover { color: var(--garnet); }

/* ============ Responsive ============ */
@media (max-width: 1020px) {
  .hero-row { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-visual { position: static; max-width: 460px; margin: 32px auto 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-row { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .intro-split { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.is-open { display: block; padding: 20px 24px 28px; border-top: 1px solid var(--line); }
  .mobile-nav ul li a { display: block; padding: 12px 0; font-family: var(--font-display); font-size: 14px; text-transform: uppercase; }
  .mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }
  .mobile-nav-services summary {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 12px 0; font-family: var(--font-display); font-size: 14px; text-transform: uppercase;
    cursor: pointer; list-style: none; color: var(--ink);
  }
  .mobile-nav-services summary::-webkit-details-marker { display: none; }
  .mobile-nav-services summary svg { transition: transform 0.15s ease; flex-shrink: 0; }
  .mobile-nav-services details[open] summary svg { transform: rotate(180deg); }
  .mobile-services-list { padding: 0 0 8px 14px; border-left: 2px solid var(--line); margin-bottom: 4px; }
  .mobile-services-list li a { padding: 8px 0; font-size: 13.5px; text-transform: none; font-family: var(--font-body); font-weight: 500; }
  .mobile-services-group { padding: 10px 0 2px; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--garnet); }
  .mobile-services-group:first-child { padding-top: 4px; }
  .section { padding: 56px 0; }
  .feature-grid, .service-grid, .testimonial-grid, .post-grid { grid-template-columns: 1fr; }
  .industry-row { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; }
}
