/* ==========================================================================
   GoodPC.ro - Modern Design System & Playful Tech Component Stylesheet
   ========================================================================== */

:root {
  --gp-bg: #020617;
  --gp-bg-soft: #091a3a;
  --gp-surface: #020617;
  --gp-surface-alt: #0b1528;
  --gp-surface-deep: #0f172a;
  --gp-surface-soft: #14244d;
  --gp-border-subtle: #1e293b;
  --gp-border: #334155;
  --gp-accent: #38bdf8;         /* Electric Cyan */
  --gp-accent-strong: #0284c7;  /* Deep Sky Blue */
  --gp-accent-soft: #e0f2fe;    /* Soft Sky */
  --gp-accent-indigo: #a78bfa;  /* Vibrant Violet */
  --gp-success: #10b981;        /* Emerald Green */
  --gp-success-strong: #059669; /* Dark Emerald */
  --gp-success-soft: #d1fae5;   /* Mint Soft */
  --gp-text-main: #f8fafc;
  --gp-text-muted: #cbd5e1;     /* High Contrast Slate-300 */
  --gp-text-soft: #e2e8f0;
  --gp-text-dark: #0f172a;
  --gp-star: #fbbf24;           /* Warm Amber Gold */
  --gp-whatsapp: #22c55e;
  --gp-whatsapp-text: #022c22;
  --gp-radius-xl: 20px;
  --gp-radius-xxl: 26px;
  --gp-shadow-soft: 0 20px 40px rgba(2, 6, 23, 0.5);
  --gp-shadow-glow: 0 12px 32px rgba(56, 189, 248, 0.18);
  --gp-shadow-green: 0 14px 32px rgba(34, 197, 94, 0.4);
  --gp-max-width: 1120px;
  --header-height: 110px;
  --header-offset-top: 110px;
  --gp-font-sans: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gp-font-mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

/* --------------------------------------------------------------------------
   Font Definitions (WOFF2 + TTF Fallback)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/Manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/Manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/Manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/Manrope-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./fonts/Manrope-800.woff2') format('woff2');
}


/* --------------------------------------------------------------------------
   Base Styles & Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}

body, html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--gp-font-sans);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  background: radial-gradient(circle at 50% 0%, var(--gp-bg-soft) 0%, var(--gp-bg) 60%);
  color: var(--gp-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mono {
  font-family: var(--gp-font-mono);
  letter-spacing: 0.01em;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
main { padding-top: var(--header-offset-top); }
.shell { max-width: var(--gp-max-width); margin: 0 auto; padding: 0 18px; }

/* --------------------------------------------------------------------------
   Typography & Legibility Enhancements
   -------------------------------------------------------------------------- */
p, li, span, strong, small, a, h1, h2, h3, h4, h5, h6, button,
.hero-title, .hero-sub, .hero-badge, .feature-text, .ticket-log-body,
.symptom-label, .list-label, .list-value, .faq-q, .faq-a, .section-title,
.section-lead, .pricing-note, .testimonial-quote {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

.btn-primary, .btn-ghost, .btn-outline, .btn-small, .eyebrow,
.hero-badge, .chip, .pricing-badge, .g-rating-score, .hero-jump-link {
  white-space: nowrap;
  hyphens: none;
}

small, .hero-footnote, .metric-sub, .list-tag, .hero-panel-footer,
.pricing-note, .contact-meta, .site-footer, .map-footer {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gp-text-muted);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
.symptom-btn:focus-visible, .whatsapp-fab:focus-visible, .footer-links a:focus-visible {
  outline: 3px solid var(--gp-accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Header Components (Spacious 2-Row Layout)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.90));
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  background: rgba(2, 6, 23, 0.98);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.8);
}

/* Row 2: Trust and Contact Bar */
.header-top-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(8, 20, 42, 0.72));
  padding-block: 6px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 32px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gp-text-main);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.google-reviews-badge:hover {
  border-color: rgba(56, 189, 248, 0.8);
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-1px);
}

.g-logo-icon {
  font-weight: 800;
  color: #4285f4;
  background: #ffffff;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.g-rating-score {
  font-weight: 700;
  color: var(--gp-text-main);
}

.g-stars {
  color: var(--gp-star);
  font-size: 12px;
  letter-spacing: 1px;
}

.g-reviews-count {
  color: var(--gp-text-muted);
  font-weight: 500;
}

.header-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--gp-text-muted);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.header-hours-badge.is-open {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.header-hours-badge.is-closed {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.top-bar-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  font-size: 13px;
  font-weight: 800;
  color: #03131f;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dd3fc, var(--gp-accent));
  border: 1px solid rgba(186, 230, 253, 0.85);
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.2);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.top-bar-phone:hover {
  color: #020617;
  background: linear-gradient(135deg, #bae6fd, #7dd3fc);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(56, 189, 248, 0.3);
}

.top-bar-phone-number {
  padding-left: 7px;
  border-left: 1px solid rgba(3, 19, 31, 0.28);
  font-family: var(--gp-font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* Row 1: Brand and Primary Navigation */
.header-main-bar {
  padding-block: 9px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, var(--gp-accent), var(--gp-accent-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.brand-logo picture { width: 34px; height: 34px; display: block; }
.brand-logo img { width: 34px; height: 34px; object-fit: contain; }

.brand-text-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
  color: var(--gp-text-main);
}

.brand-text-sub {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gp-text-soft);
  line-height: 1.35;
  white-space: normal;
  max-width: 290px;
}

.brand-labels { display: flex; flex-direction: column; min-width: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(11px, 1.35vw, 18px);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gp-text-muted);
}

.nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding-block: 4px;
  transition: color 0.15s;
}

.nav a:hover { color: var(--gp-text-main); }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gp-accent), var(--gp-success));
  transition: width 0.18s;
}

.nav a:hover::after { width: 100%; }
.nav a.nav-highlight { color: var(--gp-text-main); font-weight: 700; }

/* Header Dropdown Menu (Pure CSS Hover + Focus) */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.chevron {
  font-size: 11px;
  color: var(--gp-accent);
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .chevron,
.nav-item-dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: rgba(2, 6, 23, 0.98);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.85), 0 0 20px rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--gp-text-main);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(56, 189, 248, 0.14);
  transform: translateX(3px);
}

.dropdown-item::after {
  display: none !important;
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.dropdown-item strong {
  display: block;
  font-size: 13px;
  color: var(--gp-text-main);
  line-height: 1.2;
}

.dropdown-item small {
  display: block;
  font-size: 11px;
  color: var(--gp-text-muted);
  line-height: 1.3;
}

.nav-btn-contact {
  padding: 6px 16px !important;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: var(--gp-accent) !important;
  font-weight: 700 !important;
  transition: background 0.2s, color 0.2s, transform 0.2s !important;
}

.nav-btn-contact:hover {
  background: var(--gp-accent) !important;
  color: #031018 !important;
  transform: translateY(-1px);
}

.nav-btn-contact::after {
  display: none !important;
}

/* Dedicated Subpage Back Link in Header */
.nav-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gp-accent) !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 13px;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-back-link:hover {
  background: rgba(56, 189, 248, 0.25) !important;
  transform: translateX(-2px);
}

.nav-back-link::after {
  display: none !important;
}

/* Visual Breadcrumb Strip for Subpages */
.breadcrumb-bar {
  background: rgba(15, 23, 42, 0.7);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  padding: 10px 0;
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gp-text-muted);
}

.breadcrumbs a {
  color: var(--gp-accent);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs .sep {
  color: rgba(148, 163, 184, 0.4);
}

.breadcrumbs .current {
  color: var(--gp-text-main);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gp-text-soft);
  position: relative;
}

.nav-toggle span::after, .nav-toggle span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gp-text-soft);
  transition: transform .18s, opacity .18s, top .18s, bottom .18s;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { bottom: -6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { bottom: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero & Section Layouts
   -------------------------------------------------------------------------- */
.hero { padding-block: 60px 52px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 36px; align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gp-accent);
  letter-spacing: .12em;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.15);
}

