
:root {
  --dark: #08111f;
  --navy: #0d1b2f;
  --blue: #145cff;
  --blue-dark: #0d46c7;
  --green: #18b777;
  --gold: #f5b942;
  --light: #f5f8ff;
  --muted: #657086;
  --white: #ffffff;
  --border: #e5eaf3;
  --shadow: 0 20px 50px rgba(8, 17, 31, 0.12);
  --radius: 24px;
  --radius-small: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.top-strip {
  background: var(--dark);
  color: #dce7ff;
  font-size: 14px;
  padding: 10px 20px;
}
.top-strip-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.nav-wrap {
  max-width: var(--max);
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--dark);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(20, 92, 255, 0.3);
}
.brand span small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: -2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #25324a;
  font-weight: 700;
}
.nav-menu a:hover { color: var(--blue); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(20, 92, 255, 0.26);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  background: var(--white);
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(24, 183, 119, 0.18), transparent 32%),
    radial-gradient(circle at 12% 5%, rgba(20, 92, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.hero { padding: 86px 20px 48px; }
.page-hero { padding: 78px 20px 58px; }
.hero-inner {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.page-hero-inner {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--blue); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf1ff;
  color: var(--blue);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}
.hero h1, .page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -2.6px;
  margin-bottom: 24px;
}
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); }
.hero h1 span, .page-hero h1 span { color: var(--blue); }
.hero p, .page-hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #33405a;
  font-size: 14px;
  font-weight: 700;
}
.hero-points span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(8, 17, 31, 0.05);
}
.hero-card, .page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}
.audit-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 26px;
  padding: 28px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.audit-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: rgba(20, 92, 255, 0.38);
  border-radius: 50%;
  right: -70px;
  top: -70px;
}
.audit-card h3 { font-size: 25px; line-height: 1.2; margin-bottom: 12px; position: relative; z-index: 2; }
.audit-card p { color: #c8d4ea; font-size: 15px; margin-bottom: 0; position: relative; z-index: 2; }
.rank-list { display: grid; gap: 12px; }
.rank-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--light);
  border-radius: 18px;
  border: 1px solid var(--border);
  font-weight: 800;
}
.rank-item small { display: block; color: var(--muted); font-weight: 700; margin-top: 3px; }
.rank-value { color: var(--green); font-size: 22px; font-weight: 900; white-space: nowrap; }
.stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(8, 17, 31, 0.06);
}
.stat strong { font-size: 32px; display: block; color: var(--dark); letter-spacing: -1px; }
.stat span { color: var(--muted); font-size: 14px; font-weight: 700; }
.section { padding: 78px 20px; }
.section-soft { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.container { max-width: var(--max); margin: auto; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-label {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 10px;
}
.section-dark .section-label { color: var(--gold); }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -1.4px; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-dark .section-head p, .section-dark p { color: #c5d0e5; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(8, 17, 31, 0.05);
  transition: 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #eaf1ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 22px;
}
.card h3 { font-size: 22px; line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.5px; }
.card p { color: var(--muted); font-size: 15px; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: center; }
.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; }
.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}
.section-dark .check-list li { color: #dce7ff; }
.process { counter-reset: step; }
.process-card { position: relative; overflow: hidden; }
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 20px;
  right: 24px;
  color: #d8e2f6;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}
.industry-pill-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  color: #25324a;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(8, 17, 31, 0.05);
}
.package { border: 2px solid var(--border); position: relative; }
.package.featured { border-color: var(--blue); transform: scale(1.02); }
.tag {
  display: inline-block;
  background: #eaf1ff;
  color: var(--blue);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}
