
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#eef3f9;
  color:#142033;
}
a{ color: inherit; }
.container{ max-width: 1200px; margin:0 auto; padding: 0 20px; }

header{
  position:relative;
  color:#fff;
  background: #0f2b55;
  z-index: 50000;
}

.header-inner{ position:relative; z-index:2; }

.top-contact{
  padding: 10px 0 0;
}
.top-contact .stack{
  display:flex;
  flex-direction:column;
  gap: 2px;
  font-size: 14px;
  opacity: 0.95;
}
.top-contact a{ text-decoration:none; }
.top-contact a:hover{ text-decoration:underline; }

.navbar{ position:relative; z-index:999998; 
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0 16px;
  gap: 16px;
  position: relative;
  z-index: 10000;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.brand img{ height: 48px; width:auto; display:block; }
.brand .wordmark{
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 20px;
}
.brand .wordmark .ta{ color:#20c4b4; } /* accent */
.nav-toggle{
  display:none;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.22);
  color:#fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 700;
}
.nav-links{ position:relative; z-index:55000;

  display:flex;
  gap: 18px;
  align-items:center;
}
.nav-links a{
  text-decoration:none;
  opacity: 0.94;
  font-weight: 600;
  font-size: 14px;
}
.nav-links a:hover{ opacity:1; text-decoration:underline; }
.dropdown{ position:relative; }
.dropdown > a::after{ content:" ▾"; font-weight: 700; }
.dropdown-menu{
  display:none;
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 260px;
  background:#0f2b55;
  border:1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 60000;
  pointer-events:auto;
}

.dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}
.dropdown:hover .dropdown-menu{ display:block; }
.dropdown-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
}
.dropdown-menu a:hover{
  background: rgba(255,255,255,0.10);
  text-decoration:none;
}

@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; z-index:1000001; }
  .nav-links{
    display:none;
    position:absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    background:#0f2b55;
    border:1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    z-index:1000000;
    max-height: 70vh;
    overflow:auto;
  }
  .nav-links.open{ display:flex; }
  .dropdown-menu{ position: static; display:block; background: transparent; border: none; box-shadow:none; padding: 0; min-width: 0; }
  .dropdown > a::after{ content:""; }
}


.hero {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(10, 25, 45, 0.65), rgba(10, 25, 45, 0.88)),
    url('../img/hero-switch-pexels-2881227.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }


/* === Article / service hero (hero--service) === */
.hero--service {
  position: relative;
  padding: 90px 0 80px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 12, 28, 0.88) 0%,
    rgba(8, 20, 42, 0.84) 50%,
    rgba(10, 25, 50, 0.76) 100%
  );
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__inner .eyebrow {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.78;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.hero__inner h1 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,0.65);
}
.hero__sub {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 620px;
  line-height: 1.6;
  margin: 0 0 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* btn-- variants used in article/service heroes */
.btn--primary {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  background: #20c4b4;
  color: #072a27;
  transition: filter 0.15s;
}
.btn--primary:hover { filter: brightness(1.06); }

.btn--ghost {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  transition: background 0.15s;
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); }