.eyebrow strong { color: var(--gp-text-main); }
.hero-title { font-size: clamp(32px, 4.4vw, 46px); line-height: 1.15; margin: 18px 0 16px; letter-spacing: .01em; }
.hero-title span.accent { background: linear-gradient(to right, var(--gp-accent), var(--gp-success)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 16px; line-height: 1.65; color: var(--gp-text-muted); max-width: 540px; margin-bottom: 24px; }
.hero-keypoints { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 26px; }
.hero-keypoint { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--gp-text-muted); }
.hero-keypoint .dot { width: 8px; height: 8px; border-radius: 999px; background: radial-gradient(circle at top left, var(--gp-accent), var(--gp-success)); flex-shrink: 0; box-shadow: 0 0 8px var(--gp-accent); }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 20px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 44px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gp-accent), var(--gp-accent-strong));
  color: #031018;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--gp-shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(56, 189, 248, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 44px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: var(--gp-text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gp-accent);
  background: rgba(56, 189, 248, 0.1);
}

.btn-small {
  min-height: 44px;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 14px;
}

.btn-outline {
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.85);
  color: var(--gp-text-main);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gp-accent);
  transform: translateY(-1px);
}

/* Quick Jump Navigation Links */
.hero-jump-nav {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--gp-text-soft);
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.hero-jump-link:hover {
  border-color: var(--gp-accent);
  background: rgba(56, 189, 248, 0.15);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 12px;
  color: var(--gp-text-muted);
  font-weight: 500;
}

.icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gp-success);
  box-shadow: 0 0 6px var(--gp-success);
}

.icon-dot.is-star {
  background: var(--gp-star);
  box-shadow: 0 0 6px var(--gp-star);
}

.hero-panel {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
  border-radius: var(--gp-radius-xxl);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 24px;
  box-shadow: var(--gp-shadow-soft);
}

.hero-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hero-panel-title { font-size: 14px; color: var(--gp-text-muted); font-weight: 700; }
.status-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gp-success-soft); font-weight: 600; }
.status-dot.is-closed { color: #f87171 !important; }

.status-dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gp-success);
  box-shadow: 0 0 12px var(--gp-success);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.status-dot-indicator.is-open {
  background: #10b981 !important;
  box-shadow: 0 0 12px #10b981, 0 0 4px #10b981 !important;
}

.status-dot-indicator.is-closed {
  background: #ef4444 !important;
  box-shadow: 0 0 12px #ef4444, 0 0 4px #ef4444 !important;
}

/* Legal / Content Card Styling (Terms & Policy Pages) */
.card {
  border-radius: var(--gp-radius-xxl);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 32px 28px;
  box-shadow: var(--gp-shadow-soft);
  margin-block: 24px;
}

.meta {
  font-size: 13px;
  color: var(--gp-text-muted);
  margin-bottom: 16px;
}

.card h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--gp-text-main);
}

.card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--gp-accent);
}

.card p, .card li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gp-text-muted);
}
.status-dot-text { line-height: 1.3; }

.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.metric-card { border-radius: 16px; padding: 14px; background: rgba(15, 23, 42, 0.95); border: 1px solid rgba(56, 189, 248, 0.25); font-size: 13px; }
.metric-label { color: var(--gp-text-muted); margin-bottom: 4px; font-weight: 500; }
.metric-value { font-size: 18px; font-weight: 800; color: var(--gp-accent); }

/* --------------------------------------------------------------------------
   Hero Panel Body & List Styling (Refined Card Layout)
   -------------------------------------------------------------------------- */
.hero-panel-body {
  display: grid;
  gap: 10px;
  margin-block: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

.list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-block: 10px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.22);
}

.list-row:last-child {
  border-bottom: none;
}

.list-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}


.list-value {
  color: var(--gp-accent-soft);
  font-weight: 600;
  text-align: right;
  font-size: 13px;
}

.list-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--gp-success-soft);
  border: 1px solid rgba(16, 185, 129, 0.45);
  font-weight: 700;
}

.hero-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  font-size: 12px;
  color: var(--gp-text-muted);
}

.hero-panel-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: var(--gp-accent);
  font-weight: 700;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-panel-footer a:hover {
  background: var(--gp-accent);
  color: #031018;
  transform: translateY(-1px);
}

.hero-engineering {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.88));
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--gp-shadow-soft);
}

.hero-engineering-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gp-accent-indigo);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.hero-engineering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-engineering-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
  padding: 12px;
  font-size: 13px;
  line-height: 1.35;
}

.hero-engineering-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  background: rgba(167, 139, 250, 0.2);
  color: var(--gp-accent-indigo);
}

.mobile-nav-btn-wrapper {
  display: none;
}

/* --------------------------------------------------------------------------
   Diagnostic Simulator Component
   -------------------------------------------------------------------------- */
.diag-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.diag-card {
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--gp-radius-xl);
  padding: 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.92));
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.4);
}

.diag-title {
  font-size: 14px;
  color: var(--gp-accent);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.symptom-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--gp-text-main);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.symptom-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--gp-accent);
  transform: translateY(-1px);
}

.symptom-btn.is-active {
  border-color: var(--gp-accent);
  background: rgba(56, 189, 248, 0.18);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.4);
}

.symptom-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.2);
  flex-shrink: 0;
  font-size: 15px;
}

.symptom-label {
  line-height: 1.35;
  font-size: 13px;
  font-weight: 600;
}

.diag-result {
  min-height: 96px;
  border-radius: 14px;
  padding: 14px;
  background: rgba(2, 6, 23, 0.95);
  border: 1px dashed rgba(56, 189, 248, 0.4);
}

.diag-result-title {
  margin: 0;
  font-size: 11px;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.diag-result-value {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.15;
  color: var(--gp-text-main);
  font-weight: 800;
}

.status-code {
  color: var(--gp-accent-soft);
  font-weight: 800;
}

.diag-metric {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--gp-text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
  padding-top: 10px;
}

.diag-metric span {
  color: var(--gp-accent-soft);
  font-weight: 700;
}

.tracker { display: grid; gap: 14px; }
.tracker-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.tracker-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
  text-align: center;
}

.tracker-step {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  padding: 10px 8px;
  color: var(--gp-text-muted);
  background: rgba(15, 23, 42, 0.7);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracker-step.is-active {
  border-color: var(--gp-accent);
  color: var(--gp-text-main);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.8));
  font-weight: 700;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.tracker-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.2);
  overflow: hidden;
  margin-block: 10px;
}

.tracker-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gp-accent), var(--gp-success));
  transition: width 0.3s ease;
}

.ticket-log {
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 14px;
  padding: 14px;
  background: rgba(2, 6, 23, 0.95);
}

.ticket-log-head {
  margin: 0 0 8px;
  color: var(--gp-accent);
  font-size: 13px;
  font-weight: 700;
}

.ticket-log-body {
  margin: 0;
  white-space: pre-wrap;
  font-size: 12px;
  line-height: 1.5;
  color: var(--gp-text-muted);
  min-height: 110px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--gp-font-mono);
}

/* --------------------------------------------------------------------------
   Content Sections & Card Grids (Aerisite & Dynamic)
   -------------------------------------------------------------------------- */
section.section { padding-block: 56px 48px; }
.section-header { margin-bottom: 32px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.section-kicker { font-size: 13px; text-transform: uppercase; letter-spacing: .16em; color: var(--gp-accent); font-weight: 800; margin-bottom: 6px; }
.section-title { font-size: 28px; font-weight: 800; margin: 0; letter-spacing: -0.01em; }
.section-lead { font-size: 15px; color: var(--gp-text-muted); max-width: 520px; line-height: 1.6; }

.section-inline-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Grid 3 - Aerisit */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature-card {
  border-radius: var(--gp-radius-xl);
  padding: 24px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.06), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(56, 189, 248, 0.2);
  font-size: 14px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: var(--gp-shadow-glow);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), #0f172a);
  font-size: 18px;
}

.feature-title { font-size: 18px; margin-bottom: 8px; font-weight: 800; color: var(--gp-text-main); }
.feature-text { font-size: 14px; color: var(--gp-text-muted); line-height: 1.6; }

/* Services Grid & Card Redesign */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-col {
  border-radius: var(--gp-radius-xxl);
  padding: 30px 28px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.94));
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.7);
}

.service-col-b2b {
  background: radial-gradient(circle at top left, rgba(167, 139, 250, 0.12), rgba(15, 23, 42, 0.96));
  border-color: rgba(167, 139, 250, 0.35);
}