.price { font-size: 34px; font-weight: 900; letter-spacing: -1px; margin: 16px 0 18px; }
.price small { font-size: 14px; color: var(--muted); font-weight: 700; }
.package ul, .content-list { list-style: none; display: grid; gap: 11px; margin: 22px 0; color: #33405a; font-size: 15px; font-weight: 700; }
.package li::before, .content-list li::before { content: "✓ "; color: var(--green); font-weight: 900; }
.case-card {
  background: #101d31;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
}
.case-card p { color: #c5d0e5; font-size: 15px; margin: 10px 0 20px; }
.case-metric { display: flex; gap: 10px; flex-wrap: wrap; }
.case-metric span {
  background: rgba(255,255,255,0.09);
  padding: 8px 11px;
  border-radius: 999px;
  color: #eaf1ff;
  font-size: 13px;
  font-weight: 800;
}
.blog-card { padding: 0; overflow: hidden; }
.blog-thumb {
  height: 150px;
  background:
    linear-gradient(135deg, rgba(20,92,255,0.9), rgba(24,183,119,0.85)),
    radial-gradient(circle at top right, rgba(255,255,255,0.35), transparent 35%);
}
.blog-body { padding: 24px; }
.blog-body small {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.faq-wrap { display: grid; gap: 14px; }
.faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 22px 24px;
}
.faq h3 { font-size: 18px; margin-bottom: 7px; }
.faq p { color: var(--muted); font-size: 15px; }
.cta {
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 185, 66, 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue), #08111f);
  border-radius: 34px;
  padding: 46px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}
.cta h2 { margin-bottom: 10px; }
.cta p { color: #dce7ff; max-width: 700px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 900; color: #33405a; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
}
.field textarea { min-height: 130px; resize: vertical; }
.article {
  max-width: 880px;
  margin: auto;
}
.article h2 { margin-top: 34px; font-size: 34px; }
.article p { color: var(--muted); margin: 14px 0; font-size: 17px; }
.article ul { margin: 18px 0 18px 22px; color: var(--muted); }
.article li { margin: 8px 0; }
.page-links { display: grid; gap: 12px; }
.page-links a {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  font-weight: 800;
}
.page-links a:hover { color: var(--blue); border-color: var(--blue); }
.footer {
  background: #050b15;
  color: #c5d0e5;
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h3, .footer h4 { color: var(--white); margin-bottom: 14px; }
.footer p, .footer a { font-size: 14px; color: #c5d0e5; }
.footer-links { display: grid; gap: 9px; }
.copyright {
  max-width: var(--max);
  margin: auto;
  padding-top: 20px;
  font-size: 13px;
  color: #7f8ca5;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--green);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(24, 183, 119, 0.35);
  z-index: 80;
}
@media (max-width: 980px) {
  .nav-menu { display: none; }
  .hero-inner, .page-hero-inner, .split, .cta, .footer-inner { grid-template-columns: 1fr; }
  .stats, .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 60px; }
  .cta { padding: 34px; }
}
@media (max-width: 640px) {
  .top-strip-inner { display: block; }
  .top-strip-inner span { display: block; margin-bottom: 4px; }
  .nav-wrap { padding: 14px 16px; }
  .brand span { font-size: 15px; }
  .hero, .page-hero, .section { padding-left: 16px; padding-right: 16px; }
  .hero h1, .page-hero h1 { letter-spacing: -1.7px; }
  .stats, .grid-3, .grid-4, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .hero-card, .page-card, .form-card, .cta { border-radius: 24px; padding: 24px; }
  .btn { width: 100%; }
  .floating-call { left: 16px; right: 16px; text-align: center; justify-content: center; }
}


/* Static content page additions */
.article-body {
  display: grid;
  gap: 22px;
}
.article-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 8px;
}
.article-body h3 {
  font-size: 22px;
  margin: 12px 0 8px;
}
.article-body p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 10px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
}
.article-toc h3 {
  margin-bottom: 12px;
}
.article-toc a {
  display: block;
  padding: 10px 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
}
.article-toc a:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.static-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.static-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(8,17,31,.05);
}
.static-mini-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.static-mini-card p {
  color: var(--muted);
  font-size: 14px;
}
.page-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
}
.page-badge-row span {
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}
@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
  }
  .static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .static-grid {
    grid-template-columns: 1fr;
  }
}


