/* AimlakeMS Inc. – Professional Design System (About Page Theme) */

:root {
  --bg-primary: #0A0E17;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --accent: #3B82F6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --accent-warm: #F59E0B;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: rgba(148, 163, 184, 0.08);
  --border-hover: rgba(59, 130, 246, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  /* Legacy aliases for compatibility */
  --bg: #0A0E17;
  --bg-alt: #111827;
  --surface: #111827;
  --surface-2: #1a2332;
  --ink: #F1F5F9;
  --ink-light: #94A3B8;
  --muted: #64748B;
  --line: rgba(148, 163, 184, 0.08);
  --primary: #3B82F6;
  --primary-hover: #2563EB;
  --primary-light: rgba(59, 130, 246, 0.15);
  --accent-soft: #60A5FA;
  --success: #10B981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --warn: #F59E0B;
  --warn-bg: rgba(245, 158, 11, 0.1);
  --danger: #EF4444;
  --radius: 16px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  --transition: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(59, 130, 246, 0.15);
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow--blue {
  background: #3B82F6;
  top: -200px;
  right: -100px;
}

.ambient-glow--amber {
  background: #F59E0B;
  bottom: -200px;
  left: -100px;
}

/* Fade animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--accent-soft);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  max-width: 1200px;
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 1rem;
}

/* Header – full-width, not sticky */
.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #0A0E17;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  min-height: 60px;
  display: block;
  visibility: visible;
  opacity: 1;
  font-family: var(--font-display);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-header .header-inner,
.site-header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.brand:hover {
  color: var(--accent);
}

.brand span {
  display: block;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand small {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  border: 0;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--primary-hover);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-block;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
}

/* Mega menu */
.nav-has-dropdown {
  position: relative;
}

.nav-chevron {
  font-size: 0.7em;
  opacity: 0.8;
  margin-left: 0.15em;
}

.nav-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 1001;
  margin-top: 0.25rem;
}

.nav-has-dropdown:hover .nav-mega,
.nav-has-dropdown:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.nav-mega-title {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}

.nav-mega-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 220px;
}

.nav-mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mega-links a {
  display: block;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-mega-links a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
}

.nav-mega-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.nav-mega-link-alt {
  font-size: 0.9rem;
}

.nav-mega-cta .btn-primary {
  color: #fff !important;
  background: var(--primary);
}

