:root {
  --primary: #1179bf;
  --primary-hover: #0e6aa8;
  --accent: #e85d04;
  --accent-hover: #cf5203;
  --dark: #111827;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-body: #ffffff;
  --bg-section: #f8fafc;
  --border: #e2e8f0;
  --panel: #eef6ff;
  --radius: 12px;
  --shadow: 0 18px 45px rgba(15, 23, 42, .08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, .06);
  --transition: all .18s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", "Inter", system-ui, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.65;
  padding-top: 82px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }

button, input, select, textarea { font: inherit; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 780px; }

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.35rem, 4.8vw, 4.3rem); font-weight: 780; }

h2 { font-size: clamp(1.9rem, 2.8vw, 2.75rem); font-weight: 740; }

h3 { font-size: 1.2rem; font-weight: 720; }

h4 { font-weight: 720; }

.primary-color { color: var(--primary); }

.eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .73rem;
  font-weight: 760;
  color: var(--primary);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

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

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

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

.btn-accent:hover { background: var(--accent-hover); }

.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: #b7c6d8;
  color: var(--dark);
  background: #fff;
}

.full { width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 32px; }

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

.nav-link, .nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: .94rem;
  font-weight: 660;
  cursor: pointer;
  border-radius: 10px;
}

.nav-link:hover, .nav-trigger:hover { color: var(--primary); }

.nav-trigger i { font-size: .72rem; }

.nav-cta { padding: 10px 18px; margin-left: 8px; }

.has-mega { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(940px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .13);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 18px;
}

.mega-menu:before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.mega-menu:after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 999px 999px;
  opacity: .9;
}

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

.mega-inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 18px;
}

.mega-heading {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.mega-heading:before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
  margin-bottom: 18px;
}

.mega-heading span {
  display: block;
  color: var(--dark);
  font-weight: 780;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.mega-heading p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.6;
}

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

.mega-links a {
  position: relative;
  display: block;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  min-height: 94px;
  transition: background-color .15s ease, border-color .15s ease;
}

.mega-links a:before { display: none; }

.mega-links a:hover { background: #f8fafc; border-color: #d8e3ee; }

.mega-links strong {
  display: block;
  color: var(--dark);
  margin-bottom: 5px;
  font-weight: 760;
}

.mega-links small {
  display: block;
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.48;
}

.with-brand-panel { grid-template-columns: 1.2fr 320px; }

.brand-panel {
  border-radius: 16px;
  padding: 24px;
  background: #111827;
  color: #dbeafe;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.brand-panel:after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
  opacity: .9;
}

.brand-panel h3 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 740;
}