/* Homepage upgraded trust/conversion sections */
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 20px;
}
.rating-pill,
.proof-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(8,17,31,.05);
}
.rating-pill span {
  color: var(--gold);
}
.client-logo-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(8,17,31,.06);
}
.client-logo-strip h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.logo-pill {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 15px;
  color: #33405a;
  font-weight: 900;
  font-size: 14px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(8,17,31,.06);
}
.proof-card strong {
  display: block;
  font-size: 30px;
  letter-spacing: -1px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.avatar-box {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 20px;
}
.founder-card h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.founder-card p {
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-mini a {
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
}
.dark-card {
  background: #101d31;
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.dark-card p {
  color: #c5d0e5;
}
.service-deep {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(8,17,31,.05);
}
.service-deep h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.service-deep p {
  color: var(--muted);
  font-size: 14px;
}
.framework-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
}
.framework-card .phase {
  display: inline-block;
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}
.framework-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.framework-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8,17,31,.06);
  border: 1px solid var(--border);
}
.comparison-table th,
.comparison-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: #33405a;
}
.comparison-table th {
  background: var(--dark);
  color: var(--white);
  font-size: 15px;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td:first-child {
  font-weight: 900;
  color: var(--dark);
}
.comparison-table .good {
  color: var(--green);
  font-weight: 900;
}
.case-mini {
  background: #101d31;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
}
.case-mini h3 {
  font-size: 23px;
  margin-bottom: 10px;
}
.case-mini p {
  color: #c5d0e5;
  font-size: 15px;
  margin-bottom: 18px;
}
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.metric-row span {
  background: rgba(255,255,255,.09);
  color: #eaf1ff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
}
.stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.review-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.review-card strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
}
.review-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.verified {
  display: inline-block;
  margin-top: 10px;
  background: #ecfdf5;
  color: #087b4d;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}
.tools-box,
.newsletter {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.tools-box h3,
.newsletter h3 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.tools-box p,
.newsletter p {
  color: var(--muted);
  margin-bottom: 18px;
}
.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-pill {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 15px;
  color: #33405a;
  font-weight: 900;
  font-size: 14px;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.newsletter-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
}
.no-lock-card {
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 185, 66, .22), transparent 28%),
    linear-gradient(135deg, #08111f, #145cff);
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.no-lock-card h2,
.no-lock-card p {
  color: #fff;
}
.no-lock-card p {
  color: #dce7ff;
}
@media (max-width: 980px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  .newsletter-form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}


/* Content optimized sections from provided SEO copy */
.rich-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 15px;
}
.rich-copy strong {
  color: var(--dark);
}
.copy-highlight-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 0 22px 22px 0;
  padding: 24px;
  margin-top: 20px;
}
.copy-highlight-box p {
  margin-bottom: 0;
}
.action-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.action-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(8,17,31,.05);
}
.action-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.action-item p {
  color: var(--muted);
  font-size: 14px;
}
.side-proof {
  background:
    radial-gradient(circle at 80% 10%, rgba(24,183,119,.22), transparent 32%),
    linear-gradient(135deg, #08111f, #145cff);
  color: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.side-proof h3 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.side-proof p {
  color: #dce7ff;
  margin-bottom: 16px;
}
.side-proof ul {
  list-style: none;
  display: grid;
  gap: 11px;
}
.side-proof li {
  color: #eaf1ff;
  font-weight: 800;
}
.side-proof li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 900;
}
.investment-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.investment-panel h3 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.investment-panel p {
  color: var(--muted);
  margin-bottom: 14px;
}
.page-copy-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.page-copy-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #33405a;
  font-weight: 700;
}
.page-copy-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}
@media (max-width: 980px) {
  .action-list {
    grid-template-columns: 1fr;
  }
}