.nav-mega-cta .btn-primary:hover {
  color: #fff;
  background: var(--primary-hover);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Mobile mega menu */
@media (max-width: 980px) {
  .nav-has-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .nav-has-dropdown:last-child {
    border-bottom: none;
  }

  .nav-has-dropdown>a {
    position: relative;
    padding-right: 2.5rem;
  }

  .nav-has-dropdown>a .nav-chevron {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    transition: transform 0.25s ease;
  }

  .nav-has-dropdown.open>a .nav-chevron {
    transform: translateY(-50%) rotate(180deg);
  }

  .nav-has-dropdown.open>a {
    background: var(--primary-light);
    color: var(--primary);
  }

  .nav-mega {
    position: static;
    transform: none;
    min-width: auto;
    margin: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0.75rem 1.25rem;
    margin-left: 0.75rem;
    border-left: 3px solid var(--primary);
    background: var(--surface-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .nav-has-dropdown.open .nav-mega,
  .nav-mega[aria-hidden="false"] {
    display: block;
  }

  .nav-mega-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .nav-mega-section {
    padding-bottom: 0.25rem;
  }

  .nav-mega-title {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
  }

  .nav-mega-desc {
    font-size: 0.8rem;
    max-width: none;
  }

  .nav-mega-links {
    gap: 0;
  }

  .nav-mega-links a {
    padding: 0.75rem 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    -webkit-tap-highlight-color: rgba(15, 76, 129, 0.15);
  }

  .nav-mega-links a:hover,
  .nav-mega-links a:active {
    background: var(--primary-light);
    color: var(--primary);
  }

  .nav-mega-cta {
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    gap: 0.75rem;
  }

  .nav-mega-cta .btn {
    min-height: 44px;
    flex: 1;
    justify-content: center;
  }

  .nav-mega-link-alt {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.5rem;
    min-height: 44px;
    border-radius: var(--radius-sm);
    -webkit-tap-highlight-color: rgba(15, 76, 129, 0.15);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(15, 76, 129, 0.25);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent);
}

.btn-outline {
  color: var(--text-primary);
  background: transparent;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero – about-style dark theme */
.hero {
  padding: 68px 0 46px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(245, 158, 11, 0.05), transparent),
    radial-gradient(ellipse 40% 30% at 0% 100%, rgba(59, 130, 246, 0.05), transparent);
  pointer-events: none;
}

.hero-panel {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59, 130, 246, 0.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease forwards;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 100% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-panel h1 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-panel .lead {
  color: var(--text-secondary);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-actions {
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.pill {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
  animation: fadeUp 0.8s ease forwards 0.15s;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0 0 0.5rem;
  font-weight: 400;
}

h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
}

.lead {
  color: var(--text-secondary);
  max-width: 58ch;
  font-size: 1.125rem;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-outline {
  color: var(--text-primary);
  border-color: var(--border);
}

.hero-actions .btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

/* Metrics */
.metrics {
  padding: 1.5rem 0 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: var(--border-hover);
}

.metric strong {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}

.metric p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 0.5rem 0;
}

/* Remove main padding for policy pages with their own hero sections */
body.delivery-page main.section,
body.warranty-page main.section,
body.price-match-page main.section {
  padding-top: 0;
}

.section-title {
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 60ch;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

/* Section label (about-style) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-warm);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* Cards */
.cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h2,
.card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.card ul li {
  margin-bottom: 0.35rem;
}

.card ul li:last-child {
  margin-bottom: 0;
}

.card .btn {
  margin-top: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-list .card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-list .card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-light);
}

/* Band (CTA section) */
.band {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(245, 158, 11, 0.06));
  border: 1px solid var(--border);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
}

.band h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.band p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

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

.mini {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}

.mini:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mini h3 {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.mini p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.mini .btn {
  margin-top: 0.75rem;
}

/* Mini on light background (Our Process, etc.) */
.mini-light .mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.mini-light .mini h3 {
  color: var(--text-primary);
}

.mini-light .mini p {
  color: var(--text-secondary);
}

.mini-light .mini:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.band .mini .btn-secondary {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--border-hover);
}

.band .mini .btn-secondary:hover {
  background: rgba(59, 130, 246, 0.25);
  color: var(--accent);
  border-color: var(--accent);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-top: 0.75rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}

/* ============================================
   PRINTING PRICE SHEET PAGE
   ============================================ */
.printing-price-sheet-page .cards {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.printing-price-sheet-page .cards .card {
  min-width: 0;
  overflow: visible;
  padding: 1.25rem;
}

.printing-price-sheet-page .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.printing-price-sheet-page .table-wrap table {
  min-width: 480px;
  width: 100%;
  table-layout: fixed;
}

.printing-price-sheet-page .table-wrap th,
.printing-price-sheet-page .table-wrap td {
  padding: 0.75rem 1rem;
  word-break: break-word;
}

.printing-price-sheet-page .table-wrap th:first-child,
.printing-price-sheet-page .table-wrap td:first-child {
  width: 22%;
  min-width: 100px;
}

.printing-price-sheet-page .table-wrap th:nth-child(2),
.printing-price-sheet-page .table-wrap td:nth-child(2) {
  width: 48%;
  min-width: 140px;
}

.printing-price-sheet-page .table-wrap th:nth-child(3),
.printing-price-sheet-page .table-wrap td:nth-child(3) {
  width: 30%;
  min-width: 110px;
}

.printing-price-sheet-page .grid-3 {
  grid-template-columns: 1fr;
}

.printing-price-sheet-page .card h2.policy-heading {
  color: #c00;
  font-weight: bold;
}

@media (min-width: 640px) {
  .printing-price-sheet-page .table-wrap table {
    min-width: 560px;
  }
}

@media (min-width: 900px) {
  .printing-price-sheet-page .table-wrap table {
    table-layout: auto;
  }
}

/* Notices */
.notice {
  border-left: 4px solid var(--accent);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: var(--text-primary);
}

.notice.warn {
  border-left-color: var(--warn);
  background: var(--warn-bg);
}

.notice.good {
  border-left-color: var(--success);
  background: var(--success-bg);
}

/* Tags */
.tag-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
}

/* Forms */
.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 16px;
  /* Prevents iOS zoom on focus */
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: border-color var(--transition);
}

.input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 0.5rem;
}

.field.full {
  grid-column: 1 / -1;
}

.hp {
  position: absolute;
  left: -9999px;
}

/* Alerts */
.alert {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.alert-ok {
  background: var(--success-bg);
  border: 1px solid #6ee7b7;
  color: var(--success);
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--danger);
}

/* Legal */
.legal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.legal h2 {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal ul,
.legal ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.kicker {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Footer – full-width, always visible */
.site-footer {
  margin-top: 4rem;
  width: 100%;
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
  min-height: 200px;
  display: block;
  visibility: visible;
  opacity: 1;
  font-family: var(--font-display);
}

.footer-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59, 130, 246, 0.06) 100%);
  border: 1px solid var(--border);
  color: var(--text-primary);
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.footer-cta .btn {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.footer-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(59, 130, 246, 0.3);
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.footer-cta p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta .btn {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.footer-cta .btn-primary {
  background: var(--accent);
  color: #fff;
}

.footer-cta .btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.footer-cta .btn-secondary {
  background: rgba(59, 130, 246, 0.15);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.footer-cta .btn-secondary:hover {
  background: rgba(59, 130, 246, 0.25);
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-grid h3 {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer a {
  color: var(--text-secondary);
  display: inline-block;
  margin: 0.3rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0.3rem 0;
}

.small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer-meta {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer-meta p {
  margin: 0.25rem 0;
  color: var(--text-muted);
}

/* Back to top */
.site-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1200;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-to-top:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
}

.site-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Scroll reveal animations */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in band */
.band.reveal .mini {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.band.animate-in .mini {
  opacity: 1;
  transform: translateY(0);
}

.band.animate-in .mini:nth-child(1) {
  transition-delay: 0.1s;
}

.band.animate-in .mini:nth-child(2) {
  transition-delay: 0.2s;
}

.band.animate-in .mini:nth-child(3) {
  transition-delay: 0.3s;
}

/* Stagger metrics */
.metrics-grid .metric:nth-child(1) {
  transition-delay: 0.05s;
}

.metrics-grid .metric:nth-child(2) {
  transition-delay: 0.1s;
}

.metrics-grid .metric:nth-child(3) {
  transition-delay: 0.15s;
}

.metrics-grid .metric:nth-child(4) {
  transition-delay: 0.2s;
}

/* Stagger cards */
.cards .card:nth-child(1) {
  transition-delay: 0.05s;
}

.cards .card:nth-child(2) {
  transition-delay: 0.1s;
}

.cards .card:nth-child(3) {
  transition-delay: 0.15s;
}

.cards .card:nth-child(4) {
  transition-delay: 0.2s;
}

/* About page components */
.about-hero {
  padding: 100px 0 80px;
  position: relative;
}

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.about-hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  max-width: 800px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.about-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.about-hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 60px 0 80px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.stat-item {
  background: var(--bg-card);
  padding: 36px 32px;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: var(--bg-card-hover);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mission {
  padding: 0 0 80px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.highlight-box {
  background: linear-gradient(135deg, var(--bg-card), rgba(59, 130, 246, 0.06));
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px;
  margin-top: 28px;
}

.highlight-box p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.services {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__header .section-label {
  justify-content: center;
}

.services__header .section-heading {
  max-width: 600px;
  margin: 0 auto 16px;
}

.services__header .section-text {
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.3rem;
}

.service-card__icon--print {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.service-card__icon--sign {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

.service-card__icon--hardware {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.service-card__icon--support {
  background: rgba(168, 85, 247, 0.1);
  color: #A855F7;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-card__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.service-card__link:hover {
  gap: 10px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.service-card__link:hover svg {
  transform: translateX(2px);
}

.why-us {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.why-item:hover {
  border-color: var(--border-hover);
}

.why-item__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.why-item__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.why-item__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.price-match {
  margin: 80px 0;
  padding: 48px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(245, 158, 11, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.price-match__content {
  max-width: 560px;
}

.price-match__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  background: rgba(245, 158, 11, 0.1);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.price-match__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.price-match__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.price-match__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.price-match__cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.contact-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-bar__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 28px;
  color: var(--text-primary);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-info__item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info__item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info__item a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 50px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .price-match {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stat-item {
    padding: 24px 20px;
  }

  .stat-item__number {
    font-size: 1.8rem;
  }
}

.section-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Page header */
.page-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.page-header h1 {
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

/* ==============================
   MOBILE & RESPONSIVE
   ============================== */

/* Tablet and mobile */
@media (max-width: 980px) {

  .metrics-grid,
  .cards,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-basis: 100%;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 1rem;
    min-height: 44px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(15, 76, 129, 0.15);
  }

  .site-header .header-inner,
  .site-header .row {
    flex-wrap: wrap;
  }
}

/* Phone */
@media (max-width: 680px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand small {
    font-size: 0.65rem;
  }

  .metrics-grid,
  .cards,
  .grid-3,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-panel {
    padding: 1.5rem;
  }

  .hero-panel h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero-panel .lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.25rem;
  }

  .section {
    padding: 1rem 0;
  }

  .metrics {
    padding: 1rem 0 1.5rem;
  }

  .metric {
    padding: 1rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .footer-cta {
    padding: 2.5rem 1rem;
  }

  .footer-cta-buttons {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .footer-grid {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .site-to-top {
    width: 48px;
    height: 48px;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.25rem;
  }

  .container {
    padding-inline: 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .band {
    padding: 1.5rem;
  }

  .band h2 {
    font-size: 1.25rem;
  }

  .band p {
    font-size: 0.9rem;
  }
}

/* Small phone */
@media (max-width: 480px) {

  .site-header .header-inner,
  .site-header .row {
    padding: 0.6rem 0.85rem;
  }

  .brand {
    font-size: 1rem;
  }

  .hero-panel h1 {
    font-size: 1.35rem;
  }

  .hero-panel .lead {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .container {
    padding-inline: 0.85rem;
  }

  .metric strong {
    font-size: 1.1rem;
  }

  .metric p {
    font-size: 0.85rem;
  }

  .site-to-top {
    width: 44px;
    height: 44px;
  }
}

/* Safe area for notched devices (iPhone X+, etc.) */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-to-top {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: calc(1rem + env(safe-area-inset-right));
  }
}

/* ==============================
   2026 DARK THEME GLOBAL LAYER
   ============================== */
:root {
  --bg: #060b14;
  --surface: #0b1422;
  --surface-2: #0f1c2f;
  --ink: #e8f1ff;
  --ink-light: #c8d9f0;
  --muted: #a6b7d3;
  --line: rgba(126, 164, 213, 0.26);
  --primary: #2e7cff;
  --primary-2: #1ac3ff;
  --accent: #6f7dff;
  --primary-hover: #3f8dff;
}

body {
  background:
    radial-gradient(1100px 520px at -10% -20%, rgba(46, 124, 255, 0.24), transparent 60%),
    radial-gradient(900px 500px at 110% -10%, rgba(111, 125, 255, 0.18), transparent 58%),
    radial-gradient(750px 450px at 50% 120%, rgba(26, 195, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #060b14 0%, #071022 48%, #060a13 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to right, transparent 0, transparent 62px, rgba(255, 255, 255, 0.014) 63px, transparent 64px),
    repeating-linear-gradient(to bottom, transparent 0, transparent 44px, rgba(255, 255, 255, 0.012) 45px, transparent 46px);
  opacity: 0.38;
  z-index: -1;
}

h1,
h2,
h3 {
  color: #f2f7ff;
  letter-spacing: 0.01em;
}

p,
li,
.section-subtitle,
.kicker {
  color: var(--muted);
}

.hero-panel,
.band,
.footer-cta,
.card,
.metric,
.legal,
.form-panel,
.notice,
.mini {
  position: relative;
  overflow: hidden;
}

.hero-panel,
.band {
  background:
    radial-gradient(95% 150% at 20% -10%, rgba(38, 116, 255, 0.34), transparent 46%),
    radial-gradient(100% 180% at 100% 0%, rgba(26, 195, 255, 0.22), transparent 44%),
    linear-gradient(155deg, rgba(11, 20, 34, 0.92), rgba(9, 16, 28, 0.96));
  border: 1px solid rgba(117, 157, 209, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(113, 171, 255, 0.06),
    0 30px 55px rgba(0, 0, 0, 0.48);
}

.metric,
.card,
.legal,
.form-panel,
.notice,
.mini {
  background:
    linear-gradient(160deg, rgba(13, 24, 40, 0.9), rgba(10, 18, 30, 0.92));
  border: 1px solid rgba(118, 161, 217, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(102, 157, 255, 0.04),
    0 14px 28px rgba(1, 9, 24, 0.5);
}

.notice {
  border-left: 4px solid var(--primary);
}

.notice.good {
  border-left-color: #27d79a;
}

.notice.warn {
  border-left-color: #ffb463;
}

.card::after,
.metric::after,
.hero-panel::after,
.band::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -20%;
  width: 40%;
  height: 300%;
  transform: rotate(20deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: transform 0.9s ease;
}

.card:hover::after,
.metric:hover::after,
.hero-panel:hover::after,
.band:hover::after {
  transform: rotate(20deg) translateX(260%);
}

.card,
.metric,
.mini,
.btn,
.site-nav a,
.site-footer a,
.nav-mega-links a {
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease, color 0.24s ease, background 0.24s ease;
}

.card:hover,
.metric:hover,
.mini:hover {
  transform: translateY(-5px);
  border-color: rgba(115, 177, 255, 0.45);
  box-shadow: 0 18px 36px rgba(2, 18, 42, 0.64);
}

.btn-primary {
  background: linear-gradient(135deg, #2b6fff 0%, #1ac3ff 100%);
  box-shadow: 0 4px 12px rgba(21, 118, 255, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(22, 132, 255, 0.25);
}

.btn-secondary,
.btn-outline {
  background: rgba(14, 24, 40, 0.86);
  color: #dcecff;
  border: 1px solid rgba(123, 173, 244, 0.36);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(20, 33, 56, 0.96);
}

.site-header.scrolled .header-inner,
.site-header.scrolled .row {
  border-color: rgba(119, 167, 238, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(111, 172, 255, 0.14),
    0 24px 42px rgba(0, 0, 0, 0.5);
}

.footer-cta {
  background:
    radial-gradient(95% 150% at 20% -10%, rgba(38, 116, 255, 0.34), transparent 46%),
    radial-gradient(100% 180% at 100% 0%, rgba(26, 195, 255, 0.22), transparent 44%),
    linear-gradient(155deg, rgba(11, 20, 34, 0.92), rgba(9, 16, 28, 0.96));
  border: 1px solid rgba(117, 157, 209, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(113, 171, 255, 0.06),
    0 30px 55px rgba(0, 0, 0, 0.48);
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -20%;
  width: 40%;
  height: 300%;
  transform: rotate(20deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: transform 0.9s ease;
}

.footer-cta:hover::after {
  transform: rotate(20deg) translateX(260%);
}

.footer-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-mega {
  background:
    linear-gradient(160deg, rgba(10, 17, 30, 0.98), rgba(8, 14, 25, 0.99));
  border: 1px solid rgba(111, 158, 224, 0.35);
  box-shadow: 0 22px 44px rgba(1, 10, 25, 0.62);
}

.nav-mega-title {
  color: #5fb4ff;
}

.nav-mega-link-alt {
  color: #93cfff;
}

.nav-mega-links a:hover,
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #66bfff;
}

.site-to-top {
  background: linear-gradient(135deg, #1a58db, #3b82f6);
  box-shadow: 0 8px 24px rgba(18, 85, 210, 0.42);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==============================
   2026 IMMERSIVE ENHANCEMENTS
   ============================== */
html,
body {
  min-height: 100%;
}

main {
  position: relative;
  isolation: isolate;
}

main::before,
main::after {
  content: "";
  position: fixed;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
  animation: ambientFloat 16s ease-in-out infinite alternate;
}

main::before {
  left: -8vw;
  top: 10vh;
  background: #2d7eff;
}

main::after {
  right: -10vw;
  bottom: 8vh;
  background: #7a65ff;
  animation-delay: -4s;
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3vw, -2vh, 0) scale(1.08);
  }
}

.section {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.section-title {
  text-shadow: 0 0 18px rgba(65, 153, 255, 0.15);
}

.section-subtitle {
  max-width: 78ch;
}

.cards {
  gap: 1.25rem;
}

.card {
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

.card h3 a,
.card h2 a {
  color: #e8f2ff;
}

.card h3 a:hover,
.card h2 a:hover {
  color: #66bfff;
  text-decoration: none;
}

.metric strong {
  background: linear-gradient(135deg, #7bc0ff 0%, #dcecff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions .btn {
  border-radius: 16px;
}

.hero-panel .pill {
  border: 1px solid rgba(176, 214, 255, 0.3);
}

.table-wrap {
  backdrop-filter: blur(8px);
}

table {
  background: rgba(10, 18, 32, 0.84);
}

th {
  background: rgba(31, 74, 149, 0.55);
  color: #e9f4ff;
}

td {
  color: #d6e6ff;
  border-bottom: 1px solid rgba(145, 177, 223, 0.18);
}

.input,
textarea,
select {
  background: rgba(8, 14, 24, 0.9);
  border-color: rgba(123, 173, 244, 0.36);
  color: #e4f1ff;
}

.input::placeholder,
textarea::placeholder {
  color: #94add0;
}

.input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(120, 188, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(55, 140, 255, 0.18);
}

.legal h2,
.legal h3 {
  color: #dff0ff;
}

.legal a {
  color: #8ac8ff;
}

.site-footer .footer-grid section {
  padding: 0.3rem 0.1rem;
}

.footer-cta .btn {
  border-radius: 14px;
}

.site-to-top {
  backdrop-filter: blur(6px);
}

/* Enhanced page entrance */
body.js-ready main {
  animation: pageFadeIn 420ms ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active nav glow */
.site-nav a[aria-current="page"] {
  box-shadow: 0 0 0 1px rgba(94, 167, 255, 0.45), 0 0 18px rgba(68, 150, 255, 0.2);
}

/* Micro motion */
.site-nav a:hover {
  transform: translateY(-1px);
}

.footer-grid a:hover {
  transform: translateX(2px);
}

.is-hidden {
  display: none !important;
}

/* ======================================
   MATCHED GLOBAL HEADER (NEON DARK)
   ====================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header.modern-header {
  background: transparent;
  border-bottom: 1px solid rgba(80, 121, 197, 0.35);
  box-shadow: none;
  padding: 0.85rem 0 0.7rem;
}

.site-header.modern-header .header-shell {
  position: relative;
  border: 1px solid rgba(68, 121, 216, 0.5);
  border-radius: 24px;
  width: min(1520px, calc(100% - 2rem));
  max-width: none;
  margin-inline: auto;
  background:
    radial-gradient(120% 180% at 50% 100%, rgba(19, 70, 155, 0.26), rgba(7, 13, 25, 0.92) 55%),
    linear-gradient(135deg, rgba(9, 18, 35, 0.96), rgba(4, 9, 20, 0.98));
  box-shadow: inset 0 0 0 1px rgba(99, 153, 248, 0.08), 0 16px 36px rgba(0, 4, 12, 0.58);
}

.site-header.modern-header .header-shell::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 64, 255, 0), rgba(88, 141, 255, 0.8), rgba(109, 64, 255, 0));
}

.site-header.modern-header .header-inner {
  padding: 0.75rem 1.05rem;
  gap: 1.1rem;
  flex-wrap: nowrap;
}

.site-header.modern-header .brand {
  color: #e8f2ff;
  min-width: max-content;
}

.site-header.modern-header .brand small {
  color: #8fabd7;
}

.site-header.modern-header .brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 13px;
}

.site-header.modern-header .site-nav {
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  gap: 1.1rem;
}

.site-header.modern-header .site-nav.open {
  display: flex;
  position: fixed;
  inset: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 5rem 2rem 2rem;
  box-sizing: border-box;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: linear-gradient(180deg, #060b14 0%, #071022 50%, #060a13 100%);
  border: none;
  border-radius: 0;
  z-index: 9999;
  overflow-y: auto;
}

.site-header.modern-header .site-nav.open ul {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  border-top: none;
}

.site-header.modern-header .site-nav.open .site-nav>ul {
  margin-top: 1rem;
}

.site-header.modern-header .site-nav.open a {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  min-height: 52px;
  font-size: 1.1rem;
  border-radius: 0;
  border-bottom: 1px solid rgba(126, 164, 213, 0.15);
}

.site-header.modern-header .site-nav.open .header-actions {
  margin-top: auto;
  padding-top: 2rem;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Keep hamburger above overlay when menu is open */
.site-header:has(.site-nav.open) .nav-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10001;
}

.site-header.modern-header .site-nav.open .nav-mega {
  position: static;
  min-width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  margin-left: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-left: 3px solid rgba(95, 182, 255, 0.5);
  background: rgba(55, 129, 255, 0.08);
  padding: 0.5rem 0 0.5rem 1rem;
}

.site-header.modern-header .site-nav.open .nav-has-dropdown>a .nav-chevron {
  transition: transform 0.25s ease;
}

.site-header.modern-header .site-nav.open .nav-has-dropdown.open>a .nav-chevron {
  transform: rotate(180deg);
}

.site-header.modern-header .nav-toggle {
  display: none;
  border: 1px solid rgba(93, 144, 235, 0.6);
  background: rgba(4, 11, 22, 0.95);
  color: #d6e8ff;
}

.site-header.modern-header .site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: nowrap;
  min-width: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.site-header.modern-header .site-nav li {
  flex: 0 0 auto;
}

.site-header.modern-header .site-nav a {
  color: #d8e8ff;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  white-space: nowrap;
  line-height: 1.1;
}

.site-header.modern-header .site-nav a:hover,
.site-header.modern-header .site-nav a[aria-current="page"] {
  color: #5fb6ff;
  background: rgba(55, 129, 255, 0.12);
}

.site-header.modern-header .nav-mega {
  left: 0;
  top: calc(100% + 0.65rem);
  transform: none;
  min-width: 360px;
  max-width: 420px;
  border-radius: 18px;
  border-color: rgba(106, 156, 238, 0.33);
  background: linear-gradient(160deg, rgba(7, 13, 24, 0.98), rgba(6, 12, 21, 0.99));
}

.site-header.modern-header .nav-mega-inner {
  display: block;
}

.site-header.modern-header .nav-mega-links {
  gap: 0.1rem;
}

.site-header.modern-header .nav-mega-links a {
  color: #d6e8ff;
  font-weight: 500;
  padding: 0.52rem 0.5rem;
}

.site-header.modern-header .nav-mega-links a:hover {
  background: rgba(59, 136, 255, 0.16);
  color: #69bbff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.header-search {
  margin: 0;
}

.header-search input {
  height: 46px;
  width: clamp(150px, 14vw, 230px);
  border-radius: 999px;
  border: 1px solid rgba(87, 149, 245, 0.55);
  background: rgba(3, 10, 20, 0.95);
  color: #dceeff;
  font: inherit;
  padding: 0 1.05rem;
  outline: none;
}

.header-search input::placeholder {
  color: #83a8d9;
}

.header-search input:focus {
  border-color: rgba(108, 177, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(71, 147, 255, 0.18);
}

.header-grid {
  display: inline-grid;
  grid-template-columns: repeat(3, 6px);
  gap: 3px;
  width: 42px;
  height: 42px;
  place-content: center;
  border-radius: 12px;
  border: 1px solid rgba(93, 144, 235, 0.55);
  background: rgba(6, 14, 28, 0.94);
  cursor: pointer;
}

.header-grid span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #c7ddff;
}

.header-grid:hover {
  background: rgba(20, 34, 58, 0.98);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.34rem 0.9rem 0.34rem 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 147, 235, 0.6);
  background: rgba(4, 10, 20, 0.95);
  color: #f2f7ff !important;
  min-height: 46px;
  white-space: nowrap;
}

.header-call span {
  white-space: nowrap;
}

@media (max-width: 1460px) {
  .site-header.modern-header .site-nav {
    gap: 0.75rem;
  }

  .site-header.modern-header .site-nav a {
    padding: 0.5rem 0.66rem;
    font-size: 0.95rem;
  }

  .header-search input {
    width: clamp(128px, 11vw, 180px);
  }

  .header-call {
    padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  }
}

.header-call:hover {
  color: #ffffff !important;
  background: rgba(13, 24, 42, 0.99);
}

@media (max-width: 1200px) {
  .site-header.modern-header .brand span {
    font-size: 1rem;
  }

  .site-header.modern-header .brand small {
    font-size: 0.63rem;
  }
}

@media (max-width: 980px) {
  .site-header.modern-header .header-shell {
    border-radius: 0;
  }

  .site-header.modern-header .header-inner {
    flex-wrap: wrap;
    row-gap: 0.7rem;
    padding: 0.6rem 0.75rem;
  }

  .site-header.modern-header .nav-toggle {
    display: inline-flex;
  }

  .site-header.modern-header .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.8rem;
  }

  .site-header.modern-header .site-nav.open {
    display: flex;
  }

  .site-header.modern-header .site-nav ul {
    width: 100%;
    border-top: 1px solid rgba(99, 141, 211, 0.35);
    padding-top: 0.55rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.modern-header .site-nav a {
    padding: 0.75rem 0.95rem;
  }

  .site-header.modern-header .nav-mega {
    position: static;
    min-width: 100%;
    max-width: 100%;
    margin-top: 0.45rem;
    border-radius: 14px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.6rem;
    margin-left: 0;
  }

  .header-search input {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header.modern-header .brand-logo {
    width: 46px;
    height: 46px;
  }

  .site-header.modern-header .brand small {
    display: none;
  }

  .header-actions {
    grid-template-columns: 1fr auto;
  }

  .header-call {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* ======================================
   FULL PAGE THEME + MODERN MOTION
   ====================================== */
body.full-page-theme {
  background-attachment: fixed, fixed, fixed, fixed;
}

body.full-page-theme main {
  min-height: 100svh;
}

body.full-page-theme main#main>section {
  min-height: clamp(560px, 92svh, 980px);
  display: flex;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
}

body.full-page-theme main#main>section+section {
  border-top: 1px solid rgba(108, 149, 218, 0.15);
}

body.full-page-theme main.section {
  min-height: calc(100svh - 190px);
}

body.full-page-theme .hero-panel,
body.full-page-theme .band {
  animation: liftIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.full-page-theme .card,
body.full-page-theme .metric,
body.full-page-theme .mini,
body.full-page-theme .form-panel,
body.full-page-theme .legal {
  animation: softRise 700ms ease both;
  animation-delay: var(--stagger, 0ms);
}

.page-section {
  opacity: 1;
  transform: none;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 650ms ease;
}

.page-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Safety: never hide a whole page because of container-level reveal classes */
main.section>.container.page-section,
main.section>.container.page-section.in-view {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  body.full-page-theme main#main>section {
    min-height: auto;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

/* Home page: match contact-style tighter spacing (no forced viewport-height sections) */
body.home-page.full-page-theme main#main>section {
  min-height: auto;
  display: block;
  align-items: unset;
}

body.home-page.full-page-theme main#main>section+section {
  border-top: none;
}

body.home-page.full-page-theme main.section {
  min-height: auto;
  padding-top: 0;
}

body.home-page .hero:not(.hero-home) {
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

body.home-page .section {
  padding-top: clamp(1rem, 2.2vw, 1.8rem);
  padding-bottom: clamp(1rem, 2.2vw, 1.8rem);
}

/* About page: remove full-height sections (no min-height: 92svh) */
body.about-page.full-page-theme main#main>section {
  min-height: auto;
  display: block;
  align-items: unset;
}

/* Warranty page & Delivery page: match reference spacing (no forced viewport-height sections) */
body.warranty-page.full-page-theme main#main>section,
body.delivery-page.full-page-theme main#main>section {
  min-height: auto;
  display: block;
  align-items: unset;
}

body.warranty-page.full-page-theme main.section,
body.delivery-page.full-page-theme main.section {
  min-height: auto;
}

/* Price match page: match reference spacing (no forced viewport-height sections) */
body.price-match-page.full-page-theme main#main>section {
  min-height: auto;
  display: block;
  align-items: unset;
}

body.price-match-page.full-page-theme main.section {
  min-height: auto;
}

/* Contact page: match reference spacing (no forced viewport-height sections) */
body.contact-page.full-page-theme main#main>section {
  min-height: auto;
  display: block;
  align-items: unset;
}

body.contact-page.full-page-theme main#main>section+section {
  border-top: none;
}

body.contact-page.full-page-theme main.section {
  min-height: auto;
  padding-top: 0;
}

/* Global hover visibility upgrades */
a:hover,
a:focus-visible {
  color: #fff;
}

.site-header.modern-header .site-nav a:hover,
.site-header.modern-header .site-nav a:focus-visible,
.site-header.modern-header .site-nav a[aria-current="page"] {
  color: #fff !important;
  background: #000 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 12px rgba(0, 0, 0, 0.45);
}

.site-header.modern-header .nav-mega-links a:hover,
.site-header.modern-header .nav-mega-links a:focus-visible {
  color: #fff !important;
  background: #000 !important;
}

.card h2 a:hover,
.card h3 a:hover,
.card h2 a:focus-visible,
.card h3 a:focus-visible {
  color: #fff !important;
  background: #000;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.8);
  text-underline-offset: 0.18em;
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  color: #fff !important;
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff !important;
  background: #000;
  text-shadow: none;
}

th:hover,
td:hover {
  color: #f2f8ff;
}

/* FAQ readability */
body.faq-page .page-header h1,
body.faq-page h2 {
  color: #f4f9ff;
}

body.faq-page .section-subtitle {
  color: #c7dbf8;
  font-size: 1.02rem;
  line-height: 1.75;
}

body.faq-page .faq-list .card {
  border-color: rgba(130, 179, 247, 0.32);
  background: linear-gradient(160deg, rgba(12, 22, 38, 0.96), rgba(8, 15, 28, 0.96));
}

body.faq-page .faq-list .card h3 {
  color: #f2f8ff;
  font-size: 1.14rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

body.faq-page .faq-list .card p,
body.faq-page .faq-list .card li {
  color: #d8e8ff;
  font-size: 1rem;
  line-height: 1.8;
}

body.faq-page .faq-list .card a {
  color: #eaf4ff;
  text-decoration: underline;
  text-decoration-color: rgba(167, 211, 255, 0.8);
  text-underline-offset: 0.16em;
}

/* High-contrast readability for notice/example blocks */
.notice {
  background: rgba(255, 253, 245, 0.98) !important;
  border: 1px solid rgba(180, 160, 100, 0.4) !important;
}

.notice.warn {
  background: rgba(255, 251, 235, 0.98) !important;
  border-color: rgba(245, 158, 11, 0.45) !important;
}

.notice.good {
  background: rgba(236, 253, 245, 0.98) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
}

.notice,
.notice p,
.notice li {
  color: #1a1a1a !important;
  line-height: 1.75;
}

.notice strong {
  color: #0d0d0d !important;
}

.notice a {
  color: #1a3a5c !important;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-color: rgba(26, 58, 92, 0.8);
}

/* Footer typography and button polish */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer li {
  font-weight: 600;
}

.site-footer h2,
.site-footer h3 {
  font-weight: 700;
}

.site-footer .footer-cta .btn {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-footer .footer-cta .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #dff0ff 100%) !important;
  color: #0f3f90 !important;
  border: 1px solid rgba(157, 204, 255, 0.55);
  box-shadow: 0 10px 24px rgba(117, 190, 255, 0.28);
}

.site-footer .footer-cta .btn-primary:hover,
.site-footer .footer-cta .btn-primary:focus-visible {
  background: linear-gradient(135deg, #f7fbff 0%, #cfe9ff 100%) !important;
  color: #0a377f !important;
  box-shadow: 0 14px 26px rgba(132, 204, 255, 0.36);
}

/* Match header/footer typography to display headline font */
.site-header .site-nav a,
.site-header .header-call,
.site-header .header-search input,
.site-footer a,
.site-footer p,
.site-footer li {
  font-family: var(--font-display);
}

.site-footer .footer-cta .btn-secondary:hover,
.site-footer .footer-cta .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Remove black hover backgrounds in footer links */
.site-footer a:hover,
.site-footer a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  background: transparent !important;
  color: #dff0ff !important;
  text-shadow: 0 0 10px rgba(120, 190, 255, 0.28);
}

/* About page professional integration */
.about-page-pro {
  --about-bg-card: rgba(11, 20, 34, 0.92);
  --about-border: rgba(148, 163, 184, 0.14);
  --about-border-strong: rgba(95, 170, 255, 0.3);
  --about-text-main: #f1f5ff;
  --about-text-sub: #b8cae3;
  --about-accent: #4ea0ff;
  --about-warm: #f5b14a;
}

.about-page-pro .about-pro-main {
  position: relative;
  overflow: hidden;
  padding-bottom: 2.5rem;
}

.about-page-pro .about-pro-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.about-page-pro .about-pro-glow-blue {
  top: -140px;
  right: -120px;
  background: #2f7dff;
}

.about-page-pro .about-pro-glow-amber {
  bottom: 120px;
  left: -140px;
  background: #f59e0b;
}

.about-page-pro .about-pro-main .container {
  position: relative;
  z-index: 1;
}

.about-page-pro .about-pro-hero {
  padding: 4.4rem 0 2.8rem;
}

.about-page-pro .about-pro-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--about-accent);
  margin-bottom: 1.2rem;
}

.about-page-pro .about-pro-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 1.2rem;
  color: var(--about-text-main);
  max-width: 920px;
}

.about-page-pro .about-pro-title em {
  color: var(--about-accent);
}

.about-page-pro .about-pro-lead {
  max-width: 760px;
  color: var(--about-text-sub);
  font-size: 1.03rem;
  line-height: 1.85;
}

.about-page-pro .about-pro-stats-wrap {
  padding-bottom: 2.6rem;
}

.about-page-pro .about-pro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--about-border);
}

.about-page-pro .about-pro-stat {
  text-align: center;
  padding: 1.8rem 1.1rem;
  background: var(--about-bg-card);
}

.about-page-pro .about-pro-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--about-text-main);
  margin-bottom: 0.2rem;
}

.about-page-pro .about-pro-stat-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #99adc9;
  font-weight: 600;
}

.about-page-pro .about-pro-section {
  padding: 2.8rem 0;
}

.about-page-pro .about-pro-section-topline {
  border-top: 1px solid var(--about-border);
}

.about-page-pro .about-pro-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
}

.about-page-pro .about-pro-grid-2 p {
  color: var(--about-text-sub);
  line-height: 1.82;
}

.about-page-pro .about-pro-sub-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--about-accent);
  margin-bottom: 0.95rem;
}

.about-page-pro .about-pro-sub-label-warm {
  color: var(--about-warm);
}

.about-page-pro .about-pro-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--about-text-main);
}

.about-page-pro .about-pro-highlight {
  border: 1px solid var(--about-border);
  border-left: 3px solid var(--about-accent);
  border-radius: 0 14px 14px 0;
  padding: 1.2rem 1.1rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(59, 130, 246, 0.1));
}

.about-page-pro .about-pro-highlight p {
  margin: 0;
  font-family: var(--font-display);
  color: #eef6ff;
  font-size: 1.13rem;
}

.about-page-pro .about-pro-center-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.about-page-pro .about-pro-center-head p {
  color: var(--about-text-sub);
}

.about-page-pro .about-pro-center-head .about-pro-sub-label {
  display: inline-block;
}

.about-page-pro .about-pro-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-page-pro .about-pro-service {
  border: 1px solid var(--about-border);
  border-radius: 16px;
  background: var(--about-bg-card);
  padding: 1.4rem 1.3rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.about-page-pro .about-pro-service:hover {
  transform: translateY(-3px);
  border-color: var(--about-border-strong);
}

.about-page-pro .about-pro-service h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.8rem;
  color: var(--about-text-main);
}

.about-page-pro .about-pro-service ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
  color: var(--about-text-sub);
}

.about-page-pro .about-pro-service li {
  margin-bottom: 0.35rem;
}

.about-page-pro .about-pro-service a {
  font-weight: 700;
  color: #a6d4ff;
}

.about-page-pro .about-pro-service a:hover {
  color: #fff;
  text-decoration: underline;
}

.about-page-pro .about-pro-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.about-page-pro .about-pro-why {
  border: 1px solid var(--about-border);
  border-radius: 14px;
  background: var(--about-bg-card);
  padding: 1rem 1.1rem;
}

.about-page-pro .about-pro-why h3 {
  margin: 0 0 0.45rem;
  color: var(--about-text-main);
  font-size: 1.02rem;
}

.about-page-pro .about-pro-why p {
  margin: 0;
  color: var(--about-text-sub);
  font-size: 0.95rem;
}

.about-page-pro .about-pro-price-banner {
  border: 1px solid var(--about-border);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.13), rgba(245, 158, 11, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.about-page-pro .about-pro-price-banner h3 {
  margin: 0.3rem 0 0.45rem;
  color: #f4f9ff;
}

.about-page-pro .about-pro-price-banner p {
  margin: 0;
  color: #c5d9f8;
}

.about-page-pro .about-pro-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #f5b14a;
}

.about-page-pro .about-pro-contact {
  border-top: 1px solid var(--about-border);
  text-align: center;
  padding: 3rem 0 1.4rem;
}

.about-page-pro .about-pro-contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  margin: 0 0 1rem;
}

.about-page-pro .about-pro-contact-row {
  display: flex;
  justify-content: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  color: var(--about-text-sub);
}

.about-page-pro .about-pro-contact-row a {
  color: #dcecff;
  font-weight: 600;
}

.about-page-pro .about-pro-contact-row a:hover {
  color: #fff;
}

.about-page-pro .about-pro-footnote {
  margin-top: 1.5rem;
  color: #90a8ca;
  font-size: 0.82rem;
}

@media (max-width: 980px) {

  .about-page-pro .about-pro-grid-2,
  .about-page-pro .about-pro-services-grid,
  .about-page-pro .about-pro-why-grid {
    grid-template-columns: 1fr;
  }

  .about-page-pro .about-pro-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-pro .about-pro-price-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Site search page */
.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.search-page-input {
  min-height: 52px;
  border-radius: 12px;
}

.search-results-meta {
  margin-bottom: 1rem;
}

.search-results {
  display: grid;
  gap: 0.9rem;
}

.search-result-card h2 {
  margin-bottom: 0.35rem;
}

.search-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-cat {
  display: inline-flex;
  border: 1px solid rgba(136, 183, 246, 0.32);
  background: rgba(15, 38, 76, 0.58);
  color: #dceeff;
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

mark {
  background: rgba(250, 204, 21, 0.28);
  color: #fff;
  padding: 0 0.12em;
  border-radius: 4px;
}

/* Header SearchLite popup */
body.searchlite-open {
  overflow: hidden;
}

.searchlite[hidden] {
  display: none !important;
}

.searchlite {
  position: fixed;
  inset: 0;
  z-index: 12000;
}

.searchlite__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 17, 0.74);
  backdrop-filter: blur(6px);
}

.searchlite__panel {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  margin: 8vh auto 0;
  border: 1px solid rgba(109, 149, 214, 0.3);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(8, 15, 29, 0.97), rgba(6, 11, 22, 0.98));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.searchlite__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(109, 149, 214, 0.2);
}

.searchlite__input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(109, 149, 214, 0.4);
  background: rgba(3, 9, 18, 0.96);
  color: #e8f1ff;
  font: inherit;
  padding: 0 1rem;
  outline: none;
}

.searchlite__input:focus {
  border-color: rgba(111, 180, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(62, 138, 255, 0.18);
}

.searchlite__full {
  height: 48px;
  border: 1px solid rgba(115, 160, 233, 0.45);
  border-radius: 12px;
  background: rgba(57, 128, 241, 0.16);
  color: #dcecff;
  font: inherit;
  font-weight: 600;
  padding: 0 1rem;
  cursor: pointer;
}

.searchlite__hint {
  color: #8ca9d4;
  font-size: 0.82rem;
  padding: 0.6rem 1rem 0.2rem;
}

.searchlite__results {
  max-height: min(60vh, 520px);
  overflow: auto;
  padding: 0.5rem;
}

.searchlite__item {
  display: block;
  border: 1px solid rgba(109, 149, 214, 0.2);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  margin-bottom: 0.5rem;
  background: rgba(8, 16, 30, 0.82);
  text-decoration: none;
}

.searchlite__item strong {
  display: block;
  color: #eaf3ff;
  margin-bottom: 0.2rem;
}

.searchlite__item span {
  display: block;
  color: #9ab2d6;
  font-size: 0.86rem;
  line-height: 1.5;
}

.searchlite__item:hover,
.searchlite__item:focus-visible {
  border-color: rgba(127, 187, 255, 0.55);
  background: rgba(15, 30, 55, 0.9);
}

.searchlite__empty {
  color: #aac1e0;
  font-size: 0.9rem;
  padding: 0.8rem;
}

@media (max-width: 680px) {
  .search-page-form {
    grid-template-columns: 1fr;
  }

  .searchlite__panel {
    width: calc(100% - 1rem);
    margin-top: 5vh;
  }

  .searchlite__form {
    grid-template-columns: 1fr;
  }
}

/* Footer CTA integrated as part of footer (not standalone band) */
.site-footer .footer-cta {
  margin: 2rem 0 2.2rem;
  padding: 2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(117, 157, 209, 0.28);
  background:
    radial-gradient(95% 130% at 20% -10%, rgba(38, 116, 255, 0.22), transparent 48%),
    linear-gradient(155deg, rgba(11, 20, 34, 0.88), rgba(9, 16, 28, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(113, 171, 255, 0.06),
    0 16px 30px rgba(0, 0, 0, 0.3);
}

.site-footer .footer-cta h2 {
  margin-bottom: 0.55rem;
}

.site-footer .footer-cta p {
  margin-bottom: 1.1rem;
  max-width: 760px;
}

.site-footer .footer-grid {
  margin-top: 0.25rem;
}

/* Header + Footer typography – force display font everywhere */
.site-header,
.site-header .site-nav a,
.site-header .header-actions,
.site-header .header-search input,
.site-header .header-call,
.site-header .nav-mega-links a,
.site-header .brand,
.site-header .brand small,
.site-footer,
.site-footer p,
.site-footer a,
.site-footer .btn,
.site-footer h2,
.site-footer h3,
.site-footer .footer-grid h3 {
  font-family: var(--font-display) !important;
}

/* ============================================
   HOME PAGE – Aimlake MS Homepage Layout
   (Replicated from aimlake-ms-homepage.html)
   ============================================ */

/* Reveal animation */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero – home layout */
.hero-home {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__accent-dot {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 60px;
  right: -80px;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero__accent-dot--warm {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--warn-bg) 0%, transparent 70%);
  top: auto;
  right: auto;
  bottom: -50px;
  left: 10%;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__title .line-break {
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #fff 0%, #e8eef5 100%);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  background: transparent;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.hero__actions .btn svg {
  width: 16px;
  height: 16px;
}

.hero__trust {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero__trust-icon--blue {
  background: var(--accent-glow);
  color: var(--accent);
}

.hero__trust-icon--amber {
  background: var(--warn-bg);
  color: var(--warn);
}

.hero__trust-icon--green {
  background: var(--success-bg);
  color: var(--success);
}

/* Services section */
.services-home {
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-header__text {
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card--print::after {
  background: var(--accent);
}

.svc-card--sign::after {
  background: var(--warn);
}

.svc-card--hardware::after {
  background: var(--success);
}

.svc-card--support::after {
  background: #7C3AED;
}

.svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.svc-card__icon svg {
  width: 24px;
  height: 24px;
}

.svc-card--print .svc-card__icon {
  background: var(--accent-glow);
  color: var(--accent);
}

.svc-card--sign .svc-card__icon {
  background: var(--warn-bg);
  color: var(--warn);
}

.svc-card--hardware .svc-card__icon {
  background: var(--success-bg);
  color: var(--success);
}

.svc-card--support .svc-card__icon {
  background: rgba(124, 58, 237, 0.15);
  color: #7C3AED;
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.svc-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-card__list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.65;
}

.svc-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  opacity: 0.4;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease;
}

.svc-card__link:hover {
  gap: 10px;
  color: var(--accent-soft);
}

.svc-card__link svg {
  width: 14px;
  height: 14px;
}

/* Price Match – home page section (scoped to avoid conflict with legacy .price-match banner styles) */
body.home-page section.price-match {
  margin: 0;
  padding: 28px 0 44px;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: block;
  align-items: unset;
  justify-content: unset;
  gap: 0;
  flex-wrap: nowrap;
}

.price-match__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
}

.price-match__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
}

.price-match__card::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.price-match__card .price-match__content {
  position: relative;
  z-index: 2;
}

.price-match__card .price-match__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warn);
  background: var(--warn-bg);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.price-match__card .price-match__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.price-match__card .price-match__title em {
  font-style: italic;
  color: var(--warn);
}

.price-match__card .price-match__text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.price-match__card .price-match__example {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.price-match__card .price-match__example strong {
  color: var(--text-primary);
  font-weight: 600;
}

.price-match__card .price-match__example .arrow {
  color: var(--warn);
  font-weight: 600;
}

.price-match__cta-area {
  position: relative;
  z-index: 2;
  text-align: center;
}

.btn--amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--warn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--amber:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

/* Showcase / What We Make */
.showcase {
  padding: 80px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.showcase-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: default;
}

.showcase-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.showcase-item__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

/* Features / Why Us */
.features-home {
  padding: 80px 0;
  background: var(--bg-card);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.feat-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 18px;
}

.feat-card__title {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feat-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process / How It Works */
.process-home {
  padding: 80px 0;
  background: var(--bg-card);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.step:hover .step__circle {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: scale(1.08);
}

.step__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Testimonials */
.testimonials-home {
  padding: 80px 0;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.3s ease;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.test-card__stars {
  color: var(--warn);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.test-card__quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.test-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent);
}

.test-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.test-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CTA */
.cta-home {
  padding: 0 0 80px;
}

.cta__card {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
}

.cta__card::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--white:hover {
  background: linear-gradient(135deg, #f0f4f8 0%, #dde4eb 100%);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Home compact density */
body.home-page .hero-home {
  padding: 56px 0 34px;
}

body.home-page .hero__trust {
  margin-top: 34px;
  padding-top: 18px;
  gap: 20px;
}

body.home-page .services-home,
body.home-page .showcase,
body.home-page .features-home,
body.home-page .process-home,
body.home-page .testimonials-home {
  padding: 34px 0;
}

body.home-page .section-header {
  margin-bottom: 24px;
}

body.home-page section.price-match {
  padding: 14px 0 22px;
}

body.home-page .price-match__card {
  padding: 42px;
  gap: 30px;
}

body.home-page .cta-home {
  padding: 0 0 34px;
}

body.home-page .cta__card {
  padding: 52px 44px;
}

/* Home page responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 54px 0 34px;
  }

  .hero__title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .services-grid,
  .features-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .price-match__card {
    grid-template-columns: 1fr;
    padding: 30px 22px;
    text-align: center;
  }

  body.home-page section.price-match {
    padding: 10px 0 16px;
  }

  .price-match__text {
    margin: 0 auto 12px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .cta__card {
    padding: 34px 22px;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   SERVICES CATALOG PAGE
   (Replicated from aimlake-ms-services-catalog.html)
   ============================================ */

body.services-catalog-page.full-page-theme main#main>section,
body.services-catalog-page.full-page-theme main#main>.container {
  min-height: auto;
  display: block;
  align-items: unset;
}

.page-hero-catalog {
  padding: 40px 0 40px;
  position: relative;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.page-hero__breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
  color: var(--accent);
}

.page-hero__breadcrumb .sep {
  opacity: 0.3;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.page-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.page-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.page-hero__stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.page-hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Filter bar */
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin-bottom: 48px;
}

.filter-bar__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 0;
}

.filter-bar__inner::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--border);
}

.filter-tab.active {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.filter-tab__icon {
  font-size: 1rem;
  line-height: 1;
}

.filter-tab__count {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--bg-card-hover);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 100px;
}

.filter-tab.active .filter-tab__count {
  background: var(--accent);
  color: #fff;
}

/* Catalog sections */
.catalog-section {
  margin-bottom: 64px;
  scroll-margin-top: 120px;
}

.cat-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.cat-header__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  position: relative;
}

.cat-header__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1.5px dashed;
  opacity: 0.15;
}

.cat-header__icon--print {
  background: var(--accent-glow);
  color: var(--accent);
}

.cat-header__icon--print::after {
  border-color: var(--accent);
}

.cat-header__icon--sign {
  background: var(--warn-bg);
  color: var(--warn);
}

.cat-header__icon--sign::after {
  border-color: var(--warn);
}

.cat-header__icon--hardware {
  background: var(--success-bg);
  color: var(--success);
}

.cat-header__icon--hardware::after {
  border-color: var(--success);
}

.cat-header__icon--install {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.cat-header__icon--install::after {
  border-color: var(--danger);
}

.cat-header__content {
  flex: 1;
}

.cat-header__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cat-header__tag--print {
  color: var(--accent);
}

.cat-header__tag--sign {
  color: var(--warn);
}

.cat-header__tag--hardware {
  color: var(--success);
}

.cat-header__tag--install {
  color: var(--danger);
}

.cat-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cat-header__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

.cat-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: var(--bg-card);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.cat-header__cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-header__cta svg {
  width: 14px;
  height: 14px;
}

/* Service item grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.svc-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.svc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0 0 4px 0;
}

.svc-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.svc-item:hover::before {
  height: 100%;
}

.catalog-section--print .svc-item::before {
  background: var(--accent);
}

.catalog-section--sign .svc-item::before {
  background: var(--warn);
}

.catalog-section--hardware .svc-item::before {
  background: var(--success);
}

.catalog-section--install .svc-item::before {
  background: var(--danger);
}

.svc-item__icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.svc-item__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.svc-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.svc-item__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.catalog-section--print .svc-item__tag {
  background: var(--accent-glow);
  color: var(--accent);
}

.catalog-section--sign .svc-item__tag {
  background: var(--warn-bg);
  color: var(--warn);
}

.catalog-section--hardware .svc-item__tag {
  background: var(--success-bg);
  color: var(--success);
}

.catalog-section--install .svc-item__tag {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

/* Guarantee strip */
.guarantee-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin: 20px 0 64px;
  position: relative;
  overflow: hidden;
}

.guarantee-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 24px 24px;
}

.guarantee-strip__content {
  position: relative;
  z-index: 1;
}

.guarantee-strip__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warn);
  background: var(--warn-bg);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.guarantee-strip__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.guarantee-strip__title em {
  font-style: italic;
  color: var(--warn);
}

.guarantee-strip__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--warn);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  text-decoration: none;
}

.btn-amber:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}

.btn-amber svg {
  width: 14px;
  height: 14px;
}

/* Bottom CTA */
.bottom-cta-catalog {
  padding: 0 0 80px;
}

.bottom-cta__card {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
}

.bottom-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.bottom-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.bottom-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Catalog responsive */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .cat-header {
    flex-direction: column;
    gap: 16px;
  }

  .cat-header__cta {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .page-hero-catalog {
    padding: 80px 0 50px;
  }

  .page-hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .guarantee-strip {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .guarantee-strip__text {
    margin: 0 auto;
  }

  .bottom-cta__card {
    padding: 48px 24px;
  }

  .filter-bar__inner {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .bottom-cta__actions {
    flex-direction: column;
  }

  .bottom-cta__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   WARRANTY PAGE
   ============================================ */
.page-hero-warranty {
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
}

.page-hero-warranty .page-hero__breadcrumb {
  margin-bottom: 24px;
}

.page-hero-warranty .page-hero__title {
  margin-bottom: 18px;
}

.page-hero-warranty .page-hero__subtitle {
  margin: 0 auto;
  max-width: 540px;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.trust-badge__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background: var(--accent-glow);
  color: var(--accent);
}

/* Plans grid */
.plans-section {
  padding: 0 0 80px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.plan-card__bar {
  height: 5px;
  width: 100%;
}

.plan-card--pc .plan-card__bar {
  background: var(--success);
}

.plan-card--server .plan-card__bar {
  background: var(--accent);
}

.plan-card--network .plan-card__bar {
  background: #8B5CF6;
}

.plan-card--pos .plan-card__bar {
  background: var(--warn);
}

.plan-card--signage .plan-card__bar {
  background: #EC4899;
}

.plan-card--install .plan-card__bar {
  background: var(--text-muted);
}

.plan-card__body {
  padding: 32px 28px;
}

.plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.plan-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.plan-card--pc .plan-card__icon {
  background: rgba(16, 185, 129, 0.15);
}

.plan-card--server .plan-card__icon {
  background: var(--accent-glow);
}

.plan-card--network .plan-card__icon {
  background: rgba(139, 92, 246, 0.15);
}

.plan-card--pos .plan-card__icon {
  background: var(--warn-bg);
}

.plan-card--signage .plan-card__icon {
  background: rgba(236, 72, 153, 0.15);
}

.plan-card--install .plan-card__icon {
  background: rgba(100, 116, 139, 0.15);
}

.plan-card__duration {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--bg-card-hover);
  color: var(--text-muted);
  white-space: nowrap;
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-card__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.plan-card__intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.plan-card__features {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.plan-card__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  font-weight: 700;
}

.plan-card--pc .plan-card__check {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.plan-card--server .plan-card__check {
  background: var(--accent-glow);
  color: var(--accent);
}

.plan-card--network .plan-card__check {
  background: rgba(139, 92, 246, 0.2);
  color: #A78BFA;
}

.plan-card--pos .plan-card__check {
  background: var(--warn-bg);
  color: var(--warn);
}

.plan-card--signage .plan-card__check {
  background: rgba(236, 72, 153, 0.2);
  color: #F472B6;
}

.plan-card--install .plan-card__check {
  background: rgba(100, 116, 139, 0.2);
  color: var(--text-muted);
}

.plan-card__optional {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card-hover);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.plan-card__link {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.plan-card__link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.plan-card__link a:hover {
  text-decoration: underline;
}

.plans-grid .plan-card:nth-child(1) {
  transition-delay: 0s;
}

.plans-grid .plan-card:nth-child(2) {
  transition-delay: 0.08s;
}

.plans-grid .plan-card:nth-child(3) {
  transition-delay: 0.16s;
}

.plans-grid .plan-card:nth-child(4) {
  transition-delay: 0.08s;
}

.plans-grid .plan-card:nth-child(5) {
  transition-delay: 0.16s;
}

.plans-grid .plan-card:nth-child(6) {
  transition-delay: 0.24s;
}

/* Comparison table */
.comparison-section {
  padding: 80px 0;
}

.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.warranty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.warranty-table thead {
  background: var(--bg-card-hover);
}

.warranty-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.warranty-table thead th:first-child {
  padding-left: 28px;
}

.warranty-table thead th:last-child {
  padding-right: 28px;
}

.warranty-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.warranty-table tbody td:first-child {
  padding-left: 28px;
  font-weight: 600;
  color: var(--text-primary);
}

.warranty-table tbody td:last-child {
  padding-right: 28px;
}

.warranty-table tbody tr:last-child td {
  border-bottom: none;
}

.warranty-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.05);
}

.table-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.table-dash {
  color: var(--text-muted);
  font-size: 1rem;
  opacity: 0.6;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Terms section */
.terms-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.term-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.term-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.term-card__icon {
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}

.term-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.term-card__text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FAQ accordion */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.faq-item.open .faq-q__icon {
  background: var(--accent-glow);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-a__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}

/* CTA banner */
.cta-banner-warranty {
  padding: 0 0 100px;
}

.cta-banner__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 24px 24px;
}

.cta-banner__card::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 65%);
  top: -150px;
  right: -80px;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cta-banner__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-ghost-warranty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost-warranty:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

/* Warranty & Delivery section header */
.warranty-page .section-header,
.delivery-page .section-header {
  margin-bottom: 44px;
}

.warranty-page .section-header--center .section-header__text,
.delivery-page .section-header--center .section-header__text {
  margin: 0 auto;
}

.warranty-page .section-tag,
.delivery-page .section-tag {
  color: var(--accent);
  margin-bottom: 12px;
}

.warranty-page .section-tag::before,
.delivery-page .section-tag::before {
  background: var(--accent);
}

.warranty-page .section-header__title,
.delivery-page .section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 10px;
}

.warranty-page .section-header__text,
.delivery-page .section-header__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
}

/* Warranty & Delivery reveal */
.warranty-page .reveal,
.delivery-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

.warranty-page .reveal.visible,
.delivery-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delivery page: proper section gaps and spacing */
.delivery-page .page-hero-warranty {
  padding: 80px 0 72px;
}

.delivery-page .plans-section {
  padding: 72px 0 80px;
}

.delivery-page .plans-section .container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-page .plans-grid {
  gap: 24px;
  margin-top: 0;
}

.delivery-page .terms-section {
  padding: 80px 0 88px;
}

.delivery-page .terms-section .section-header {
  margin-bottom: 36px;
}

.delivery-page .terms-grid {
  gap: 24px;
}

.delivery-page .cta-banner-warranty {
  padding: 80px 0 100px;
}

.delivery-page .term-card__quote {
  font-style: italic;
  color: var(--text-primary);
  margin: 0.75em 0;
  padding-left: 1em;
  border-left: 3px solid var(--accent);
}

/* Warranty responsive */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .terms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero-warranty {
    padding: 60px 0 40px;
  }

  .delivery-page .page-hero-warranty {
    padding: 60px 0 48px;
  }

  .delivery-page .plans-section {
    padding: 48px 0 56px;
  }

  .delivery-page .terms-section {
    padding: 56px 0 64px;
  }

  .delivery-page .cta-banner-warranty {
    padding: 64px 0 80px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: center;
  }

  .cta-banner__text {
    margin: 0 auto;
  }

  .cta-banner__actions {
    align-items: center;
  }

  .warranty-table {
    font-size: 0.8rem;
  }

  .warranty-table thead th,
  .warranty-table tbody td {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .trust-row {
    flex-direction: column;
    align-items: center;
  }
}

/* PC Warranty Policy page (official policy document) */
.policy-list {
  margin: 0.75em 0;
  padding-left: 1.25em;
  color: var(--text-secondary);
}

.policy-list li {
  margin-bottom: 0.4em;
}

.policy-list-inline {
  margin: 0;
  padding-left: 1.2em;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-list-inline li {
  margin-bottom: 0.35em;
}

.term-card--full {
  grid-column: 1 / -1;
}

.term-card--exclusion {
  border-left: 3px solid var(--accent);
}

.pc-policy-page .terms-grid--process {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.policy-addons-table {
  font-size: 0.9rem;
}

.policy-addons-table .policy-list-inline {
  font-size: 0.85rem;
}

/* ============================================
   PRICE MATCH PAGE
   ============================================ */
.page-hero-price-match {
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
}

.page-hero-price-match .page-hero__breadcrumb {
  margin-bottom: 24px;
}

.page-hero-price-match .page-hero__title {
  margin-bottom: 18px;
}

.page-hero-price-match .page-hero__subtitle {
  margin: 0 auto;
  max-width: 540px;
}

.how-it-works-section {
  padding: 0 0 80px;
}

.policy-section {
  padding: 0 0 80px;
}

.request-section {
  padding: 0 0 60px;
}

.request-steps {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.request-steps__list {
  margin: 0 0 28px;
  padding-left: 1.4em;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
}

.request-steps__list li {
  margin-bottom: 8px;
}

.request-steps__cta {
  margin: 0;
  text-align: center;
}

.price-match-page .section-header {
  margin-bottom: 44px;
}

.price-match-page .section-header--center .section-header__text {
  margin: 0 auto;
}

.price-match-page .section-tag {
  color: var(--accent);
  margin-bottom: 12px;
}

.price-match-page .section-tag::before {
  background: var(--accent);
}

.price-match-page .section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 10px;
}

.price-match-page .section-header__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
}

.price-match-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

.price-match-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce page glow on price-match (main orbs + CTA card) */
body.price-match-page main::before,
body.price-match-page main::after {
  opacity: 0.06;
}

body.price-match-page .cta-banner__card::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 65%);
}

@media (max-width: 768px) {
  .page-hero-price-match {
    padding: 60px 0 40px;
  }

  .request-steps {
    padding: 28px 24px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 0;
}

.contact-hero__top {
  text-align: center;
  margin-bottom: 36px;
}

.contact-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-hero__breadcrumb a {
  transition: color 0.2s;
}

.contact-hero__breadcrumb a:hover {
  color: var(--accent);
}

.contact-hero__breadcrumb .sep {
  opacity: 0.3;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.contact-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Contact split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  padding-bottom: 48px;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Contact cards */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition-slow);
  cursor: default;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.contact-card--clickable {
  cursor: pointer;
}

.contact-card--clickable:hover .contact-card__label {
  color: var(--accent);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-card__icon--accent {
  background: var(--accent-glow);
}

.contact-card__icon--success {
  background: var(--success-bg);
}

.contact-card__icon--navy {
  background: rgba(19, 24, 50, 0.15);
}

.contact-card__content {
  flex: 1;
}

.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  transition: color 0.2s;
}

.contact-card__value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-card__value a {
  color: inherit;
  transition: color 0.2s;
}

.contact-card__value a:hover {
  color: var(--accent);
}

.contact-card__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hours card */
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 20px 20px;
}

.hours-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 65%);
  bottom: -80px;
  right: -60px;
}

.hours-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
}

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

.hours-row__day {
  color: var(--text-muted);
  font-weight: 500;
}

.hours-row__time {
  font-weight: 600;
  color: var(--text-secondary);
}

.hours-row__time--closed {
  color: var(--warn);
}

.hours-card__note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* Map card */
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  position: relative;
  background: var(--bg-card);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.map-card__overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.map-card__overlay a {
  color: var(--accent);
  text-decoration: none;
}

.map-card__overlay a:hover {
  color: var(--accent-soft);
}

/* Form column */
.form-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.form-col__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-col__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .field--full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.field__label .req {
  color: var(--accent);
}

.field__input,
.field__select,
.field__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.field__checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.field__checkbox-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.field__checkbox-label a {
  color: var(--accent);
  font-weight: 600;
}

.field__checkbox-label a:hover {
  color: var(--accent-soft);
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-contact-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.3);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* Form alerts */
.form-alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-alert--success {
  background: var(--success-bg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
}

.form-alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--danger);
}

.form-alert--error a {
  color: var(--accent);
}

/* Service areas */
.areas-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.areas__header {
  text-align: center;
  margin-bottom: 40px;
}

.areas__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.areas__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
}

.areas__subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-chip {
  padding: 10px 22px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.25s;
  cursor: default;
}

.area-chip:hover {
  background: var(--accent-glow);
  border-color: var(--border-hover);
  color: var(--accent);
  transform: translateY(-2px);
}

.area-chip--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.area-chip--active:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

/* Other ways */
.other-ways-section {
  padding: 80px 0;
}

.ow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ow-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-slow);
}

.ow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.ow-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
}