.brand-panel p {
  font-size: .92rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.brand-link {
  font-weight: 760;
  color: #fff;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.hero-home { padding: 106px 0 114px; }

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-icon {
  position: absolute;
  color: var(--primary);
  opacity: .035;
  animation: float-icon 12s ease-in-out infinite;
}

.icon-server {
  right: 8%;
  bottom: -8%;
  font-size: 21rem;
}

.icon-security {
  right: 6%;
  top: 8%;
  font-size: 11rem;
  animation-delay: -4s;
}

.icon-support {
  left: 4%;
  bottom: 12%;
  font-size: 12rem;
  animation-delay: -8s;
}

@keyframes float-icon { 0%, 100% { margin-top: 0; } 50% { margin-top: -26px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-title { max-width: 760px; }

.typing-line { position: relative; display: block; }

.typing-live {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  max-width: 100%;
}

.typing-sizer { visibility: hidden; display: block; }

.cursor {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  margin-left: .02em;
  animation: blink .9s steps(1) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .cursor { animation: none; }
}

.hero-copy p, .page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 660px;
  margin-top: 22px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 720;
  color: var(--text-main);
  margin-bottom: 24px;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-top: 96px;
}

.section { padding: 90px 0; }

.muted {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-header.align-left { text-align: left; margin-left: 0; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

.category-grid, .cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.category-card, .service-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}

.category-card:hover, .service-tile:hover { border-color: #cbd9e6; box-shadow: none; }

.category-card i, .service-tile i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  color: var(--primary);
  border-radius: 12px;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.category-card p, .service-tile p { color: var(--text-muted); margin: 12px 0 20px; }

.category-card span { font-weight: 760; color: var(--primary); }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

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

.steps div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.steps b {
  color: var(--primary);
  display: inline-block;
  margin-right: 8px;
}

.steps p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: 8px;
}

.cta-section { padding: 70px 0; }

.cta-box {
  position: relative;
  background: #102a43;
  border: 1px solid #173b5d;
  border-radius: 22px;
  padding: 46px 54px;
  color: #dbeafe;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.cta-box:before { display: none; }

.cta-box h2 { color: #fff; font-size: clamp(1.85rem, 2.8vw, 2.7rem); }

.cta-box p {
  max-width: 650px;
  color: #cbd5e1;
  margin-top: 10px;
  font-size: 1.03rem;
}

.cta-box .btn {
  white-space: nowrap;
  min-width: 210px;
  padding-left: 30px;
  padding-right: 30px;
}

.cta-box .btn-primary { background: #1585d6; color: #fff; }

.cta-box .btn-primary:hover { background: #1179bf; }

.page-hero {
  padding: 88px 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}

.check-list { list-style: none; }

.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  font-weight: 650;
  color: var(--dark);
}

.check-list i { color: var(--primary); margin-top: 5px; }

.check-list.compact li { font-size: .95rem; }

.check-list.big li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.service-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-group {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
}

.listing-group.featured { background: var(--bg-section); }

.listing-group h2 { font-size: 1.4rem; margin-bottom: 18px; }

.listing-group > a {
  display: block;
  border-top: 1px solid var(--border);
  padding: 16px 0;
  font-weight: 760;
  color: var(--dark);
}

.listing-group > a:hover { color: var(--primary); }

.listing-group small {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 5px;
}

.standalone { box-shadow: var(--shadow-soft); }

.contact-section { padding: 80px 0; }

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

.contact-info p {
  margin: 16px 0 34px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.info-box {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.info-box i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  color: var(--primary);
  border-radius: 10px;
}

.info-box span {
  display: block;
  color: var(--dark);
  font-weight: 760;
}

.info-box small { color: var(--text-muted); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-section);
  margin-bottom: 16px;
  color: var(--dark);
}

.form-control:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: .88rem;
}

.checkbox-group a { color: var(--primary); text-decoration: underline; }

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

.form-message.success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.form-message.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.legal p { margin-bottom: 18px; }

.site-footer {
  background: #111827;
  color: #94a3b8;
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.site-footer h4 { color: #fff; margin-bottom: 14px; }

.site-footer a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 8px;
  font-size: .92rem;
}

.site-footer a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding-top: 22px;
  font-size: .88rem;
}

.callback-container {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.callback-widget {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(232, 93, 4, .34);
  animation: pulse 2s infinite;
}

@keyframes pulse { 70% { box-shadow: 0 0 0 15px rgba(232, 93, 4, 0); } }

.callback-tooltip {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: .9rem;
}

.callback-tooltip button {
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  margin-left: 8px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 34px;
  width: 100%;
  box-shadow: var(--shadow);
}

.modal-sm { max-width: 410px; text-align: center; }

.modal-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.modal-content p { color: var(--text-muted); margin: 10px 0 20px; }

.close-modal {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .hero-grid, .split, .service-hero-grid, .contact-grid { grid-template-columns: 1fr; }

  .hero-card { margin-top: 0; }

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

  .footer-grid, .service-listing { grid-template-columns: 1fr 1fr; }

  .cta-box { display: block; padding: 38px 32px; }

  .cta-box .btn { margin-top: 24px; min-width: min(100%, 360px); }
}

@media (max-width: 820px) {
  body { padding-top: 74px; }

  .header-inner { height: 74px; }

  .hamburger { display: flex; }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 18px 18px;
    max-height: calc(100vh - 74px);
    overflow: auto;
  }

  .nav.active { display: flex; }

  .nav-link, .nav-trigger, .nav-cta {
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .has-mega { position: static; }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 8px 0 14px;
  }

  .mega-menu:after { display: none; }

  .has-mega.open .mega-menu { display: block; }

  .mega-inner, .with-brand-panel { grid-template-columns: 1fr; }

  .mega-links { grid-template-columns: 1fr; }

  .mega-heading { padding: 16px; }

  .brand-panel { margin-top: 8px; }

  .hero-home, .page-hero { padding: 62px 0; }

  .category-grid, .cards-3, .cards-4 { grid-template-columns: 1fr; }

  .hero-card { padding: 24px; }

  .footer-grid, .service-listing { grid-template-columns: 1fr; }

  .callback-container {
    right: 18px;
    bottom: 18px;
    align-items: flex-end;
    flex-direction: column;
  }

  .callback-tooltip { max-width: 260px; }

  .section { padding: 60px 0; }

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

  h1 { font-size: 2.28rem; }

  .typing-live { position: static; }

  .typing-sizer { display: none; }
}

:root {
  --primary: #126fa8;
  --primary-hover: #126fa8;
  --navy: #102a43;
  --navy-2: #173b5d;
  --soft-blue: #eef6ff;
}

.btn { border-radius: 9px; box-shadow: none !important; }

.btn:hover { transform: none !important; box-shadow: none !important; }

.btn-primary { background: var(--primary); }

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

.btn-outline:hover { border-color: #aebdcb; background: #fff; }

.cta-section {
  padding: 76px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.cta-box {
  background: #fff;
  color: var(--text-main);
  border: 1px solid #dbe5ef;
  border-left: 7px solid var(--navy);
  border-radius: 18px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
}

.cta-box h2 {
  color: var(--dark);
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  letter-spacing: -.03em;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 720px;
  margin-top: 10px;
}

.cta-box .btn {
  min-width: 250px;
  min-height: 52px;
  background: var(--navy);
  border-color: var(--navy);
}

.cta-box .btn:hover { background: var(--navy); border-color: var(--navy); }

.page-hero.service-hero { position: relative; overflow: hidden; }

.page-hero.service-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--border);
}

.service-hero-server { background: #f6f9fc; }

.service-hero-advisory { background: #fff; }

.service-hero-advisory .service-hero-grid { grid-template-columns: .95fr 1.05fr; }

.service-hero-web { background: #f8fafc; }

.service-hero-web .brand-panel.standalone {
  background: #fff;
  color: var(--text-main);
  border: 1px solid #dbe5ef;
  box-shadow: var(--shadow-soft);
}

.service-hero-web .brand-panel.standalone h3 { color: var(--dark); }

.service-hero-web .brand-panel.standalone p { color: var(--text-muted); }

.service-hero-web .brand-panel.standalone .brand-link { color: var(--primary); }

.service-hero-web .brand-panel.standalone:after { background: var(--primary); }

.service-features-section .section-header { margin-bottom: 30px; }

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

.feature-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  min-height: 190px;
}

.feature-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--soft-blue);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.feature-item h3 {
  font-size: 1.08rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.packages-section .section-header { max-width: 820px; }

@media (max-width: 1020px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cta-box { grid-template-columns: 1fr; }
}

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

  .cta-box { padding: 30px 24px; border-left-width: 5px; }

  .cta-box .btn { width: 100%; min-width: 0; }
}

.cta-section {
  padding: 74px 0;
  background: #f6f8fb;
  border-top: 1px solid var(--border);
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: #102a43;
  color: #e5edf6;
  border: 1px solid #183a59;
  border-left: 0;
  border-radius: 20px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(16, 42, 67, .16);
}

.cta-box:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: #1f8bd2;
}

.cta-box:after {
  content: "";
  position: absolute;
  right: 44px;
  bottom: 34px;
  width: 150px;
  height: 1px;
  background: rgba(255,255,255,.22);
}

.cta-copy { position: relative; z-index: 1; }

.cta-box .eyebrow { color: #7cc2f0; }

.cta-box h2 {
  color: #fff;
  max-width: 780px;
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  letter-spacing: -.035em;
}

.cta-box p {
  color: #c8d8e8;
  max-width: 740px;
  margin-top: 12px;
  font-size: 1.03rem;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
  min-width: 260px;
  min-height: 56px;
  background: #fff;
  border-color: #fff;
  color: #102a43;
  border-radius: 10px;
}

.cta-box .btn:hover {
  background: #fff;
  border-color: #fff;
  color: #102a43;
}

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

@media (max-width: 1020px) {
  .cta-box { grid-template-columns: 1fr; }

  .cta-box:after { display: none; }

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

@media (max-width: 820px) {
  .cta-box { padding: 34px 26px 34px 30px; }

  .cta-box .btn { width: 100%; min-width: 0; }

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

.nav-link:hover, .nav-trigger:hover { color: var(--primary); }

.mega-links a:hover { background: #eef7ff; border-color: #b9ddf5; }

.mega-links a:hover strong { color: #0f6fae; }

.mega-heading { background: #f4faff; border-color: #d8ecfa; }

.mega-menu:after { background: #1f8bd2; opacity: .75; }

.cta-section { background: #f6f8fb; }

.cta-box {
  background: #102a43;
  border: 1px solid #173b5d;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(16, 42, 67, .13);
  padding: 44px 48px;
}

.cta-box:before, .cta-box:after { display: none !important; content: none !important; }

.cta-box .eyebrow { color: #8fd0fb; }

.cta-box p { color: #d2dfeb; }

.cta-box .btn {
  background: #f8fbff;
  border-color: #f8fbff;
  color: #102a43;
  min-width: 270px;
}

.cta-box .btn:hover {
  background: #eaf6ff;
  border-color: #eaf6ff;
  color: #102a43;
}

@media (max-width: 820px) {
  .cta-box { padding: 34px 26px; }
}

.mega-menu:after, .mega-heading:before, .brand-panel:after, .page-hero.service-hero:after, .service-hero-web .brand-panel.standalone:after, .cta-box:before, .cta-box:after { display: none !important; content: none !important; }

.mega-heading { padding-top: 22px; }

.cta-box { overflow: hidden; }

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

.process-tile {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  padding: 28px 24px;
  min-height: 210px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
}

.process-tile::before {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  bottom: -18px;
  color: #e7f2fb;
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.06em;
  z-index: 0;
}

.process-tile > * { position: relative; z-index: 1; }

.process-tile span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-tile h3 { font-size: 1.08rem; margin-bottom: 10px; }

.process-tile p {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.55;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial-card footer {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: .9rem;
}

.testimonial-card strong {
  display: block;
  color: var(--dark);
  margin-bottom: 3px;
}

.testimonial-stars {
  color: #fbbc04;
  letter-spacing: 3px;
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.testimonial-card { position: relative; }

.testimonial-card::after {
  content: "Facebook";
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--text-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .process-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .process-grid, .testimonials-grid { grid-template-columns: 1fr; }

  .process-tile { min-height: 185px; padding: 24px; }

  .process-tile::before {
    font-size: 5rem;
    right: 14px;
    bottom: -14px;
  }
}

.mega-inner { grid-template-columns: 300px 1fr; gap: 22px; }

.mega-heading {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 18px;
  background: #102a43;
  border: 1px solid #173b5d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
  isolation: isolate;
}

.mega-heading::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  z-index: -1;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 8.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, .085);
}

.nav .has-mega:nth-of-type(2) .mega-heading::after { content: ""; }

.mega-heading span {
  position: relative;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.mega-heading span::before {
  content: "Kategoria";
  display: block;
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #8fd0fb;
  font-size: .68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mega-heading p {
  position: relative;
  color: #d7e5f2;
  max-width: 220px;
}

.mega-links a { border-color: #edf2f7; }

.mega-links a:hover { background: #eef7ff; border-color: #99d1f4; }

@media (max-width: 1020px) {
  .mega-inner { grid-template-columns: 1fr; }

  .mega-heading { min-height: 190px; }

  .mega-heading p { max-width: 560px; }
}

@media (max-width: 820px) {
  .mega-heading { min-height: 160px; padding: 22px; }

  .mega-heading::after {
    font-size: 6.4rem;
    right: -10px;
    bottom: -18px;
  }

  .mega-heading span::before { margin-bottom: 14px; }
}

.brand-mega .mega-inner.with-brand-panel {
  grid-template-columns: minmax(0, 1.05fr) 360px;
  align-items: stretch;
  gap: 18px;
}

.brand-mega .mega-inner.with-brand-panel > div:first-child {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 14px;
}

.brand-panel-web {
  background: #102a43;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: none;
}

.brand-panel-web::before {
  content: "</>";
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(255,255,255,.06);
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.08em;
}

.brand-panel-web .eyebrow, .brand-panel-web h3, .brand-panel-web p, .brand-panel-web .brand-link, .brand-panel-web .brand-tags { position: relative; }

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 20px;
}

.brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #dbeafe;
  font-size: .78rem;
  font-weight: 760;
}

.brand-panel-web .brand-link { padding-top: 4px; }

@media (max-width: 1020px) {
  .brand-mega .mega-inner.with-brand-panel, .brand-mega .mega-inner.with-brand-panel > div:first-child { grid-template-columns: 1fr; }
}

.brand-mega .mega-inner.with-brand-panel { grid-template-columns: minmax(0, 1fr) 360px; gap: 18px; }

.brand-mega .mega-inner.with-brand-panel > div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

@media (max-width: 1020px) {
  .brand-mega .mega-inner.with-brand-panel, .brand-mega .mega-inner.with-brand-panel > div:first-child { grid-template-columns: 1fr; }
}

.brand-mega .mega-inner.with-brand-panel { grid-template-columns: minmax(0, 1.2fr) 360px; gap: 18px; }

.brand-mega .mega-inner.with-brand-panel > .web-menu-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 100%;
}

.web-menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #dce9f3;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.web-menu-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eef7ff;
  border: 1px solid #cfe8f8;
}

.web-menu-card::after {
  position: absolute;
  right: 28px;
  top: 25px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  opacity: .9;
}

.web-menu-card:nth-child(1)::after { content: ""; }

.web-menu-card:nth-child(2)::after { content: ""; }

.web-menu-card:nth-child(3)::after { content: ""; }

.web-menu-card.primary-web-card { background: #eef7ff; border-color: #bfe2f8; }

.web-menu-card:hover { background: #eef7ff; border-color: #8cccf2; }

.web-menu-kicker {
  color: var(--primary);
  font-size: .72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.web-menu-card strong {
  display: block;
  color: var(--dark);
  font-size: 1.06rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.web-menu-card small {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .brand-mega .mega-inner.with-brand-panel, .brand-mega .mega-inner.with-brand-panel > .web-menu-links { grid-template-columns: 1fr; }

  .web-menu-card { min-height: 150px; }
}

@media (max-width: 820px) {
  .web-menu-card { min-height: 0; padding: 18px; }

  .web-menu-card::before, .web-menu-card::after { display: none; }
}

.hosting-packages-section .section-header { max-width: 900px; }

.turbo-btn { background: #6d28d9; border-color: #6d28d9; }

.turbo-btn:hover { background: #5b21b6; border-color: #5b21b6; }

.brand-mega .mega-inner.with-brand-panel {
  grid-template-columns: minmax(0, .95fr) 390px;
  align-items: stretch;
  gap: 22px;
}

.brand-mega .mega-inner.with-brand-panel > .web-menu-links.web-menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 0;
}

.web-menu-list .web-menu-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  min-height: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
}

.web-menu-list .web-menu-card.primary-web-card { background: #f7fbff; }

.web-menu-list .web-menu-card::before, .web-menu-list .web-menu-card::after { display: none; }

.web-menu-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f5ff;
  border: 1px solid #c7e6f8;
  color: var(--primary);
  font-size: 1rem;
}

.web-menu-copy { display: block; }

.web-menu-list .web-menu-kicker { display: block; margin-bottom: 6px; }

.web-menu-list .web-menu-card strong { margin-bottom: 5px; }

.web-menu-list .web-menu-card small { display: block; max-width: 520px; }

.brand-panel-web { min-height: 100%; }

@media (max-width: 1020px) {
  .brand-mega .mega-inner.with-brand-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .web-menu-list .web-menu-card { grid-template-columns: 44px minmax(0, 1fr); padding: 16px; }

  .web-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
}

.hosting-switch {
  width: min(560px, 100%);
  margin: 0 auto 26px;
  padding: 6px;
  border: 1px solid #dbe7f1;
  border-radius: 999px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.hosting-switch-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.hosting-switch-btn span {
  display: block;
  font-size: .98rem;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: .04em;
}

.hosting-switch-btn small {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: .03em;
}

.hosting-switch-btn.active {
  color: #fff;
  background: #0f2d46;
  box-shadow: 0 10px 24px rgba(15,45,70,.12);
}

.hosting-switch-btn.turbo.active { background: #6d28d9; box-shadow: 0 10px 24px rgba(109,40,217,.14); }

.hosting-tab-panel[hidden] { display: none !important; }

.hosting-tab-panels { min-height: 1px; }

@media (max-width: 620px) {
  .hosting-switch {
    border-radius: 22px;
    grid-template-columns: 1fr;
    padding: 7px;
  }

  .hosting-switch-btn { border-radius: 16px; }
}

.hosting-buy-panels { margin-top: 12px; }

.hosting-offer-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe7f1;
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(15, 45, 70, .07);
}

.hosting-offer-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background: linear-gradient(180deg, rgba(232, 245, 255, .82), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hosting-offer-head, .hosting-offer-grid { position: relative; z-index: 1; }

.hosting-offer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 24px;
}

.hosting-offer-head h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  letter-spacing: -.045em;
  margin-bottom: 10px;
}

.hosting-offer-head p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.offer-signal {
  width: 118px;
  height: 118px;
  border-radius: 30px;
  background: #0f2d46;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 18px 42px rgba(15, 45, 70, .16);
}

.offer-signal strong { font-size: 1.35rem; letter-spacing: -.03em; }

.offer-signal span {
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .78;
}

.offer-signal.turbo { background: #5b21b6; box-shadow: 0 18px 42px rgba(91, 33, 182, .18); }

.hosting-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.host-plan-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #dbe7f1;
  background: rgba(255,255,255,.92);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 34px rgba(15, 45, 70, .055);
}

.host-plan-card.best-plan {
  border-color: #9ed7f6;
  background: #f7fcff;
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(11, 117, 183, .13);
}

.host-plan-card.turbo-best {
  border-color: #c4b5fd;
  background: #fbf7ff;
  box-shadow: 0 22px 56px rgba(91, 33, 182, .14);
}

.host-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e8f5ff;
  color: #0b75b7;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.turbo-plan .plan-pill { background: #f3e8ff; color: #6d28d9; }

.host-plan-card h3 {
  font-size: 1.32rem;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}

.host-plan-card p {
  color: var(--text-muted);
  line-height: 1.58;
  margin-bottom: 18px;
}

.plan-details {
  display: grid;
  gap: 10px;
  margin: 2px 0 24px;
  flex: 1;
}

.plan-details span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #24344d;
  font-size: .95rem;
  line-height: 1.4;
}

.plan-details i { color: #0b75b7; margin-top: 3px; }

.turbo-plan .plan-details i { color: #6d28d9; }

.plan-action { margin-top: auto; }

.ribbon {
  position: absolute;
  top: -14px;
  left: 24px;
  right: 24px;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #0b75b7;
  color: #fff;
  text-align: center;
  font-size: .78rem;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: .03em;
}

.turbo-best .ribbon { background: #6d28d9; }

.turbo-offer { border-color: #eadcff; }

.turbo-offer::before { background: linear-gradient(180deg, rgba(243, 232, 255, .88), rgba(255,255,255,0)); }

@media (max-width: 1100px) {
  .hosting-offer-grid { grid-template-columns: 1fr; }

  .host-plan-card.best-plan { transform: none; }
}

@media (max-width: 720px) {
  .hosting-offer-shell { padding: 20px; border-radius: 22px; }

  .hosting-offer-head { flex-direction: column; }

  .offer-signal {
    width: auto;
    height: auto;
    min-height: 0;
    padding: 13px 16px;
    border-radius: 18px;
    align-items: flex-start;
  }

  .host-plan-card { padding: 20px; border-radius: 20px; }

  .host-plan-top { align-items: center; }

  .ribbon {
    position: static;
    margin: -4px 0 16px;
    border-radius: 14px;
  }
}

.hosting-buy-panels { margin-top: 26px; }

.hosting-offer-shell {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.hosting-offer-shell::before { display: none; }

.hosting-offer-head { display: none; }

.hosting-offer-grid {
  position: relative;
  z-index: 1;
  gap: 22px;
}

.host-plan-card {
  border: 0;
  background: #fff;
  box-shadow: 0 16px 46px rgba(15, 45, 70, .08);
}

.host-plan-card.best-plan {
  border: 0;
  background: #fff;
  transform: none;
  box-shadow: 0 24px 60px rgba(11, 117, 183, .16);
}

.host-plan-card.turbo-best {
  border: 0;
  background: #fff;
  box-shadow: 0 24px 60px rgba(91, 33, 182, .17);
}

.host-plan-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: #0b75b7;
  opacity: .18;
}

.host-plan-card.turbo-plan::after { background: #6d28d9; }

.ribbon {
  top: 18px;
  left: auto;
  right: 18px;
  width: auto;
  min-height: 0;
  max-width: 178px;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: .72rem;
  text-align: right;
}

.host-plan-card.best-plan .host-plan-top { padding-right: 160px; }

@media (max-width: 720px) {
  .hosting-buy-panels { margin-top: 20px; }

  .host-plan-card.best-plan .host-plan-top { padding-right: 0; padding-top: 42px; }

  .ribbon {
    top: 16px;
    left: 20px;
    right: auto;
    text-align: left;
  }
}

.hosting-offer-grid { gap: 28px; }

.host-plan-card {
  overflow: hidden;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 45, 70, .075);
}

.host-plan-card::after { display: none; }

.host-plan-card.best-plan, .host-plan-card.turbo-best { background: #fff; box-shadow: 0 22px 58px rgba(15, 45, 70, .105); }

.host-plan-card.turbo-best { box-shadow: 0 22px 58px rgba(91, 33, 182, .14); }

.host-plan-top {
  min-height: 74px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.plan-pill {
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 14px;
  white-space: nowrap;
  background: #eef8ff;
  color: #0b75b7;
  letter-spacing: .055em;
}

.turbo-plan .plan-pill { background: #f4ecff; color: #6d28d9; }

.custom-plan .plan-pill { background: #f4f7fb; color: #334155; }

.host-plan-card h3 {
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -.032em;
  margin-bottom: 12px;
}

.host-plan-card p {
  font-size: .98rem;
  line-height: 1.58;
  margin-bottom: 20px;
}

.plan-details { gap: 12px; margin-bottom: 26px; }

.plan-details span {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  font-size: .94rem;
  color: #25364f;
}

.plan-details i {
  width: 20px;
  text-align: center;
  font-size: .9rem;
}

.ribbon {
  position: static;
  align-self: flex-start;
  width: auto;
  max-width: none;
  min-height: 0;
  margin: -4px 0 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf6ff;
  color: #0b75b7;
  text-align: left;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.turbo-best .ribbon { background: #f0e7ff; color: #6d28d9; }

.host-plan-card.best-plan .host-plan-top { padding-right: 0; }

.host-plan-card .btn.full { min-height: 52px; border-radius: 12px; }

.host-plan-card.turbo-best .btn-primary, .host-plan-card .turbo-btn { background: #6d28d9; border-color: #6d28d9; }

.host-plan-card.turbo-best .btn-primary:hover, .host-plan-card .turbo-btn:hover { background: #5b21b6; border-color: #5b21b6; }

@media (min-width: 1101px) {
  .hosting-offer-grid { align-items: stretch; }

  .host-plan-card.best-plan, .host-plan-card.turbo-best { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .hosting-offer-grid { gap: 18px; }

  .host-plan-card { padding: 22px; border-radius: 22px; }

  .host-plan-top { min-height: 0; margin-bottom: 18px; }

  .plan-pill { white-space: normal; }

  .ribbon { margin: 0 0 14px; }

  .host-plan-card.best-plan .host-plan-top { padding-top: 0; }
}

.host-plan-top { min-height: 48px !important; margin-bottom: 24px !important; }

@media (max-width: 640px) {
  .host-plan-top { gap: 10px !important; }
}

.host-plan-top { min-height: 0 !important; margin-bottom: 18px !important; }

.storage-spec {
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #102f49;
}

.storage-spec strong {
  display: inline-block;
  font-size: clamp(2.25rem, 4vw, 3.15rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 850;
}

.storage-spec span {
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 850;
  color: #0b75b7;
}

.storage-spec.turbo { color: #5b21b6; }

.storage-spec.turbo span { color: #6d28d9; }

.host-plan-card h3 { margin-top: 0 !important; }

@media (max-width: 640px) {
  .storage-spec { margin-bottom: 16px; }

  .storage-spec strong { font-size: 2.35rem; }
}

.storage-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #334155;
  font-size: .76rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.storage-note.turbo { background: #f4ecff; color: #5b21b6; }

.plan-price {
  margin: 18px 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 45, 70, .10);
}

.plan-price strong {
  display: block;
  color: #102f49;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 850;
}

.plan-price span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: .86rem;
  line-height: 1.25;
  font-weight: 750;
}

.plan-price.turbo strong { color: #5b21b6; }

.host-plan-card p + .plan-price { margin-top: 4px; }

.plan-details { margin-top: 0 !important; }

@media (max-width: 640px) {
  .plan-price { margin-bottom: 20px; }

  .plan-price strong { font-size: 1.72rem; }
}

.host-plan-card .plan-details {
  flex: 0 0 auto !important;
  align-content: start !important;
  grid-auto-rows: max-content !important;
  gap: 12px !important;
  margin-bottom: 26px !important;
}

.host-plan-card .plan-details span { min-height: 0 !important; align-items: start !important; }

.host-plan-card .plan-action { margin-top: auto !important; }

.hosting-configurator-section { background: #fff; }

.configurator-layout {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.42fr);
  gap: 34px;
  align-items: start;
}

.configurator-copy { position: sticky; top: 110px; }

.configurator-copy h2 {
  margin: 10px 0 16px;
  max-width: 620px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.07em;
}

.configurator-copy p {
  color: #62728a;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hosting-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: start;
}

.configurator-steps { display: grid; gap: 14px; }

.config-step {
  background: #f8fbff;
  border: 1px solid #dce9f5;
  border-radius: 28px;
  padding: 24px;
}

.config-step-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  margin-bottom: 18px;
}

.config-step-head > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce9f5;
  color: #0b75b7;
  font-weight: 850;
  letter-spacing: .08em;
}

.config-step h3 {
  margin: 0 0 5px;
  font-size: 1.14rem;
  letter-spacing: -.035em;
}

.config-step p {
  margin: 0;
  color: #65758d;
  line-height: 1.55;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-row button, .care-choice-grid button {
  border: 1px solid #d8e5f1;
  background: #fff;
  color: #142033;
  border-radius: 999px;
  padding: 11px 15px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}

.choice-row button:hover, .care-choice-grid button:hover { border-color: #8acbf3; background: #eef8ff; }

.choice-row button.active, .care-choice-grid button.active {
  border-color: #0b75b7;
  background: #0b75b7;
  color: #fff;
}

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

.care-choice-grid button {
  border-radius: 20px;
  padding: 15px;
  text-align: left;
}

.care-choice-grid button strong, .care-choice-grid button small { display: block; }

.care-choice-grid button strong { margin-bottom: 4px; font-size: 1rem; }

.care-choice-grid button small {
  color: #65758d;
  font-weight: 700;
  line-height: 1.35;
}

.care-choice-grid button.active small { color: rgba(255,255,255,.76); }

.config-summary {
  position: sticky;
  top: 110px;
  background: #102f49;
  color: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(16, 47, 73, .16);
}

.summary-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #9dd8ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 850;
}

.summary-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.summary-lines p {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.summary-lines strong, .summary-lines span { display: block; }

.summary-lines strong { font-size: 1.05rem; letter-spacing: -.02em; }

.summary-lines span {
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
}

.summary-price { margin: 8px 0 22px; }

.summary-price strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.summary-price > span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-weight: 750;
}

.config-summary .btn {
  background: #fff;
  color: #102f49;
  border-color: #fff;
}

.config-summary > small {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.58);
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .configurator-layout, .hosting-configurator { grid-template-columns: 1fr; }

  .configurator-copy, .config-summary { position: static; }
}

@media (max-width: 640px) {
  .config-step, .config-summary { border-radius: 22px; padding: 20px; }

  .config-step-head { grid-template-columns: 1fr; gap: 12px; }

  .choice-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .choice-row button { border-radius: 16px; }

  .care-choice-grid { grid-template-columns: 1fr; }
}

.hosting-configurator-section { background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%); }

.configurator-copy {
  background: #fff;
  border: 1px solid #dce9f5;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16, 47, 73, .06);
}

.configurator-copy h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }

.hosting-configurator { gap: 18px; }

.configurator-steps { gap: 16px; }

.config-step {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-color: #dce8f4;
  box-shadow: 0 16px 40px rgba(16, 47, 73, .055);
}

.config-step::after {
  content: attr(data-step-bg);
  position: absolute;
  right: 22px;
  top: -18px;
  color: rgba(11, 117, 183, .055);
  font-size: 7rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  pointer-events: none;
}

.config-step:nth-child(1)::after { content: "WWW"; }

.config-step:nth-child(2)::after { content: "@"; }

.config-step:nth-child(3)::after { content: "IT"; }

.config-step-head {
  position: relative;
  z-index: 1;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.config-step-head > span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eef8ff;
  color: #0b75b7;
  border-color: #cce8fb;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

.config-step h3 { font-size: 1.25rem; }

.choice-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-row button, .care-choice-grid button {
  border-radius: 18px;
  padding: 15px 14px;
  min-height: 58px;
  background: #f9fbfe;
  border-color: #dce8f4;
  text-align: center;
  box-shadow: none;
}

.choice-row button:hover, .care-choice-grid button:hover { background: #eef8ff; border-color: #bfe2f8; }

.choice-row button.active, .care-choice-grid button.active {
  background: #0b75b7;
  border-color: #0b75b7;
  color: #fff;
}

.care-choice-grid { position: relative; z-index: 1; }

.care-choice-grid button { min-height: 96px; text-align: left; }

.care-choice-grid button strong { font-size: 1.02rem; }

.config-summary { box-shadow: 0 20px 60px rgba(16, 47, 73, .18); }

@media (max-width: 640px) {
  .configurator-copy { padding: 22px; border-radius: 22px; }

  .config-step::after {
    right: 14px;
    top: -6px;
    font-size: 4.8rem;
  }

  .config-step-head { grid-template-columns: 48px 1fr; gap: 14px; }

  .config-step-head > span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .choice-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .choice-row button { min-height: 54px; padding: 13px 10px; }
}

.configurator-layout { grid-template-columns: minmax(260px, .7fr) minmax(0, 1.5fr); }

.configurator-copy { box-shadow: none; background: #f7fbff; }

.config-step {
  padding: 22px;
  background: #fff;
  border: 1px solid #dfeaf4;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 47, 73, .055);
}

.config-step::after { display: none !important; }

.config-step-head {
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.config-step-head > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f1f8fd;
  border-color: #d5ebfa;
  font-size: .86rem;
  letter-spacing: .08em;
}

.config-step h3 { font-size: 1.2rem; letter-spacing: -.04em; }

.config-step p {
  max-width: 560px;
  font-size: .98rem;
  line-height: 1.5;
}

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

.choice-row button, .care-choice-grid button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  min-height: 76px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dce8f3;
  color: #132034;
  text-align: left;
  box-shadow: 0 8px 20px rgba(16, 47, 73, .035);
}

.choice-row button strong, .care-choice-grid button strong {
  display: block;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.choice-row button small, .care-choice-grid button small {
  display: block;
  color: #6a7890;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.25;
}

.choice-row button:hover, .care-choice-grid button:hover {
  transform: none;
  border-color: #9fd4f4;
  background: #f7fcff;
}

.choice-row button.active, .care-choice-grid button.active {
  background: #0b75b7;
  border-color: #0b75b7;
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 117, 183, .18);
}

.choice-row button.active small, .care-choice-grid button.active small { color: rgba(255,255,255,.78); }

.choice-row button.active::after, .care-choice-grid button.active::after {
  content: "✓";
  position: absolute;
  right: 13px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.care-choice-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }

.care-choice-grid button {
  min-height: 112px;
  justify-content: flex-start;
  padding-top: 18px;
}

.config-summary { border-radius: 24px; }

@media (max-width: 1120px) {
  .care-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .config-step { padding: 18px; border-radius: 22px; }

  .config-step-head { grid-template-columns: 38px 1fr; gap: 12px; }

  .config-step-head > span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: .78rem;
  }

  .config-step h3 { font-size: 1.08rem; }

  .choice-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .choice-row button, .care-choice-grid button {
    min-height: 70px;
    border-radius: 16px;
    padding: 14px;
  }

  .choice-row button strong, .care-choice-grid button strong { font-size: .98rem; }

  .choice-row button small, .care-choice-grid button small { font-size: .73rem; }

  .care-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .care-choice-grid button { min-height: 102px; }
}

.hosting-configurator { grid-template-columns: minmax(0, 1fr) 300px; }

.config-step { overflow: visible; }

.config-step::after { display: none !important; }

.config-step-head { align-items: start; margin-bottom: 18px; }

.config-step h3 { line-height: 1.12; }

.config-step p { max-width: 620px; }

.choice-row, .care-choice-grid { position: relative; z-index: 2; }

.choice-row button, .care-choice-grid button {
  overflow: hidden;
  min-width: 0;
  line-height: 1.2;
}

.choice-row button strong, .care-choice-grid button strong, .choice-row button small, .care-choice-grid button small { overflow-wrap: anywhere; hyphens: auto; }

.care-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.care-choice-grid button { min-height: 92px; padding: 16px 18px; }

.care-choice-grid button strong { font-size: 1rem; }

.care-choice-grid button small { font-size: .82rem; }

@media (max-width: 980px) {
  .hosting-configurator { grid-template-columns: 1fr; }

  .config-summary { position: static; }
}

@media (max-width: 760px) {
  .configurator-layout, .hosting-configurator { gap: 16px; }

  .config-step { padding: 18px; border-radius: 22px; }

  .config-step-head {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .config-step-head > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: .8rem;
  }

  .config-step h3 { font-size: 1.12rem; letter-spacing: -.035em; }

  .config-step p { font-size: .95rem; line-height: 1.45; }

  .choice-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .choice-row button {
    min-height: 76px;
    padding: 14px 14px;
    text-align: left;
    align-items: flex-start;
  }

  .choice-row button strong { font-size: 1rem; }

  .choice-row button small { font-size: .78rem; }

  .choice-row button.active::after, .care-choice-grid button.active::after {
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    font-size: .72rem;
  }

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

  .care-choice-grid button {
    min-height: 0;
    padding: 16px 46px 16px 16px;
    border-radius: 17px;
    display: grid;
    grid-template-columns: minmax(84px, .55fr) minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
  }

  .care-choice-grid button strong { margin: 0; font-size: 1rem; }

  .care-choice-grid button small { font-size: .8rem; line-height: 1.3; }

  .config-summary { border-radius: 22px; padding: 22px; }
}

@media (max-width: 420px) {
  .choice-row { grid-template-columns: 1fr 1fr; }

  .choice-row button { min-height: 72px; padding: 13px 12px; }

  .choice-row button strong { font-size: .96rem; }

  .choice-row button small { font-size: .72rem; }

  .care-choice-grid button { grid-template-columns: 1fr; gap: 4px; }
}

.hosting-configurator-section { background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%); }

.hosting-configurator { align-items: start; }

.configurator-steps { gap: 18px; }

.config-step {
  background: #fff;
  border: 1px solid #d8e8f4;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(13, 37, 62, .06);
  padding: 26px;
}

.config-step-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.config-step-head > span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #eef8ff;
  border: 1px solid #c9e7fa;
  color: #0879bd;
  display: grid;
  place-items: center;
  font-weight: 850;
  letter-spacing: .04em;
}

.config-step h3 {
  margin: 0 0 5px;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.config-step p {
  margin: 0;
  color: #65748c;
  line-height: 1.5;
}

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

.choice-row button, .care-choice-grid button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  min-height: 88px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid #d8e8f4;
  background: #fbfdff;
  color: #121a2b;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.choice-row button:hover, .care-choice-grid button:hover { background: #f4fbff; border-color: #93cef0; }

.choice-row button strong, .care-choice-grid button strong {
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.choice-row button small, .care-choice-grid button small {
  color: #687790;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.25;
}

.choice-row button.active, .care-choice-grid button.active {
  background: #f0f9ff;
  border-color: #1083c6;
  color: #121a2b;
  box-shadow: inset 0 0 0 1px rgba(16, 131, 198, .16), 0 12px 24px rgba(13, 37, 62, .06);
}

.choice-row button.active strong, .care-choice-grid button.active strong { color: #0879bd; }

.choice-row button.active small, .care-choice-grid button.active small { color: #4d6078; }

.choice-row button.active::after, .care-choice-grid button.active::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1083c6;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

.care-choice-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.care-choice-grid button { min-height: 104px; }

.config-summary { border: 1px solid #d8e8f4; box-shadow: 0 18px 42px rgba(13, 37, 62, .08); }

@media (max-width: 1120px) {
  .care-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .config-step { padding: 18px; border-radius: 22px; }

  .config-step-head {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .config-step-head > span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: .78rem;
  }

  .config-step h3 { font-size: 1.12rem; }

  .config-step p { font-size: .94rem; }

  .choice-row, .care-choice-grid { grid-template-columns: 1fr; gap: 9px; }

  .choice-row button, .care-choice-grid button {
    min-height: 62px;
    border-radius: 16px;
    padding: 13px 46px 13px 15px;
    display: grid;
    grid-template-columns: minmax(88px, .46fr) minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
  }

  .choice-row button strong, .care-choice-grid button strong { font-size: 1rem; }

  .choice-row button small, .care-choice-grid button small { font-size: .78rem; line-height: 1.22; }

  .choice-row button.active, .care-choice-grid button.active { background: #f0f9ff; }

  .choice-row button.active::after, .care-choice-grid button.active::after {
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 390px) {
  .choice-row button, .care-choice-grid button {
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 68px;
  }
}

.choice-row button strong, .care-choice-grid button strong, .choice-row button small, .care-choice-grid button small {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.choice-row button strong, .care-choice-grid button strong { white-space: nowrap; }

@media (max-width: 980px) {
  .hosting-configurator { grid-template-columns: 1fr !important; }

  .choice-row, .care-choice-grid {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  .choice-row button, .care-choice-grid button {
    width: 100%;
    min-height: 62px !important;
    padding: 14px 48px 14px 16px !important;
    border-radius: 16px;
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 14px;
  }

  .choice-row button strong, .care-choice-grid button strong { font-size: 1.02rem !important; line-height: 1.1; }

  .choice-row button small, .care-choice-grid button small {
    font-size: .82rem !important;
    line-height: 1.2;
    text-align: right;
    justify-self: end;
    white-space: normal;
  }

  .choice-row button.active, .care-choice-grid button.active {
    background: #f1f9ff;
    border-color: #1083c6;
    box-shadow: inset 4px 0 0 #1083c6, 0 10px 24px rgba(13, 37, 62, .05);
  }

  .choice-row button.active::after, .care-choice-grid button.active::after {
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%);
  }
}

@media (max-width: 520px) {
  .config-step { padding: 16px !important; }

  .config-step-head { grid-template-columns: 38px 1fr !important; gap: 12px; }

  .config-step-head > span {
    width: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
    font-size: .76rem;
  }

  .choice-row button, .care-choice-grid button {
    min-height: 58px !important;
    padding: 13px 44px 13px 14px !important;
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  }

  .choice-row button strong, .care-choice-grid button strong { font-size: .98rem !important; }

  .choice-row button small, .care-choice-grid button small { font-size: .78rem !important; }
}

@media (max-width: 360px) {
  .choice-row button, .care-choice-grid button { grid-template-columns: 1fr; row-gap: 2px; }

  .choice-row button small, .care-choice-grid button small { justify-self: start; text-align: left; }
}

@media (max-width: 1200px) {
  .hosting-configurator .choice-row, .hosting-configurator .care-choice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    width: 100%;
    min-height: 56px !important;
    padding: 12px 48px 12px 16px !important;
    border-radius: 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    text-align: left !important;
  }

  .hosting-configurator .choice-row button strong, .hosting-configurator .care-choice-grid button strong {
    flex: 0 0 auto;
    max-width: none;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 1rem !important;
    line-height: 1.1 !important;
  }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small {
    flex: 1 1 auto;
    min-width: 0;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .82rem !important;
    line-height: 1.15 !important;
  }

  .hosting-configurator .choice-row button.active, .hosting-configurator .care-choice-grid button.active {
    background: #f1f9ff !important;
    border-color: #1083c6 !important;
    box-shadow: inset 4px 0 0 #1083c6, 0 8px 22px rgba(13, 37, 62, .05) !important;
  }

  .hosting-configurator .choice-row button.active::after, .hosting-configurator .care-choice-grid button.active::after {
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 520px) {
  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    min-height: 54px !important;
    padding: 11px 44px 11px 14px !important;
    gap: 12px !important;
  }

  .hosting-configurator .choice-row button strong, .hosting-configurator .care-choice-grid button strong { font-size: .96rem !important; }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small { font-size: .76rem !important; }
}

@media (max-width: 360px) {
  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button { padding-right: 40px !important; }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small { font-size: .72rem !important; }
}

.hosting-configurator .care-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px !important; }

.hosting-configurator .care-choice-grid button {
  min-height: 86px !important;
  padding: 16px 46px 16px 18px !important;
  border-radius: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px !important;
}

.hosting-configurator .care-choice-grid button strong {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 1.02rem !important;
  line-height: 1.1 !important;
}

.hosting-configurator .care-choice-grid button small {
  max-width: 100%;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: .82rem !important;
  line-height: 1.25 !important;
}

.hosting-configurator .care-choice-grid button.active::after {
  right: 16px !important;
  top: 16px !important;
  transform: none !important;
}

@media (max-width: 680px) {
  .hosting-configurator .care-choice-grid { grid-template-columns: 1fr !important; }

  .hosting-configurator .care-choice-grid button { min-height: 64px !important; padding: 14px 48px 14px 16px !important; }
}

.speed-hero, .repair-hero { overflow: hidden; }

.repair-status-card {
  background: #fff;
  border: 1px solid #dbe8f4;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 26px 70px rgba(15, 35, 58, .08);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eaf6ff;
  color: #0c7fbe;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.repair-status-card li { color: #62728b; line-height: 1.6; }

.repair-status-card h3 { margin: 22px 0 18px; }

.repair-status-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.repair-status-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.repair-status-card i { color: #0c7fbe; margin-top: 4px; }

@media (max-width: 720px) {
  .repair-status-card { padding: 24px; border-radius: 22px; }
}

.service-visual-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe7f2;
  border-radius: 26px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .10);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.service-visual-panel:before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: #eef8ff;
  border: 1px solid #cfe9fb;
  z-index: -1;
}

.service-visual-panel:after {
  content: "";
  position: absolute;
  left: -80px;
  top: -90px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(21, 133, 214, .07);
  z-index: -2;
}

.panel-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.panel-bg-icons i {
  position: absolute;
  color: rgba(21, 133, 214, .11);
  line-height: 1;
}

.panel-bg-icons i:nth-child(1) {
  right: 34px;
  top: 34px;
  font-size: 2.3rem;
  color: var(--primary);
  opacity: .95;
}

.panel-bg-icons i:nth-child(2) {
  right: 112px;
  top: 105px;
  font-size: 5.2rem;
  opacity: .20;
}

.panel-bg-icons i:nth-child(3) {
  right: 28px;
  bottom: 30px;
  font-size: 7rem;
  opacity: .10;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--primary);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 850;
}

.service-visual-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.16;
  color: var(--dark);
  max-width: 470px;
}

.service-visual-panel p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 520px;
}

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

.panel-mini-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fbfe;
  border: 1px solid #dceaf5;
  color: #26364c;
  font-weight: 760;
  font-size: .92rem;
}

.panel-mini-grid i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}

.service-visual-panel.audit-panel:before, .service-visual-panel.training-panel:before, .service-visual-panel.support-panel:before { background: #eef8ff; border-color: #cfe9fb; }

.service-visual-panel.task-panel:before, .service-visual-panel.config-panel:before { background: #edf6ff; border-color: #cfe9fb; }

@media (max-width: 1020px) {
  .service-visual-panel { min-height: 0; padding: 28px; }
}

@media (max-width: 620px) {
  .service-visual-panel { padding: 24px; border-radius: 22px; }

  .service-visual-panel:before {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .panel-bg-icons i:nth-child(1) {
    right: 33px;
    top: 33px;
    font-size: 1.65rem;
  }

  .panel-bg-icons i:nth-child(2), .panel-bg-icons i:nth-child(3) { display: none; }

  .panel-mini-grid { grid-template-columns: 1fr; }

  .panel-mini-grid span { min-height: 42px; }
}

.service-visual-panel {
  background: #102a43;
  border: 0;
  border-radius: 28px;
  padding: 34px;
  min-height: 330px;
  box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
  justify-content: center;
}

.service-visual-panel:before, .service-visual-panel:after { display: none; }

.service-visual-panel .panel-bg-icons {
  position: absolute;
  top: 28px;
  right: 28px;
  inset: auto 28px auto auto;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  z-index: 1;
}

.service-visual-panel .panel-bg-icons i {
  position: static;
  display: none;
  font-size: 1.45rem;
  color: #ffffff;
  opacity: 1;
}

.service-visual-panel .panel-bg-icons i:first-child { display: block; }

.service-visual-panel .panel-kicker {
  background: transparent;
  color: #61bdf3;
  padding: 0;
  margin-bottom: 20px;
  letter-spacing: .16em;
  font-size: .72rem;
}

.service-visual-panel h3 {
  color: #ffffff;
  max-width: 420px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  margin-bottom: 14px;
}

.service-visual-panel p {
  color: rgba(232, 241, 250, .82);
  max-width: 510px;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.service-visual-panel .panel-mini-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

.service-visual-panel .panel-mini-grid span {
  min-height: 50px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  color: #ffffff;
  font-weight: 780;
  padding: 13px 14px;
}

.service-visual-panel .panel-mini-grid i { color: #61bdf3; opacity: 1; }

.service-visual-panel.audit-panel, .service-visual-panel.training-panel, .service-visual-panel.support-panel { background: #112f4a; }

.service-visual-panel.task-panel, .service-visual-panel.config-panel, .service-visual-panel.server-panel { background: #102a43; }

@media (max-width: 1020px) {
  .service-visual-panel { padding: 30px; min-height: 0; }
}

@media (max-width: 620px) {
  .service-visual-panel { padding: 26px; border-radius: 24px; }

  .service-visual-panel .panel-bg-icons {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    top: 22px;
    right: 22px;
  }

  .service-visual-panel .panel-bg-icons i:first-child { font-size: 1.2rem; }

  .service-visual-panel .panel-kicker { max-width: calc(100% - 64px); line-height: 1.35; }

  .service-visual-panel .panel-mini-grid { grid-template-columns: 1fr; }

  .service-visual-panel .panel-mini-grid span { min-height: 46px; }
}

.service-visual-panel .panel-bg-icons {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: block;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.service-visual-panel .panel-bg-icons i { display: none; }

.service-visual-panel .panel-bg-icons i:first-child {
  display: block;
  position: absolute;
  right: -18px;
  top: 46px;
  font-size: 9.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, .075);
  opacity: 1;
  transform: rotate(-4deg);
}

.service-visual-panel > *:not(.panel-bg-icons) { position: relative; z-index: 1; }

@media (max-width: 620px) {
  .service-visual-panel .panel-bg-icons {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    top: auto;
    right: auto;
  }

  .service-visual-panel .panel-bg-icons i:first-child {
    right: -16px;
    top: 22px;
    font-size: 6.8rem;
    opacity: .9;
  }

  .service-visual-panel .panel-kicker { max-width: 100%; }
}

.service-redesign .section-header.align-left {
  max-width: 850px;
  margin-left: 0;
  text-align: left;
}

.service-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.story-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.sticky-copy { position: sticky; top: 110px; }

.micro-proof {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f4faff;
  border: 1px solid #d9ecfb;
  color: #24364f;
  font-weight: 700;
}

.micro-proof i { color: var(--primary); margin-top: 3px; }

.deployment-map, .training-modules, .support-flow, .maintenance-wheel, .triage-stack { display: grid; gap: 14px; }

.format-cards article, .ticket-grid article, .usecase-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(15,23,42,.04);
}

.usecase-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 38px;
  padding: 0 10px;
  border-radius: 13px;
  background: #eef8ff;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.format-cards h3, .ticket-grid h3, .usecase-grid h3 { margin-bottom: 10px; }

.warning-list { display: grid; gap: 12px; }

.warning-list i { color: #d97706; margin-top: 4px; }

.deployment-map { grid-template-columns: repeat(2, minmax(0,1fr)); }

.deployment-map article {
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  border: 1px solid #d9e8f5;
  box-shadow: 0 18px 42px rgba(15,23,42,.05);
  position: relative;
  overflow: hidden;
}

.deployment-map i, .training-modules i, .scenario-grid i {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: #eef8ff;
  color: var(--primary);
  margin-bottom: 18px;
}

.usecase-grid, .ticket-grid, .sales-grid, .takeover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.deliverable-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 20px 46px rgba(15,23,42,.055);
}

.deliverable-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.deliverable-panel li {
  background: #f6fbff;
  border: 1px solid #d9ecfb;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
  color: #21324a;
}

.deliverable-panel i { color: var(--primary); margin-right: 9px; }

.task-board { display: grid; gap: 14px; }

.task-board article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(15,23,42,.045);
}

.task-board strong { font-size: 1.25rem; }

.ticket-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.risk-matrix { display: grid; gap: 14px; }

.risk-matrix article {
  padding: 26px;
  border-radius: 26px;
  color: #fff;
  background: #102a43;
  box-shadow: 0 18px 42px rgba(15,23,42,.11);
}

.risk-matrix article span {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: .78;
}


.risk-matrix .critical,
.risk-matrix .important,
.risk-matrix .improve {
  background: #fff !important;
  color: var(--dark) !important;
}

.training-modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.training-modules article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-cards span {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.persona-grid {
  display: grid;
  grid-template-columns: .8fr repeat(3,1fr);
  gap: 18px;
  align-items: stretch;
}

.persona-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.support-flow { grid-template-columns: repeat(2, minmax(0,1fr)); counter-reset: flow; }

.support-flow article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
}

.support-flow span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef8ff;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 14px;
}

.sales-grid article, .takeover-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.maintenance-wheel { grid-template-columns: repeat(2, minmax(0,1fr)); }

.maintenance-wheel article {
  background: #fff;
  border: 1px solid #d9e8f5;
  border-radius: 24px;
  padding: 24px;
}

.maintenance-wheel span { color: var(--primary); font-weight: 900; }

.triage-stack article {
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(15,23,42,.045);
}



@media (max-width: 1020px) {
  .service-story-grid, .deliverable-panel { grid-template-columns: 1fr; }

  .sticky-copy { position: static; }

  .usecase-grid, .ticket-grid, .sales-grid, .takeover-grid, .format-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }

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

@media (max-width: 620px) {
  .story-copy h2 { font-size: 2rem; }

  .deployment-map, .training-modules, .support-flow, .maintenance-wheel, .usecase-grid, .ticket-grid, .sales-grid, .takeover-grid, .format-cards, .persona-grid { grid-template-columns: 1fr; }

  .deliverable-panel { padding: 24px; border-radius: 24px; }

  .deliverable-panel ul { grid-template-columns: 1fr; }

  .deployment-map article, .training-modules article, .support-flow article, .maintenance-wheel article, .ticket-grid article, .usecase-grid article, .sales-grid article, .takeover-grid article { padding: 22px; border-radius: 22px; }
}

.hosting-neutral-panel { background: #12304a !important; color: #fff !important; }

.hosting-neutral-panel .panel-mini-grid span { background: rgba(255,255,255,.08) !important; border-color: rgba(255,255,255,.14) !important; }

.hosting-neutral-panel .panel-kicker { color: #7cc7f4 !important; }

.admin-command-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.ops-board {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  background: transparent;
  color: var(--dark);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.ops-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 22px;
  padding: 22px;
  min-height: 150px;
  margin: 0;
  box-shadow: 0 14px 34px rgba(15,45,70,.06);
  overflow: hidden;
}

.ops-row:after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  background: #f1f8fd;
  transform: rotate(12deg);
  z-index: 0;
}

.ops-row div { position: relative; z-index: 1; }

.ops-row strong {
  display: block;
  color: var(--dark);
  font-size: 1.08rem;
  margin-bottom: 5px;
}

.ops-row span { color: var(--muted); line-height: 1.45; }

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

.care-lanes article {
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15,45,70,.06);
}

.care-lanes span {
  display: inline-flex;
  color: #0b80c4;
  font-weight: 900;
  margin-bottom: 22px;
}

.care-lanes h3 { margin: 0 0 10px; }

.care-lanes p { margin: 0; color: var(--muted); }

.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.warning-list { display: grid; gap: 12px; }

.warning-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 16px;
  padding: 16px 18px;
}

.warning-list i {
  color: #0b80c4;
  width: 24px;
  text-align: center;
}

.hour-flow-grid, .support-channel-grid, .audit-scope-grid, .web-paths-grid, .speed-friendly-grid, .repair-problems-grid, .repair-scenarios-grid { display: grid; gap: 18px; }

.hour-flow-grid { grid-template-columns: repeat(3,1fr); }

.hour-flow-grid article, .support-channel-grid article, .audit-scope-grid article, .speed-friendly-grid article, .repair-problems-grid article, .repair-scenarios-grid article, .web-paths-grid a {
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15,45,70,.05);
}

.hour-flow-grid strong { font-size: 1.9rem; color: #0b80c4; }

.support-channel-grid, .audit-scope-grid, .speed-friendly-grid, .repair-problems-grid { grid-template-columns: repeat(4,1fr); }

.support-channel-grid i, .audit-scope-grid i, .speed-friendly-grid i, .repair-problems-grid i {
  font-size: 1.35rem;
  color: #0b80c4;
  margin-bottom: 16px;
}

.support-channel-grid h3, .audit-scope-grid h3, .speed-friendly-grid h3, .repair-problems-grid h3 { margin: 0 0 9px; }

.support-channel-grid p, .audit-scope-grid p, .speed-friendly-grid p, .repair-problems-grid p, .hour-flow-grid p { margin: 0; color: var(--muted); }

.audit-report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.report-preview {
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15,45,70,.08);
}

.report-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4edf5;
  font-weight: 900;
}

.report-head i { color: #0b80c4; }

.report-line {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eef4f8;
}

.report-line:last-child { border-bottom: 0; }

.report-line strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef8ff;
  color: #0b80c4;
}

.report-line em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 900;
  color: #667894;
  background: #f3f7fb;
  border-radius: 999px;
  padding: 6px 10px;
}

.web-paths-grid { grid-template-columns: repeat(3,1fr); }

.web-paths-grid a {
  text-decoration: none;
  color: inherit;
  transition: .18s;
}

.web-paths-grid a:hover { border-color: #9bd5f6; transform: translateY(-2px); }

.web-paths-grid i {
  font-size: 1.5rem;
  color: #0b80c4;
  margin-bottom: 18px;
}

.web-paths-grid strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.web-paths-grid span { color: var(--muted); }

.rocket-card {
  position: relative;
  overflow: hidden;
  background: #0f2d46;
  border-radius: 32px;
  padding: 34px;
  color: #fff;
  box-shadow: 0 22px 56px rgba(15,45,70,.18);
}

.rocket-visual {
  height: 108px;
  position: relative;
  margin-bottom: 20px;
}

.rocket-visual i {
  position: absolute;
  right: 26px;
  top: 10px;
  font-size: 4rem;
  color: #7cc7f4;
  transform: rotate(-28deg);
}

.speed-trail {
  position: absolute;
  right: 92px;
  top: 60px;
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg,rgba(124,199,244,0),rgba(124,199,244,.6));
  display: block;
}

.rocket-card h3 {
  font-size: 1.55rem;
  margin: 0 0 12px;
  color: #fff;
}

.rocket-card p { color: #c9d6e5 !important; }

.rocket-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.rocket-points span {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.speed-before-after .before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.before-after-grid>div {
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 24px;
  padding: 26px;
}

.before-after-grid ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.speed-process {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.speed-process article {
  background: #f7fbff;
  border: 1px solid #d9e8f4;
  border-radius: 18px;
  padding: 18px;
}

.speed-process strong {
  color: #0b80c4;
  display: block;
  margin-bottom: 8px;
}

.speed-process span { font-weight: 800; }

.repair-scenarios-grid { grid-template-columns: 1.15fr 1fr 1fr; }

.repair-scenarios-grid article { box-shadow: 0 14px 36px rgba(15,45,70,.06); }

.repair-scenarios-grid .is-urgent {
  background: #0f2d46;
  color: #fff;
  border-color: #0f2d46;
}

.repair-scenarios-grid .is-urgent p { color: #c9d6e5; }

.repair-scenarios-grid span {
  display: inline-flex;
  border-radius: 999px;
  background: #eef8ff;
  color: #0b80c4;
  padding: 7px 12px;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 18px;
}

.repair-scenarios-grid .is-urgent span { background: rgba(255,255,255,.12); color: #fff; }

.repair-scenarios-grid h3 { margin: 0 0 10px; }

.repair-scenarios-grid p { margin: 0; color: var(--muted); }

@media (max-width:980px) {
  .admin-command-grid, .warning-grid, .audit-report-grid, .speed-before-after .before-after-grid { grid-template-columns: 1fr; }

  .care-lanes, .support-channel-grid, .audit-scope-grid, .speed-friendly-grid, .repair-problems-grid, .speed-process { grid-template-columns: repeat(2,1fr); }

  .hour-flow-grid, .web-paths-grid, .repair-scenarios-grid { grid-template-columns: 1fr; }
}

@media (max-width:620px) {
  .care-lanes, .support-channel-grid, .audit-scope-grid, .speed-friendly-grid, .repair-problems-grid, .speed-process { grid-template-columns: 1fr; }

  .ops-board { grid-template-columns: 1fr; gap: 12px; }

  .ops-row {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .rocket-card { border-radius: 24px; padding: 22px; }

  .report-line { grid-template-columns: 36px 1fr; }

  .report-line em { grid-column: 2; }

  .web-paths-grid a, .hour-flow-grid article, .support-channel-grid article, .audit-scope-grid article, .speed-friendly-grid article, .repair-problems-grid article, .repair-scenarios-grid article { padding: 20px; }

  .admin-command-grid { gap: 26px; }

  .rocket-visual { height: 84px; }

  .rocket-visual i { font-size: 3.2rem; }

  .speed-trail { width: 110px; right: 75px; }
}

.ops-board {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  background: transparent;
  color: var(--dark);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.ops-row {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 22px;
  padding: 26px;
  min-height: 158px;
  box-shadow: 0 14px 34px rgba(15,45,70,.06);
  overflow: hidden;
}

.ops-row:before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: #0b80c4;
}

.ops-row.watch:before { background: #d79b23; }

.ops-row:after { display: none !important; }

.ops-row div {
  position: relative;
  z-index: 1;
  padding-top: 28px;
}

.ops-row strong {
  display: block;
  color: var(--dark);
  font-size: 1.22rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.ops-row span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 1rem;
}

@media (max-width:620px) {
  .ops-board { grid-template-columns: 1fr; gap: 14px; }

  .ops-row {
    min-height: 0;
    padding: 22px;
    border-radius: 18px;
  }

  .ops-row:before { left: 22px; top: 22px; }
}

@media (max-width: 900px) {
  .container { padding-left: 18px; padding-right: 18px; }

  .cta-section { padding: 44px 0; }

  .cta-box {
    width: auto;
    max-width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    padding: 28px 24px;
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .cta-box h2 { font-size: clamp(1.65rem, 7vw, 2.05rem); line-height: 1.12; }

  .cta-box p { font-size: .98rem; line-height: 1.58; }

  .cta-box .btn {
    width: 100%;
    min-width: 0;
    margin-top: 4px;
  }

  .page-hero, .page-hero.service-hero { padding: 42px 0 48px; }

  .service-hero-grid, .service-hero-advisory .service-hero-grid, .service-hero-server .service-hero-grid, .service-hero-web .service-hero-grid { grid-template-columns: 1fr !important; gap: 26px !important; }

  .service-hero-grid > *, .service-visual-panel, .brand-panel.standalone { min-width: 0; width: 100%; }

  .service-visual-panel {
    border-radius: 22px;
    padding: 24px;
    min-height: 0;
  }

  .service-visual-panel h3 { font-size: clamp(1.45rem, 6.6vw, 1.9rem); line-height: 1.12; }

  .service-visual-panel p { font-size: .96rem; line-height: 1.55; }

  .service-visual-panel .panel-mini-grid { grid-template-columns: 1fr !important; gap: 10px; }

  .service-visual-panel .panel-mini-grid span { min-height: 44px; padding: 12px 13px; }

  .service-visual-panel .panel-bg-icons i:first-child {
    right: -18px;
    top: 18px;
    font-size: 6rem;
  }

  .callback-container { right: 16px; bottom: 16px; }

  .callback-tooltip { display: none !important; }

  .callback-widget { width: 52px; height: 52px; }
}

@media (max-width: 980px) {
  .hosting-configurator-section .configurator-layout, .hosting-configurator-section .hosting-configurator {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .configurator-copy, .config-summary { position: static !important; top: auto !important; }

  .configurator-copy { padding: 24px !important; border-radius: 22px !important; }

  .configurator-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.55rem) !important;
    line-height: 1.02;
    letter-spacing: -.06em;
  }

  .configurator-copy p { font-size: 1rem; line-height: 1.62; }

  .hosting-configurator .choice-row, .hosting-configurator .care-choice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    width: 100%;
    min-height: 58px !important;
    display: grid !important;
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 12px !important;
    padding: 13px 46px 13px 15px !important;
    border-radius: 15px !important;
    text-align: left !important;
  }

  .hosting-configurator .choice-row button strong, .hosting-configurator .care-choice-grid button strong {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 1rem !important;
    line-height: 1.1 !important;
  }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small {
    justify-self: end;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: .8rem !important;
    line-height: 1.16 !important;
  }

  .hosting-configurator .choice-row button.active, .hosting-configurator .care-choice-grid button.active {
    background: #f1f9ff !important;
    border-color: #1083c6 !important;
    box-shadow: inset 4px 0 0 #1083c6, 0 8px 20px rgba(13,37,62,.05) !important;
  }

  .hosting-configurator .choice-row button.active::after, .hosting-configurator .care-choice-grid button.active::after {
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 520px) {
  .hosting-configurator-section .container { padding-left: 14px; padding-right: 14px; }

  .config-step { padding: 18px !important; border-radius: 20px !important; }

  .config-step-head {
    grid-template-columns: 38px 1fr !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
  }

  .config-step-head > span {
    width: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
    font-size: .76rem !important;
  }

  .config-step h3 { font-size: 1.12rem !important; }

  .config-step p { font-size: .94rem !important; line-height: 1.45 !important; }

  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr) !important;
    min-height: 56px !important;
    padding: 12px 42px 12px 14px !important;
    gap: 10px !important;
  }

  .hosting-configurator .choice-row button strong, .hosting-configurator .care-choice-grid button strong { font-size: .96rem !important; }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small { font-size: .74rem !important; }

  .config-summary { border-radius: 20px !important; padding: 22px !important; }
}

@media (max-width: 380px) {
  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    min-height: 64px !important;
  }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small { justify-self: start; text-align: left !important; }
}

@media (max-width: 1180px) {
  .hosting-configurator-section .configurator-layout, .hosting-configurator-section .hosting-configurator { grid-template-columns: 1fr !important; }

  .hosting-configurator-section .configurator-copy, .hosting-configurator-section .config-summary { position: static !important; }
}

@media (max-width: 900px) {
  .hosting-configurator-section { padding-top: 54px !important; }

  .hosting-configurator-section .container { min-width: 0 !important; }

  .configurator-layout { gap: 18px !important; }

  .configurator-copy {
    max-width: none !important;
    border-radius: 22px !important;
    padding: 24px !important;
  }

  .configurator-copy h2 { font-size: clamp(2rem, 9vw, 2.65rem) !important; line-height: 1.02 !important; }

  .configurator-copy p { font-size: 1rem !important; line-height: 1.62 !important; }

  .hosting-configurator .configurator-steps { gap: 14px !important; }

  .hosting-configurator .config-step { border-radius: 22px !important; padding: 20px !important; }

  .hosting-configurator .config-step-head {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .hosting-configurator .config-step-head > span {
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
    place-items: initial !important;
    background: transparent !important;
    border: 0 !important;
    color: #0b75b7 !important;
    border-radius: 0 !important;
    font-size: .78rem !important;
    letter-spacing: .14em !important;
  }

  .hosting-configurator .config-step h3 { font-size: 1.28rem !important; line-height: 1.12 !important; }

  .hosting-configurator .choice-row, .hosting-configurator .care-choice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    width: 100% !important;
    min-height: 54px !important;
    padding: 13px 44px 13px 14px !important;
    border-radius: 14px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    column-gap: 12px !important;
    align-items: center !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: left !important;
  }

  .hosting-configurator .choice-row button strong, .hosting-configurator .care-choice-grid button strong {
    white-space: nowrap !important;
    font-size: 1rem !important;
    line-height: 1.1 !important;
    color: #132034 !important;
  }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small {
    justify-self: end !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    color: #64748b !important;
    font-size: .78rem !important;
  }

  .hosting-configurator .choice-row button.active, .hosting-configurator .care-choice-grid button.active {
    background: #f8fcff !important;
    border-color: #0b75b7 !important;
    box-shadow: none !important;
    color: #132034 !important;
  }

  .hosting-configurator .choice-row button.active strong, .hosting-configurator .care-choice-grid button.active strong { color: #0b75b7 !important; }

  .hosting-configurator .choice-row button.active::after, .hosting-configurator .care-choice-grid button.active::after {
    right: 13px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    background: #0b75b7 !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}

@media (max-width: 620px) {
  .section { padding-top: 56px; padding-bottom: 56px; }

  .cta-section { padding: 38px 0 !important; }

  .cta-box {
    max-width: calc(100% - 28px) !important;
    padding: 26px 22px !important;
    border-radius: 22px !important;
  }

  .cta-box .btn { min-height: 50px !important; border-radius: 12px !important; }

  .service-story-grid { gap: 22px !important; }

  .story-copy h2 { font-size: clamp(1.8rem, 8vw, 2.25rem) !important; line-height: 1.08 !important; }

  .story-copy p { font-size: 1rem !important; line-height: 1.62 !important; }

  .micro-proof { border-radius: 16px !important; padding: 14px 15px !important; }

  .support-flow {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    position: relative;
    padding-left: 18px;
  }

  .support-flow::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #d6e7f4;
  }

  .support-flow article {
    position: relative;
    min-height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 6px 0 24px 18px !important;
  }

  .support-flow article::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 14px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #0b75b7;
    box-shadow: 0 0 0 6px #eef8ff;
  }

  .support-flow span {
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #0b75b7 !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    font-size: .72rem !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
  }

  .support-flow span::before { content: "Krok "; }

  .support-flow h3 {
    margin: 0 0 4px !important;
    font-size: 1.12rem !important;
    line-height: 1.2 !important;
  }

  .support-flow p {
    margin: 0 !important;
    color: #5f6f86 !important;
    line-height: 1.45 !important;
  }

  .service-visual-panel { padding: 24px 20px !important; border-radius: 24px !important; }

  .service-visual-panel .panel-mini-grid { gap: 8px !important; }

  .service-visual-panel .panel-mini-grid span { border-radius: 14px !important; min-height: 42px !important; }
}

@media (max-width: 420px) {
  .hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button {
    grid-template-columns: minmax(78px, auto) minmax(0, 1fr) !important;
    gap: 9px !important;
    padding-right: 40px !important;
  }

  .hosting-configurator .choice-row button strong, .hosting-configurator .care-choice-grid button strong { font-size: .95rem !important; }

  .hosting-configurator .choice-row button small, .hosting-configurator .care-choice-grid button small { font-size: .72rem !important; }
}

.service-visual-panel, .service-visual-panel.audit-panel, .service-visual-panel.training-panel, .service-visual-panel.support-panel, .service-visual-panel.task-panel, .service-visual-panel.config-panel, .service-visual-panel.server-panel, .hosting-neutral-panel {
  background: #ffffff !important;
  color: var(--dark) !important;
  border: 1px solid #d9e8f4 !important;
  box-shadow: 0 20px 48px rgba(15, 45, 70, .075) !important;
  border-radius: 28px !important;
  padding: 34px !important;
  overflow: hidden !important;
}

.service-visual-panel .panel-bg-icons, .service-visual-panel .panel-bg-icons i, .service-visual-panel .panel-bg-icons i:first-child { display: none !important; }

.service-visual-panel .panel-kicker, .hosting-neutral-panel .panel-kicker {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-bottom: 18px !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #eef8ff !important;
  border: 1px solid #cfe9fb !important;
  color: #0b75b7 !important;
  font-size: .72rem !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.service-visual-panel h3 {
  color: var(--dark) !important;
  max-width: 560px !important;
  font-size: clamp(1.45rem, 2.2vw, 2rem) !important;
  line-height: 1.08 !important;
  margin: 0 0 14px !important;
}

.service-visual-panel p {
  color: #60728c !important;
  max-width: 620px !important;
  font-size: 1rem !important;
  line-height: 1.62 !important;
  margin: 0 0 24px !important;
}

.service-visual-panel .panel-mini-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid #e3eef7 !important;
  border-left: 1px solid #e3eef7 !important;
}

.service-visual-panel .panel-mini-grid span, .hosting-neutral-panel .panel-mini-grid span {
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 14px 16px !important;
  border-radius: 0 !important;
  background: #fff !important;
  border: 0 !important;
  border-right: 1px solid #e3eef7 !important;
  border-bottom: 1px solid #e3eef7 !important;
  color: #172033 !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.service-visual-panel .panel-mini-grid i, .hosting-neutral-panel .panel-mini-grid i {
  width: 18px !important;
  min-width: 18px !important;
  color: #0b75b7 !important;
  font-size: .92rem !important;
  margin: 0 !important;
}

.support-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  position: relative !important;
  padding-left: 24px !important;
}

.support-flow::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 12px !important;
  bottom: 12px !important;
  width: 1px !important;
  background: #d6e7f4 !important;
}

.support-flow article {
  position: relative !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 4px 0 28px 24px !important;
}

.support-flow article:last-child { padding-bottom: 0 !important; }

.support-flow article::before {
  content: "" !important;
  position: absolute !important;
  left: -23px !important;
  top: 13px !important;
  width: 11px !important;
  height: 11px !important;
  border-radius: 999px !important;
  background: #0b75b7 !important;
  box-shadow: 0 0 0 7px #eef8ff !important;
}

.support-flow span {
  display: block !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #0b75b7 !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  font-size: .72rem !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.support-flow span::before { content: "Krok "; }

.support-flow h3 {
  margin: 0 0 4px !important;
  font-size: 1.16rem !important;
  line-height: 1.22 !important;
}

.support-flow p {
  margin: 0 !important;
  color: #5f6f86 !important;
  line-height: 1.5 !important;
}

.hosting-configurator .choice-row button, .hosting-configurator .care-choice-grid button { box-shadow: none !important; }

.hosting-configurator .choice-row button.active, .hosting-configurator .care-choice-grid button.active {
  background: #ffffff !important;
  border-color: #0b75b7 !important;
  color: #121a2b !important;
  box-shadow: 0 0 0 2px rgba(11, 117, 183, .10) !important;
}

.hosting-configurator .choice-row button.active strong, .hosting-configurator .care-choice-grid button.active strong { color: #0b75b7 !important; }

.hosting-configurator .choice-row button.active::after, .hosting-configurator .care-choice-grid button.active::after {
  background: #0b75b7 !important;
  color: #fff !important;
  box-shadow: none !important;
}

@media (max-width: 820px) {
  .service-visual-panel, .service-visual-panel.audit-panel, .service-visual-panel.training-panel, .service-visual-panel.support-panel, .service-visual-panel.task-panel, .service-visual-panel.config-panel, .service-visual-panel.server-panel, .hosting-neutral-panel { padding: 24px 20px !important; border-radius: 24px !important; }

  .service-visual-panel .panel-mini-grid { grid-template-columns: 1fr !important; }

  .service-visual-panel .panel-mini-grid span { padding: 13px 14px !important; }
}

@media (max-width: 620px) {
  .support-flow { padding-left: 20px !important; }

  .support-flow article { padding-left: 20px !important; padding-bottom: 24px !important; }

  .support-flow article::before { left: -20px !important; }
}

.service-visual-panel .panel-kicker, .hosting-neutral-panel .panel-kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0b75b7 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: .82rem !important;
  line-height: 1.1 !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}

.service-visual-panel .panel-kicker::after, .hosting-neutral-panel .panel-kicker::after {
  content: "_" !important;
  display: inline-block !important;
  margin-left: .28em !important;
  color: #0b75b7 !important;
  animation: zi-cursor-blink 1s steps(1, end) infinite !important;
}

@keyframes zi-cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .service-visual-panel .panel-kicker::after, .hosting-neutral-panel .panel-kicker::after { animation: none !important; }
}

.plan-price .first-year-price {
  display: block;
  margin-top: 12px;
  color: #23364f;
  font-size: .88rem;
  line-height: 1.35;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -.015em;
}

.plan-price .first-year-price span {
  display: inline;
  margin: 0;
  color: #64748b;
  font-size: .86em;
  font-weight: 750;
}

.plan-price .first-year-price {
  margin-top: 6px;
  color: #0b7fc5;
  font-weight: 900;
}

.plan-price.turbo .first-year-price { color: #6d28d9; }

.plan-price > small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0b7fc5;
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
}

.plan-price.turbo .first-year-price { color: #4c1d95; }

.plan-price.turbo > small { background: #f3e8ff; color: #6d28d9; }

.summary-price .summary-first-year {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  font-size: .94rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 850;
  letter-spacing: -.01em;
}

.summary-price .summary-first-year > span {
  display: inline;
  color: rgba(255,255,255,.68);
  font-size: .92em;
  font-weight: 750;
}

.summary-price .summary-first-year {
  margin-top: 5px;
  color: #7dd3fc;
  font-weight: 900;
}

.summary-price .summary-discount {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-size: .75rem;
  line-height: 1.15;
  font-weight: 850;
}

@media (max-width: 640px) {
  .plan-price .first-year-price { font-size: .84rem; }

  .plan-price > small { font-size: .68rem; padding: 5px 8px; }

  .summary-price .summary-first-year { font-size: .88rem; }
}

.hosting-price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 18px auto 28px;
  color: #53657c;
  font-size: .92rem;
  line-height: 1.35;
  text-align: center;
}

.hosting-price-note strong {
  color: #0b7fc5;
  font-weight: 900;
  letter-spacing: -.01em;
}

@media (max-width: 640px) {
  .hosting-price-note {
    display: block;
    margin: 14px auto 22px;
    font-size: .86rem;
  }

  .hosting-price-note span { display: block; margin-top: 4px; }
}

.config-summary code {
  font-family: inherit;
  background: rgba(11, 127, 197, .08);
  color: #0b75b7;
  border-radius: 6px;
  padding: 1px 5px;
  font-size: .9em;
  font-weight: 800;
}

.summary-price .summary-first-year { color: #7dd3fc; }

@media (max-width: 640px) {
  .config-summary code { display: none; }
}

.plan-price.turbo .first-year-price { color: #6d28d9; }

.plan-price .promo-label, .summary-price .summary-discount {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf6ff;
  color: #0b7fc5;
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-price.turbo .promo-label { background: #f3e8ff; color: #6d28d9; }

.summary-price .summary-discount {
  margin-bottom: 8px;
  background: rgba(125, 211, 252, .14);
  color: #7dd3fc;
}

@media (max-width: 640px) {
  .plan-price .promo-label, .summary-price .summary-discount { font-size: .66rem; padding: 5px 8px; }
}

.plan-price .post-year-price {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(210, 225, 240, .85);
  color: #24364f;
  font-size: .86rem;
  line-height: 1.45;
  font-style: normal;
  font-weight: 850;
  letter-spacing: -.01em;
}

.plan-price .post-year-price span {
  color: #708197;
  font-size: .95em;
  font-weight: 750;
}

.plan-price.turbo .post-year-price { color: #4c1d95; border-top-color: rgba(196, 181, 253, .55); }

.summary-price .summary-post-year {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  line-height: 1.45;
  font-style: normal;
  font-weight: 800;
}

.summary-price .summary-post-year span { color: rgba(255,255,255,.66); font-size: .95em; }

@media (max-width: 640px) {
  .plan-price .post-year-price, .summary-price .summary-post-year { font-size: .82rem; }
}

.plan-price .first-year-price {
  display: block;
  margin-top: 7px;
  color: #0f7ab8;
  font-size: .88rem;
  line-height: 1.38;
  font-style: normal;
  font-weight: 850;
  letter-spacing: -.01em;
}

.plan-price .first-year-price span {
  color: #557086;
  font-size: .95em;
  font-weight: 750;
}

.plan-price.turbo .first-year-price { color: #6d28d9; }

.summary-price .summary-first-year {
  display: block;
  margin-top: 7px;
  color: #7dd3fc;
  font-size: .9rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 850;
}

.summary-price .summary-first-year span { color: rgba(255,255,255,.72); font-size: .95em; }

@media (max-width: 640px) {
  .plan-price .first-year-price, .summary-price .summary-first-year { font-size: .82rem; }
}

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

.service-hero-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.service-hero-bg-icons i {
  position: absolute;
  color: var(--primary);
  opacity: .055;
  filter: blur(.1px);
}

.service-hero-bg-icons i:nth-child(1) {
  right: 8%;
  top: 12%;
  font-size: 7rem;
  transform: rotate(-12deg);
}

.service-hero-bg-icons i:nth-child(2) {
  right: 30%;
  top: 18%;
  font-size: 3.8rem;
  transform: rotate(10deg);
}

.service-hero-bg-icons i:nth-child(3) {
  right: 17%;
  bottom: 13%;
  font-size: 5.2rem;
  transform: rotate(16deg);
}

.service-hero-bg-icons i:nth-child(4) {
  left: 8%;
  bottom: 12%;
  font-size: 3.6rem;
  transform: rotate(-8deg);
  opacity: .04;
}

.service-hero-bg-icons i:nth-child(5) {
  left: 44%;
  bottom: 5%;
  font-size: 4.3rem;
  transform: rotate(8deg);
  opacity: .04;
}

.service-hero-advisory .service-hero-bg-icons i { color: var(--navy); }

.speed-hero .service-hero-bg-icons i { color: #0b80c4; }

.repair-hero .service-hero-bg-icons i { color: #b45309; }

.risk-matrix article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  padding: 24px 26px;
  border-radius: 24px;
  color: var(--dark);
  background: #fff;
  border: 1px solid #dbe7f0;
  box-shadow: 0 16px 38px rgba(15,45,70,.07);
  overflow: hidden;
}



.risk-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f1f7fb;
  color: var(--primary);
  font-size: 1.25rem;
}

.risk-matrix .critical .risk-icon { background: #fff1f2; color: #9f1239; }

.risk-matrix .important .risk-icon { background: #eef8ff; color: #0b80c4; }

.risk-matrix .improve .risk-icon { background: #ecfdf5; color: #047857; }

.risk-matrix article span {
  margin-bottom: 10px;
  color: var(--muted);
  opacity: 1;
}

.risk-matrix article h3 { color: var(--dark); margin: 0 0 8px; }

.risk-matrix article p { color: var(--muted); margin: 0; }

.speed-before-after .before-after-grid { align-items: stretch; }

.before-after-grid > div {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.before-after-grid > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
}

.before-card:before { background: #f59e0b; }

.after-card:before { background: #10b981; }

.visual-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--text-main);
}

.visual-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid #e2edf5;
  background: #f8fbfd;
  line-height: 1.45;
}

.visual-list li:before {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.alert-list li { background: #fffaf0; border-color: #fde6bd; }

.alert-list li:before {
  content: "";
  background: #fff3d6;
  color: #b45309;
}

.visual-list.check-list li { background: #f0fdf6; border-color: #c9f3dc; }

.visual-list.check-list li:before {
  content: "";
  background: #dcfce7;
  color: #047857;
}

.triage-stack article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 20px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}

.triage-stack article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}


.triage-stack article {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
}

.triage-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.triage-stack article.urgent .triage-icon {
  background: #fff7ed;
  color: #f97316;
}
.triage-stack article.important .triage-icon {
  background: #fefce8;
  color: #f59e0b;
}
.triage-stack article.maintenance .triage-icon {
  background: #ecfdf5;
  color: #10b981;
}

.triage-stack .priority-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.triage-stack article.urgent .priority-label {
  background: #fff7ed;
  color: #c2410f;
}
.triage-stack article.important .priority-label {
  background: #fefce8;
  color: #b45309;
}
.triage-stack article.maintenance .priority-label {
  background: #ecfdf5;
  color: #047857;
}

.triage-stack h3 {
  margin: 0 0 6px;
  color: var(--dark);
  font-size: 1.15rem;
}

.triage-stack p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.repair-scenarios-grid .is-urgent {
  position: relative;
  background: #fff;
  color: var(--dark);
  border-color: #fed7aa;
  
}

.repair-scenarios-grid .is-urgent p { color: var(--muted); }

.repair-scenarios-grid .is-urgent span { background: #fff7ed; color: #ea580c; }

.scenario-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff7ed;
  color: #ea580c;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .service-hero-bg-icons i:nth-child(n+4) { display: none; }

  .service-hero-bg-icons i:nth-child(1) {
    right: -5%;
    top: 8%;
    font-size: 5.4rem;
  }

  .service-hero-bg-icons i:nth-child(2) {
    right: 18%;
    top: 40%;
    font-size: 3.2rem;
  }

  .service-hero-bg-icons i:nth-child(3) {
    right: 4%;
    bottom: 10%;
    font-size: 4rem;
  }
}

@media (max-width: 620px) {
  .risk-matrix article, .triage-stack article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .risk-icon, .triage-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .visual-list li { grid-template-columns: 30px 1fr; }

  .visual-list li:before {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }
}


body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4,
.hero-title,
.nav-link,
.nav-trigger,
.btn,
.eyebrow {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
}


.callback-card {
  margin-top: 64px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dbe7f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  
}

.callback-card-head h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 12px;
}

.callback-card-head p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.quick-callback-form label {
  display: block;
}

.quick-callback-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 700;
}

.quick-callback-form .form-control {
  margin-bottom: 15px;
  background: #fff;
}

.quick-callback-form select.form-control {
  appearance: none;
  
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border: 1px solid #dbe7f0;
}

.callback-card-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #d8ebfb;
  border-radius: 14px;
  background: #f4faff;
  color: var(--text-main);
  font-size: .92rem;
}

.callback-card-note i {
  color: var(--primary);
}


.speed-diagnosis .section-header {
  max-width: 860px;
  margin-bottom: 30px;
}

.diagnosis-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.diagnosis-board article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid #dbe7f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 45, 70, .045);
}

.diagnosis-board article:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .45;
}

.diagnosis-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.diagnosis-board h3 {
  margin-bottom: 10px;
}

.diagnosis-board p {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .diagnosis-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


.contact-form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 48px 42px;
  margin: 40px 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-form-left h2 {
  font-size: 1.85rem;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.contact-form-left .lead {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 28px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #334155;
}

.benefit-item i {
  color: #0ea5e9;
  font-size: 1.15rem;
  margin-top: 3px;
}

.form-premium .form-group {
  margin-bottom: 18px;
}

.form-premium label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e2937;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-premium .form-control {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-premium .form-control:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  outline: none;
}

.form-premium textarea.form-control {
  min-height: 78px;
  resize: vertical;
}

.form-premium .btn-primary.full {
  margin-top: 8px;
  padding: 15px 24px;
  font-size: 1.05rem;
  font-weight: 600;
}

.form-premium .form-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #64748b;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .callback-card { margin-top: 22px; padding: 22px; }
  .diagnosis-board { grid-template-columns: 1fr; }
  .diagnosis-board article { min-height: auto; }
}


/* Aktualizacja: płynne przewijanie i formatowanie polityki prywatności */
html { scroll-behavior: smooth; }
.legal h2 { margin: 34px 0 14px; color: var(--text); font-size: clamp(1.35rem, 2vw, 1.85rem); }
.legal ol { margin: 0 0 24px 1.35rem; padding-left: 1rem; }
.legal ul { margin: 10px 0 0 1.2rem; padding-left: 1rem; }
.legal li { margin-bottom: 12px; line-height: 1.75; color: var(--muted); }

/* Stałe pakiety abonamentowe na podstronach usług */

.care-packages-section .section-header {
  max-width: 880px;
}

.care-packages-grid {
  margin-top: 28px;
}

.care-package-card {
  position: relative;
  overflow: hidden;
}

.care-package-card .package-name {
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.care-package-card .package-price {
  color: var(--primary);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.care-package-card .package-subtitle {
  color: var(--text);
  margin-bottom: 8px;
}

.care-package-card .plan-details span {
  line-height: 1.45;
}

.care-custom-card {
  border-color: #6d28d9 !important;
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%) !important;
  color: #fff;
  box-shadow: 0 26px 70px rgba(91, 33, 182, .28) !important;
  transform: translateY(-8px);
}

.care-custom-card h3,
.care-custom-card p,
.care-custom-card .package-subtitle,
.care-custom-card .package-price,
.care-custom-card .plan-details span {
  color: #fff;
}

.care-custom-card .plan-details i {
  color: #ddd6fe;
}

.care-custom-card .btn-outline {
  background: #fff;
  border-color: #fff;
  color: #5b21b6;
}

.care-custom-card .btn-outline:hover {
  background: #f4ecff;
  border-color: #f4ecff;
  color: #5b21b6;
}

.quick-form-row {
  gap: 16px;
}

.form-row-spaced {
  margin-top: 16px;
}

.quick-form-note {
  margin: 12px 0 20px;
  font-size: 0.9rem;
  color: #64748b;
}

.quick-form-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .care-custom-card {
    transform: none;
  }
}

/* Poprawka widoczności tekstu przycisków bez hovera */
.btn-primary,
.btn-primary:visited,
button.btn-primary,
.quick-callback-form .btn-primary,
.form-premium .btn-primary,
.quick-form-submit.btn-primary,
.btn-primary .btn-text {
  color: #fff !important;
}

.btn-accent,
.btn-accent:visited,
button.btn-accent,
.btn-accent .btn-text {
  color: #fff !important;
}

.callback-card .btn-primary,
.callback-card .btn-primary:hover,
.callback-card .btn-primary:focus-visible,
.quick-callback-form .btn-primary,
.quick-callback-form .btn-primary:hover,
.quick-callback-form .btn-primary:focus-visible {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.callback-card .btn-primary:hover,
.quick-callback-form .btn-primary:hover {
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

/* Korekta CTA po poprawce przycisków pakietów */
.cta-box .btn.btn-primary,
.cta-box .btn.btn-primary:visited,
.cta-box a.btn.btn-primary,
.cta-box a.btn.btn-primary:visited,
.cta-box button.btn.btn-primary {
  background: #f8fbff !important;
  border-color: #f8fbff !important;
  color: #102a43 !important;
}

.cta-box .btn.btn-primary:hover,
.cta-box .btn.btn-primary:focus-visible,
.cta-box a.btn.btn-primary:hover,
.cta-box a.btn.btn-primary:focus-visible,
.cta-box button.btn.btn-primary:hover,
.cta-box button.btn.btn-primary:focus-visible {
  background: #eaf6ff !important;
  border-color: #eaf6ff !important;
  color: #102a43 !important;
}

.cta-box .btn.btn-primary .btn-text,
.cta-box .btn.btn-primary:hover .btn-text,
.cta-box .btn.btn-primary:focus-visible .btn-text {
  color: #102a43 !important;
}


/* Antyspam: pole-pułapka dla botów. Ukryte wizualnie, ale pozostaje w DOM dla prostych botów formularzowych. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