/* Remaining trust/proof improvement sections */
.asset-needed {
  display: inline-block;
  background: #fff7df;
  border: 1px solid #ffe1a3;
  color: #664700;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.proof-profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.proof-profile-card h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.proof-profile-card p {
  color: var(--muted);
  margin-bottom: 14px;
}
.profile-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.profile-proof-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.profile-proof-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}
.profile-proof-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.google-review-band {
  background:
    radial-gradient(circle at 10% 20%, rgba(245,185,66,.22), transparent 30%),
    linear-gradient(135deg, #08111f, #145cff);
  color: #fff;
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.google-review-band h2 {
  color: #fff;
}
.google-review-band p {
  color: #dce7ff;
  max-width: 820px;
}
.google-score {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.google-score span {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 900;
}
.google-score .stars {
  color: var(--gold);
}
.client-logo-placeholder {
  background: var(--white);
  border: 1px dashed #b8c4dc;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  font-weight: 900;
  color: var(--muted);
}
.client-logo-placeholder small {
  display: block;
  font-weight: 700;
  margin-top: 4px;
}
.result-proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
}
.result-proof-card strong {
  display: block;
  font-size: 34px;
  color: var(--blue);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.result-proof-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.result-proof-card p {
  color: var(--muted);
  font-size: 14px;
}
.screenshot-box {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border: 1px dashed #aebbd5;
  border-radius: 20px;
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
  padding: 22px;
  margin-bottom: 18px;
}
.case-study-rich {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
}
.case-study-rich h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.case-study-rich p {
  color: var(--muted);
  margin-bottom: 14px;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}
.case-meta span {
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}
.superpower-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
  transition: .25s ease;
}
.superpower-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.superpower-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.superpower-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 15px;
}
.superpower-card a {
  color: var(--blue);
  font-weight: 900;
}
.schema-note {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 20px;
  color: #087b4d;
  font-weight: 800;
}
.launch-checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.launch-checklist h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.launch-checklist ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.launch-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #33405a;
  font-weight: 700;
}
.launch-checklist li::before {
  content: "□";
  color: var(--blue);
  font-weight: 900;
}
@media (max-width: 980px) {
  .profile-proof-grid {
    grid-template-columns: 1fr;
  }
}


/* Full optimized inner-page content sections */
.intent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.intent-strip span {
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
}
.optimized-copy p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 14px;
}
.optimized-copy h2 {
  margin-top: 6px;
}
.service-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.deliverable-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}
.deliverable-box h3 {
  font-size: 18px;
  margin-bottom: 7px;
}
.deliverable-box p {
  color: var(--muted);
  font-size: 14px;
}
.keyword-map-box {
  background:
    radial-gradient(circle at 80% 12%, rgba(24,183,119,.20), transparent 32%),
    linear-gradient(135deg, #08111f, #145cff);
  color: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.keyword-map-box h3 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.keyword-map-box p {
  color: #dce7ff;
  margin-bottom: 16px;
}
.keyword-map-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.keyword-map-box li {
  color: #eaf1ff;
  font-weight: 800;
}
.keyword-map-box li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 900;
}
.page-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.page-faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(8,17,31,.05);
}
.page-faq-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.page-faq-card p {
  color: var(--muted);
  font-size: 14.5px;
}
.industry-pathway {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.industry-pathway h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.industry-pathway p {
  color: var(--muted);
}
.industry-pathway .content-list {
  margin-top: 18px;
}
.inner-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.inner-proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(8,17,31,.05);
}
.inner-proof-card strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  margin-bottom: 7px;
}
.inner-proof-card span {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 980px) {
  .service-deliverables,
  .page-faq-grid,
  .inner-proof-row {
    grid-template-columns: 1fr;
  }
}