.service-col-b2b:hover {
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: 0 18px 42px rgba(167, 139, 250, 0.2);
}

.service-col-b2c {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.96));
  border-color: rgba(56, 189, 248, 0.35);
}

.service-col-b2c:hover {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.2);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  align-self: flex-start;
}

.b2b-badge {
  background: rgba(167, 139, 250, 0.18);
  color: var(--gp-accent-indigo);
  border: 1px solid rgba(167, 139, 250, 0.45);
}

.b2c-badge {
  background: rgba(56, 189, 248, 0.18);
  color: var(--gp-accent);
  border: 1px solid rgba(56, 189, 248, 0.45);
}

.service-col h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--gp-text-main);
  letter-spacing: -0.01em;
}

.service-desc {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--gp-text-muted);
  line-height: 1.65;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gp-text-soft);
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-col-b2b .check-icon {
  background: rgba(167, 139, 250, 0.2);
  color: var(--gp-accent-indigo);
  border: 1px solid rgba(167, 139, 250, 0.4);
}

.service-col-b2c .check-icon {
  background: rgba(56, 189, 248, 0.2);
  color: var(--gp-accent);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(56, 189, 248, 0.3); background: rgba(15, 23, 42, 0.9); color: var(--gp-accent-soft); }

.chip-purple {
  border-color: rgba(167, 139, 250, 0.35);
  color: #e9d5ff;
  background: rgba(167, 139, 250, 0.12);
}

.chip-cyan {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--gp-accent-soft);
  background: rgba(56, 189, 248, 0.12);
}

.service-footer-note {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(148, 163, 184, 0.25);
  font-size: 13px;
  color: var(--gp-text-muted);
  line-height: 1.55;
}

.service-footer-note a {
  color: var(--gp-accent);
  font-weight: 700;
  text-decoration: underline;
}

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pricing-card {
  border-radius: var(--gp-radius-xl);
  padding: 26px;
  background: radial-gradient(circle at top, #0f172a, rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 14px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.5);
}

/* Guarantee Badge (Emerald Green Accent) */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  color: var(--gp-success);
  border: 1px solid rgba(16, 185, 129, 0.5);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
}

/* Metric Card Gold Accent (20+ Years Experience) */
.metric-card-gold {
  border-color: rgba(251, 191, 36, 0.45) !important;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.12), rgba(15, 23, 42, 0.95)) !important;
}

.metric-gold-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.pricing-card.highlight {
  border: 1px solid rgba(251, 191, 36, 0.6);
  box-shadow: 0 14px 40px rgba(251, 191, 36, 0.18);
  position: relative;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.1), rgba(15, 23, 42, 0.98));
}

.gold-pricing-badge {
  background: rgba(251, 191, 36, 0.2) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.6) !important;
}

.purple-pricing-card {
  border-color: rgba(167, 139, 250, 0.45) !important;
  background: radial-gradient(circle at top, rgba(167, 139, 250, 0.1), rgba(15, 23, 42, 0.98)) !important;
}

.purple-pricing-badge {
  background: rgba(167, 139, 250, 0.2) !important;
  color: #c084fc !important;
  border: 1px solid rgba(167, 139, 250, 0.6) !important;
}

.pricing-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.pricing-sub { font-size: 13px; color: var(--gp-text-muted); margin-bottom: 12px; }
.pricing-price { font-size: 22px; font-weight: 800; color: var(--gp-accent); margin-bottom: 6px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 14px; font-size: 14px; color: var(--gp-text-muted); }
.pricing-list li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }

/* Testimonials / Reviews Section - Card Design Refined */
.two-col { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 28px; align-items: flex-start; }

.testimonial-card {
  border-radius: var(--gp-radius-xl);
  padding: 22px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.35);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: var(--gp-shadow-glow);
}

.testimonial-quote {
  margin-bottom: 14px;
  color: var(--gp-text-soft);
  line-height: 1.65;
  font-size: 14px;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.testimonial-name { font-weight: 700; color: var(--gp-text-main); }
.testimonial-stars { color: var(--gp-star); font-size: 14px; letter-spacing: 2px; }

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  color: var(--gp-accent);
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.4);
  transition: color 0.2s;
}

.testimonial-link:hover { color: #ffffff; }

/* FAQ Section */
#faq { display: grid; gap: 14px; }
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 18px 20px;
  margin-bottom: 12px;
  background: rgba(15, 23, 42, 0.92);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.98);
}

.faq-q { font-weight: 800; margin-bottom: 8px; font-size: 15px; color: var(--gp-text-main); }
.faq-a { color: var(--gp-text-muted); font-size: 14px; line-height: 1.6; }

/* About Section & Timeline Redesign (Distinct Ambient Theme) */
#despre {
  background: radial-gradient(ellipse at 50% 30%, rgba(167, 139, 250, 0.12) 0%, rgba(2, 6, 23, 0.98) 75%);
  border-top: 1px solid rgba(167, 139, 250, 0.22);
  border-bottom: 1px solid rgba(167, 139, 250, 0.22);
  position: relative;
}

#despre .section-kicker {
  color: #c084fc !important;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.about-card {
  border-radius: var(--gp-radius-xxl);
  padding: 30px 28px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.94));
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card-story {
  background: radial-gradient(circle at top left, rgba(167, 139, 250, 0.14), rgba(15, 23, 42, 0.98));
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 16px 40px rgba(167, 139, 250, 0.15);
}

.about-card-timeline {
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.1), rgba(15, 23, 42, 0.98));
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 16px 40px rgba(251, 191, 36, 0.1);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  align-self: flex-start;
  background: rgba(167, 139, 250, 0.18);
  color: #c084fc;
  border: 1px solid rgba(167, 139, 250, 0.45);
}

.cyan-badge {
  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.45);
}

.about-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--gp-text-main);
  letter-spacing: -0.01em;
}

.about-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gp-text-muted);
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--gp-text-main);
}

.about-values {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(148, 163, 184, 0.25);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
}

.value-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 14px;
  color: var(--gp-text-main);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 12px;
  color: var(--gp-text-muted);
  line-height: 1.4;
}

/* Timeline V2 - Glowing Fiber Patch Cable Style */
.timeline-v2 {
  position: relative;
  display: grid;
  gap: 20px;
  margin-block: 18px;
  padding-left: 32px;
  border-left: none;
}

.timeline-v2::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gp-accent) 0%, var(--gp-accent-indigo) 50%, var(--gp-success) 100%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6), 0 0 16px rgba(167, 139, 250, 0.5);
}

.timeline-v2-item {
  position: relative;
}

.timeline-v2-item::before {
  content: "🔌";
  position: absolute;
  left: -34px;
  top: 0;
  width: 22px;
  height: 22px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060b18;
  border: 2px solid var(--gp-accent-indigo);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
  z-index: 2;
}

.timeline-v2-item.is-latest::before {
  content: "⚡";
  background: var(--gp-accent-indigo);
  color: #ffffff;
  border-color: var(--gp-accent);
  box-shadow: 0 0 16px var(--gp-accent);
}

.timeline-v2-item.is-latest::before {
  background: var(--gp-accent-indigo);
  border-color: #ffffff;
  box-shadow: 0 0 14px var(--gp-accent-indigo);
}

.timeline-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.18);
  color: var(--gp-accent-indigo);
  border: 1px solid rgba(167, 139, 250, 0.35);
  margin-bottom: 4px;
}

.timeline-content strong {
  display: block;
  font-size: 14px;
  color: var(--gp-text-main);
  margin-bottom: 2px;
}

.timeline-content span {
  font-size: 13px;
  color: var(--gp-text-muted);
  line-height: 1.5;
  display: block;
}

.about-quote-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px dashed rgba(167, 139, 250, 0.35);
  position: relative;
}

.about-quote-box .quote-icon {
  font-size: 24px;
  color: var(--gp-accent-indigo);
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.about-quote-box p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  color: var(--gp-text-soft);
  line-height: 1.55;
}

/* Contact & Map Cards */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 26px; align-items: stretch; }
.contact-card { border-radius: var(--gp-radius-xl); padding: 24px; background: rgba(15, 23, 42, 0.96); border: 1px solid rgba(55, 65, 81, 0.9); }