/* Badge links — keep badge appearance, make clickable */
a.badge {
  text-decoration: none;
  color: #fff;
}
a.badge:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.40);
}
.hero p{ margin:0; max-width: 900px; font-size: 18px; line-height: 1.6; opacity: 0.95; }
.hero .cta-row{ margin-top: 18px; display:flex; gap: 12px; flex-wrap: wrap; }
.btn{
  display:inline-block;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.btn-primary{ background:#20c4b4; color:#072a27; }
.btn-primary:hover{ filter: brightness(1.05); }
.btn-secondary{ background: rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.20); }
.btn-secondary:hover{ background: rgba(255,255,255,0.18); }

.section{ padding: 46px 0; }
.section h2{ margin:0 0 12px; font-size: 28px; }
.muted{ opacity: 0.85; }
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card{
  background:#fff;
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(15,43,85,0.08);
}
.card img{ width:100%; height: 180px; object-fit: cover; display:block; }
.card .pad{ padding: 16px; }
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 14px; color:#3a4a61; line-height: 1.55; }
.card .link{ color:#138a80; text-decoration:none; font-weight: 700; }
.card .link:hover{ text-decoration:underline; }

.two-col{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 960px){
  .two-col{ grid-template-columns: 1fr; }
}

.panel{
  background:#fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(15,43,85,0.08);
}
.panel .btn,
.panel .btn-primary,
.panel .btn-outline,
aside.card .btn,
aside.card .btn-primary,
aside.card .btn-outline {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 4px;
}
.panel .btn + *,
.panel .btn-primary + *,
.panel .btn-outline + *,
aside.card .btn + *,
aside.card .btn-primary + *,
aside.card .btn-outline + * {
  margin-top: 18px !important;
}

ul.tick{ margin: 0; padding-left: 18px; }
ul.tick li{ margin: 8px 0; }

blockquote{
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid #20c4b4;
  background: rgba(32,196,180,0.08);
  border-radius: 12px;
  color:#2f3f55;
}

.site-footer{
  background:#0f2b55;
  color: rgba(255,255,255,0.92);
  padding: 36px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}
.footer-grid a{ text-decoration:none; opacity: 0.92; }
.footer-grid a:hover{ text-decoration:underline; }
.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  opacity: 0.78;
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr; }
}