/* Improved multi-page menu and footer navigation */
.nav-wrap {
  gap: 18px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-item > a {
  padding: 10px 0;
  font-weight: 800;
}
.nav-item.has-drop > a::after {
  content: "⌄";
  font-size: 12px;
  margin-left: 5px;
  color: var(--muted);
}
.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  z-index: 200;
}
.nav-item:hover .nav-drop {
  display: grid;
  gap: 4px;
}
.nav-drop.wide {
  min-width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nav-drop a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #25324a;
  font-size: 13px;
  font-weight: 800;
}
.nav-drop a:hover {
  background: var(--light);
  color: var(--blue);
}
.footer-location-panel {
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-location-panel h4 {
  color: var(--white);
  margin-bottom: 14px;
}
.footer-location-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.footer-location-row a {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 12px;
  color: #c5d0e5;
  font-weight: 800;
  font-size: 13px;
}
.footer-location-row a:hover {
  color: var(--white);
}
.footer-inner.footer-inner-5 {
  grid-template-columns: 1.15fr .9fr .9fr .9fr .95fr;
}
.footer-links a:hover {
  color: var(--white);
}
.mobile-nav-note {
  display: none;
}
@media (max-width: 1180px) {
  .nav-menu {
    display: none;
  }
  .mobile-nav-note {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }
}
@media (max-width: 980px) {
  .footer-inner.footer-inner-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .footer-inner.footer-inner-5 {
    grid-template-columns: 1fr;
  }
}


/* Location SEO optimized content sections */
.location-market-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.location-market-box h2,
.location-market-box h3 { margin-bottom: 12px; }
.location-market-box p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 14px;
}
.location-keyword-panel {
  background:
    radial-gradient(circle at 12% 15%, rgba(245,185,66,.22), transparent 30%),
    linear-gradient(135deg, #08111f, #145cff);
  color: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.location-keyword-panel h3 {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.location-keyword-panel p {
  color: #dce7ff;
  margin-bottom: 16px;
}
.location-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.location-keyword-list span {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 900;
}
.local-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.local-plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(8,17,31,.05);
}
.local-plan-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}
.local-plan-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.local-plan-card p {
  color: var(--muted);
  font-size: 14px;
}
.location-industries {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(8,17,31,.05);
}
.location-industries h3 {
  font-size: 25px;
  margin-bottom: 12px;
}
.location-industries p {
  color: var(--muted);
  margin-bottom: 16px;
}
.location-industries ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.location-industries li {
  display: flex;
  gap: 10px;
  color: #33405a;
  font-weight: 750;
}
.location-industries li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}
.location-proof-placeholder {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border: 1px dashed #aebbd5;
  border-radius: 24px;
  padding: 26px;
  color: var(--muted);
}
.location-proof-placeholder h3 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 10px;
}
.location-proof-placeholder p { margin-bottom: 14px; }
.location-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.location-faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(8,17,31,.05);
}
.location-faq-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.location-faq-card p {
  color: var(--muted);
  font-size: 14.5px;
}
@media (max-width: 980px) {
  .local-plan-grid,
  .location-faq-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  .local-plan-grid,
  .location-faq-grid {
    grid-template-columns: 1fr;
  }
}