.ow-card__icon--accent {
  background: var(--accent-glow);
}

.ow-card__icon--success {
  background: var(--success-bg);
}

.ow-card__icon--navy {
  background: rgba(19, 24, 50, 0.15);
}

.ow-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.ow-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.ow-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.25s;
}

.ow-card__link:hover {
  gap: 10px;
  color: var(--accent-soft);
}

/* Contact reveal */
.contact-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

.contact-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact responsive */
@media (max-width: 1024px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-col {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 0;
  }

  .form-col {
    padding: 32px 24px;
  }

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

  .ow-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .areas-grid {
    gap: 8px;
  }

  .area-chip {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    gap: 12px;
  }
}

/* Service image collage placeholders */
.image-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.collage-placeholder {
  min-height: 140px;
  border: 2px dashed #c2c8d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #657084;
  background: #f7f9fc;
  font-weight: 600;
}

@media (max-width: 900px) {
  .image-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .image-collage {
    grid-template-columns: 1fr;
  }
}

/* Service page nav buttons (Back to All Services / All Services) - match local view */
.service-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.service-nav-buttons .btn {
  flex-shrink: 0;
}

/* Service detail pages (e.g. signage-installation): ensure content is always visible (no animation opacity issues) */
body.full-page-theme main#main.service-detail-page {
  opacity: 1;
  animation: none;
}