.contact-field { margin-bottom: 16px; }
.contact-label { display: block; font-size: 13px; font-weight: 700; color: var(--gp-text-main); margin-bottom: 6px; }

.contact-input, .contact-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: var(--gp-bg);
  color: var(--gp-text-main);
  font-size: 14px;
  padding: 10px 14px;
  outline: 0;
  resize: vertical;
}

.contact-input:focus, .contact-textarea:focus {
  border-color: var(--gp-accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25), 0 0 16px rgba(56, 189, 248, 0.35);
  background: rgba(15, 23, 42, 0.98);
}

.contact-textarea { min-height: 110px; }

.contact-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--gp-text-muted);
  margin-bottom: 18px;
  cursor: pointer;
}

.contact-gdpr input[type="checkbox"] {
  accent-color: var(--gp-accent);
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.phone-link {
  color: var(--gp-accent);
  font-weight: 700;
  text-decoration: underline;
}

.map-card {
  border-radius: var(--gp-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: var(--gp-shadow-soft);
  background: var(--gp-bg);
  min-height: 300px;
}

.map-iframe { border: 0; width: 100%; height: 300px; display: block; }
.map-footer { padding: 12px 16px; font-size: 13px; color: var(--gp-text-muted); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.map-address { font-size: 13px; color: var(--gp-text-muted); line-height: 1.5; }

/* --------------------------------------------------------------------------
   Floating WhatsApp Button (Visible Desktop & Mobile)
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--gp-shadow-green);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.55);
}

.whatsapp-fab span.icon { font-size: 18px; }

.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  color: var(--gp-text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--gp-primary);
  border-color: var(--gp-primary-hover);
  color: #fff;
  transform: translateY(-3px);
}



.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-block: 26px 100px;
  font-size: 12px;
  color: var(--gp-text-muted);
  background: radial-gradient(circle at bottom, var(--gp-bg) 0, var(--gp-bg) 55%);
  margin-top: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gp-text-muted);
}

.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; text-decoration: underline; text-decoration-color: rgba(148, 163, 184, 0.5); }

/* --------------------------------------------------------------------------
   Responsive Layout Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: var(--header-offset-top);
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    max-height: calc(100dvh - var(--header-offset-top));
    overflow-y: auto;
    padding: 14px 18px 18px;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    background: rgba(2, 6, 23, 0.99);
    border-bottom: 1px solid rgba(56, 189, 248, 0.28);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.72);
  }

  .nav.is-open { display: flex; }
  .nav a { width: 100%; min-height: 44px; padding-block: 10px; font-size: 15px; }
  .nav-toggle { display: inline-flex; flex-shrink: 0; }
  .nav-item-dropdown { display: block; width: 100%; }
  .nav-dropdown-trigger .chevron, .dropdown-menu { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .grid-3, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .diag-layout { grid-template-columns: 1fr; }
  .hero-engineering-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col, .about-grid { grid-template-columns: 1fr; }
  .mobile-nav-btn-wrapper { display: flex; }
}

@media (max-width: 900px) {
  .header-hours-badge { display: none; }
}

@media (max-width: 720px) {
  .header-top-inner { gap: 8px; }
  .header-top-left { gap: 8px; }
  .top-bar-phone-number { display: none; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 36px; }
  .grid-3, .pricing-grid, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .tracker-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #diagnostic-rapid { display: none; }
}

@media (max-width: 480px) {
  .shell { padding-inline: 14px; }
  .header-main-bar { padding-block: 7px; }
  .header-inner { min-height: 52px; gap: 10px; }
  .brand { gap: 9px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-logo picture, .brand-logo img { width: 30px; height: 30px; }
  .brand-text-sub { max-width: 220px; font-size: 11.5px; line-height: 1.3; }
  .brand-text-main { font-size: 17px; }
  .header-top-bar { padding-block: 5px; }
  .google-reviews-badge { gap: 5px; min-height: 30px; padding: 3px 8px; font-size: 11.5px; }
  .g-stars { font-size: 11px; letter-spacing: .5px; }
  .top-bar-phone { min-height: 30px; padding: 4px 10px; font-size: 12px; }
  .eyebrow {
    width: 100%;
    justify-content: center;
    padding-inline: 10px;
    font-size: 10px;
    letter-spacing: .08em;
    text-align: center;
    white-space: normal;
  }
  .hero-title { font-size: 30px; }
  .g-reviews-count { display: none; }
  .hero-engineering-grid { grid-template-columns: 1fr; }
  .tracker-steps { grid-template-columns: 1fr; }
  .hero-panel-body { padding: 12px; }
  .list-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .list-value { text-align: left; }
}

/* --------------------------------------------------------------------------
   Consent Manager & Gated External Content
   -------------------------------------------------------------------------- */
.footer-cookie-settings {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.5);
  cursor: pointer;
}

.cookie-consent {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 250;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden],
.cookie-preferences[hidden],
.map-consent-placeholder[hidden],
.map-iframe[hidden] {
  display: none !important;
}

.cookie-consent-card {
  width: min(960px, 100%);
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.38);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.98);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.78), 0 0 28px rgba(56, 189, 248, 0.1);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.cookie-consent-copy strong {
  display: block;
  color: var(--gp-text-main);
  font-size: 16px;
  line-height: 1.3;
}