/* Digital marketing, web design and FAQ page additions */
.faq-category{background:var(--white);border:1px solid var(--border);border-radius:28px;padding:30px;box-shadow:0 12px 30px rgba(8,17,31,.05);margin-bottom:24px}.faq-category h2{font-size:clamp(26px,3vw,36px);margin-bottom:18px}.faq-list{display:grid;gap:14px}.faq-card{background:var(--light);border:1px solid var(--border);border-radius:18px;padding:20px}.faq-card h3{font-size:18px;margin-bottom:8px}.faq-card p{color:var(--muted);font-size:15px}.dm-strategy-panel{background:radial-gradient(circle at 85% 12%,rgba(24,183,119,.22),transparent 30%),linear-gradient(135deg,#08111f,#145cff);color:#fff;border-radius:32px;padding:34px;box-shadow:var(--shadow)}.dm-strategy-panel h3{color:#fff;font-size:30px;letter-spacing:-1px;line-height:1.12;margin-bottom:12px}.dm-strategy-panel p{color:#dce7ff;margin-bottom:16px}.dm-strategy-panel ul{list-style:none;display:grid;gap:10px}.dm-strategy-panel li{color:#eaf1ff;font-weight:800}.dm-strategy-panel li:before{content:'✓ ';color:var(--gold);font-weight:900}.service-process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.process-card{background:var(--white);border:1px solid var(--border);border-radius:22px;padding:22px;box-shadow:0 10px 24px rgba(8,17,31,.05)}.process-card span{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:14px;background:var(--soft-blue);color:var(--blue);font-weight:900;margin-bottom:14px}.process-card h3{font-size:19px;margin-bottom:8px}.process-card p{color:var(--muted);font-size:14px}.page-faq-section{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.page-faq-item{background:var(--white);border:1px solid var(--border);border-radius:20px;padding:22px;box-shadow:0 10px 24px rgba(8,17,31,.05)}.page-faq-item h3{font-size:18px;margin-bottom:8px}.page-faq-item p{color:var(--muted);font-size:14.5px}.web-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.web-feature-card{background:var(--white);border:1px solid var(--border);border-radius:24px;padding:24px;box-shadow:0 12px 30px rgba(8,17,31,.05)}.web-feature-card h3{font-size:21px;margin-bottom:8px}.web-feature-card p{color:var(--muted);font-size:14.5px}.footer-bottom-panels{max-width:var(--max);margin:28px auto 0;display:grid;gap:18px}.footer-bottom-panel{padding:24px;border-radius:24px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}.footer-bottom-panel h4{color:var(--white);margin-bottom:14px}.footer-bottom-row{display:flex;flex-wrap:wrap;gap:9px}.footer-bottom-row a{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:999px;padding:8px 12px;color:#c5d0e5;font-weight:800;font-size:13px}.footer-bottom-row a:hover{color:var(--white)}.footer-inner.footer-inner-5{grid-template-columns:1.1fr .95fr .95fr .95fr .9fr}.nav-item{position:relative;display:inline-flex;align-items:center}.nav-item>a{padding:10px 0}.nav-item.has-drop>a:after{content:'⌄';font-size:12px;margin-left:5px;color:var(--muted)}.nav-drop{position:absolute;top:100%;left:0;min-width:290px;background:var(--white);border:1px solid var(--border);border-radius:18px;box-shadow:var(--shadow);padding:12px;display:none;z-index:200}.nav-item:hover .nav-drop{display:grid;gap:4px}.nav-drop.wide{min-width:560px;grid-template-columns:repeat(2,minmax(0,1fr))}.nav-drop a{padding:10px 12px;border-radius:12px;color:#25324a;font-size:13px;font-weight:800}.nav-drop a:hover{background:var(--light);color:var(--blue)}@media(max-width:1180px){.nav-menu{display:none}.mobile-nav-note{display:block;color:var(--muted);font-size:12px;font-weight:800}}@media(max-width:980px){.service-process-grid,.web-feature-grid,.page-faq-section{grid-template-columns:repeat(2,minmax(0,1fr))}.footer-inner.footer-inner-5{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.service-process-grid,.web-feature-grid,.page-faq-section,.footer-inner.footer-inner-5{grid-template-columns:1fr}}


/* Final menu cleanup: single-row top navigation and packages moved under SEO Services */
.nav-menu-single-row{flex-wrap:nowrap!important;gap:12px!important;white-space:nowrap}.nav-menu-single-row .nav-item>a{font-size:13.5px}.header-cta{padding-left:15px!important;padding-right:15px!important;white-space:nowrap}.nav-wrap{gap:12px!important}.nav-drop.wide{min-width:520px}@media(max-width:1280px){.nav-menu-single-row{gap:9px!important}.nav-menu-single-row .nav-item>a{font-size:12.8px}.brand span{font-size:15px}.brand small{font-size:10px}.header-cta{font-size:13px;padding:11px 13px!important}}@media(max-width:1120px){.nav-menu{display:none!important}.mobile-nav-note{display:block!important}}