body.full-page-theme main#main.service-detail-page .card,
body.full-page-theme main#main.service-detail-page .container,
body.full-page-theme main#main.service-detail-page .page-header {
  opacity: 1;
  animation: none;
}

/* Defensive visibility for long-form service detail pages:
   if intersection/reveal classes are added but never toggled, keep content visible. */
main#main.service-detail-page .container.page-section,
main#main.service-detail-page .container.page-section.in-view,
main#main.service-detail-page .page-section,
main#main.service-detail-page .page-section.in-view {
  opacity: 1 !important;
  transform: none !important;
}

main#main.service-detail-page .reveal,
main#main.service-detail-page .reveal.animate-in,
main#main.service-detail-page .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

main#main.service-detail-page .container>.page-header {
  margin-bottom: 2.5rem;
}

main#main.service-detail-page .container>section.section {
  padding-top: clamp(0.5rem, 2vw, 1.5rem);
  padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

body.full-page-theme main#main.service-detail-page>section {
  min-height: auto;
  display: block;
  scroll-snap-align: none;
}

main#main.service-detail-page .container>section.section+section.section {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

main#main.service-detail-page .container>section.section h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

main#main.service-detail-page .container>section.section .card+.card {
  margin-top: 2rem;
}

.signage-image-disclaimer {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2rem;
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Signage solution cards with image on the right */
.card-with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.card-with-image .card-text {
  flex: 1 1 280px;
  min-width: 0;
}

.card-with-image .card-image {
  flex: 0 1 320px;
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-primary);
}