.cookie-consent-copy p {
  margin: 7px 0 0;
  max-width: 78ch;
  color: var(--gp-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent-copy a {
  color: var(--gp-accent);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.cookie-preferences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--gp-accent);
  flex: 0 0 auto;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: var(--gp-text-main);
  font-size: 13px;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--gp-text-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.cookie-save-preferences {
  grid-column: 1 / -1;
  justify-self: end;
}

.map-consent-placeholder {
  min-height: 290px;
  padding: 28px;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  background:
    linear-gradient(rgba(2, 6, 23, 0.84), rgba(2, 6, 23, 0.92)),
    repeating-linear-gradient(45deg, rgba(56, 189, 248, 0.08) 0 1px, transparent 1px 18px);
}

.map-consent-placeholder strong {
  color: var(--gp-text-main);
  font-size: 15px;
}

.map-consent-placeholder p {
  max-width: 46ch;
  margin: 0;
  color: var(--gp-text-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.map-consent-placeholder button {
  justify-self: center;
}

@media (max-width: 640px) {
  .cookie-consent {
    inset: auto 10px 10px;
  }

  .cookie-consent-card {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 15px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .btn-small {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .cookie-preferences {
    grid-template-columns: 1fr;
  }

  .cookie-save-preferences {
    width: 100%;
    justify-content: center;
  }
}

/* Keep the browser canvas dark during initial paint, overscroll and full-page capture. */
html {
  background-color: var(--gp-bg);
}


/* GOODPC UX PASS 2026-07-27
   Conversion-first responsive refinement: compact content, readable type,
   unified iconography, stable mobile navigation and non-overlapping CTAs.
   -------------------------------------------------------------------------- */
.ui-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.ui-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

section[id] { scroll-margin-top: 140px; }

.hero-title {
  max-width: 12ch;
  font-size: clamp(3.25rem, 5.2vw, 5rem);
  line-height: .98;
  text-wrap: balance;
}

.hero-title .accent { display: block; }
.hero-sub { max-width: 62ch; font-size: 17px; line-height: 1.62; }
.hero-footnote,
.hero-badge,
.guarantee-badge,
.hero-engineering-card,
.metric-label,
.metric-sub,
.list-row,
.contact-gdpr,
.map-address,
.map-footer,
.site-footer { font-size: 14px; }

.brand-text-sub,
.google-reviews-badge,
.g-rating-score,
.g-reviews-count,
.header-hours-badge,
.top-bar-phone { font-size: 14px; }
.nav a, .nav-dropdown-trigger { font-size: 15px; }
.contact-label { font-size: 14px; }

.section-compact { padding-block: clamp(56px, 6vw, 82px); }
.services-grid-compact .service-col { min-height: 0; }
.service-list-compact { margin-bottom: 20px; }
.service-link-row { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 18px; }
.service-link-row a { min-height: 44px; display: inline-flex; align-items: center; color: var(--gp-accent); font-weight: 750; }

.process-compact-grid { margin-top: 24px; }
.feature-card-compact { display: flex; align-items: flex-start; gap: 16px; min-height: 0; padding: 20px; }
.feature-card-compact .feature-svg { width: 28px; height: 28px; color: var(--gp-accent); }
.feature-card-compact .feature-title { margin-top: 0; }
.feature-card-compact .feature-text { margin: 6px 0 0; }

.price-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.price-summary-card { display: flex; min-height: 84px; padding: 16px 18px; border: 1px solid rgba(56, 189, 248, .25); border-radius: 16px; background: rgba(15, 23, 42, .78); flex-direction: column; justify-content: center; color: var(--gp-text-soft); text-decoration: none; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.price-summary-card strong { margin-top: 4px; color: var(--gp-accent); font-family: var(--gp-font-mono); font-size: 18px; }
.price-summary-card:hover { transform: translateY(-2px); border-color: rgba(56, 189, 248, .65); background: rgba(14, 116, 144, .12); }
.price-summary-card.is-featured { border-color: rgba(245, 158, 11, .58); }
.price-summary-card.is-featured strong { color: #fbbf24; }
.compact-actions { margin-top: 20px; }

.diag-demo-note { margin: -4px 0 14px; color: var(--gp-text-muted); font-size: 14px; line-height: 1.5; }

.about-summary { background: linear-gradient(180deg, rgba(8, 47, 73, .16), rgba(2, 6, 23, 0)); }
.about-summary-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr); gap: 40px; align-items: center; }
.about-summary .section-lead { max-width: 68ch; margin-top: 18px; }
.trust-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(56, 189, 248, .28); border-radius: 20px; overflow: hidden; background: rgba(15, 23, 42, .72); }
.trust-summary > div { min-width: 0; padding: 22px 16px; text-align: center; }
.trust-summary > div + div { border-left: 1px solid rgba(56, 189, 248, .18); }
.trust-summary strong { display: block; color: var(--gp-accent); font-family: var(--gp-font-mono); font-size: 22px; }
.trust-summary span { display: block; margin-top: 5px; color: var(--gp-text-muted); font-size: 14px; line-height: 1.35; }

/* Teal/cyan are the primary technical accents; gold stays reserved for featured offers. */
.service-col-b2b,
.purple-pricing-card,
.about-card,
.timeline-card { border-color: rgba(56, 189, 248, .30); background: linear-gradient(145deg, rgba(8, 47, 73, .28), rgba(15, 23, 42, .92)); }
.b2b-badge,
.chip-purple,
.purple-pricing-badge { color: #67e8f9; border-color: rgba(34, 211, 238, .36); background: rgba(8, 145, 178, .16); }

.mobile-phone-fab,
.mobile-cta-label { display: none; }

body.nav-open { overflow: hidden; }
body.nav-open .brand-text { display: grid !important; opacity: 1 !important; visibility: visible !important; }

@media (max-width: 1024px) {
  .about-summary-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 76px; }
  section[id] { scroll-margin-top: 126px; }
  #diagnostic-rapid { display: block; }
  .section, .section-compact { padding-block: 52px; }
  .section-header { gap: 14px; margin-bottom: 22px; }
  .section-title { font-size: clamp(28px, 8vw, 36px); line-height: 1.08; }
  .section-lead, .service-desc, .feature-text { font-size: 16px; line-height: 1.6; }
  .hero { padding-top: 34px; }
  .hero-title { max-width: 10ch; font-size: clamp(34px, 10.4vw, 42px); line-height: .98; letter-spacing: -.045em; }
  .hero-sub { margin-top: 20px; font-size: 16px; line-height: 1.55; }
  .hero-keypoints { gap: 10px; margin-top: 22px; }
  .hero-keypoint { font-size: 15px; line-height: 1.42; }
  .hero-cta-row { margin-top: 22px; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
  .hero-engineering { margin-top: 26px; }
  .hero-panel { margin-top: 12px; }
  .hero-metrics { gap: 10px; }
  .metric-card { min-width: 0; }
  .metric-label, .metric-sub, .metric-value { min-width: 0; overflow-wrap: anywhere; }
  .grid-3, .price-summary-grid { grid-template-columns: 1fr; }
  .feature-card-compact { padding: 16px; }
  .price-summary-card { min-height: 74px; }
  .diag-layout { gap: 14px; }
  .diag-card { padding: 16px; }
  .diag-card:nth-child(3) { display: none; }
  .trust-summary { grid-template-columns: 1fr; }
  .trust-summary > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px; text-align: left; }
  .trust-summary > div + div { border-left: 0; border-top: 1px solid rgba(56, 189, 248, .18); }
  .trust-summary strong { font-size: 19px; }
  .trust-summary span { margin-top: 0; text-align: right; }
  .whatsapp-fab,
  .mobile-phone-fab { position: fixed; bottom: 10px; z-index: 190; display: inline-flex; width: calc(50% - 15px); min-height: 52px; padding: 9px 14px; align-items: center; justify-content: center; gap: 8px; border-radius: 16px; font-size: 15px; font-weight: 850; text-decoration: none; }
  .mobile-phone-fab { left: 10px; color: #02182a; background: linear-gradient(135deg, #7dd3fc, #38bdf8); box-shadow: 0 14px 32px rgba(56, 189, 248, .30); }
  .whatsapp-fab { right: 10px; }
  .whatsapp-fab .desktop-cta-label { display: none; }
  .whatsapp-fab .mobile-cta-label { display: inline; }
  .back-to-top-btn { display: none !important; }
  .site-footer { padding-bottom: 104px; }
  body:has(.cookie-consent:not([hidden])) .whatsapp-fab,
  body:has(.cookie-consent:not([hidden])) .mobile-phone-fab { display: none; }
  .cookie-consent-card { padding: 12px; }
  .cookie-consent-copy p { font-size: 14px; line-height: 1.42; }
  .cookie-consent-actions { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cookie-consent-actions > :nth-child(1) { order: 1; }
  .cookie-consent-actions > :nth-child(3) { order: 2; }
  .cookie-consent-actions > :nth-child(2) { order: 3; grid-column: 1 / -1; min-height: 38px; }
}

@media (max-width: 480px) {
  .header-main-bar { padding-block: 5px; }
  .header-inner { min-height: 54px; }
  .brand-logo { width: 36px; height: 36px; }
  .brand-logo picture, .brand-logo img { width: 29px; height: 29px; }
  .brand-text-main { font-size: 18px; }
  .brand-text-sub { max-width: 210px; font-size: 13px; line-height: 1.25; white-space: normal; }
  .header-top-bar { padding-block: 4px; }
  .google-reviews-badge, .top-bar-phone { min-height: 38px; font-size: 13px; }
  .g-rating-score, .g-stars { font-size: 13px; }
  .eyebrow { font-size: 11.5px; line-height: 1.35; }
  .hero-metrics { grid-template-columns: 1fr; }
  .metric-card { padding: 15px; }
  .cookie-consent { inset: auto 8px 8px; }
}

/* Mobile services dropdown: the parent toggles its submenu instead of closing nav. */
@media (max-width: 1080px) {
  .nav .nav-item-dropdown {
    display: block;
    width: 100%;
  }

  .nav .nav-dropdown-trigger {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav .nav-dropdown-trigger .chevron {
    display: inline-flex !important;
    transition: transform .2s ease;
  }

  .nav .nav-item-dropdown.is-open .nav-dropdown-trigger .chevron {
    transform: rotate(180deg);
  }

  .nav .nav-item-dropdown > .dropdown-menu,
  .nav .nav-item-dropdown > .nav-dropdown-menu {
    position: static;
    display: none !important;
    width: 100%;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px;
    border: 1px solid rgba(56, 189, 248, .22);
    border-radius: 14px;
    background: rgba(2, 6, 23, .72);
    box-shadow: none;
  }

  .nav .nav-item-dropdown.is-open > .dropdown-menu,
  .nav .nav-item-dropdown.is-open > .nav-dropdown-menu {
    display: grid !important;
  }

  .nav .nav-item-dropdown > .dropdown-menu a,
  .nav .nav-item-dropdown > .nav-dropdown-menu a {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: normal;
  }
}


/* Mobile navigation simplification and conversion cleanup */
.top-bar-service-link {
  gap: 0.55rem;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .top-bar-service-link,
  #diagnostic-rapid {
    display: none !important;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .nav-dropdown-trigger {
    width: 100%;
    cursor: default;
  }

  .nav-item-dropdown .chevron,
  .nav-item-dropdown .dropdown-icon,
  .nav-item-dropdown .dropdown-item small {
    display: none !important;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 0.75rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav-item-dropdown .dropdown-item {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0.65rem 0.8rem;
    border: 0;
    border-left: 1px solid color-mix(in srgb, var(--color-primary) 38%, transparent);
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
  }

  .nav-item-dropdown .dropdown-item:hover,
  .nav-item-dropdown .dropdown-item:focus-visible {
    background: color-mix(in srgb, var(--color-primary) 9%, transparent);
    color: var(--color-primary);
  }

  .nav-item-dropdown .dropdown-item strong {
    font-size: 0.94rem;
    font-weight: 650;
  }
}

@media (max-width: 640px) {
  .nav-item-dropdown .dropdown-menu {
    padding-left: 0.5rem;
  }

  .nav-item-dropdown .dropdown-item {
    padding-inline: 0.7rem;
  }
}


/* Refined global footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(65, 207, 209, 0.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 186, 184, 0.12), transparent 32%),
    linear-gradient(145deg, #071720 0%, #0a202a 52%, #081820 100%);
  color: #d8e8ec;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2fc7c9 24%, #45aee8 72%, transparent);
}

.footer-shell {
  position: relative;
  padding-block: clamp(2.25rem, 5vw, 4rem) 1.35rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(2, minmax(150px, 0.75fr)) minmax(180px, 0.9fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

.footer-intro {
  max-width: 420px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.footer-brand-lockup img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 18px rgba(47, 199, 201, 0.16));
}

.footer-brand-lockup span {
  display: grid;
  gap: 0.05rem;
}

.footer-brand-lockup strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.footer-brand-lockup small {
  color: #91acb5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-description {
  max-width: 38ch;
  margin: 1.15rem 0 1.25rem;
  color: #aec3ca;
  font-size: 0.94rem;
  line-height: 1.72;
}

.footer-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-quick-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(102, 221, 221, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #f3fbfc;
  font-family: var(--font-mono, monospace);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-quick-actions a:last-child {
  border-color: rgba(69, 203, 132, 0.34);
  color: #81e4ad;
}

.footer-heading {
  margin: 0 0 1rem;
  color: #f5fbfc;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.68rem;
}

.footer-column a,
.footer-cookie-settings,
.footer-contact address span {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aec3ca;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
}

.footer-cookie-settings {
  cursor: pointer;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible,
.footer-brand-lockup:focus-visible,
.footer-quick-actions a:focus-visible {
  color: #66dfe0;
}

.footer-column a:focus-visible,
.footer-cookie-settings:focus-visible,
.footer-brand-lockup:focus-visible,
.footer-quick-actions a:focus-visible {
  outline: 2px solid #66dfe0;
  outline-offset: 4px;
}

.footer-contact address {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(174, 195, 202, 0.14);
  color: #78949d;
  font-size: 0.78rem;
}

.footer-credit a {
  color: #b9dce1;
  font-weight: 700;
  text-decoration: none;
}

.price-summary-note {
  max-width: 760px;
  margin: 0.8rem auto 0;
  color: var(--color-text-muted, #5f747d);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 960px) {
  .footer-main-grid {
    grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(150px, 0.75fr));
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .footer-shell {
    padding-block: 2.2rem calc(5.75rem + env(safe-area-inset-bottom));
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.25rem;
  }

  .footer-intro,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-description {
    font-size: 0.92rem;
  }

  .footer-column a,
  .footer-cookie-settings,
  .footer-contact address span {
    font-size: 0.87rem;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-intro,
  .footer-contact {
    grid-column: auto;
  }
}


/* SEO service architecture */
.service-choice-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.service-choice-card { position:relative; display:flex; min-height:310px; flex-direction:column; padding:1.45rem; border:1px solid color-mix(in srgb,var(--color-primary) 18%,transparent); border-radius:18px; background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(240,250,251,.92)); box-shadow:0 18px 48px rgba(5,28,38,.07); }
.service-choice-card.is-featured { border-color:color-mix(in srgb,var(--color-primary) 45%,transparent); transform:translateY(-6px); }
.service-choice-index { color:var(--color-primary); font-family:var(--font-mono,monospace); font-size:.76rem; font-weight:800; letter-spacing:.12em; }
.service-choice-card h3 { margin:.9rem 0 .65rem; font-size:1.28rem; }
.service-choice-card p { color:var(--color-text-muted,#5f747d); line-height:1.65; }
.service-choice-actions { display:grid; gap:.75rem; margin-top:auto; padding-top:1rem; }
.service-whatsapp-link { color:#168b52; font-size:.88rem; font-weight:800; text-decoration:none; }
.b2b-bridge-card,.b2b-focus-panel { display:flex; gap:2rem; align-items:center; justify-content:space-between; margin-top:1.2rem; padding:1.35rem 1.5rem; border:1px solid rgba(47,199,201,.2); border-radius:16px; background:linear-gradient(120deg,rgba(7,23,32,.98),rgba(10,43,52,.96)); color:#eefbfc; }
.b2b-bridge-card h3,.b2b-focus-panel h2 { margin:.35rem 0; color:#fff; }
.b2b-bridge-card p,.b2b-focus-panel p { margin:0; color:#afc9cf; }
.service-proof-section { background:linear-gradient(180deg,rgba(239,248,249,.7),rgba(255,255,255,.95)); }
.service-proof-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.proof-card { padding:1.3rem; border:1px solid rgba(26,116,135,.14); border-radius:16px; background:#fff; box-shadow:0 14px 36px rgba(5,30,39,.055); }
.proof-card>span { color:var(--color-primary); font-family:var(--font-mono,monospace); font-size:.74rem; font-weight:800; }
.proof-card h3 { margin:.75rem 0 .5rem; font-size:1.05rem; }
.proof-card p { margin:0; color:var(--color-text-muted,#5f747d); font-size:.92rem; line-height:1.62; }
.service-terms-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin-top:1rem; }
.service-terms-grid article { padding:1.25rem; border-radius:14px; background:#0a202a; color:#dcecee; }
.service-terms-grid h3 { margin:0 0 .75rem; color:#fff; font-size:1rem; }
.service-terms-grid ul { display:grid; gap:.55rem; margin:0; padding-left:1.05rem; }
.service-terms-grid li { color:#b6ccd1; font-size:.87rem; line-height:1.5; }
.service-proof-cta { display:flex; gap:1.2rem; align-items:center; justify-content:space-between; margin-top:1rem; padding:1rem 1.2rem; border:1px solid rgba(29,186,184,.2); border-radius:14px; background:#fff; }
.service-proof-cta p { margin:0; color:var(--color-text-muted,#5f747d); }
.not-found-page { min-height:55vh; display:flex; align-items:center; }
@media(max-width:900px){.service-choice-grid,.service-proof-grid,.service-terms-grid{grid-template-columns:1fr}.service-choice-card.is-featured{transform:none}.b2b-bridge-card,.b2b-focus-panel,.service-proof-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.service-choice-card{min-height:0;padding:1.15rem}.service-choice-actions{grid-template-columns:1fr}.service-proof-cta .btn-primary{width:100%}}

/* B2B landing page */
.b2b-page {
  overflow: hidden;
  background: #f3f8f8;
  color: #10262f;
}

.b2b-page h1,
.b2b-page h2,
.b2b-page h3,
.b2b-page p {
  text-wrap: pretty;
}

.b2b-hero-v2 {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4.75rem, 8vw, 7.5rem);
  background:
    linear-gradient(rgba(72, 198, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 198, 202, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(40, 193, 196, 0.17), transparent 30%),
    linear-gradient(145deg, #071720 0%, #0a202a 55%, #0b2831 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: #eaf7f8;
}

.b2b-hero-v2::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -15rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(74, 215, 216, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(74, 215, 216, 0.025), 0 0 0 9rem rgba(74, 215, 216, 0.018);
}

.b2b-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.b2b-hero-copy {
  max-width: 720px;
}

.b2b-eyebrow {
  color: #4dd4d6;
  font-family: var(--gp-font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-main-title {
  max-width: 780px;
  margin: 1.1rem 0 1.35rem;
  color: #f7fbfc;
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.b2b-main-title span {
  color: #65dde0;
}

.b2b-hero-lead {
  max-width: 650px;
  margin: 0;
  color: #b9cdd2;
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.b2b-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.b2b-hero-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(99, 221, 224, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9e9ec;
  font-size: 0.82rem;
  font-weight: 650;
}

.b2b-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  align-items: center;
  margin-top: 2rem;
}

.b2b-hero-actions .btn-primary,
.b2b-final-actions .btn-primary {
  min-height: 50px;
  padding-inline: 1.25rem;
}

.b2b-text-link {
  color: #dbecee;
  font-size: 0.92rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.b2b-response-note {
  margin: 1rem 0 0;
  color: #829fa7;
  font-size: 0.78rem;
  line-height: 1.55;
}

.b2b-ops-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(101, 221, 224, 0.24);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(14, 43, 52, 0.96), rgba(6, 22, 30, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.b2b-ops-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #42ced1, #51aee3, transparent);
}

.b2b-ops-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(203, 231, 234, 0.12);
}

.b2b-panel-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #76dfe0;
  font-family: var(--gp-font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.b2b-ops-head strong {
  color: #fff;
  font-size: 1.2rem;
}

.b2b-status {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.45rem;
  align-items: center;
  color: #9ed8c0;
  font-size: 0.75rem;
  font-weight: 700;
}

.b2b-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45d48d;
  box-shadow: 0 0 0 5px rgba(69, 212, 141, 0.1);
}

.b2b-ops-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.b2b-ops-list div {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(203, 231, 234, 0.1);
}

.b2b-ops-list dt {
  color: #76939b;
  font-size: 0.75rem;
}

.b2b-ops-list dd {
  margin: 0;
  color: #e3f0f1;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: right;
}

.b2b-ops-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1.1rem;
}

.b2b-ops-foot span {
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: rgba(96, 213, 215, 0.08);
  color: #9bc5ca;
  font-family: var(--gp-font-mono);
  font-size: 0.67rem;
  font-weight: 700;
}

.b2b-trust-strip {
  border-bottom: 1px solid #dbe7e8;
  background: #fff;
}

.b2b-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2b-trust-grid > div {
  display: grid;
  gap: 0.2rem;
  padding: 1.45rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid #e1eaeb;
}

.b2b-trust-grid > div:first-child {
  padding-left: 0;
}

.b2b-trust-grid > div:last-child {
  border-right: 0;
}

.b2b-trust-grid strong {
  color: #102b35;
  font-family: var(--gp-font-mono);
  font-size: 1.05rem;
}

.b2b-trust-grid span {
  color: #647b83;
  font-size: 0.77rem;
}

.b2b-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.b2b-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.b2b-section-head h2,
.b2b-boundary-card h2,
.b2b-final-cta h2,
.b2b-intake-copy h2 {
  margin: 0.7rem 0 0;
  color: #102b35;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.b2b-section-head > p {
  margin: 0;
  color: #617982;
  font-size: 0.95rem;
  line-height: 1.7;
}

.b2b-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.b2b-capability-grid article {
  min-height: 220px;
  padding: 1.4rem;
  border: 1px solid #dbe7e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(11, 44, 54, 0.045);
}

.b2b-capability-grid article > span {
  color: #1a9da0;
  font-family: var(--gp-font-mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.b2b-capability-grid h3 {
  margin: 2rem 0 0.7rem;
  color: #102b35;
  font-size: 1.05rem;
}

.b2b-capability-grid p {
  margin: 0;
  color: #647b83;
  font-size: 0.88rem;
  line-height: 1.65;
}

.b2b-packages-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(49, 188, 191, 0.08), transparent 28%),
    #071720;
}

.b2b-section-head.is-light h2 {
  color: #f6fbfc;
}

.b2b-section-head.is-light > p {
  color: #9db6bd;
}

.b2b-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.b2b-package-card {
  position: relative;
  display: flex;
  min-height: 475px;
  flex-direction: column;
  padding: 1.65rem;
  border: 1px solid rgba(183, 219, 223, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.b2b-package-card.is-featured {
  border-color: rgba(81, 215, 217, 0.55);
  background: linear-gradient(160deg, rgba(41, 158, 162, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
}

.b2b-package-badge {
  position: absolute;
  top: 0;
  right: 1.3rem;
  padding: 0.48rem 0.7rem;
  border-radius: 0 0 8px 8px;
  background: #48cdd0;
  color: #06212a;
  font-size: 0.66rem;
  font-weight: 850;
}

.b2b-package-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.b2b-package-top span {
  color: #f7fbfc;
  font-size: 1.25rem;
  font-weight: 800;
}

.b2b-package-top small {
  color: #77a0aa;
  font-family: var(--gp-font-mono);
  font-size: 0.7rem;
}

.b2b-package-audience {
  min-height: 44px;
  margin: 0.7rem 0 1.2rem;
  color: #91aeb5;
  font-size: 0.84rem;
}

.b2b-package-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  align-items: baseline;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(183, 219, 223, 0.12);
}

.b2b-package-price small,
.b2b-package-price span {
  color: #78949c;
  font-size: 0.76rem;
}

.b2b-package-price strong {
  color: #54d6d8;
  font-family: var(--gp-font-mono);
  font-size: 1.6rem;
  line-height: 1.15;
}

.b2b-package-price.is-custom strong {
  max-width: 12ch;
}

.b2b-package-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0;
  padding: 0;
  list-style: none;
}

.b2b-package-card li {
  position: relative;
  padding-left: 1.15rem;
  color: #b6cbd0;
  font-size: 0.83rem;
  line-height: 1.5;
}

.b2b-package-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4fd1d3;
}

.b2b-package-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(81, 215, 217, 0.28);
  border-radius: 10px;
  color: #7fe1e3;
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
}

.b2b-package-card > a:hover,
.b2b-package-card > a:focus-visible {
  border-color: #5bdadd;
  background: rgba(81, 215, 217, 0.08);
}

.b2b-scope-note {
  margin: 1.2rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid #48cdd0;
  background: rgba(72, 205, 208, 0.055);
  color: #839fa7;
  font-size: 0.78rem;
  line-height: 1.65;
}

.b2b-pricing-definitions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid rgba(126, 189, 196, 0.13);
  border-radius: 14px;
  background: rgba(126, 189, 196, 0.13);
}

.b2b-pricing-definitions > div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: #0b2029;
}

.b2b-pricing-definitions strong {
  color: #dcebed;
  font-size: 0.77rem;
}

.b2b-pricing-definitions span {
  color: #829da5;
  font-size: 0.72rem;
  line-height: 1.55;
}

.b2b-process-section {
  background: #fff;
}

.b2b-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #dbe7e8;
  list-style: none;
}

.b2b-process-list li {
  position: relative;
  padding: 1.65rem 1.5rem 0 0;
}

.b2b-process-list li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24b8bb;
  box-shadow: 0 0 0 6px #e1f7f7;
}

.b2b-process-list > li > span {
  color: #20a5a8;
  font-family: var(--gp-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.b2b-process-list h3 {
  margin: 0.8rem 0 0.5rem;
  color: #102b35;
  font-size: 0.96rem;
}

.b2b-process-list p {
  margin: 0;
  color: #687f87;
  font-size: 0.82rem;
  line-height: 1.6;
}

.b2b-boundaries-section {
  padding-top: 0;
  background: #fff;
}

.b2b-boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.b2b-boundary-card {
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid #d9e5e7;
  border-radius: 18px;
  background: #f5f9f9;
}

.b2b-boundary-card.is-included {
  border-color: rgba(39, 180, 183, 0.24);
  background: #eaf7f7;
}

.b2b-boundary-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.b2b-boundary-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding-left: 1.1rem;
}

.b2b-boundary-card li {
  color: #526a73;
  font-size: 0.87rem;
  line-height: 1.55;
}

.b2b-faq-section {
  border-top: 1px solid #dbe7e8;
}

.b2b-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.b2b-faq-grid article {
  padding: 1.35rem;
  border: 1px solid #dbe6e8;
  border-radius: 14px;
  background: #fff;
}

.b2b-faq-grid h3 {
  margin: 0 0 0.65rem;
  color: #17343d;
  font-size: 0.98rem;
}

.b2b-faq-grid p {
  margin: 0;
  color: #647b83;
  font-size: 0.84rem;
  line-height: 1.65;
}

.b2b-final-cta {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #0a202a;
}

.b2b-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
}

.b2b-final-cta h2 {
  max-width: 760px;
  color: #f6fbfc;
}

.b2b-final-cta p {
  margin: 1rem 0 0;
  color: #9bb5bc;
}

.b2b-final-actions {
  display: grid;
  gap: 0.8rem;
  justify-items: stretch;
  text-align: center;
}

.b2b-final-actions > a:last-child {
  color: #bed4d9;
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.b2b-intake-section {
  scroll-margin-top: 140px;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    linear-gradient(rgba(72, 198, 202, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 198, 202, 0.035) 1px, transparent 1px),
    #071720;
  background-size: 42px 42px;
}

.b2b-intake-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.b2b-intake-copy {
  position: sticky;
  top: 150px;
}

.b2b-intake-copy h2 {
  margin: 0.8rem 0 1.1rem;
  color: #f4fbfc;
}

.b2b-intake-copy > p {
  margin: 0;
  color: #9db6bd;
  line-height: 1.7;
}

.b2b-intake-expectations {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(190, 221, 225, 0.13);
}

.b2b-intake-expectations > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(190, 221, 225, 0.13);
}

.b2b-intake-expectations > div > span {
  color: #55d2d5;
  font-family: var(--gp-font-mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.b2b-intake-expectations p {
  margin: 0;
  color: #839fa7;
  font-size: 0.8rem;
  line-height: 1.55;
}

.b2b-intake-expectations strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #dcebed;
  font-size: 0.85rem;
}

.b2b-intake-copy .b2b-intake-alternative {
  margin-top: 1.25rem;
  color: #78949c;
  font-size: 0.8rem;
}

.b2b-intake-alternative a {
  color: #72dfe1;
  font-weight: 750;
  text-underline-offset: 3px;
}

.b2b-intake-form {
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid rgba(91, 212, 215, 0.2);
  border-radius: 22px;
  background: #f8fbfb;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}

.b2b-form-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dce8e9;
}

.b2b-form-heading span {
  color: #18343d;
  font-size: 1rem;
  font-weight: 800;
}

.b2b-form-heading strong {
  color: #158f92;
  font-family: var(--gp-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.b2b-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.b2b-form-grid label {
  display: grid;
  gap: 0.45rem;
}

.b2b-form-grid label.is-full {
  grid-column: 1 / -1;
}

.b2b-form-grid label > span {
  color: #314d56;
  font-size: 0.76rem;
  font-weight: 750;
}

.b2b-form-grid input,
.b2b-form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #cddcdf;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: #112d36;
  font-family: var(--gp-font-sans);
  font-size: 0.92rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.b2b-form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.b2b-form-grid input::placeholder,
.b2b-form-grid textarea::placeholder {
  color: #8ba0a6;
}

.b2b-form-grid input:focus,
.b2b-form-grid textarea:focus {
  border-color: #21aeb1;
  box-shadow: 0 0 0 4px rgba(33, 174, 177, 0.12);
}

.b2b-form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-top: 1.15rem;
  color: #627980;
  font-size: 0.74rem;
  line-height: 1.55;
}

.b2b-form-consent input {
  width: 18px;
  height: 18px;
  margin: 0.08rem 0 0;
  accent-color: #169da0;
}

.b2b-form-consent a {
  color: #117f82;
  font-weight: 750;
}

.b2b-form-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 1.25rem;
}

.b2b-form-note {
  margin: 0.75rem auto 0;
  color: #82969c;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  .b2b-hero-grid,
  .b2b-section-head,
  .b2b-final-cta-inner,
  .b2b-intake-grid {
    grid-template-columns: 1fr;
  }

  .b2b-hero-copy {
    max-width: 780px;
  }

  .b2b-ops-card {
    max-width: 680px;
  }

  .b2b-section-head {
    gap: 1rem;
    align-items: start;
  }

  .b2b-capability-grid,
  .b2b-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-package-card.is-featured {
    grid-row: span 1;
  }

  .b2b-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
  }

  .b2b-final-actions {
    max-width: 360px;
  }

  .b2b-intake-copy {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .b2b-hero-v2 {
    padding: 3.4rem 0 4rem;
  }

  .b2b-main-title {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .b2b-hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .b2b-hero-points span:last-child {
    grid-column: 1 / -1;
  }

  .b2b-hero-actions {
    display: grid;
    align-items: stretch;
  }

  .b2b-hero-actions .btn-primary {
    width: 100%;
  }

  .b2b-text-link {
    text-align: center;
  }

  .b2b-ops-head {
    display: grid;
  }

  .b2b-ops-list div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .b2b-ops-list dd {
    text-align: left;
  }

  .b2b-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-trust-grid > div,
  .b2b-trust-grid > div:first-child {
    padding: 1rem;
    border-bottom: 1px solid #e1eaeb;
  }

  .b2b-trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .b2b-capability-grid,
  .b2b-package-grid,
  .b2b-pricing-definitions,
  .b2b-process-list,
  .b2b-boundary-grid,
  .b2b-faq-grid {
    grid-template-columns: 1fr;
  }

  .b2b-capability-grid article {
    min-height: 0;
  }

  .b2b-capability-grid h3 {
    margin-top: 1.2rem;
  }

  .b2b-package-card {
    min-height: 0;
  }

  .b2b-package-card > a {
    margin-top: 1.5rem;
  }

  .b2b-process-list {
    gap: 1.4rem;
    border-top: 0;
  }

  .b2b-process-list li {
    padding: 0 0 1.35rem 1.2rem;
    border-bottom: 1px solid #dbe7e8;
  }

  .b2b-process-list li::before {
    top: 0.35rem;
    left: 0;
  }

  .b2b-final-actions {
    max-width: none;
  }

  .b2b-form-heading {
    display: grid;
    justify-content: start;
  }

  .b2b-form-grid {
    grid-template-columns: 1fr;
  }

  .b2b-form-grid label.is-full {
    grid-column: auto;
  }

  .b2b-form-grid input,
  .b2b-form-grid textarea {
    font-size: 16px;
  }
}

/* Compact opening hours beside Google rating on mobile and tablet */
@media (max-width: 1080px) {
  .header-top-left {
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }

  .header-hours-badge {
    display: inline-flex !important;
    min-width: 0;
    min-height: 36px;
    flex: 0 1 auto;
    gap: 0.42rem;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.65rem;
    white-space: nowrap;
  }

  .header-hours-badge > span:last-child {
    display: block;
    max-width: min(44vw, 370px);
    overflow: hidden;
    font-size: 0.75rem;
    font-weight: 700;
    text-overflow: ellipsis;
  }

  .header-hours-badge::after {
    content: none;
  }
}

@media (max-width: 740px) {
  .header-hours-badge > span:last-child {
    display: block !important;
    max-width: min(38vw, 240px);
    overflow: hidden;
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-hours-badge::before,
  .header-hours-badge::after {
    content: none !important;
  }
}

@media (max-width: 480px) {
  .header-top-left {
    gap: 0.38rem;
  }

  .google-reviews-badge,
  .header-hours-badge {
    min-height: 36px;
    padding-inline: 0.55rem;
  }

  .header-hours-badge > span:last-child {
    display: block !important;
    max-width: 140px;
    font-size: 0.68rem;
  }
}

/* Keep homepage service choices consistent with the dark GoodPC visual system. */
.service-choice-card {
  border-color: rgba(56, 189, 248, 0.25);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(11, 21, 40, 0.94));
  box-shadow: var(--gp-shadow-soft);
  color: var(--gp-text-main);
}

.service-choice-card.is-featured {
  border-color: rgba(56, 189, 248, 0.5);
}

.service-choice-index {
  color: var(--gp-accent);
  font-family: var(--gp-font-mono);
}

.service-choice-card p {
  color: var(--gp-text-muted);
}
