
/* Titan Cloud Servers - core styles */

:root {
  --fs-body: 16px;
  --fs-lead: clamp(17px, 2vw, 19px);
  --fs-small: 14px;
  --text: #f5f7fa;
  --text-muted: #a9b7c7;
  --muted: #a9b7c7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #05070b;
  color: #f5f7fa;
  line-height: 1.6;
}

/* Typography normalization */
body{font-size: var(--fs-body);}

h1,h2,h3,h4{font-family:inherit; font-weight:700; letter-spacing:-0.01em; margin:0 0 12px;}
h1{font-size:clamp(30px,4vw,40px); line-height:1.12;}
h2{font-size:24px; line-height:1.2;}
h3{font-size:16px; line-height:1.25;}

p{margin:0 0 12px;}


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

a {
  color: #44b7e8;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 11, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(116, 194, 211, 0.25);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  height: 40px;
}

.nav-brand {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  opacity: 0.86;
}

.nav-links a.cta-link {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #1da1f2;
  background: radial-gradient(circle at top left, #1da1f2 0, #06799f 42%, #02131b 100%);
  color: #f5f7fa;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.55), 0 18px 40px rgba(0, 0, 0, 0.75);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(148, 194, 214, 0.35);
  background: none;
  color: #f5f7fa;
}

.section {
  padding: 56px 0;
}

.section.hero {
  padding: 72px 0 40px;
  background: radial-gradient(circle at top left, #1b6f8f 0, #05070b 50%, #020309 100%);
}

/* Pricing continuity: keep page feeling like one continuous scroll */
.section.hero.has-continuation{
  position: relative;
  padding-bottom: 34px; /* tighter so the next section peeks sooner */
}
.section.hero.has-continuation::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 96px; /* shorter fade */
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(2,3,9,0), rgba(5,7,11,0.92) 70%, #05070b);
}
.section.section-dark.continuation{
  margin-top: -44px;  /* pull plans into the fade without creating a fake "page end" */
  padding-top: 56px;  /* bring header closer to the hero */
}

.hero-meta{
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(240,248,255,0.92);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.75fr) minmax(0, 2.25fr);
  gap: 40px;
  align-items: center;
}
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.hero-managed {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}


.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-map-intro {
  max-width: 520px;
}

.hero-map-heading {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.2;
  color: #f4fbff;
}

.hero-map-intro p {
  margin: 0;
  color: #a8bfd1;
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-map-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  min-height: 390px;
  border-radius: 30px;
  border: 1px solid rgba(104, 184, 222, 0.28);
  background:
    radial-gradient(circle at 58% 45%, rgba(36, 152, 215, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(2, 11, 21, 0.98), rgba(1, 5, 12, 0.96));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.84);
  overflow: hidden;
}

.hero-map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 25%, rgba(92, 206, 255, 0.10), transparent 24%),
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent 18%, transparent 82%, rgba(255,255,255,0.03));
  pointer-events: none;
}

.hero-map-image,
.hero-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-map-image {
  object-fit: contain;
  opacity: 0.92;
  transform: scale(1.02);
}

.hero-map-overlay {
  z-index: 2;
  overflow: visible;
}

