/* ==========================================================================
   Printmere LLC — Stylesheet
   Premium corporate design system
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #0a1f3d;
  --navy-800: #0f2a56;
  --navy-700: #14366d;
  --navy-600: #1e4a8c;
  --blue-600: #1e73c4;
  --blue-500: #2d8de0;
  --blue-400: #3fb8e6;
  --blue-300: #5bc8f0;
  --blue-50: #eaf4fc;

  /* Neutrals */
  --ink-900: #0a1224;
  --ink-700: #2a3550;
  --ink-500: #4a5670;
  --ink-400: #6b7a90;
  --ink-300: #9aa6bc;
  --ink-200: #c9d2e0;
  --ink-100: #e6ecf3;
  --ink-50: #f4f7fb;
  --white: #ffffff;

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-deep: #0a1f3d;
  --text: #14213d;
  --text-muted: #4a5670;
  --border: #e6ecf3;
  --border-strong: #c9d2e0;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #3fb8e6 0%, #1e73c4 50%, #0f2a56 100%);
  --grad-soft: linear-gradient(135deg, #eaf4fc 0%, #f4f7fb 100%);
  --grad-deep: linear-gradient(160deg, #0a1f3d 0%, #14366d 60%, #1e4a8c 100%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 42, 86, 0.06);
  --shadow-sm: 0 2px 6px rgba(15, 42, 86, 0.06), 0 1px 2px rgba(15, 42, 86, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 42, 86, 0.08), 0 2px 6px rgba(15, 42, 86, 0.04);
  --shadow-lg: 0 20px 50px rgba(15, 42, 86, 0.10), 0 4px 12px rgba(15, 42, 86, 0.05);
  --shadow-brand: 0 16px 40px rgba(30, 115, 196, 0.25);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(72px, 9vw, 120px);

  /* Type */
  --font-sans: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ----- Reset & base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-800); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- Header ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-link img { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .18s ease;
}
.nav a:hover { color: var(--navy-800); background: var(--ink-50); }
.nav a.active { color: var(--navy-800); }

.nav-cta {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  background: var(--grad-brand);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--r-md) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-cta:hover {
  background: var(--grad-brand) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.btn-secondary {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
}
.btn-ghost:hover { background: var(--ink-50); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 110px) 0 clamp(70px, 10vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 80% 10%, rgba(63, 184, 230, 0.10), transparent 60%),
    radial-gradient(70% 70% at 0% 100%, rgba(30, 115, 196, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 42, 86, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 42, 86, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-grid .hero-actions,
.hero-grid .hero-meta { justify-content: center; }
.hero .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(45, 141, 224, 0.18);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 0.92rem;
  color: var(--ink-400);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.hero-meta div { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-500); }
.hero-meta strong { color: var(--navy-800); font-weight: 700; }
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hv-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 22px;
}
.hv-main {
  inset: 6% 0 6% 8%;
  background: var(--grad-deep);
  color: #fff;
  border: none;
  overflow: hidden;
}
.hv-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 80% 0%, rgba(63, 184, 230, 0.35), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(45, 141, 224, 0.25), transparent 60%);
}
.hv-main-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.hv-tag {
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  color: #cfe6f7;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-weight: 600;
  width: max-content;
}
.hv-title { font-size: 1.55rem; color: #fff; line-height: 1.25; margin: 18px 0 8px; }
.hv-desc { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.hv-stats { display: flex; gap: 14px; margin-top: 24px; }
.hv-stat { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-md); padding: 12px; }
.hv-stat b { display: block; color: #fff; font-size: 1.3rem; font-weight: 700; }
.hv-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.hv-float-1 {
  top: -2%;
  right: 0;
  width: 56%;
  padding: 18px;
}
.hv-float-1 .ring {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  margin-bottom: 10px;
}
.hv-float-1 small { color: var(--ink-400); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.hv-float-1 strong { display: block; color: var(--navy-900); font-size: 1.1rem; margin-top: 4px; }

.hv-float-2 {
  bottom: -2%;
  right: 6%;
  width: 60%;
  padding: 18px;
}
.hv-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hv-bar .label { flex: 1; font-size: 0.82rem; color: var(--ink-500); font-weight: 500; }
.hv-bar .val { font-weight: 700; color: var(--navy-800); font-size: 0.88rem; }
.hv-progress { height: 6px; background: var(--ink-100); border-radius: 999px; overflow: hidden; }
.hv-progress span { display: block; height: 100%; background: var(--grad-brand); border-radius: 999px; }

/* ----- Section base ----------------------------------------------------- */
section { padding: var(--section-y) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--grad-deep);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { background: rgba(63, 184, 230, 0.15); color: #5bc8f0; }

/* ----- Trust bar -------------------------------------------------------- */
.trust-bar {
  padding: 44px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: var(--ink-500);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--blue-600); }
.trust-item strong { color: var(--navy-800); font-weight: 700; font-size: 0.95rem; }

/* ----- About ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--r-2xl);
  background: var(--grad-soft);
  padding: 40px;
  border: 1px solid var(--border);
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(63, 184, 230, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 115, 196, 0.14), transparent 50%);
}
.about-stats {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}
.about-stat {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.about-stat b {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.about-stat span { color: var(--text-muted); font-size: 0.92rem; }

.about-content .eyebrow { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); font-size: 1.02rem; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 500;
}
.about-list .check {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ----- Services --------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-300);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s ease, color .25s ease;
}
.service-card:hover .service-icon {
  background: var(--grad-brand);
  color: #fff;
}
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ----- Why choose us ---------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(91, 200, 240, 0.40);
  transform: translateY(-3px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-300);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.why-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ----- Pricing ---------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: var(--grad-deep);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.price-card.featured .plan-desc { color: rgba(255,255,255,0.75); }
.price-card.featured .feature-list li { color: rgba(255,255,255,0.88); }
.price-card.featured .feature-list .check { background: rgba(91, 200, 240, 0.20); color: #5bc8f0; }
.price-card.featured .btn-secondary { background: #fff; color: var(--navy-800); border-color: #fff; }

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-brand);
}

.price-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-600); margin-bottom: 16px; font-weight: 700; }
.price-card.featured h3 { color: var(--blue-300); }
.price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price .currency { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-right: 2px; color: var(--ink-400); }
.price .period { font-size: 0.92rem; font-weight: 500; color: var(--ink-400); margin-left: 4px; }
.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin: 10px 0 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-card.featured .plan-desc { border-color: rgba(255,255,255,0.12); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text);
}
.feature-list .check {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ----- Process timeline ------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.process-step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ----- Contact / CTA ---------------------------------------------------- */
.cta-band {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--grad-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 90% 10%, rgba(63, 184, 230, 0.20), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(45, 141, 224, 0.15), transparent 60%);
}
.cta-band .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; max-width: 560px; }
.cta-band .btn-primary { background: #fff; color: var(--navy-800); }
.cta-band .btn-primary:hover { background: #fff; color: var(--blue-600); }

/* ----- Contact section -------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 60px);
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 22px;
}
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list .icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.contact-info-list small {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-list strong { color: var(--navy-900); font-weight: 600; font-size: 0.98rem; line-height: 1.5; }
.contact-info-list a { color: var(--navy-900); }
.contact-info-list a:hover { color: var(--blue-600); }

.contact-form-card {
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(45, 141, 224, 0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.84rem; color: var(--ink-500); margin: 4px 0 0; }

/* ----- Footer ----------------------------------------------------------- */
.site-footer {
  background: #0a1f3d;
  color: rgba(255,255,255,0.72);
  padding: 70px 0 30px;
  border-top: 4px solid;
  border-image: var(--grad-brand) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.92rem; margin: 0 0 18px; max-width: 320px; }
.footer-brand .contact-mini { display: grid; gap: 8px; font-size: 0.9rem; }
.footer-brand .contact-mini a { color: rgba(255,255,255,0.78); }
.footer-brand .contact-mini a:hover { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--blue-300); }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { margin: 0; font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.footer-bottom .legal { display: flex; gap: 22px; font-size: 0.86rem; }
.footer-bottom .legal a { color: rgba(255,255,255,0.55); }
.footer-bottom .legal a:hover { color: #fff; }

/* ----- Legal pages ------------------------------------------------------ */
.page-header {
  padding: 90px 0 60px;
  background:
    radial-gradient(70% 60% at 80% 0%, rgba(63, 184, 230, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.page-header .breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.page-header .breadcrumb a { color: var(--blue-600); }
.page-header h1 { margin-bottom: 12px; }
.page-header .updated { color: var(--ink-500); font-size: 0.9rem; }

.legal-content {
  padding: 70px 0 90px;
  max-width: 880px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 0 0 18px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--navy-900); }
.legal-content .callout {
  background: var(--blue-50);
  border-left: 3px solid var(--blue-500);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 24px 0;
}
.legal-content .callout p { margin: 0; color: var(--navy-800); }

.toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin: 0 0 36px;
}
.toc h4 { margin: 0 0 12px; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); }
.toc ol { margin: 0; padding-left: 22px; column-count: 2; column-gap: 30px; }
.toc li { font-size: 0.94rem; margin-bottom: 6px; }
.toc a { color: var(--navy-800); }
.toc a:hover { color: var(--blue-600); }

/* ----- Utilities -------------------------------------------------------- */
.text-center { text-align: center; }
.muted { color: var(--text-muted); }

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--gutter);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: var(--r-sm); }
  .nav-cta { margin: 8px 0 4px; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .toc ol { column-count: 1; }
  .hero { padding-top: 50px; }
  .hero-meta { gap: 12px 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo-link img { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