.card-with-image .card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 640px) {
  .card-with-image {
    flex-direction: column;
  }

  .card-with-image .card-image {
    order: -1;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* Signage image slider (e.g. Backlit Panel Signs – multiple photos in one box) */
.signage-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-primary);
}

.signage-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.signage-slider-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.signage-slider-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.signage-slider-slide video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
  object-fit: contain;
  background: #000;
  border-radius: var(--radius-md);
}

.signage-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.signage-slider-btn:hover {
  background: var(--accent);
  color: #fff;
}

.signage-slider-prev {
  left: 0.5rem;
}

.signage-slider-next {
  right: 0.5rem;
}

.signage-slider-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 2;
}

.signage-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.signage-slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.signage-slider-dot.is-active {
  background: var(--accent);
}

/* Premium CNC media showcase (section 13) */
.cnc-media-showcase {
  display: grid;
  gap: 0.75rem;
}

.cnc-media-main {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-primary);
  border: 1px solid var(--border);
}

.cnc-media-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cnc-media-main figcaption {
  margin: 0;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.cnc-media-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.cnc-thumb {
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: 0.82;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cnc-thumb:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.cnc-thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(67, 129, 255, 0.45);
}

.cnc-media-video {
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 0.5rem;
}

.cnc-media-video video {
  width: 100%;
  height: auto;
  max-height: 260px;
  display: block;
  border-radius: 10px;
  background: #000;
}

.cnc-video-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .cnc-media-video video {
    max-height: 220px;
  }
}

/* Signage image lightbox – click to zoom */
.signage-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.signage-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.signage-lightbox__inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signage-lightbox__inner img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
}

.signage-lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.signage-lightbox__close:hover {
  background: var(--accent);
}

main#main .card-image img,
main#main .signage-slider-slide img {
  cursor: zoom-in;
}

/* Cookie consent banner – We value your privacy */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, rgba(10, 14, 23, 0.99) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-consent[hidden] {
  display: block !important;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
}

.cookie-consent.is-visible {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}


.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-consent__content {
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 0.35rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.cookie-consent__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
  color: var(--accent-soft);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent__link {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.cookie-consent__link:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

.cookie-consent__btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.cookie-consent__btn--primary {
  background: var(--accent);
  color: #fff;
}

.cookie-consent__btn--primary:hover,
.cookie-consent__btn--primary:focus-visible {
  background: var(--primary-hover);
  color: #fff;
  outline: none;
}

.cookie-consent__btn--secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.cookie-consent__btn--secondary:hover,
.cookie-consent__btn--secondary:focus-visible {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
  outline: none;
}

@media (max-width: 640px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-consent__actions {
    justify-content: center;
  }
}