.hero-route {
  fill: none;
  stroke: url(#routeLine);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: routeFlow 16s linear infinite;
  opacity: 0.92;
}

.hero-map-node text {
  fill: #f3fbff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  paint-order: stroke;
  stroke: rgba(0, 8, 18, 0.88);
  stroke-width: 5px;
}

.node-glow {
  fill: rgba(93, 222, 255, 0.18);
  stroke: rgba(103, 224, 255, 0.30);
  stroke-width: 1.2;
  filter: url(#nodeGlow);
  animation: nodeGlowBreath 3.8s ease-in-out infinite;
}

.node-core {
  fill: #88efff;
  stroke: #f7fdff;
  stroke-width: 2;
  filter: url(#nodeGlow);
  animation: nodeCoreGlow 3.8s ease-in-out infinite;
}

.node-canada .node-glow, .node-canada .node-core { animation-delay: 0s; }
.node-usa .node-glow, .node-usa .node-core { animation-delay: .45s; }
.node-uk .node-glow, .node-uk .node-core { animation-delay: .9s; }
.node-uae .node-glow, .node-uae .node-core { animation-delay: 1.35s; }
.node-pakistan .node-glow, .node-pakistan .node-core { animation-delay: 1.8s; }

@keyframes nodeGlowBreath {
  0%, 100% { opacity: 0.44; }
  50% { opacity: 0.95; }
}

@keyframes nodeCoreGlow {
  0%, 100% { opacity: 0.78; }
  50% { opacity: 1; }
}

@keyframes routeFlow {
  to { stroke-dashoffset: -176; }
}

.hero-aside-title {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}


.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ed5f5;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 16px;
}

.hero-highlight {
  color: #58d0ff;
}

.hero-text {
  font-size: 15px;
  max-width: 560px;
  color: #d8e2ee;
  line-height: 1.75;
}



.hero-slogan{
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,194,214,0.35);
  background: rgba(255,255,255,0.04);
  color: rgba(240,248,255,0.82);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2bb0ff, #147bc2);
  color: #041015;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  border: 1px solid rgba(148, 194, 214, 0.4);
  color: #d8e2ee;
  background: rgba(3, 10, 18, 0.85);
}

.hero-meta {
  margin-top: 20px;
  font-size: 12px;
  color: #9fb4c7;
}

.hero-meta strong {
  color: #e3f0ff;
}

.hero-card {
  border-radius: 24px;
  border: 1px solid rgba(130, 187, 210, 0.3);
  padding: 20px 18px;
  background: radial-gradient(circle at top, rgba(32, 140, 191, 0.22), rgba(4, 9, 16, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.hero-card h3 {
  margin-top: 0;
  font-size: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.hero-stat {
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(116, 194, 211, 0.35);
  background: rgba(1, 7, 13, 0.9);
  font-size: 12px;
}

.hero-stat strong {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(116, 194, 211, 0.5);
  background: rgba(2, 18, 27, 0.9);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

/* Sections */

.section-dark {
  background: #05070b;
}

.section-alt {
  background: #050910;
}

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

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9bbad0;
}

.section-title {
  font-size: 22px;
  margin: 6px 0 10px;
  line-height: 1.2;
}


.section-subtitle {
  font-size: 15px;
  color: #b7c6d4;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}


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

.card {
  border-radius: 18px;
  border: 1px solid rgba(132, 181, 206, 0.33);
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top, rgba(21, 101, 130, 0.2), rgba(3, 6, 10, 0.98));
  font-size: 13px;
}

.card h3 {
  margin-top: 0;
  font-size: 16px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8ebede;
  margin-bottom: 6px;
}

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

.card li + li {
  margin-top: 4px;
}

.badge-pill {
  display: inline-flex;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(132, 181, 206, 0.5);
  color: #a6c2da;
}

/* Pricing */

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

.price-card {
  position: relative;
  padding-top: 22px;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8ebede;
  margin-bottom: 4px;
}

.price-main {
  font-size: 22px;
  font-weight: 600;
}

.price-main span {
  font-size: 13px;
  font-weight: 400;
  color: #9fb4c7;
}

.price-note {
  font-size: 12px;
  color: #9fb4c7;
  margin-top: 6px;
}

.price-meta {
  font-size: 11px;
  color: #92a8bd;
  margin-top: 10px;
}

.price-card ul {
  font-size: 13px;
}

/* TitanSync */

.titansync {
  display: grid;
  grid-template-columns: minmax(0, 2.75fr) minmax(0, 2.25fr);
  gap: 24px;
  align-items: flex-start;
}

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

.titansync-highlight {
  border-radius: 16px;
  border: 1px solid rgba(132, 181, 206, 0.4);
  padding: 10px 12px;
  font-size: 12px;
  background: rgba(2, 10, 18, 0.96);
}

.titansync-highlight strong {
  display: block;
  margin-bottom: 3px;
}

/* Clients */

.logo-grid {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.logo-card {
  border-radius: 14px;
  border: 1px solid rgba(113, 158, 184, 0.35);
  background: rgba(4, 8, 13, 0.96);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  overflow: hidden;
}

.logo-card picture,
.logo-card img {
  display: block;
  width: auto;
  max-width: 100%;
}
.logo-card picture{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:56px;
}
.logo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.logo-caption {
  font-size: 11px;
  text-align: center;
  margin-top: 4px;
  color: #9fb4c7;
}

/* FAQ */

.faq-list {
  border-radius: 18px;
  border: 1px solid rgba(132, 181, 206, 0.4);
  background: radial-gradient(circle at top, rgba(22, 86, 120, 0.18), rgba(3, 7, 11, 0.98));
  padding: 16px 18px;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(92, 130, 154, 0.5);
  margin-top: 10px;
  padding-top: 10px;
}

.faq-q {
  font-weight: 600;
  font-size: 14px;
}

.faq-a {
  font-size: 13px;
  color: #c4d3e1;
  margin-top: 4px;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.75fr) minmax(0, 2.25fr);
  gap: 24px;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(132, 181, 206, 0.4);
  background: rgba(4, 9, 15, 0.98);
  padding: 18px 18px 20px;
}

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

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

label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(107, 145, 170, 0.85);
  padding: 8px 10px;
  background: #02060b;
  color: #f5f7fa;
  font-size: 13px;
}

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

small.helper {
  font-size: 11px;
  color: #9fb4c7;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.contact-list li + li {
  margin-top: 8px;
}

/* Footer */

footer {
  border-top: 1px solid rgba(94, 131, 153, 0.6);
  background: #03060a;
  padding: 18px 0 24px;
  font-size: 12px;
  color: #9fb4c7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-end;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .footer-links { flex-wrap: wrap; white-space: normal; }
}

.footer-links a {
  font-size: 12px;
}

/* WhatsApp floating button */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #25d366, #128c7e);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

/* Utilities */

.muted {
  color: #9fb4c7;
  font-size: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(16, 40, 60, 0.9);
  border: 1px solid rgba(96, 150, 178, 0.7);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .titansync,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-map-visual {
    min-height: 340px;
  }

  .hero-card {
    margin-top: 14px;
  }

  .pricing-grid,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .titansync-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    right: 16px;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(6, 10, 18, 0.98);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(107, 145, 170, 0.85);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Software logo strip */
.software-strip {
  padding: 44px 0;
  margin-top: 28px;
  /* No hard borders: avoids "double line" with section fades and the footer border */
  border: 0;
  background: radial-gradient(circle at 20% 30%, rgba(68, 183, 232, 0.10), transparent 60%),
              linear-gradient(90deg, rgba(52,120,246,0.10), rgba(16,185,129,0.06));
}

.software-strip-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(226, 232, 240, 0.78);
  margin-bottom: 24px;
  text-align: center;
}

.software-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.software-strip-logos img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(15, 23, 42, 0.9));
  opacity: 0.9;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.software-strip-logos img:hover {
  transform: translateY(-2px);
  opacity: 1;
}

@media (max-width: 640px) {
  .software-strip {
  padding: 44px 0;
  margin-top: 28px;
  /* No hard borders: avoids "double line" with section fades and the footer border */
  border: 0;
  background: radial-gradient(circle at 20% 30%, rgba(68, 183, 232, 0.10), transparent 60%),
              linear-gradient(90deg, rgba(52,120,246,0.10), rgba(16,185,129,0.06));
}
  .software-strip-logos {
    gap: 18px;
  }
  .software-strip-logos img {
    max-height: 32px;
  }
}


/* --- v2 enhancements --- */
.software-strip-text{
  margin: 14px auto 0;
  max-width: 820px;
  text-align: center;
  color: rgba(245,247,250,0.82);
  font-size: 15px;
}

/* Scroll reveal */
.reveal{
  opacity: 1;
  transform: translateY(10px);
  transition: transform 600ms ease;
}
.reveal.is-visible{
  transform: none;
}


/* Better keyboard focus */
:focus-visible{
  outline: 2px solid rgba(68,183,232,0.9);
  outline-offset: 3px;
}


/* Active nav link */
.nav-links a.active{
  color: #58d0ff;
  opacity: 1;
  position: relative;
}
.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: rgba(88,208,255,0.8);
  border-radius: 99px;
}

/* Featured pricing card */
.price-card.featured{
  border-color: rgba(88,208,255,0.75);
  box-shadow: 0 0 0 3px rgba(88,208,255,0.18);
}
.price-card.featured::before{
  content: "Recommended";
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #041015;
  background: #58d0ff;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}


/* Pricing page continuity tweaks */
.page-pricing .section.hero{
  padding: 84px 0 52px;
}
.page-pricing .section.section-dark.continuation{
  margin-top: -92px;
  padding-top: 62px;
}
.page-pricing .baseline-note{
  font-weight: 700;
  color: rgba(245,247,250,0.92);
}
.page-pricing .baseline-note .muted-part{
  font-weight: 600;
  color: rgba(245,247,250,0.78);
}



/* Blog post pages */
.post-hero .kicker{ margin-bottom: 10px; display:inline-flex; align-items:center; gap:10px; font-size:12px; color: rgba(255,255,255,0.72); }
.post-title{ margin: 10px 0 10px 0; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12; letter-spacing: -0.2px; }
.post-grid{ display:grid; grid-template-columns: 1.4fr 0.6fr; gap: 14px; align-items: start; }
.post-aside{ position: sticky; top: 92px; align-self: start; }
.article-block{ margin-bottom: 14px; }
.article-block h3{ margin-top: 0; }
.toc-card .toc-title{ font-weight: 800; margin-bottom: 10px; }
.toc-list{ margin:0; padding-left: 18px; color: rgba(255,255,255,0.72); font-size: 13px; }
.toc-list li{ margin: 8px 0; }
.toc-list a{ color: rgba(255,255,255,0.78); }
.toc-list a:hover{ color:#fff; }
.aside-card .aside-title{ font-weight:800; margin-bottom: 10px; }
.article-cta h3{ margin:0 0 8px 0; }
.article-cta p{ margin:0 0 12px 0; }
@media (max-width: 980px){
  .post-grid{ grid-template-columns: 1fr; }
  .post-aside{ position: static; }
}



/* Blog search UX */
.blog-search-input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.90);
  outline: none;
}
.blog-search-input:focus{
  border-color: rgba(88,208,255,0.55);
  box-shadow: 0 0 0 4px rgba(88,208,255,0.10);
}

/* Ensure button classes exist on blog page (compat layer) */
.btn.btn-primary{ 
  background: linear-gradient(135deg, rgba(43,176,255,0.85), rgba(20,123,194,0.75));
  color: #041015;
  border: 1px solid rgba(88,208,255,0.28);
  box-shadow: 0 14px 34px rgba(0,0,0,0.36);
}
.btn.btn-primary:hover{ filter: brightness(1.05); }

.btn.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn.btn-ghost:hover{ background: rgba(255,255,255,0.08); }


/* Blog search highlights */
mark{ background: rgba(88,208,255,0.22); color: rgba(255,255,255,0.95); padding: 0 2px; border-radius: 4px; }

/* SEO support blocks (references + related reading) */
.seo-references h3, .related-reading h3{ margin: 0 0 8px 0; }
.seo-references ul.list, .related-reading ul.list{ margin-top: 10px; }
.seo-references a{ color: rgba(255,255,255,0.90); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.28); }
.seo-references a:hover{ color: #ffffff; text-decoration-color: rgba(255,255,255,0.55); }
.related-reading a{ color: rgba(255,255,255,0.90); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.28); }
.related-reading a:hover{ color: #ffffff; text-decoration-color: rgba(255,255,255,0.55); }

/* Side-by-side blocks for Related reading + Authoritative references */
.seo-two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 960px){
  .seo-two-col{ grid-template-columns: 1fr; }
}

/* Visual samples (client-supplied diagrams / screenshots) */
.media-frame{
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  overflow: hidden;
}
.media-frame img{ width: 100%; height: auto; display:block; border-radius: 12px; }
.media-caption{
  margin-top: 10px;
  color: rgba(159,180,199,0.95);
  font-size: 13.5px;
}
.media-frame.dark{
  background: rgba(3,6,10,0.70);
}
.media-frame.dark img{ border-radius: 12px; }


/* Blog search results */
.search-results-list{display:flex;flex-direction:column;gap:10px;}
.search-result{display:block;padding:12px 14px;border:1px solid rgba(116,194,211,0.25);border-radius:16px;background:rgba(3,6,10,0.55);text-decoration:none;transition:transform .15s ease,border-color .15s ease,background .15s ease;}
.search-result:hover{transform:translateY(-1px);border-color:rgba(88,208,255,0.45);background:rgba(3,6,10,0.7);}
.sr-top{display:flex;justify-content:space-between;gap:12px;align-items:baseline;}
.sr-title{font-weight:700;color:var(--text);}
.sr-tag{font-size:12px;color:var(--text-muted);}
.sr-snippet{margin-top:6px;font-size:13.5px;line-height:1.55;color:#d0e0f0;}
.search-result mark{background:rgba(88,208,255,0.25);color:var(--text);padding:0 2px;border-radius:3px;}

/* Centered section headers (used where subtitles should be centered) */
.section-header.center{
  text-align: center;
}
.section-header.center .section-subtitle{
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

/* Typography consistency */
.hero-subtext{
  font-size: var(--fs-lead);
  color: rgba(208,224,240,0.92);
  max-width: 760px;
  margin-top: 12px;
}
.hero-meta{
  font-size: var(--fs-small);
  color: #a0b8d0;
}
.section-subtitle{
  font-size: var(--fs-lead);
}
.muted{ font-size: var(--fs-small); }


/* Final UX / SEO pass */
.section-header.center,
.section-header.center .section-subtitle,
.section-header.center .section-title,
.section-header.center .section-kicker{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.proof-strip .card h3{ margin-bottom: 8px; }

.comparison-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.compare-card h3{ margin-bottom: 10px; }

.case-label{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(159,180,199,0.92);
  margin: 12px 0 6px;
  font-weight: 700;
}
.case-outcome{
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.public-email-block{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  margin-top: 10px;
}
.email-row{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.public-email{
  display:inline-block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  white-space: nowrap;
}

.picture-logo img, .logo-grid img{
  max-width: 100%;
  height: auto;
}

@media (max-width: 960px){
  .comparison-grid{ grid-template-columns: 1fr; }
}


/* Google/AI-friendly summary and table blocks */
.quick-answer{
  margin-top: 18px;
  background: rgba(88,208,255,0.08);
  border: 1px solid rgba(88,208,255,0.20);
  border-left: 4px solid rgba(88,208,255,0.72);
  border-radius: 16px;
  padding: 16px 18px;
}
.quick-answer strong{
  display: inline-block;
  margin-right: 6px;
}
.breadcrumbs{display:none !important;}


.comparison-wrap{
  overflow-x: auto;
  margin-top: 16px;
}
.comparison-table{
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(3,6,10,0.86);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: top;
}
.comparison-table th{
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.03);
}
.comparison-table td{
  font-size: 14px;
  color: rgba(223,232,241,0.92);
}
.last-updated{
  font-size: 13px;
  color: rgba(159,180,199,0.92);
  margin-top: 8px;
}
@media (max-width: 720px){
  .quick-answer{ padding: 14px 15px; }
}

/* Blog search guidance */
.search-tip{
  margin-top: 10px;
  font-size: 13.5px;
}
.search-results{
  margin-top: 14px;
}


/* Contact page clarity */
.contact-methods-strip{
  display:grid;
  grid-template-columns:1.45fr 1fr 1fr;
  gap:16px;
  margin-top:18px;
}
.contact-method-card{
  display:block;
  background: rgba(3,6,10,0.75);
  border:1px solid rgba(116,194,211,0.25);
  border-radius:18px;
  padding:18px;
  text-decoration:none;
  color:inherit;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.contact-method-card.method-link:hover{
  border-color: rgba(88,208,255,0.55);
  transform: translateY(-2px);
}
.contact-method-line{
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f5f7fa;
}
.contact-method-card .muted{
  margin:0;
  line-height:1.55;
}
.contact-method-actions{
  margin-top:12px;
}
.contact-form-intro{
  margin: 8px 0 18px;
}
@media (max-width: 960px){
  .contact-methods-strip{
    grid-template-columns:1fr;
  }
}


/* Contact email overflow fix */
.contact-email-line{
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.contact-method-card{
  min-width: 0;
}
.contact-methods-strip{
  align-items: stretch;
}
.contact-method-card .btn{
  width: auto;
  max-width: 100%;
}


@media (max-width: 1200px){
  .contact-methods-strip{
    grid-template-columns:1.25fr 1fr 1fr;
  }
}


/* Blog media and internal-link modules */
.figure-card{
  margin: 16px 0 18px;
  padding: 14px;
}
.figure-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.figure-card figcaption{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(223,232,241,0.78);
  line-height: 1.55;
}
.figure-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin: 14px 0 18px;
}
.bridge-card{
  margin-bottom: 14px;
  border: 1px solid rgba(88,208,255,0.24);
  background: linear-gradient(180deg, rgba(8,20,30,0.92), rgba(5,12,18,0.92));
}
.bridge-card h2,
.bridge-card h3{
  margin-top:0;
}
.bridge-card p{
  margin-bottom: 12px;
}
.bridge-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.note-inline{
  font-size: 13px;
  color: rgba(159,180,199,0.92);
}
.decision-table{
  margin-top: 10px;
}
@media (max-width: 760px){
  .figure-grid{
    grid-template-columns: 1fr;
  }
}


/* Turnkey QuickBooks implementation page */
.single-column-page{max-width:980px;margin:0 auto;}
.section-intro{margin-bottom:18px;}
.kpi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.kpi-card h3{margin:0 0 8px 0;}
.impl-steps{counter-reset:step;display:grid;gap:14px;}
.impl-step{position:relative;padding-left:58px;}
.impl-step::before{counter-increment:step;content:counter(step);position:absolute;left:0;top:0;width:38px;height:38px;border-radius:999px;display:grid;place-items:center;font-weight:800;background:rgba(88,208,255,0.14);border:1px solid rgba(88,208,255,0.28);color:#eaf7ff;}
.screenshot-stack{display:grid;gap:18px;}
.screenshot-figure{margin:0;}
.screenshot-figure a{display:block;text-decoration:none;}
.screenshot-figure img{width:100%;height:auto;display:block;border-radius:16px;border:1px solid rgba(255,255,255,0.10);background:#fff;box-shadow:0 18px 60px rgba(0,0,0,0.55);}
.screenshot-figure figcaption{margin-top:10px;color:rgba(230,240,248,0.95);font-size:15px;line-height:1.65;}
.screenshot-note{display:block;margin-top:6px;color:rgba(159,180,199,0.92);font-size:13px;}
.feature-anchor{scroll-margin-top:100px;}
.cta-strip{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px;}
@media (max-width: 960px){
  .kpi-grid{grid-template-columns:1fr;}
}


/* Image-priority blog posts */
.post-grid.post-grid-image-priority{
  grid-template-columns: minmax(0, 1fr);
}
.post-grid.post-grid-image-priority .post-aside{
  position: static;
  top: auto;
}
.post-grid.post-grid-image-priority .figure-grid{
  grid-template-columns: 1fr;
}
.post-grid.post-grid-image-priority .figure-card{
  padding: 16px;
}
.post-grid.post-grid-image-priority .figure-card img{
  width: 100%;
  max-width: 100%;
}
.post-grid.post-grid-image-priority .figure-card figcaption,
.post-grid.post-grid-image-priority .figure-card .figure-note{
  font-size: 14px;
  line-height: 1.65;
}
.figure-card .figure-link{
  display:block;
  text-decoration:none;
}
.figure-note{
  display:block;
  margin-top: 6px;
  color: rgba(159,180,199,0.92);
  font-size: 13px;
}
.featured-implementation-callout{
  margin-top: 18px;
  border: 1px solid rgba(88,208,255,0.24);
  background: linear-gradient(180deg, rgba(8,20,30,0.92), rgba(5,12,18,0.92));
}
.featured-implementation-callout h2,
.featured-implementation-callout h3{
  margin-top: 0;
}
.featured-implementation-callout .btn{
  margin-top: 10px;
}

/* Launch polish: accessibility, breadcrumbs, and field-experience notes */
.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  z-index:9999;
  background:#fff;
  color:#07111f;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
.skip-link:focus{left:12px;}

.breadcrumb-nav{
  background:rgba(7,17,31,.96);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.breadcrumb-nav .container{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:42px;
  font-size:13px;
  color:#94a7bd;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.breadcrumb-nav a{
  color:#b9d7ff;
  text-decoration:none;
}
.breadcrumb-nav a:hover{text-decoration:underline;}
.breadcrumb-nav span:last-child{
  color:#dce8f6;
  overflow:hidden;
  text-overflow:ellipsis;
}

.author-note{
  margin-top:28px;
  border-color:rgba(111,178,255,.26);
  background:linear-gradient(135deg, rgba(35,81,140,.22), rgba(10,23,40,.92));
}
.author-note h2{
  margin-top:6px;
}
.author-note p{
  margin-bottom:0;
}

@media (max-width: 720px){
  .breadcrumb-nav .container{font-size:12px;min-height:38px;}
}


.form-turnstile {
  margin: 1rem 0 1.25rem;
}


/* Pricing estimator */
.estimator-panel{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,0.8fr);
  gap:22px;
  padding:22px;
  border:1px solid rgba(116,194,211,0.25);
  border-radius:24px;
  background:linear-gradient(135deg,rgba(10,18,28,0.96),rgba(5,9,15,0.98));
  box-shadow:0 22px 60px rgba(0,0,0,0.35);
}
.estimator-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;align-content:start;align-self:start;grid-auto-rows:min-content;}
.estimator-grid label{display:flex;flex-direction:column;gap:8px;color:#d8e2ee;font-weight:700;font-size:13px;}
.estimator-grid input,.estimator-grid select{
  width:100%;
  min-height:44px;
  border-radius:12px;
  border:1px solid rgba(148,194,214,0.32);
  background:#07101b;
  color:#f5f7fa;
  padding:10px 12px;
  font:inherit;
}
.estimator-output{
  align-self:start;
  border-radius:20px;
  border:1px solid rgba(43,176,255,0.32);
  background:radial-gradient(circle at top left,rgba(43,176,255,0.16),rgba(4,12,20,0.96) 55%);
  padding:20px;
}
.estimator-label{font-size:12px;text-transform:uppercase;letter-spacing:0.12em;color:#9ed5f5;margin-bottom:8px;}
.estimator-total{font-size:clamp(24px,3vw,34px);font-weight:700;color:#ffffff;line-height:1.15;margin-bottom:10px;}
.estimator-notes{margin:12px 0 0;padding-left:18px;color:#cfe0f0;}
.estimator-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px;}
.titansync-bridge-card{margin-top:24px;}

.estimator-panel-wide{grid-template-columns:minmax(0,1fr) minmax(360px,0.9fr);}
.estimator-breakout-grid{display:grid;grid-template-columns:1fr;gap:10px;margin-top:10px;}
.estimator-breakout-grid div{border:1px solid rgba(148,194,214,0.18);border-radius:14px;background:rgba(255,255,255,0.035);padding:10px 12px;}
.estimator-breakout-grid strong{display:block;color:#ffffff;font-size:13px;margin-bottom:4px;}
.estimator-breakout-grid span{display:block;color:#9ed5f5;font-weight:700;font-size:16px;}
.estimator-breakout-grid small{display:block;color:#aebdca;margin-top:4px;line-height:1.45;}
.licensing-note-card .comparison-table td:nth-child(2){white-space:normal;font-weight:700;color:#f5f7fa;}
[hidden]{display:none!important;}

@media (max-width: 820px){
  .estimator-panel{grid-template-columns:1fr;padding:16px;}
  .estimator-grid{grid-template-columns:1fr;}
}


.pricing-region-switch{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 22px;
}
.pricing-region-btn{
  border:1px solid rgba(116,194,211,0.32);
  border-radius:999px;
  background:rgba(255,255,255,0.045);
  color:#d7e8f5;
  padding:10px 16px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.pricing-region-btn.is-active{
  background:linear-gradient(135deg,#2b9eea,#165d8a);
  border-color:rgba(116,194,211,0.7);
  color:#ffffff;
  box-shadow:0 12px 28px rgba(43,158,234,0.22);
}
.pricing-card-hidden{display:none!important;}
.pricing-grid[data-active-market="international"]{
  grid-template-columns:minmax(0,780px);
  justify-content:start;
}
.international-price-card h3{max-width:560px;}
.estimator-panel-wide{grid-template-columns:minmax(0,0.92fr) minmax(420px,1.08fr);}
.estimator-breakout-highlight{
  border-color:rgba(43,176,255,0.75)!important;
  background:linear-gradient(135deg,rgba(43,176,255,0.18),rgba(255,255,255,0.045))!important;
  box-shadow:0 12px 34px rgba(43,176,255,0.12);
}
.estimator-breakout-highlight strong{font-size:14px!important;color:#ffffff!important;}
.estimator-breakout-highlight span{font-size:22px!important;color:#ffffff!important;}
.estimator-total-secondary{
  margin-top:10px;
  padding:10px 12px;
  border:1px solid rgba(148,194,214,0.22);
  border-radius:14px;
  background:rgba(255,255,255,0.045);
  color:#cfe0f0;
  line-height:1.45;
}
.estimator-total-secondary strong{color:#ffffff;}

/* Pricing page final usability polish */
.pricing-market-panel{
  display:grid;
  grid-template-columns:minmax(0,0.95fr) minmax(360px,1.05fr);
  gap:22px;
  align-items:center;
  margin:0 0 34px;
  padding:24px;
  border:1px solid rgba(116,194,211,0.28);
  border-radius:26px;
  background:radial-gradient(circle at top left,rgba(43,176,255,0.14),rgba(6,14,23,0.96) 58%);
  box-shadow:0 24px 70px rgba(0,0,0,0.28);
}
.pricing-market-panel h2{margin:8px 0 8px;font-size:clamp(24px,3vw,36px);}
.pricing-market-panel p{margin:0;color:#bdd0df;line-height:1.6;}
.pricing-market-panel .pricing-region-switch{margin:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.pricing-market-panel .pricing-region-btn{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  min-height:92px;
  border-radius:20px;
  padding:18px;
  text-align:left;
}
.pricing-market-panel .pricing-region-btn span{font-size:18px;line-height:1.2;}
.pricing-market-panel .pricing-region-btn small{display:block;margin-top:7px;color:#aac0d2;font-weight:600;line-height:1.4;}
.pricing-market-panel .pricing-region-btn.is-active small{color:#e6f6ff;}
.estimator-output{position:sticky;top:92px;}
.estimator-summary-strip{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:14px 0 16px;}
.estimator-summary-card{
  border:1px solid rgba(148,194,214,0.2);
  border-radius:15px;
  padding:11px 12px;
  background:rgba(255,255,255,0.04);
}
.estimator-summary-card span{display:block;color:#9ed5f5;font-size:11px;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:5px;}
.estimator-summary-card strong{display:block;color:#ffffff;font-size:17px;line-height:1.18;}
.estimator-summary-card small{display:block;color:#adbfcd;margin-top:6px;line-height:1.35;}
.estimator-summary-strong{border-color:rgba(43,176,255,0.55);background:linear-gradient(135deg,rgba(43,176,255,0.16),rgba(255,255,255,0.045));}
.estimator-field-hint{display:block;color:#9ed5f5;font-size:12px;line-height:1.45;font-weight:700;margin-top:2px;}
.estimator-grid{gap:18px 18px;}

@media (max-width: 980px){
  .pricing-market-panel{grid-template-columns:1fr;padding:18px;}
  .pricing-market-panel .pricing-region-switch{grid-template-columns:1fr;}
  .estimator-output{position:static;}
  .estimator-summary-strip{grid-template-columns:1fr;}
}

/* Pricing region selector polish */
.pricing-market-panel-strong{
  margin:18px 0 48px;
  padding:34px;
  border:1px solid rgba(82,190,255,0.52);
  background:
    linear-gradient(135deg,rgba(18,68,103,0.68),rgba(5,14,24,0.98) 46%,rgba(3,9,16,0.98)),
    radial-gradient(circle at 86% 18%,rgba(43,176,255,0.24),transparent 32%);
  box-shadow:0 28px 90px rgba(0,0,0,0.38),0 0 0 1px rgba(255,255,255,0.035) inset;
  position:relative;
  overflow:hidden;
}
.pricing-market-panel-strong::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(43,176,255,0.16),transparent 28%,rgba(255,255,255,0.045));
}
.pricing-market-panel-strong > *{position:relative;z-index:1;}
.pricing-region-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border:1px solid rgba(158,213,245,0.35);
  border-radius:999px;
  color:#dff4ff;
  background:rgba(43,176,255,0.14);
  font-size:12px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.pricing-market-panel-strong h2{font-size:clamp(32px,4.2vw,54px);line-height:1.02;margin:16px 0 10px;letter-spacing:-0.035em;}
.pricing-market-panel-strong p{font-size:clamp(16px,1.35vw,19px);max-width:700px;}
.pricing-market-panel-strong .pricing-region-switch{gap:18px;}
.pricing-market-panel-strong .pricing-region-btn{
  min-height:126px;
  padding:24px;
  border-radius:24px;
  border-color:rgba(171,218,244,0.36);
  background:rgba(255,255,255,0.062);
  box-shadow:0 18px 45px rgba(0,0,0,0.18);
}
.pricing-market-panel-strong .pricing-region-btn span{font-size:clamp(22px,2.1vw,30px);letter-spacing:-0.02em;}
.pricing-market-panel-strong .pricing-region-btn small{font-size:14px;line-height:1.45;}
.pricing-market-panel-strong .pricing-region-btn.is-active{
  background:linear-gradient(135deg,#36a9f4,#155f8d);
  border-color:rgba(204,238,255,0.86);
  box-shadow:0 22px 60px rgba(43,176,255,0.34),0 0 0 1px rgba(255,255,255,0.12) inset;
}
.estimator-summary-card.estimator-summary-strong{
  box-shadow:0 18px 44px rgba(43,176,255,0.16);
}
.estimator-breakout-highlight span{letter-spacing:-0.02em;}

@media (max-width: 980px){
  .pricing-market-panel-strong{padding:24px;margin:10px 0 36px;}
  .pricing-market-panel-strong .pricing-region-btn{min-height:104px;}
}
@media (max-width: 560px){
  .pricing-market-panel-strong{padding:20px 16px;border-radius:22px;}
  .pricing-market-panel-strong h2{font-size:34px;}
  .pricing-market-panel-strong .pricing-region-btn{padding:18px;min-height:96px;}
  .pricing-market-panel-strong .pricing-region-btn span{font-size:24px;}
}

/* Pricing server-route logic visibility */
.server-sizing-logic{
  margin:14px 0 16px;
  padding:14px;
  border:1px solid rgba(158,213,245,0.28);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(255,255,255,0.055),rgba(43,176,255,0.055));
}
.server-sizing-logic[hidden]{display:none!important;}
.server-sizing-logic-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.server-sizing-logic-title strong{
  display:block;
  color:#ffffff;
  font-size:15px;
  line-height:1.25;
}
.server-sizing-logic-title small{
  display:block;
  color:#a9c0d1;
  margin-top:4px;
  line-height:1.45;
}
.server-sizing-current{
  flex:0 0 auto;
  color:#ffffff;
  font-weight:800;
  border:1px solid rgba(43,176,255,0.62);
  background:rgba(43,176,255,0.16);
  border-radius:999px;
  padding:7px 10px;
  white-space:nowrap;
  font-size:12px;
}
.server-sizing-ladder{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
}
.server-sizing-tier{
  border:1px solid rgba(148,194,214,0.18);
  border-radius:14px;
  background:rgba(255,255,255,0.035);
  padding:10px 11px;
}
.server-sizing-tier.is-selected{
  border-color:rgba(43,176,255,0.78);
  background:linear-gradient(135deg,rgba(43,176,255,0.22),rgba(255,255,255,0.055));
  box-shadow:0 14px 36px rgba(43,176,255,0.12);
}
.server-sizing-tier span{
  display:block;
  color:#9ed5f5;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  margin-bottom:5px;
}
.server-sizing-tier strong{
  display:block;
  color:#ffffff;
  font-size:15px;
  line-height:1.15;
}
.server-sizing-tier small{
  display:block;
  color:#adbfcd;
  line-height:1.35;
  margin-top:6px;
}
@media (max-width: 560px){
  .server-sizing-logic{padding:12px;}
  .server-sizing-logic-title{display:block;}
  .server-sizing-current{display:inline-flex;margin-top:10px;}
  .server-sizing-ladder{grid-template-columns:1fr;}
}

/* Estimator breakout moved directly under the live calculator */
.estimator-cost-breakout-wide{
  grid-column:1 / -1;
  margin-top:0;
  padding:18px;
  border:1px solid rgba(82,190,255,0.28);
  border-radius:20px;
  background:linear-gradient(135deg,rgba(255,255,255,0.035),rgba(43,176,255,0.05));
}
.estimator-breakout-heading{
  margin:0 0 8px!important;
  color:#dff4ff;
}
.estimator-cost-breakout-wide .estimator-breakout-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.estimator-cost-breakout-wide .estimator-breakout-highlight{
  border-color:rgba(43,176,255,0.85)!important;
  background:linear-gradient(135deg,rgba(43,176,255,0.24),rgba(255,255,255,0.065))!important;
}
.estimator-cost-breakout-wide .estimator-breakout-highlight span{
  font-size:clamp(20px,2.1vw,28px)!important;
}
@media (min-width: 1180px){
  .estimator-cost-breakout-wide .estimator-breakout-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .estimator-cost-breakout-wide .estimator-breakout-highlight{grid-column:span 1;}
}
@media (max-width: 760px){
  .estimator-cost-breakout-wide{padding:14px;}
  .estimator-cost-breakout-wide .estimator-breakout-grid{grid-template-columns:1fr;}
}


/* Pricing calculator alignment fix */
.estimator-panel-wide{align-items:start;}
.estimator-panel-wide .estimator-output{position:static;top:auto;}
.estimator-panel-wide .estimator-grid{align-self:start;}
.estimator-panel-wide .estimator-cost-breakout-wide{grid-column:1 / -1;align-self:start;margin-top:2px;}
.estimator-compact-notes{margin:12px 0 0;padding-left:18px;color:#cfe0f0;}
.estimator-compact-notes li{margin:0 0 6px;}
.estimator-info-note{grid-column:1 / -1;border:1px solid rgba(148,194,214,0.18);border-radius:18px;background:rgba(255,255,255,0.035);padding:14px 16px;color:#bdd0df;line-height:1.6;margin-top:10px;}
.estimator-info-note strong{color:#ffffff;}
@media (max-width: 980px){
  .estimator-panel-wide{grid-template-columns:1fr;}
  .estimator-panel-wide .estimator-cost-breakout-wide{grid-column:1;}
}

/* Pricing calculator route explainer cleanup */
.server-route-explainer{
  display:grid;
  gap:6px;
  border:1px solid rgba(148,194,214,0.22);
  border-radius:15px;
  padding:12px 13px;
  background:linear-gradient(135deg,rgba(43,176,255,0.12),rgba(255,255,255,0.04));
}
.server-route-explainer strong{
  color:#ffffff;
  font-size:14px;
  line-height:1.25;
}
.server-route-explainer span{
  color:#9ed5f5;
  font-weight:700;
  line-height:1.35;
}
.server-route-explainer small{
  color:#adbfcd;
  line-height:1.45;
}
@media (max-width:560px){
  .server-route-explainer{padding:11px 12px;}
}


.form-status{
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: var(--fs-small);
}
.form-status.is-error{
  border-color: rgba(255,92,92,.45);
  background: rgba(255,92,92,.10);
}
.form-status.is-success{
  border-color: rgba(74,222,128,.45);
  background: rgba(74,222,128,.10);
}
.contact-form button[disabled]{
  opacity: .65;
  cursor: wait;
}


@media (max-width: 640px) {
  .hero-map-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .hero-map-node text {
    font-size: 16px;
    stroke-width: 4px;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-route,
  .node-glow,
  .node-core {
    animation: none !important;
  }
}

@media (max-width: 480px) {
  .hero-map-visual {
    min-height: 225px;
  }

  .hero-map-heading {
    font-size: 1.05rem;
  }

  .hero-map-intro p {
    font-size: 0.86rem;
  }

  .hero-map-node text {
    font-size: 13px;
    stroke-width: 3.2px;
  }
}


/* Mobile responsive hardening — keep content inside cards and ensure compact grids collapse. */
.card,
.contact-card,
.contact-method-card,
.hero-main,
.hero-aside,
.estimator-panel,
.estimator-grid > * {
  min-width: 0;
}

.card,
.contact-card,
.contact-method-card,
.hero-main,
.hero-aside {
  overflow-wrap: break-word;
}

/* This override intentionally comes after the <=1200px contact rule above. */
@media (max-width: 960px) {
  .contact-methods-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .contact-method-card {
    padding: 16px;
  }

  .contact-method-line {
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .contact-email-line {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
  }
}


/* Contact page direct-contact polish */
.direct-contact-block{
  margin-bottom:18px;
}
.direct-contact-options{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.direct-contact-option{
  min-width:0;
  border:1px solid rgba(132,181,206,.26);
  border-radius:16px;
  background:rgba(255,255,255,.025);
  padding:14px;
}
.direct-contact-option strong{
  display:block;
  margin-bottom:6px;
  color:#f5f7fa;
}
.direct-contact-value{
  display:block;
  margin-bottom:12px;
  color:#8fdcff;
  overflow-wrap:anywhere;
}
.contact-links-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}
@media (max-width: 640px){
  .direct-contact-options{
    grid-template-columns:1fr;
  }
}