.seo-locations{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill{
  background: rgba(15,43,85,0.08);
  border: 1px solid rgba(15,43,85,0.10);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color:#25364f;
}


/* Overrides: keep top bar solid */
header{background:#0f2b55 !important;}

/* === Header layout tweaks (contact left, nav centered, bigger logo) === */
.top-contact .stack{
  flex-direction: column;
  align-items: flex-start;
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0 16px;
  gap: 16px;
  position: relative;
  z-index: 10000;
}
.brand{
  justify-self:start;
}
.brand img{
  height:64px !important; /* bigger logo */
}
.brand .wordmark{ font-size: 22px !important; }
.nav-links{
  justify-self:center;
}
@media (max-width: 860px){
  .navbar{ grid-template-columns: 1fr auto; }
  .nav-links{ justify-self:end; }
}

.hero .container {
  position: relative;
  z-index: 2;
}


.hero {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(10, 25, 45, 0.65), rgba(10, 25, 45, 0.88)),
    url('../img/hero-switch-pexels-2881227.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }


.hero .container {
position: relative;
z-index: 2;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .nav-links { gap: 14px; }
  .hero { padding: 90px 0; }
  .hero h1 { font-size: 2.25rem; line-height: 1.1; }
  .hero p { font-size: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
}

header{position:relative; z-index:999999;}

/* Footer location pills readability */
footer .pill{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

/* Cyber page helpers */
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;}
.checklist{padding-left:18px;margin:12px 0 0 0;}
.checklist li{margin:8px 0;}
.callout{border:1px solid rgba(255,255,255,0.12);background:rgba(10,25,45,0.35);padding:18px;border-radius:14px;}
.section.alt{background:#f5f8fb;}
.faq details{background:#ffffff;border:1px solid #e6edf5;border-radius:12px;padding:14px 16px;margin:12px 0;}
.faq summary{font-weight:700;cursor:pointer;}
.faq p{margin:10px 0 0 0;color:#2b3a4a;}
@media (max-width: 768px){.grid-2{grid-template-columns:1fr;}}

/* Partner badges */
.partner-badges{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
  align-items:center;
}
.partner-badges img {
    max-height: 72px;
    height: auto;
    width: auto;
    opacity: 0.95;
    image-rendering: auto;
    filter: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.partner-badges img:hover {
    transform: scale(1.06);
    opacity: 1;
}
.partner-badges img:hover {
    transform: scale(1.05);
    opacity: 1;
}
@media (max-width: 768px){
  .partner-badges{gap:10px 12px;}
  .partner-badges img {
    max-height: 72px;
    height: auto;
    width: auto;
    opacity: 0.95;
    image-rendering: auto;
    filter: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.partner-badges img:hover {
    transform: scale(1.06);
    opacity: 1;
}
.partner-badges img:hover {
    transform: scale(1.05);
    opacity: 1;
}
}

.partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* Text fit fixes */
.card, .service-card, .service-tile, .faq details {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
}

.card h3, .service-card h3, .service-tile h3 {
  line-height: 1.25;
  margin-bottom: 10px;
}

.card p, .service-card p, .service-tile p, .faq p, .checklist li {
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: normal;
}

.checklist {
  margin-top: 10px;
}

.checklist li {
  margin: 6px 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  overflow-wrap: anywhere;
}

.hero-tags, .hero-tags * {
  white-space: normal !important;
}

@media (max-width: 768px) {
  .card, .service-card, .service-tile {
    padding: 16px !important;
  }
}


/* Card heading spacing fix (prevents headings touching/clipping container) */
.card, .service-card, .service-tile, .sidebar-card, .callout, .aside-card {
  box-sizing: border-box;
}

.card h2, .card h3, .card h4,
.service-card h2, .service-card h3, .service-card h4,
.service-tile h2, .service-tile h3, .service-tile h4,
.sidebar-card h2, .sidebar-card h3, .sidebar-card h4,
.callout h2, .callout h3, .callout h4,
.aside-card h2, .aside-card h3, .aside-card h4 {
  margin-top: 0 !important;
}

.card ul, .service-card ul, .service-tile ul, .sidebar-card ul, .callout ul, .aside-card ul {
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 20px;
}

.card {
  padding: 24px !important;
}


/* Blog / insights */
.blog-content{
  max-width: 860px;
}
.blog-content h2{
  margin-top: 28px;
}
.blog-content h3{
  margin-top: 18px;
}
.blog-content ul{
  margin-left: 18px;
}
.blog-cta{
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
}
.seo-locations .pill{
  display: inline-block;
  text-decoration: none;
}


/* === Insights list (homepage) === */
.insights-list{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.insight-row{
  background:#ffffff;
  border:1px solid rgba(14, 42, 71, 0.12);
  border-radius:18px;
  padding:18px 18px;
}
.insight-row h3{
  margin:0 0 6px 0;
  font-size:1.1rem;
  line-height:1.25;
}
.insight-row p{
  margin:0;
  color:rgba(14, 42, 71, 0.72);
}
.insight-row .readmore{
  display:inline-block;
  margin-top:10px;
  font-weight:600;
  text-decoration:none;
  color:var(--accent);
}

/* === Generic cards grid helper === */
.cards-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(3, 1fr);
}
@media (max-width: 980px){
  .cards-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 640px){
  .cards-grid{ grid-template-columns:1fr; }
}

/* === Insights / blog card grid === */
.cards--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 980px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards--3 { grid-template-columns: 1fr; }
}

.cards--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 1100px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards--4 { grid-template-columns: 1fr; }
}

.card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,43,85,0.10);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.card--link .card__img {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.card--link .card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card--link .card__body h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #0f2b55;
}
.card--link .card__body p {
  margin: 0 0 14px;
  color: #3a4a61;
  line-height: 1.55;
  flex: 1;
}
.card--link .card__cta {
  font-weight: 700;
  color: #138a80;
  font-size: 0.9rem;
}

/* === "Fast scoping" / aside h3 spacing === */
.panel h3 + p,
.panel h3 ~ p,
aside.card h3 + p,
aside.card h3 ~ p {
  margin-top: 6px;
}
.panel h3:not(:first-child),
aside.card h3:not(:first-child) {
  margin-top: 18px;
}

/* === Hero badges (below CTA buttons) spacing === */
.hero .badges,
section.hero .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

/* === Services most requested in location pages === */
.services-requested {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.services-requested a {
  display: inline-block;
  background: #eef3f9;
  border: 1px solid rgba(15,43,85,0.12);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f2b55;
  text-decoration: none;
  transition: background 0.15s;
}
.services-requested a:hover {
  background: #dce6f2;
}

/* === Location sidebar / SEO box spacing === */
.checklist{
  margin:10px 0 12px 18px;
  padding:0;
}
.checklist li{ margin:6px 0; }
.seo-box h3{ margin-top:16px; }
.seo-box h3:first-child{ margin-top:0; }
.seo-box .muted.small{ margin-top:10px; }

/* === Hero spacing improvements === */
.hero .hero-actions + .hero-links{
  margin-top:14px;
}

/* === Sticky consultation bar === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0f2b55;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 2px solid #20c4b4;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta__text {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.94;
}
.sticky-cta__text span {
  color: #20c4b4;
}
.sticky-cta .btn--sticky {
  background: #20c4b4;
  color: #072a27;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.15s;
}
.sticky-cta .btn--sticky:hover {
  filter: brightness(1.08);
}
.sticky-cta__dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
}
.sticky-cta__dismiss:hover {
  color: rgba(255,255,255,0.85);
}
@media (max-width: 640px) {
  .sticky-cta {
    padding: 12px 16px;
    gap: 12px;
  }
  .sticky-cta__text {
    font-size: 0.85rem;
    text-align: center;
  }
}

/* ============================================================
   FREE SECURITY CONSULTATION PAGE
   ============================================================ */

/* --- Page hero (consultation landing) --- */
.page-hero {
  position: relative;
  background: #0f2b55;
  color: #fff;
  padding: 72px 0 60px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(32,196,180,0.18) 0%, transparent 65%),
              linear-gradient(135deg, #0a1e3d 0%, #0f2b55 60%, #143567 100%);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
}
.page-hero .lead {
  font-size: 1.08rem;
  opacity: 0.9;
  max-width: 640px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.page-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.page-hero .hero-subtle {
  font-size: 0.88rem;
  opacity: 0.72;
  max-width: 580px;
  line-height: 1.55;
  margin: 0;
}
.page-hero .btn-secondary {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}
.page-hero .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}

/* --- Consultation grid --- */
.grid-2 aside {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* --- Consultation form card --- */
.card--sticky {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(15,43,85,0.1);
}
.card--sticky h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}
.card--sticky h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

/* --- Form styles --- */
.form {
  margin-top: 16px;
}
.form-row {
  margin-bottom: 14px;
}
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f2b55;
  margin-bottom: 5px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #cfd8e6;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #142033;
  background: #f8fafc;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #20c4b4;
  box-shadow: 0 0 0 3px rgba(32,196,180,0.18);
  background: #fff;
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}
.tiny {
  font-size: 0.78rem;
  margin-top: 8px;
  text-align: center;
}

/* --- Content cards inside consultation page --- */
.page-hero + .section .card {
  padding: 20px 24px;
  margin-bottom: 18px;
}
.page-hero + .section .card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #0f2b55;
  font-size: 1rem;
}
.page-hero + .section .card ul {
  margin: 0;
  padding-left: 18px;
}
.page-hero + .section .card li {
  margin: 5px 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #2d3f55;
}

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid rgba(15,43,85,0.1);
  margin: 22px 0 18px;
}

/* --- Sticky offer bar (consultation page specific) --- */
.sticky-offer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0f2b55;
  color: #fff;
  border-top: 2px solid #20c4b4;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sticky-offer.visible {
  transform: translateY(0);
}
.sticky-offer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-offer__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sticky-offer__text strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.sticky-offer__text span {
  font-size: 0.84rem;
  opacity: 0.82;
}
.sticky-offer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sticky-offer__btn {
  background: #20c4b4;
  color: #072a27;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s;
}
.sticky-offer__btn:hover {
  filter: brightness(1.08);
}
.sticky-offer__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.sticky-offer__close:hover {
  color: rgba(255,255,255,0.9);
}
@media (max-width: 640px) {
  .sticky-offer__inner {
    padding: 12px 16px;
  }
  .sticky-offer__text strong {
    font-size: 0.88rem;
  }
  .grid-2 aside {
    position: static;
  }
}
