/* ===== Horizify — Modern, Fresh, Rounded v3 ===== */
:root {
  /* Brand — fresh bright blue matching logo */
  --h-brand:      #2b7fd1;
  --h-brand-600:  #1d6ab8;
  --h-brand-400:  #5ba0e0;
  --h-brand-300:  #8cc0ed;
  --h-brand-200:  #b8dcf7;
  --h-brand-100:  #dceeff;
  --h-brand-50:   #eef6ff;
  --h-brand-ink:  #0f3a6b;

  /* Fresh neutrals — cool, airy, NO cream */
  --h-bg:         #f4f7fb;    /* cool light sky */
  --h-bg-raised:  #ffffff;
  --h-bg-tint:    #e9f0f8;
  --h-bg-deep:    #dde7f3;

  --h-ink-900:    #0e1c36;    /* deep cool navy */
  --h-ink-800:    #1b2c46;
  --h-ink-700:    #34465f;
  --h-ink-600:    #50647e;
  --h-ink-500:    #6a7a93;
  --h-ink-400:    #9aa7bd;
  --h-line:       #e3eaf4;
  --h-line-strong:#cad5e5;

  /* Type */
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Radii — rounded everywhere */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-3xl: 44px;
  --r-pill: 999px;

  /* Shadows — depth */
  --shadow-xs: 0 1px 2px rgba(14,28,54,0.04);
  --shadow-sm: 0 2px 4px rgba(14,28,54,0.04), 0 1px 2px rgba(14,28,54,0.04);
  --shadow-md: 0 8px 24px rgba(14,28,54,0.06), 0 3px 8px rgba(14,28,54,0.04);
  --shadow-lg: 0 24px 56px rgba(14,28,54,0.10), 0 8px 20px rgba(14,28,54,0.06);
  --shadow-xl: 0 40px 80px rgba(14,28,54,0.14), 0 14px 32px rgba(14,28,54,0.08);
  --shadow-brand: 0 12px 32px rgba(43,127,209,0.25), 0 4px 10px rgba(43,127,209,0.18);

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --theme-duration: 0.38s;
  color-scheme: light;
}

html[data-theme="dark"] {
  --h-brand:      #63b3ff;
  --h-brand-600:  #3b8ad6;
  --h-brand-400:  #8cc8ff;
  --h-brand-300:  #3a79b8;
  --h-brand-200:  rgba(99,179,255,0.38);
  --h-brand-100:  rgba(99,179,255,0.22);
  --h-brand-50:   rgba(99,179,255,0.12);
  --h-brand-ink:  #d5ecff;

  --h-bg:         #071426;
  --h-bg-raised:  #0e1d33;
  --h-bg-tint:    #102642;
  --h-bg-deep:    #173453;

  --h-ink-900:    #f3f8ff;
  --h-ink-800:    #e5effc;
  --h-ink-700:    #c8d7ea;
  --h-ink-600:    #aebfd4;
  --h-ink-500:    #8da0b9;
  --h-ink-400:    #60758f;
  --h-line:       rgba(158,184,218,0.18);
  --h-line-strong:rgba(158,184,218,0.32);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.18);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.18);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.26), 0 3px 8px rgba(0,0,0,0.18);
  --shadow-lg: 0 24px 58px rgba(0,0,0,0.34), 0 8px 20px rgba(0,0,0,0.22);
  --shadow-xl: 0 40px 90px rgba(0,0,0,0.42), 0 14px 32px rgba(0,0,0,0.26);
  --shadow-brand: 0 14px 34px rgba(34,126,210,0.28), 0 4px 12px rgba(34,126,210,0.2);
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #061429;
}

body {
  font-family: var(--font-sans);
  background: var(--h-bg);
  color: var(--h-ink-900);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(43,127,209,0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(140,192,237,0.12), transparent 70%);
}

html[data-theme="dark"] body {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(99,179,255,0.12), transparent 62%),
    radial-gradient(ellipse 58% 42% at 90% 8%, rgba(99,179,255,0.10), transparent 72%),
    linear-gradient(180deg, rgba(7,20,38,0) 0%, rgba(7,20,38,0.82) 100%);
}

html.h-theme-ready body,
html.h-theme-ready .h-header__inner,
html.h-theme-ready .h-nav-menu,
html.h-theme-ready .h-mobile-nav,
html.h-theme-ready .h-mobile-subnav,
html.h-theme-ready .h-card,
html.h-theme-ready .h-service,
html.h-theme-ready .h-price-card,
html.h-theme-ready .h-compare__col,
html.h-theme-ready .h-section--tint,
html.h-theme-ready .h-table,
html.h-theme-ready .h-input,
html.h-theme-ready .h-textarea,
html.h-theme-ready .h-select,
html.h-theme-ready .h-check,
html.h-theme-ready .h-radio,
html.h-theme-ready .h-calculator,
html.h-theme-ready .h-calc-summary,
html.h-theme-ready .h-theme-toggle__track {
  transition:
    background-color var(--theme-duration) ease,
    background var(--theme-duration) ease,
    color var(--theme-duration) ease,
    border-color var(--theme-duration) ease,
    box-shadow var(--theme-duration) ease;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Typography ===== */
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--h-brand);
}
.h-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--h-brand);
  box-shadow: 0 0 0 4px rgba(43,127,209,0.15);
}

.h-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--h-ink-900);
  text-wrap: balance;
}
.h-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.h-h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.012em;
}
.h-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--h-ink-700);
  max-width: 58ch;
  text-wrap: pretty;
  font-weight: 400;
}
.h-body { font-size: 16px; color: var(--h-ink-700); line-height: 1.65; }
.h-small { font-size: 13px; color: var(--h-ink-500); }
.h-num { font-variant-numeric: tabular-nums; }

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

/* ===== Buttons — fully rounded pills ===== */
.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.h-btn svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.h-btn:hover svg { transform: translateX(3px); }

.h-btn--primary {
  background: linear-gradient(135deg, var(--h-brand) 0%, var(--h-brand-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.h-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(43,127,209,0.35); }

.h-btn--secondary {
  background: rgba(255,255,255,0.9);
  color: var(--h-ink-900);
  border: 1px solid var(--h-line-strong);
}
.h-btn--secondary:hover { border-color: var(--h-brand); color: var(--h-brand); background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.h-btn--ghost { padding: 10px 0; color: var(--h-brand); border-radius: 0; }
.h-btn--ghost:hover { color: var(--h-brand-600); }

/* ===== Header — floating rounded ===== */
.h-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 0 var(--gutter);
}
.h-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: 12px 12px 12px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(227,234,244,0.8);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
}
.h-logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  margin-left: 4px;
}
.h-logo img {
  width: clamp(150px, 17vw, 206px);
  height: auto;
  max-width: 100%;
  flex: 0 0 auto;
  transform: translateY(2px);
}

.h-nav {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 6px;
}
.h-nav > a,
.h-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--h-ink-700);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
}
.h-nav-item--has-menu .h-nav__link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.78;
}
.h-nav > a:hover,
.h-nav__link:hover {
  color: var(--h-brand);
  background: transparent;
}
.h-nav > a.active,
.h-nav__link.active {
  color: #fff;
  background: var(--h-brand);
  box-shadow: var(--shadow-brand);
}
.h-nav > a.active:hover,
.h-nav__link.active:hover {
  color: #fff;
}
.h-nav-item {
  position: relative;
  padding: 4px 0;
}
.h-nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  width: 280px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(14,28,54,0.16), 0 8px 18px rgba(14,28,54,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
}
.h-nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.h-nav-item:hover .h-nav-menu,
.h-nav-item:focus-within .h-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.h-nav-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--h-ink-700);
  font-size: 14px;
  font-weight: 500;
  border-radius: calc(var(--r-sm) - 2px);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.h-nav-menu a:hover {
  color: var(--h-brand-ink);
  background: var(--h-brand-50);
}
.h-nav-menu a.active {
  color: var(--h-brand-ink);
  background: var(--h-brand-50);
}

.h-header__cta {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  gap: 10px;
}
.h-header__cta .h-btn { padding: 11px 22px; font-size: 14px; }

.h-theme-toggle {
  --toggle-width: 76px;
  --toggle-height: 44px;
  --toggle-thumb: 32px;
  --toggle-offset: 6px;
  --toggle-move: 29px;
  --toggle-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--toggle-width);
  height: var(--toggle-height);
  flex: 0 0 var(--toggle-width);
  padding: 0;
  border-radius: var(--r-pill);
  color: var(--h-ink-500);
}
.h-theme-toggle__track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--h-line-strong);
  border-radius: inherit;
  background:
    radial-gradient(circle at 24px 22px, rgba(43,127,209,0.11), transparent 34%),
    linear-gradient(135deg, #ffffff, #f5f9ff);
  box-shadow: inset 0 0 0 1px rgba(43,127,209,0.08), 0 8px 20px rgba(14,28,54,0.08);
}
.h-theme-toggle__icon {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--toggle-thumb);
  height: var(--toggle-thumb);
  line-height: 0;
  transform-origin: center;
  transform: translateY(calc(-50% + var(--toggle-y)));
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.32s ease;
}
.h-theme-toggle__icon svg {
  display: block;
  width: 17px;
  height: 17px;
  overflow: visible;
}
.h-theme-toggle__icon--sun {
  left: var(--toggle-offset);
  color: #fff;
}
.h-theme-toggle__icon--moon {
  left: calc(var(--toggle-offset) + var(--toggle-move));
  color: #a8b5c8;
  opacity: 0.74;
}
.h-theme-toggle__icon--moon svg {
  transform: none;
}
.h-theme-toggle__thumb {
  position: absolute;
  z-index: 1;
  left: var(--toggle-offset);
  top: 50%;
  width: var(--toggle-thumb);
  height: var(--toggle-thumb);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--h-brand-400) 0%, var(--h-brand) 100%);
  border: 1px solid rgba(29,106,184,0.44);
  box-shadow: 0 0 0 1px rgba(43,127,209,0.14), 0 0 16px rgba(43,127,209,0.28), inset 0 0 0 1px rgba(255,255,255,0.24);
  transform: translateY(calc(-50% + var(--toggle-y)));
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1), background-color 0.28s ease, box-shadow 0.28s ease;
}
.h-theme-toggle:hover .h-theme-toggle__track {
  border-color: var(--h-brand-300);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72), 0 10px 24px rgba(43,127,209,0.14);
}
html[data-theme="dark"] .h-theme-toggle__track {
  background:
    radial-gradient(circle at 53px 22px, rgba(140,200,255,0.24), transparent 28%),
    linear-gradient(135deg, #0b1b30, #143354);
  box-shadow: inset 0 0 0 1px rgba(140,200,255,0.08), 0 12px 26px rgba(0,0,0,0.24);
}
html[data-theme="dark"] .h-theme-toggle__thumb {
  transform: translateX(var(--toggle-move)) translateY(calc(-50% + var(--toggle-y)));
  background: linear-gradient(145deg, rgba(48,93,135,0.98) 0%, rgba(23,56,88,0.98) 100%);
  border-color: rgba(140,200,255,0.46);
  box-shadow: 0 0 0 1px rgba(140,200,255,0.18), 0 0 16px rgba(99,179,255,0.18), inset 0 0 0 1px rgba(140,200,255,0.18);
}
html[data-theme="dark"] .h-theme-toggle__icon--sun {
  color: #7fa6c9;
  opacity: 0.46;
  transform: translateY(calc(-50% + var(--toggle-y))) rotate(-90deg);
}
html[data-theme="dark"] .h-theme-toggle__icon--moon {
  color: #d5ecff;
  opacity: 1;
}
html[data-theme="dark"] .h-theme-toggle__icon--moon svg {
  transform: translateX(-0.5px);
}

.h-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--h-ink-900);
  border: 1px solid var(--h-line-strong);
  box-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.h-menu-btn:hover,
.h-menu-btn[aria-expanded="true"] {
  color: var(--h-brand);
  border-color: var(--h-brand-300);
  background: var(--h-brand-50);
  box-shadow: inset 0 0 0 1px rgba(43,127,209,0.08);
}
@media (max-width: 1240px) {
  .h-nav { display: none; }
  .h-header__cta .h-menu-btn {
    display: inline-flex;
  }
}

.h-section { padding: clamp(64px, 9vw, 120px) 0; }
.h-section--compact { padding: clamp(48px, 6vw, 80px) 0; }
.h-section--tint { background: var(--h-bg-tint); border-radius: var(--r-3xl); margin: 0 var(--gutter); }
.h-section--dark { background: var(--h-ink-900); color: #f0f4fa; }

/* ===== Pill / tag ===== */
.h-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--h-brand);
  background: var(--h-brand-100);
  border-radius: var(--r-pill);
}
.h-tag--neutral { color: var(--h-ink-700); background: var(--h-bg-tint); }
.h-tag--dark { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

/* ===== Cards ===== */
.h-card {
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  padding: 32px;
  border-radius: var(--r-xl);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.h-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.h-grid { display: grid; gap: 20px; }
.h-grid--3 { grid-template-columns: repeat(3, 1fr); }
.h-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .h-grid--3, .h-grid--2 { grid-template-columns: 1fr; } }

/* ===== Icon circle — softer ===== */
.h-icon-circle {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--h-brand-100), var(--h-brand-50));
  color: var(--h-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(43,127,209,0.08);
}
.h-icon-circle svg { width: 24px; height: 24px; }
.h-icon-circle--purple { background: linear-gradient(145deg, #e4dcf7, #f3edfb); color: #7456b8; box-shadow: inset 0 0 0 1px rgba(116,86,184,0.1); }
.h-icon-circle--dark { background: rgba(255,255,255,0.12); color: #fff; box-shadow: none; }

/* ===== Table ===== */
.h-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  background: var(--h-bg-raised);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.h-table th, .h-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--h-line);
  vertical-align: middle;
}
.h-table tr:last-child td { border-bottom: 0; }
.h-table th { font-weight: 500; font-size: 13px; color: var(--h-ink-500); background: var(--h-bg-tint); }
.h-table td.num, .h-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.h-table tr.highlight td { background: var(--h-brand-50); }
.h-table tr.highlight td:first-child { box-shadow: inset 3px 0 0 var(--h-brand); }

/* ===== Forms ===== */
.h-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.h-field label { font-size: 14px; color: var(--h-ink-900); font-weight: 500; }
.h-field label .opt { color: var(--h-ink-400); font-weight: 400; font-size: 13px; }
.h-input, .h-textarea, .h-select {
  padding: 14px 18px;
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line-strong);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--h-ink-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.h-input:focus, .h-textarea:focus, .h-select:focus {
  outline: none;
  border-color: var(--h-brand);
  box-shadow: 0 0 0 4px rgba(43,127,209,0.15);
}
.h-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.h-checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 600px) { .h-checkboxes { grid-template-columns: 1fr; } }
.h-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--h-line-strong);
  background: var(--h-bg-raised);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  font-size: 14px;
}
.h-check:hover { border-color: var(--h-brand-400); }
.h-check.active { border-color: var(--h-brand); background: var(--h-brand-50); color: var(--h-brand-ink); box-shadow: 0 0 0 3px rgba(43,127,209,0.1); }
.h-check input { accent-color: var(--h-brand); }

.h-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.h-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--h-line);
  background: var(--h-bg-raised);
  color: var(--h-ink-700);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.h-radio:hover { border-color: var(--h-brand-400); }
.h-radio.active { border-color: var(--h-brand); background: var(--h-brand-50); color: var(--h-ink-900); box-shadow: inset 0 0 0 1px var(--h-brand); }
.h-radio.active .h-radio-sub { color: var(--h-ink-700); }
.h-radio-sub { font-size: 12px; color: var(--h-ink-500); margin-top: 2px; font-weight: 400; }

/* Native select styled like our inputs */
.h-select {
  width: 100%;
  padding: 11px 40px 11px 14px;
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
  background-color: var(--h-bg-raised);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  font-family: inherit;
  font-size: 14px;
  color: var(--h-ink-900);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.h-select:hover { border-color: var(--h-brand-400); }
.h-select:focus { outline: none; border-color: var(--h-brand); box-shadow: 0 0 0 3px var(--h-brand-50); }

/* ===== Footer — rounded top ===== */
.h-footer {
  background: linear-gradient(145deg, var(--h-ink-900) 0%, #061429 72%, #061429 100%);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
  border-radius: var(--r-3xl) var(--r-3xl) 0 0;
  margin-top: 40px;
}
.h-footer a { color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.h-footer a:hover { color: #fff; }
.h-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.8fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.h-footer__brand,
.h-footer__links {
  min-width: 0;
}
.h-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 1120px) {
  .h-footer__grid {
    grid-template-columns: 1fr;
  }
  .h-footer__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .h-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .h-footer__links {
    grid-template-columns: 1fr;
  }
}
.h-footer__title { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 500; }
.h-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.h-footer li,
.h-footer a {
  overflow-wrap: anywhere;
}
.h-footer__bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.45); }
@media (max-width: 600px) { .h-footer__bottom { flex-direction: column; gap: 8px; } }

/* ===== Hero ===== */
.h-hero {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0 clamp(64px, 8vw, 100px);
  overflow: visible;
}
.h-hero__bg {
  position: absolute;
  inset: -220px 0 -40px 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(220,238,255,0.72) 0%, rgba(220,238,255,0.38) 34%, rgba(244,247,251,0) 78%),
    radial-gradient(ellipse 54% 46% at 88% 10%, rgba(43,127,209,0.14), transparent 72%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(140,192,237,0.22), transparent 70%);
  z-index: 0;
}
.h-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) { .h-hero__grid { gap: 48px; } }
@media (max-width: 900px) { .h-hero__grid { grid-template-columns: 1fr; gap: 48px; } }
.h-hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.h-hero__visual {
  position: relative;
  aspect-ratio: 4 / 4.05;
  background: linear-gradient(155deg, var(--h-brand) 0%, var(--h-brand-600) 55%, var(--h-brand-ink) 100%);
  border-radius: var(--r-2xl);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.h-hero__visual--showcase {
  --showcase-overlap: clamp(16px, 2.5vw, 34px);
  aspect-ratio: auto;
  min-height: 0;
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(155deg, rgba(43,127,209,0.18) 0%, rgba(29,106,184,0.12) 52%, rgba(15,58,107,0.16) 100%),
    rgba(255,255,255,0.72);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-xl);
  border-radius: var(--r-2xl);
  gap: 14px;
  transform: translateY(var(--showcase-overlap));
}
.h-hero__visual--showcase::before,
.h-hero__visual--showcase::after {
  display: none;
}
.h-hero__image-frame {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--r-2xl) - 10px);
  background: rgba(255,255,255,0.76);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), 0 16px 36px rgba(14,28,54,0.08);
}
.h-hero__image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}
.h-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.h-hero__info-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.h-hero__info-panel .h-hero__tag {
  color: var(--h-brand-ink);
  background: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(14,28,54,0.10);
  backdrop-filter: blur(14px);
}
.h-status-card--hero {
  padding: 16px 18px;
  color: var(--h-ink-900);
  background: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.92);
  box-shadow: 0 18px 42px rgba(14,28,54,0.14), 0 6px 16px rgba(43,127,209,0.12);
  backdrop-filter: blur(18px);
}
.h-status-card--hero .h-status-card__title {
  color: var(--h-brand);
  opacity: 1;
  border-bottom-color: rgba(43,127,209,0.14);
}
.h-status-card--hero .h-status-card__row + .h-status-card__row {
  border-top-color: rgba(43,127,209,0.12);
}
.h-status-card--hero .h-status-card__label {
  opacity: 0.78;
  color: var(--h-ink-700);
}
.h-status-card--hero .h-status-card__sublabel {
  margin-top: 3px;
  opacity: 0.64;
}
.h-status-card--hero .h-status-card__value {
  color: var(--h-brand-ink);
}
.h-ops-section {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(40px, 5vw, 64px);
}
.h-ops-panel {
  overflow: hidden;
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.h-ops-panel__header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 22px 24px 18px;
  color: var(--h-brand-ink);
  font-weight: 600;
  font-size: 17px;
  border-bottom: 1px solid var(--h-line);
}
.h-ops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.h-ops-item {
  min-height: 82px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  color: var(--h-ink-900);
  background: transparent;
}
.h-ops-item + .h-ops-item {
  border-left: 1px solid var(--h-line);
}
.h-ops-item span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--h-ink-600);
  font-size: 13px;
  line-height: 1.25;
  min-width: 0;
}
.h-ops-item small {
  color: var(--h-ink-400);
  font-size: 12px;
}
.h-ops-item strong {
  color: var(--h-brand-ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}
.h-ops-item--contact {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  justify-content: initial;
  border-top: 1px solid var(--h-line);
  border-left: 0;
}
.h-ops-item--contact span {
  color: var(--h-ink-900);
  font-weight: 600;
}
.h-ops-item--contact p {
  margin-top: 5px;
  color: var(--h-ink-600);
  font-size: 14px;
  line-height: 1.45;
}
.h-ops-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h-brand);
  background: var(--h-brand-50);
  border: 1px solid var(--h-brand-200);
  border-radius: var(--r-md);
}
.h-ops-item__icon svg {
  width: 20px;
  height: 20px;
}
.h-ops-section + .h-section {
  padding-top: clamp(44px, 6vw, 76px);
}
@media (max-width: 1100px) {
  .h-hero__visual {
    aspect-ratio: auto;
    min-height: 500px;
    width: 100%;
  }
  .h-hero__visual--showcase {
    aspect-ratio: auto;
    min-height: 0;
  }
}
@media (max-width: 900px) {
  .h-hero__visual--showcase { transform: none; }
  .h-hero__image-frame { aspect-ratio: 1 / 1; }
  .h-ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .h-ops-item {
    border-left: 0;
  }
  .h-ops-item:nth-child(even):not(.h-ops-item--contact) {
    border-left: 1px solid var(--h-line);
  }
  .h-ops-item:nth-child(n+3) {
    border-top: 1px solid var(--h-line);
  }
}
@media (min-width: 901px) {
  .h-hero + .h-section {
    padding-top: clamp(52px, 7vw, 92px);
  }
}
.h-hero__stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block: auto;
}
.h-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,255,255,0.2), transparent 70%);
  pointer-events: none;
}
.h-hero__visual::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}

.h-status-card {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.h-status-card__title {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.h-status-card__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 10px 0; font-size: 14px; }
.h-status-card__row + .h-status-card__row { border-top: 1px solid rgba(255,255,255,0.12); }
.h-status-card__label { opacity: 0.85; display: flex; flex-direction: column; gap: 2px; }
.h-status-card__sublabel { font-size: 11px; opacity: 0.6; font-weight: 400; }
.h-status-card__value { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; text-align: right; }
.h-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--h-brand); box-shadow: 0 0 0 4px rgba(43,127,209,0.15); }

.h-contact-strip {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 12px 28px rgba(4,13,30,0.12);
}
.h-contact-strip__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-md);
}
.h-contact-strip__icon svg {
  width: 20px;
  height: 20px;
}
.h-contact-strip__label {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}
.h-contact-strip strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
}

.h-contact-feature {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 24px 28px;
  background:
    linear-gradient(135deg, rgba(43,127,209,0.08), rgba(103,215,154,0.08)),
    var(--h-bg-raised);
  border: 1px solid rgba(43,127,209,0.14);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.h-contact-feature__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h-brand);
  background: #fff;
  border: 1px solid var(--h-brand-200);
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px rgba(43,127,209,0.06);
}
.h-contact-feature__icon svg {
  width: 24px;
  height: 24px;
}
.h-contact-feature .h-h3 {
  margin: 0 0 6px;
}
.h-contact-feature .h-body {
  max-width: 680px;
}

.h-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 13px;
  color: #fff;
  align-self: flex-start;
  font-weight: 500;
}

/* ===== Split layout ===== */
.h-split { display: grid; grid-template-columns: 260px 1fr; gap: 64px; }
@media (max-width: 900px) { .h-split { grid-template-columns: 1fr; gap: 32px; } }
.h-split__nav { position: sticky; top: 100px; align-self: start; font-size: 14px; }
.h-split__nav ol { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 4px; }
.h-split__nav li {
  counter-increment: step;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  color: var(--h-ink-500);
  transition: color 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
}
.h-split__nav li::before { content: counter(step); color: var(--h-ink-400); font-variant-numeric: tabular-nums; font-size: 12px; padding-top: 2px; }
.h-split__nav li:hover { background: var(--h-bg-tint); }
.h-split__nav li.active { color: var(--h-brand-ink); background: var(--h-brand-50); }
.h-split__nav li.active::before { color: var(--h-brand); }

/* ===== Service ===== */
.h-services-intro,
.h-migration-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.h-services-intro__visual,
.h-migration-intro__visual {
  justify-self: end;
  width: min(100%, 620px);
}
.h-services-intro__visual .h-hero__image-frame,
.h-migration-intro__visual .h-hero__image-frame {
  aspect-ratio: 1.28 / 1;
}
.h-services-intro__visual .h-hero__image-frame img {
  object-position: center 24%;
  transform: none;
}
.h-services-intro--dashboard {
  align-items: start;
}
.h-services-intro--dashboard > div:first-child {
  padding-top: clamp(8px, 2vw, 24px);
}
.h-services-intro--security {
  align-items: center;
}
.h-services-intro--backup {
  align-items: center;
}
.h-migration-intro__visual .h-hero__image-frame img {
  object-position: center;
}
@media (max-width: 900px) {
  .h-services-intro,
  .h-migration-intro {
    grid-template-columns: 1fr;
  }
  .h-services-intro__visual,
  .h-migration-intro__visual {
    justify-self: start;
    width: min(100%, 620px);
  }
}
.h-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.h-service {
  padding: 28px;
  border-radius: var(--r-xl);
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.h-service:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.h-service__head { display: flex; align-items: center; gap: 16px; }
.h-service__head .h-icon-circle { flex-shrink: 0; }
.h-service__desc { margin-top: 14px; }
.h-service ul { list-style: none; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--h-line); display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.h-service ul li { display: flex; gap: 10px; font-size: 14px; color: var(--h-ink-700); line-height: 1.5; }
.h-service ul li svg { color: var(--h-brand); width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.h-service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--h-brand);
  font-size: 14px;
  font-weight: 600;
}
.h-service__link svg {
  width: 16px;
  height: 16px;
}
.h-service__link:hover {
  color: var(--h-brand-ink);
}
.h-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--h-ink-500);
  font-size: 14px;
  font-weight: 600;
}
.h-back-link svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
.h-back-link:hover {
  color: var(--h-brand);
}
.h-service-detail-panel {
  justify-self: end;
  width: min(100%, 480px);
}
.h-monitor-dashboard {
  justify-self: end;
  width: min(100%, 560px);
  margin-top: 8px;
  padding: 18px;
  background: linear-gradient(160deg, #0e1c36 0%, #102849 48%, #f8fbff 48.3%, #fff 100%);
  border: 1px solid rgba(202,213,229,0.95);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 72px rgba(14,28,54,0.16), 0 10px 24px rgba(14,28,54,0.08);
}
.h-monitor-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  padding: 22px 24px;
  color: #fff;
  border-radius: var(--r-lg);
}
.h-monitor-dashboard__label {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.h-monitor-dashboard__top strong {
  display: block;
  max-width: 13ch;
  margin-top: 7px;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.15;
}
.h-monitor-dashboard__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 8px 11px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.h-monitor-dashboard__status span {
  width: 9px;
  height: 9px;
  background: var(--h-brand-400);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(43,127,209,0.18);
  animation: hPulse 1.8s ease-in-out infinite;
}
.h-monitor-dashboard__tabs {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  padding: 5px;
  background: var(--h-bg-tint);
  border-radius: var(--r-pill);
}
.h-monitor-dashboard__tabs button {
  flex: 1;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--h-ink-500);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 650;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.h-monitor-dashboard__tabs button:hover,
.h-monitor-dashboard__tabs button.active {
  color: var(--h-brand-ink);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.h-monitor-dashboard__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
}
.h-monitor-dashboard__metric span {
  color: var(--h-ink-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.h-monitor-dashboard__metric strong {
  color: var(--h-brand-ink);
  font-size: 38px;
  font-weight: 650;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.h-monitor-dashboard__metric em {
  color: var(--h-ink-500);
  font-size: 13px;
  font-style: normal;
}
.h-monitor-dashboard__chart {
  height: 96px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff 0%, var(--h-brand-50) 100%);
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
}
.h-monitor-dashboard__chart span {
  flex: 1;
  min-width: 8px;
  background: linear-gradient(180deg, var(--h-brand-400), var(--h-brand));
  border-radius: var(--r-pill) var(--r-pill) 3px 3px;
  transform-origin: bottom;
  animation: hMeter 3.8s ease-in-out infinite;
}
.h-monitor-dashboard__chart span:nth-child(2n) { animation-delay: -0.8s; }
.h-monitor-dashboard__chart span:nth-child(3n) { animation-delay: -1.4s; }
.h-monitor-dashboard__events {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.h-monitor-dashboard__events div {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 5px 10px;
  min-height: 72px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
}
.h-monitor-dashboard__events span {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--h-brand);
  border-radius: 50%;
}
.h-monitor-dashboard__events strong {
  color: var(--h-ink-900);
  font-size: 14px;
  line-height: 1.35;
}
.h-monitor-dashboard__events small {
  grid-column: 2;
  color: var(--h-ink-500);
  font-size: 12px;
}
.h-backup-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 400px;
  margin-top: 8px;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 46%, rgba(43,127,209,0.14), transparent 34%),
    linear-gradient(180deg, rgba(238,246,255,0.95), rgba(255,255,255,0.98)),
    #fff;
  border: 1px solid var(--h-line-strong);
  border-radius: var(--r-xl);
  box-shadow: 0 28px 64px rgba(14,28,54,0.11), 0 10px 24px rgba(14,28,54,0.06);
}
.h-backup-visual::before,
.h-backup-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 158px;
  width: 286px;
  height: 206px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(43,127,209,0.18);
  border-radius: 50%;
}
.h-backup-visual::after {
  width: 224px;
  height: 150px;
  border-style: dashed;
}
.h-backup-visual__top {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.h-backup-source {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
}
.h-backup-source span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--h-brand);
  background: var(--h-brand-50);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(43,127,209,0.1);
  animation: hBluePulse 2.1s ease-in-out infinite;
}
.h-backup-source span svg {
  width: 14px;
  height: 14px;
}
.h-backup-source:nth-child(2) span {
  animation-delay: -0.7s;
}
.h-backup-source strong {
  color: var(--h-brand-ink);
  font-size: 15px;
  font-weight: 700;
}
.h-backup-server {
  position: absolute;
  top: 158px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 132px;
  min-height: 0;
  padding: 0;
  transform: translateY(-38px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--h-brand-ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.h-backup-server div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: var(--h-brand);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.h-backup-server svg {
  width: 38px;
  height: 38px;
}
.h-backup-server span {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}
.h-backup-server--left {
  left: 28px;
}
.h-backup-server--right {
  right: 28px;
}
.h-backup-visual__stream {
  position: absolute;
  z-index: 1;
  left: 116px;
  right: 116px;
  top: 158px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(43,127,209,0.22), transparent);
}
.h-backup-visual__stream span {
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--h-brand);
  border-radius: 50%;
  opacity: 0;
  animation: hBackupFlow 3.2s linear infinite;
}
.h-backup-visual__stream span:nth-child(2) { animation-delay: -0.8s; }
.h-backup-visual__stream span:nth-child(3) { animation-delay: -1.6s; }
.h-backup-visual__stream span:nth-child(4) { animation-delay: -2.4s; }
.h-backup-visual__center {
  position: absolute;
  left: 50%;
  top: 158px;
  z-index: 3;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--h-brand-ink);
  background: #fff;
  border: 1px solid var(--h-brand-100);
  border-radius: 50%;
  box-shadow: 0 24px 58px rgba(43,127,209,0.18), inset 0 0 0 12px var(--h-brand-50);
}
.h-backup-visual__center strong {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.h-backup-visual__center span {
  margin-top: 6px;
  color: var(--h-ink-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.h-security-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 420px;
  margin-top: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(43,127,209,0.16), transparent 34%),
    linear-gradient(180deg, rgba(238,246,255,0.9), rgba(255,255,255,0.98)),
    #fff;
  border: 1px solid var(--h-line-strong);
  border-radius: var(--r-xl);
  box-shadow: 0 28px 64px rgba(14,28,54,0.11), 0 10px 24px rgba(14,28,54,0.06);
}
.h-security-visual::before,
.h-security-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 172px;
  width: 330px;
  height: 220px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(43,127,209,0.2);
  border-radius: 50%;
}
.h-security-visual::after {
  width: 276px;
  height: 174px;
  border-style: dashed;
}
.h-security-visual__core {
  position: absolute;
  top: 172px;
  left: 50%;
  z-index: 2;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--h-brand-ink);
  background: #fff;
  border: 1px solid var(--h-brand-100);
  border-radius: 50%;
  box-shadow: 0 24px 58px rgba(43,127,209,0.18), inset 0 0 0 10px var(--h-brand-50);
}
.h-security-visual__core svg {
  width: 42px;
  height: 42px;
  color: var(--h-brand);
}
.h-security-visual__core strong {
  font-size: 15px;
  font-weight: 700;
}
.h-security-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--h-line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.h-security-node span {
  width: 10px;
  height: 10px;
  background: var(--h-brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(43,127,209,0.12);
  animation: hBluePulse 2.1s ease-in-out infinite;
}
.h-security-node--right span { animation-delay: -0.45s; }
.h-security-node--bottom span { animation-delay: -0.9s; }
.h-security-node--left span { animation-delay: -1.35s; }
.h-security-node small {
  color: var(--h-brand-ink);
  font-size: 13px;
  font-weight: 700;
}
.h-security-node--top { top: 62px; left: 50%; transform: translate(-50%, -50%); }
.h-security-node--right { top: 172px; right: 40px; transform: translateY(-50%); }
.h-security-node--bottom { top: 282px; left: 50%; transform: translate(-50%, -50%); }
.h-security-node--left { top: 172px; left: 40px; transform: translateY(-50%); }
.h-security-visual__routine {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
}
.h-security-visual__routine span {
  display: block;
  color: var(--h-ink-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.h-security-visual__routine i {
  display: block;
  height: 9px;
  margin-top: 10px;
  background: #d4dfed;
  border-radius: var(--r-pill);
  overflow: hidden;
}
.h-security-visual__routine b {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--h-brand-400), var(--h-brand));
  border-radius: inherit;
}
@keyframes hPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(43,127,209,0.18); }
  50% { transform: scale(0.82); box-shadow: 0 0 0 11px rgba(43,127,209,0.08); }
}
@keyframes hBluePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(43,127,209,0.14); }
  50% { transform: scale(0.82); box-shadow: 0 0 0 10px rgba(43,127,209,0.06); }
}
@keyframes hBackupFlow {
  0% { left: 0; opacity: 0; }
  15%, 80% { opacity: 0.72; }
  100% { left: calc(100% - 10px); opacity: 0; }
}
@keyframes hMeter {
  0%, 100% { transform: scaleY(0.82); opacity: 0.82; }
  50% { transform: scaleY(1); opacity: 1; }
}
.h-process-section .h-container {
  max-width: 1040px;
}
.h-process-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.h-process-head .h-h2 {
  margin-top: 18px;
}
.h-process-head .h-body {
  margin-top: 16px;
}
.h-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.h-process-step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(202,213,229,0.78);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.h-process-step:hover {
  border-color: var(--h-brand-300);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.h-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--h-brand);
  border-radius: var(--r-pill);
}
.h-process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--h-brand-ink);
  background: var(--h-brand-100);
  border: 1px solid var(--h-brand-300);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.h-process-step .h-h3 {
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .h-service-grid { grid-template-columns: 1fr; }
  .h-service-detail-panel {
    justify-self: start;
  }
  .h-monitor-dashboard {
    justify-self: center;
    margin-top: 0;
  }
  .h-services-intro--dashboard > div:first-child {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .h-services-intro--dashboard .h-title-narrow {
    margin-left: auto;
    margin-right: auto;
  }
  .h-services-intro--dashboard .h-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .h-security-visual {
    justify-self: center;
    margin-top: 0;
  }
  .h-backup-visual {
    justify-self: center;
    margin-top: 0;
  }
  .h-services-intro--security > div:first-child {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .h-services-intro--security .h-title-narrow {
    margin-left: auto;
    margin-right: auto;
  }
  .h-services-intro--security .h-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .h-services-intro--backup > div:first-child {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .h-services-intro--backup .h-title-narrow {
    margin-left: auto;
    margin-right: auto;
  }
  .h-services-intro--backup .h-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .h-process-grid {
    grid-template-columns: 1fr;
  }
  .h-process-head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .h-process-step {
    min-height: 0;
    padding: 24px;
  }
}
@media (max-width: 560px) {
  .h-service { padding: 22px; }
  .h-service ul { grid-template-columns: 1fr; }
  .h-process-section {
    padding: 42px 0;
  }
  .h-process-head {
    margin-bottom: 24px;
  }
  .h-process-head .h-h2 {
    margin-top: 14px;
  }
  .h-process-grid {
    gap: 14px;
  }
  .h-process-step {
    padding: 22px;
    border-radius: var(--r-md);
  }
  .h-process-step::before {
    left: 22px;
    right: 22px;
  }
  .h-process-step__num {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    font-size: 12px;
  }
  .h-process-step .h-h3 {
    margin-bottom: 6px;
  }
  .h-process-step .h-body {
    line-height: 1.55;
  }
  .h-monitor-dashboard {
    padding: 16px;
  }
  .h-security-visual {
    min-height: 380px;
  }
  .h-backup-visual {
    min-height: 382px;
    padding: 18px;
  }
  .h-backup-visual::before {
    top: 142px;
    width: 236px;
    height: 178px;
  }
  .h-backup-visual::after {
    top: 142px;
    width: 188px;
    height: 132px;
  }
  .h-backup-visual__top {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }
  .h-backup-source {
    min-height: 58px;
    padding: 12px;
  }
  .h-backup-source strong {
    font-size: 13px;
  }
  .h-backup-source span {
    width: 22px;
    height: 22px;
  }
  .h-backup-server {
    top: 142px;
    width: 92px;
    gap: 8px;
    padding: 0;
    transform: translateY(-29px);
    font-size: 11px;
  }
  .h-backup-server div {
    width: 58px;
    height: 58px;
  }
  .h-backup-server svg {
    width: 30px;
    height: 30px;
  }
  .h-backup-server span {
    font-size: 12px;
  }
  .h-backup-server--left {
    left: 16px;
  }
  .h-backup-server--right {
    right: 16px;
  }
  .h-backup-visual__stream {
    left: 72px;
    right: 72px;
    top: 142px;
  }
  .h-backup-visual__center {
    top: 142px;
    width: 94px;
    height: 94px;
  }
  .h-backup-visual__center strong {
    font-size: 32px;
  }
  .h-security-visual::before {
    width: 280px;
    height: 190px;
  }
  .h-security-visual::after {
    width: 234px;
    height: 150px;
  }
  .h-security-visual__core {
    width: 132px;
    height: 132px;
  }
  .h-security-node--right {
    right: 16px;
  }
  .h-security-node--left {
    left: 16px;
  }
  .h-monitor-dashboard__top {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .h-monitor-dashboard__events {
    grid-template-columns: 1fr;
  }
}

/* ===== Compare ===== */
.h-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .h-compare { grid-template-columns: 1fr; } }
.h-compare__col {
  padding: 36px;
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.h-compare__col:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.h-compare__col.ours {
  background: linear-gradient(145deg, var(--h-brand) 0%, var(--h-brand-ink) 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 34px 72px rgba(43,127,209,0.18), 0 12px 30px rgba(15,58,107,0.10);
  transform: translateY(-4px);
}
.h-compare__col.ours:hover {
  box-shadow: 0 46px 90px rgba(43,127,209,0.22), 0 18px 38px rgba(15,58,107,0.12);
  transform: translateY(-8px);
}
.h-compare__col.ours ul li { color: rgba(255,255,255,0.9); }
.h-compare__col.ours ul li svg { color: #fff; }
.h-compare__title { font-size: 24px; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.015em; }
.h-compare__sub { font-size: 13px; color: var(--h-ink-500); margin-bottom: 24px; font-weight: 500; }
.h-compare__col.ours .h-compare__sub { color: rgba(255,255,255,0.65); }
.h-compare ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.h-compare ul li { display: flex; gap: 12px; font-size: 15px; color: var(--h-ink-700); line-height: 1.5; align-items: flex-start; }
.h-compare ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--h-brand); width: 16px; height: 16px; }

/* ===== Price cards ===== */
.h-cost-group {
  margin: 0 0 18px;
}
.h-cost-group--managed {
  margin-top: 32px;
}
.h-cost-group__head {
  max-width: 820px;
}
.h-cost-group__head .h-h3 {
  margin: 0 0 6px;
}
.h-cost-group__head .h-body {
  margin: 0;
  color: var(--h-ink-600);
  max-width: 58ch;
}
.h-price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .h-price-cards { grid-template-columns: 1fr; } }
.h-price-card {
  padding: 32px;
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  border-radius: var(--r-2xl);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.h-price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.h-price-card.featured {
  background: linear-gradient(160deg, #fff 0%, var(--h-brand-50) 100%);
  border-color: var(--h-brand-300);
  box-shadow: 0 16px 40px rgba(43,127,209,0.15);
  transform: translateY(-8px);
}
.h-price-card.featured:hover {
  border-color: var(--h-brand-400);
  box-shadow: 0 22px 52px rgba(43,127,209,0.22);
  transform: translateY(-12px);
}
.h-price-card__spec { font-size: 13px; color: var(--h-ink-500); margin-bottom: 12px; }
.h-price-card__price { font-size: 40px; font-weight: 500; color: var(--h-ink-900); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.h-price-card__price small { display: block; font-size: 13px; color: var(--h-ink-500); font-weight: 400; margin-top: 8px; }
.h-price-card__type {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--h-brand);
  background: var(--h-brand-50);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.h-price-card__label { font-weight: 500; font-size: 17px; margin-bottom: 20px; }

/* ===== Steps ===== */
.h-steps { display: flex; flex-direction: column; gap: 16px; }
.h-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
  align-items: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-xs);
}
.h-step:hover { border-color: var(--h-brand-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.h-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--h-brand), var(--h-brand-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--shadow-brand);
}

/* ===== Final CTA ===== */
.h-final-cta {
  background: linear-gradient(135deg, var(--h-brand) 0%, var(--h-brand-600) 50%, var(--h-brand-ink) 100%);
  color: #fff;
  padding: clamp(64px, 9vw, 100px) var(--gutter);
  margin: 40px var(--gutter);
  border-radius: var(--r-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.h-final-cta__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.h-final-cta .h-btn--primary { background: #fff; color: var(--h-brand); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.h-final-cta .h-btn--primary:hover { background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.h-final-cta .h-btn--secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); }
.h-final-cta .h-btn--secondary:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.4); }
.h-final-cta .h-h2 { color: #fff; max-width: 24ch; }
.h-final-cta .h-lead { color: rgba(255,255,255,0.85); }
.h-final-cta .h-eyebrow { color: rgba(255,255,255,0.8); }
.h-final-cta .h-eyebrow::before { background: rgba(255,255,255,0.8); box-shadow: 0 0 0 4px rgba(255,255,255,0.15); }
.h-final-cta__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 60%);
  top: -40%;
  right: -15%;
  pointer-events: none;
}
.h-final-cta__glow2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(140,192,237,0.3) 0%, transparent 60%);
  bottom: -40%;
  left: -10%;
  pointer-events: none;
}

.h-page { animation: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Spec bar ===== */
.h-spec-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.h-spec-bar--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) {
  .h-spec-bar { grid-template-columns: 1fr 1fr; }
  .h-spec-bar--3 { grid-template-columns: 1fr; }
}
.h-spec-bar__cell {
  background: var(--h-bg-raised);
  border: 1px solid var(--h-line);
  padding: 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.h-spec-bar__cell:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.h-spec-bar__label { font-size: 13px; color: var(--h-ink-500); margin-bottom: 8px; }
.h-spec-bar__val { font-size: 26px; font-weight: 500; color: var(--h-ink-900); letter-spacing: -0.015em; font-variant-numeric: tabular-nums; }
.h-spec-bar__val small { font-size: 13px; color: var(--h-ink-500); font-weight: 400; display:block; margin-top: 4px; line-height: 1.4; text-wrap: balance; }

.h-confirmation {
  padding: 48px;
  border: 1px solid var(--h-line);
  background: var(--h-bg-raised);
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-lg);
}
.h-confirmation__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--h-brand-100), var(--h-brand-50));
  display: flex; align-items: center; justify-content: center;
  color: var(--h-brand);
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(43,127,209,0.1);
}

.h-callout {
  padding: 24px 28px;
  background: var(--h-brand-50);
  border: 1px solid var(--h-brand-100);
  border-left: 3px solid var(--h-brand);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--h-ink-700);
  line-height: 1.6;
}

.h-legal-body { max-width: 65ch; }
.h-legal-body h2 { margin: 40px 0 12px; font-size: 22px; font-weight: 500; }
.h-legal-body p { margin-bottom: 12px; color: var(--h-ink-700); }
.h-rule { height: 1px; background: var(--h-line); border: 0; }

/* ===== Go-rendered additions ===== */
* { letter-spacing: 0 !important; }

.h-mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: max(0px, calc((100% - var(--max-w)) / 2));
  z-index: 100;
  width: min(330px, calc(100vw - (2 * var(--gutter))));
  padding: 6px;
  color: var(--h-ink-900);
  background: #fff;
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(14,28,54,0.16), 0 8px 18px rgba(14,28,54,0.08);
  overflow: hidden;
}
.h-mobile-nav[hidden] { display: none; }
.h-menu-btn svg { width: 20px; height: 20px; }
.h-mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}
.h-mobile-nav nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--h-ink-700);
  font-size: 15px;
  font-weight: 500;
  border-radius: calc(var(--r-sm) - 2px);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.h-mobile-nav nav a + a {
  border-top: 1px solid var(--h-line);
}
.h-mobile-subnav + a {
  border-top: 1px solid var(--h-line);
}
.h-mobile-nav nav a:hover,
.h-mobile-nav nav a.active {
  color: var(--h-brand-ink);
  background: var(--h-brand-50);
}
.h-mobile-subnav {
  display: grid;
  gap: 4px;
  margin: 2px 0 10px 28px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--h-line);
  border-radius: calc(var(--r-sm) - 2px);
}
.h-mobile-nav nav .h-mobile-subnav a {
  min-height: 36px;
  padding: 8px 12px;
  color: var(--h-ink-500);
  font-size: 14px;
  border-top: 0;
}
.h-mobile-nav nav .h-mobile-subnav a:hover,
.h-mobile-nav nav .h-mobile-subnav a.active {
  color: var(--h-brand-ink);
  background: var(--h-brand-50);
}
.h-mobile-nav nav svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  opacity: 0.9;
}
.h-mobile-nav > .h-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 14px;
  font-size: 14px;
}

.h-footer__logo {
  display: block;
  width: 210px;
  height: 87px;
  filter: brightness(0) invert(1);
  margin-left: -2px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}
.h-footer__text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.h-footer__muted {
  opacity: 0.6;
  font-size: 12px;
}

.h-kpis {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.h-kpis div {
  padding-left: 16px;
  border-left: 2px solid var(--h-brand);
}
.h-kpis strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--h-ink-900);
}
.h-kpis span,
.h-inline .h-small {
  display: block;
  color: var(--h-ink-500);
  font-size: 13px;
}

.h-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-inline .h-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.h-inline .h-icon-circle svg {
  width: 18px;
  height: 18px;
}

.h-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.h-centered .h-lead {
  margin: 16px auto 0;
}
.h-card .h-h3,
.h-card h3 {
  margin-top: 20px;
  margin-bottom: 12px;
}
.h-check-card {
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.h-check-card svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 50%;
  background: var(--h-brand-100);
  color: var(--h-brand);
  flex-shrink: 0;
}

.h-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.h-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.h-card-corner {
  position: absolute;
  top: 20px;
  right: 20px;
}
.h-gradient-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  border-radius: var(--r-2xl);
  background: linear-gradient(145deg, var(--h-brand) 0%, var(--h-brand-ink) 100%);
  box-shadow: var(--shadow-xl);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.h-gradient-panel:hover {
  box-shadow: 0 48px 92px rgba(14,28,54,0.18), 0 18px 38px rgba(43,127,209,0.18);
  transform: translateY(-4px);
}
.h-gradient-panel .h-h3 {
  color: #fff;
  margin-top: 16px;
}
.h-gradient-panel p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.h-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 20px;
  color: var(--h-brand);
  background: #fff;
  border-radius: 0 var(--r-2xl) 0 var(--r-lg);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.h-overline {
  font-size: 13px;
  color: var(--h-ink-500);
  font-weight: 500;
  text-transform: uppercase;
}
.h-gradient-panel .h-overline {
  color: rgba(255,255,255,0.75);
}
.h-migration-cta {
  margin-top: 30px;
}
.h-migration-card {
  padding: 36px;
}
.h-migration-card__top {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--h-line);
}
.h-migration-card__metric {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.h-migration-card__top strong {
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}
.h-migration-card__top span {
  color: var(--h-ink-700);
  font-weight: 500;
  line-height: 1.35;
}
.h-migration-card p,
.h-rows p,
.h-breakdown p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--h-line);
  font-size: 14px;
}
.h-migration-card p:last-child,
.h-rows p:last-child,
.h-breakdown p:last-child { border-bottom: 0; }
.h-migration-card p span,
.h-rows p span,
.h-breakdown p span { color: var(--h-ink-700); }
.h-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.h-title-narrow {
  max-width: 22ch;
  margin-top: 20px;
  margin-bottom: 24px;
}
.h-tight-bottom {
  padding-top: 32px;
  padding-bottom: 96px;
}
.h-margin-top { margin-top: 40px; }
.h-align-right {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.h-table-wrap {
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-xl);
}
.h-price-cell {
  font-size: 17px;
  font-weight: 500;
}
.h-note {
  margin-top: 16px;
  max-width: 60ch;
}
.h-big-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 20px;
}
.h-big-price strong {
  font-size: 72px;
  font-weight: 500;
  line-height: 0.95;
}
.h-big-price span {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.h-big-price--dark span {
  color: var(--h-ink-500);
}
.h-big-price--dark strong {
  color: var(--h-ink-900);
  font-size: 56px;
}
.h-check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--h-ink-700);
}
.h-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.h-check-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--h-brand);
}
.h-check-list--light {
  color: rgba(255,255,255,0.92);
}
.h-check-list--light svg {
  color: #fff;
}
.h-flex-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.h-flex-card .h-check-list {
  margin-top: auto;
  padding-top: 24px;
}
.h-calculator {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-top: 40px;
  overflow: visible;
  border: 1px solid var(--h-line);
  border-radius: var(--r-2xl);
  background: var(--h-bg-raised);
  box-shadow: var(--shadow-md);
}
.h-calc-config {
  padding: 40px;
  border-right: 1px solid var(--h-line);
  border-radius: var(--r-2xl) 0 0 var(--r-2xl);
}
.h-calc-summary {
  padding: 40px;
  background: var(--h-brand-50);
  border-radius: 0 var(--r-2xl) var(--r-2xl) 0;
  display: flex;
  flex-direction: column;
}
.h-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.h-radio-grid .h-radio {
  align-items: flex-start;
  min-height: 76px;
  padding: 14px 16px;
  text-align: left;
}
.h-radio-grid small {
  display: block;
}
.h-calc-head {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.h-calc-head label {
  font-size: 13px;
  font-weight: 500;
  color: var(--h-ink-700);
}
.h-calc-head button,
.h-server-item__top button {
  border-radius: var(--r-pill);
  padding: 8px 16px;
  color: #fff;
  background: var(--h-brand);
  font-size: 13px;
  font-weight: 500;
}
.h-server-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.h-server-item {
  padding: 20px;
  background: var(--h-bg-tint);
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
}
.h-server-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.h-server-item__top button {
  color: var(--h-ink-500);
  background: transparent;
  padding: 4px 8px;
}
.h-package-select {
  position: relative;
}
.h-package-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 48px 14px 16px;
  border: 1px solid var(--h-brand-300);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--h-ink-900);
  text-align: left;
  box-shadow: 0 10px 24px rgba(21,32,50,0.10);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.h-package-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--h-ink-500);
  border-bottom: 2px solid var(--h-ink-500);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.15s ease;
}
.h-package-trigger[aria-expanded="true"] {
  border-color: var(--h-brand-400);
  background: #fff;
  box-shadow: 0 0 0 3px var(--h-brand-50), 0 10px 24px rgba(43,127,209,0.10);
}
.h-package-trigger[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}
.h-package-trigger:hover {
  border-color: var(--h-brand-400);
  box-shadow: 0 12px 28px rgba(21,32,50,0.13);
}
.h-package-option strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--h-ink-900);
}
.h-package-trigger strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--h-ink-900);
}
.h-package-trigger small,
.h-package-option small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--h-ink-500);
}
.h-package-menu {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 8px;
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-xl);
}
.h-package-menu[hidden] {
  display: none;
}
.h-package-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  color: var(--h-ink-900);
  text-align: left;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.h-package-option:hover {
  background: var(--h-bg-tint);
}
.h-package-option.selected {
  background: var(--h-brand-50);
}
.h-package-option.selected strong {
  color: var(--h-brand);
}
.h-package-option em {
  flex-shrink: 0;
  font-style: normal;
  font-weight: 600;
  color: var(--h-ink-900);
  font-variant-numeric: tabular-nums;
}
.h-total {
  margin-top: 20px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--h-ink-900);
}
.h-founders-box {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--h-line);
  border-radius: var(--r-lg);
  font-size: 13px;
  color: var(--h-ink-700);
}
.h-founders-box[hidden] { display: none; }
.h-breakdown {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--h-line);
}
.h-row-total {
  border-top: 1px dashed var(--h-line);
  margin-top: 4px;
  padding-top: 14px !important;
  font-weight: 500;
}
.h-calc-actions {
  margin-top: auto;
  display: grid;
  gap: 12px;
}
.h-calc-actions .h-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.h-textarea--compact {
  min-height: 150px;
}
.h-calculation-field[hidden] {
  display: none;
}
.h-calculation-field__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.h-calculation-field__head button {
  flex-shrink: 0;
  border-radius: var(--r-pill);
  padding: 6px 12px;
  background: transparent;
  color: var(--h-ink-500);
  font-size: 13px;
  font-weight: 500;
}
.h-calculation-field__head button:hover {
  color: #9b3434;
  background: #fff2f2;
}
.h-calculation-preview {
  margin: 0;
  padding: 14px 18px;
  min-height: 120px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: var(--h-bg-tint);
  border: 1px solid var(--h-line);
  border-radius: var(--r-md);
  color: var(--h-ink-800);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
}
.h-project-price {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}
.h-spec-section {
  padding: 48px 0;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
}
.migration-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.h-rows {
  margin-top: 20px;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
}
.h-contact-title {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: clamp(32px, 4.2vw, 48px);
}
.h-contact-panel {
  display: grid;
  gap: 24px;
}
.h-contact-illustration {
  position: relative;
  z-index: 0;
  width: 100%;
  transform: none;
}
.h-contact-illustration .h-hero__image-frame {
  aspect-ratio: 1.54 / 1;
}
.h-expect {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--h-line);
}
.h-expect p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--h-line);
}
.h-expect span {
  color: var(--h-ink-400);
  font-size: 12px;
  line-height: 1.3;
  padding-top: 5px;
}
.h-expect small {
  grid-column: 2;
  color: var(--h-ink-500);
  margin-top: -2px;
}
.h-contact-form {
  position: relative;
  z-index: 1;
  padding: 40px 40px 32px;
}
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.h-input--error {
  border-color: #b94d4d !important;
}
.h-field-error {
  color: #9b3434;
  font-size: 12px;
  line-height: 1.4;
}
.h-form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--h-brand-50);
  border: 1px solid var(--h-brand-100);
  color: var(--h-ink-700);
  font-size: 14px;
  line-height: 1.5;
}
.h-form-message[hidden] {
  display: none;
}
.h-form-message--error {
  color: #8a2f2f;
  background: #fff2f2;
  border-color: #efcaca;
}
.h-btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.h-form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--h-line);
}
.h-form-submit .h-small {
  max-width: 380px;
}
.h-confirmation[hidden] {
  display: none;
}
.h-confirmation .h-h2 {
  margin-top: 16px;
}
.h-confirmation .h-lead,
.h-confirmation .h-rule,
.h-confirmation .h-body,
.h-confirmation .h-btn {
  margin-top: 16px;
}
.h-notfound {
  text-align: center;
  padding: 80px 0;
}
.h-notfound .h-num {
  font-size: 14px;
  color: var(--h-ink-400);
}
.h-notfound .h-lead {
  margin: 16px auto 32px;
}

/* ===== Dark Mode Refinements ===== */
html[data-theme="dark"] .h-header__inner {
  background: rgba(10,24,43,0.9);
  border-color: rgba(158,184,218,0.22);
  box-shadow: 0 18px 48px rgba(0,0,0,0.30);
  backdrop-filter: blur(18px);
}
html[data-theme="dark"] .h-logo img {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
}
html[data-theme="dark"] .h-nav-menu,
html[data-theme="dark"] .h-mobile-nav,
html[data-theme="dark"] .h-mobile-subnav,
html[data-theme="dark"] .h-package-menu {
  background: rgba(14,29,51,0.98);
  border-color: var(--h-line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.36), 0 8px 18px rgba(0,0,0,0.24);
}
html[data-theme="dark"] .h-menu-btn,
html[data-theme="dark"] .h-package-trigger,
html[data-theme="dark"] .h-monitor-dashboard__metric,
html[data-theme="dark"] .h-monitor-dashboard__events div,
html[data-theme="dark"] .h-security-visual__routine {
  background: var(--h-bg-raised);
  color: var(--h-ink-900);
}
html[data-theme="dark"] .h-btn--secondary {
  background: rgba(14,29,51,0.86);
  color: var(--h-ink-900);
  border-color: var(--h-line-strong);
}
html[data-theme="dark"] .h-btn--secondary:hover {
  background: var(--h-bg-raised);
  color: var(--h-brand);
}
html[data-theme="dark"] .h-hero__bg {
  background:
    linear-gradient(180deg, rgba(43,127,209,0.18) 0%, rgba(43,127,209,0.08) 38%, rgba(7,20,38,0) 78%),
    radial-gradient(ellipse 54% 46% at 88% 10%, rgba(99,179,255,0.16), transparent 72%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(99,179,255,0.10), transparent 70%);
}
html[data-theme="dark"] .h-hero__visual--showcase {
  background:
    linear-gradient(155deg, rgba(99,179,255,0.16) 0%, rgba(59,138,214,0.10) 52%, rgba(213,236,255,0.08) 100%),
    rgba(14,29,51,0.72);
  border-color: rgba(158,184,218,0.24);
}
html[data-theme="dark"] .h-hero__image-frame {
  background: rgba(9,22,39,0.76);
  box-shadow: inset 0 0 0 1px rgba(158,184,218,0.14), 0 16px 36px rgba(0,0,0,0.22);
}
html[data-theme="dark"] .h-hero__image-frame img {
  filter: saturate(0.96) brightness(0.9);
}
html[data-theme="dark"] .h-price-card.featured {
  background: linear-gradient(160deg, var(--h-bg-raised) 0%, rgba(99,179,255,0.14) 100%);
}
html[data-theme="dark"] .h-compare__col.ours,
html[data-theme="dark"] .h-gradient-panel {
  background:
    radial-gradient(ellipse 56% 72% at 82% 16%, rgba(99,179,255,0.16), transparent 66%),
    linear-gradient(145deg, #14395f 0%, #102842 58%, #0b1a2d 100%);
  border: 1px solid rgba(99,179,255,0.22);
  box-shadow: 0 34px 72px rgba(0,0,0,0.30), 0 12px 30px rgba(34,126,210,0.12);
}
html[data-theme="dark"] .h-compare__col.ours:hover,
html[data-theme="dark"] .h-gradient-panel:hover {
  box-shadow: 0 42px 86px rgba(0,0,0,0.34), 0 16px 36px rgba(34,126,210,0.16);
}
html[data-theme="dark"] .h-monitor-dashboard {
  background: linear-gradient(160deg, #071426 0%, #102849 48%, #0e1d33 48.3%, #0e1d33 100%);
  border-color: var(--h-line-strong);
}
html[data-theme="dark"] .h-monitor-dashboard__tabs button.active {
  background: var(--h-bg-raised);
}
html[data-theme="dark"] .h-monitor-dashboard__chart {
  background: linear-gradient(180deg, var(--h-bg-raised) 0%, var(--h-bg-tint) 100%);
}
html[data-theme="dark"] .h-backup-visual,
html[data-theme="dark"] .h-security-visual {
  background:
    radial-gradient(circle at 50% 44%, rgba(99,179,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(16,38,66,0.94), rgba(14,29,51,0.98)),
    var(--h-bg-raised);
  border-color: var(--h-line-strong);
}
html[data-theme="dark"] .h-backup-source,
html[data-theme="dark"] .h-backup-server div,
html[data-theme="dark"] .h-backup-visual__center,
html[data-theme="dark"] .h-security-node,
html[data-theme="dark"] .h-security-visual__core,
html[data-theme="dark"] .h-contact-feature__icon {
  background: rgba(14,29,51,0.88);
  border-color: var(--h-line-strong);
}
html[data-theme="dark"] .h-process-step {
  background: rgba(14,29,51,0.7);
  border-color: var(--h-line);
}
html[data-theme="dark"] .h-process-step:hover {
  background: rgba(16,38,66,0.9);
}
html[data-theme="dark"] .h-step {
  background: rgba(14,29,51,0.7);
  border-color: var(--h-line);
}
html[data-theme="dark"] .h-step:hover {
  background: rgba(16,38,66,0.9);
  border-color: rgba(99,179,255,0.34);
}
html[data-theme="dark"] .h-step__num {
  color: var(--h-brand-ink);
  background: rgba(99,179,255,0.12);
  border: 1px solid rgba(99,179,255,0.46);
  box-shadow: none;
}
html[data-theme="dark"] .h-final-cta {
  background:
    radial-gradient(ellipse 58% 76% at 84% 12%, rgba(99,179,255,0.18), transparent 64%),
    linear-gradient(135deg, #102b49 0%, #0d223a 54%, #071426 100%);
  border: 1px solid rgba(158,184,218,0.22);
}
html[data-theme="dark"] .h-final-cta .h-btn--primary {
  background: linear-gradient(135deg, var(--h-brand) 0%, var(--h-brand-600) 100%);
  color: #061426;
  box-shadow: 0 12px 30px rgba(34,126,210,0.28);
}
html[data-theme="dark"] .h-final-cta .h-btn--primary:hover {
  background: linear-gradient(135deg, var(--h-brand-400) 0%, var(--h-brand) 100%);
}
html[data-theme="dark"] .h-ribbon {
  background: #f3f8ff;
}
html[data-theme="dark"] .h-final-cta__glow {
  opacity: 0.36;
  background: radial-gradient(ellipse, rgba(99,179,255,0.16) 0%, transparent 62%);
}
html[data-theme="dark"] .h-founders-box {
  background: rgba(14,29,51,0.72);
}
html[data-theme="dark"] .h-calculation-field__head button:hover,
html[data-theme="dark"] .h-form-message--error {
  background: rgba(185,77,77,0.12);
}
html[data-theme="dark"] .h-form-message--error,
html[data-theme="dark"] .h-field-error {
  color: #ffb4b4;
}
html[data-theme="dark"] .h-footer {
  background: linear-gradient(145deg, #06101e 0%, #040b15 72%, #040b15 100%);
}

@media (max-width: 900px) {
  .h-two-col,
  .h-calculator,
  .kontakt-grid,
  .migration-steps-grid {
    grid-template-columns: 1fr;
  }
  .h-calc-config {
    border-right: 0;
    border-bottom: 1px solid var(--h-line);
    border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  }
  .h-calc-summary {
    border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  }
}

@media (max-width: 760px) {
  .h-header {
    top: 10px;
    margin: 0 var(--gutter);
  }
  .h-header__inner {
    min-height: 68px;
    padding: 10px 12px 10px 20px;
    gap: 12px;
  }
  .h-logo img {
    width: clamp(142px, 25vw, 162px);
    height: auto;
  }
  .h-section {
    padding: 56px 0;
  }
  .h-section--compact {
    padding: 44px 0;
  }
  .h-section--tint {
    margin: 0;
    border-radius: var(--r-2xl);
  }
  .h-hero {
    padding: 36px 0 64px;
  }
  .h-hero__grid {
    gap: 40px;
  }
  .h-contact-feature {
    grid-template-columns: 48px 1fr;
    align-items: start;
    padding: 22px;
  }
  .h-contact-feature__icon {
    width: 48px;
    height: 48px;
  }
  .h-contact-feature .h-btn {
    grid-column: 1 / -1;
  }
  .h-centered {
    text-align: left;
    margin-bottom: 36px;
  }
  .h-centered .h-lead {
    margin-left: 0;
    margin-right: 0;
  }
  .h-card,
  .h-price-card,
  .h-compare__col,
  .h-gradient-panel {
    padding: 24px;
  }
  .h-section-head {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }
  .h-final-cta {
    margin: 24px 0;
    border-radius: var(--r-2xl);
  }
  .h-final-cta__glow,
  .h-final-cta__glow2 {
    display: none;
  }
  .h-table th,
  .h-table td {
    padding: 14px 10px;
  }
  .h-table {
    font-size: 14px;
  }
  .h-table th {
    font-size: 12px;
  }
  .h-price-cell {
    font-size: 15px;
  }
  .h-radio-grid,
  .form-row2 {
    grid-template-columns: 1fr;
  }
  .h-calc-config,
  .h-calc-summary,
  .h-contact-form {
    padding: 28px;
  }
  .h-big-price strong {
    font-size: 52px;
  }
  .h-footer__grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .h-header__cta > .h-btn--primary {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }
  .h-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
  .h-header__cta .h-menu-btn {
    width: 44px;
    height: 44px;
  }
  .h-theme-toggle {
    --toggle-width: 52px;
    --toggle-height: 36px;
    --toggle-thumb: 24px;
    --toggle-offset: 4px;
    --toggle-move: 20px;
    height: 44px;
  }
  .h-theme-toggle__track {
    height: var(--toggle-height);
  }
  .h-theme-toggle__icon svg {
    width: 15px;
    height: 15px;
  }
  .h-hero__ctas,
  .h-actions {
    gap: 12px;
  }
  .h-kpis {
    gap: 24px;
    margin-top: 36px;
  }
  .h-hero__visual {
    aspect-ratio: auto;
    min-height: 0;
    padding: 20px;
    border-radius: var(--r-xl);
  }
  .h-hero__visual--showcase {
    aspect-ratio: auto;
    padding: 12px;
    border-radius: var(--r-lg);
  }
  .h-hero__image-frame {
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--r-lg) - 6px);
  }
  .h-ops-grid {
    grid-template-columns: 1fr;
  }
  .h-ops-item,
  .h-ops-item:nth-child(even):not(.h-ops-item--contact) {
    border-left: 0;
  }
  .h-ops-item + .h-ops-item {
    border-top: 1px solid var(--h-line);
  }
  .h-contact-feature {
    grid-template-columns: 1fr;
  }
  .h-status-card {
    padding: 16px;
  }
  .h-contact-strip {
    padding: 16px;
  }
  .h-card-corner {
    position: static;
    margin-bottom: 16px;
  }
  .h-tight-bottom {
    padding-bottom: 64px;
  }
  .h-table-wrap {
    border-radius: var(--r-lg);
    overflow-x: visible;
  }
  .h-table,
  .h-table tbody,
  .h-table tr,
  .h-table td {
    display: block;
    width: 100%;
  }
  .h-table {
    background: transparent;
    border-radius: 0;
  }
  .h-table thead {
    display: none;
  }
  .h-table tbody {
    display: grid;
    gap: 12px;
  }
  .h-table tr {
    padding: 16px;
    background: var(--h-bg-raised);
    border: 1px solid var(--h-line);
    border-radius: var(--r-lg);
  }
  .h-table tr.highlight {
    background: var(--h-brand-50);
    border-color: var(--h-brand-100);
    box-shadow: inset 3px 0 0 var(--h-brand);
  }
  .h-table tr.highlight td {
    background: transparent;
  }
  .h-table tr.highlight td:first-child {
    box-shadow: none;
  }
  .h-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 6px 0;
    border-bottom: 0;
    text-align: right;
  }
  .h-table td:first-child {
    display: block;
    padding-top: 0;
    text-align: left;
  }
  .h-table td:not(:first-child)::before {
    color: var(--h-ink-500);
    font-size: 12px;
    font-weight: 500;
    text-align: left;
  }
  .h-table td:nth-child(2)::before { content: "CPU"; }
  .h-table td:nth-child(3)::before { content: "RAM"; }
  .h-table td:nth-child(4)::before { content: "NVMe"; }
  .h-table td:nth-child(5)::before { content: "Preis"; }
  .h-table td.num {
    text-align: right;
  }
  .h-spec-bar {
    grid-template-columns: 1fr;
  }
  .h-migration-card p,
  .h-rows p,
  .h-breakdown p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 360px) {
  .h-header__inner {
    padding: 8px 10px 8px 14px;
    gap: 8px;
  }
  .h-logo img {
    width: min(132px, 40vw);
    height: auto;
  }
  .h-header__cta {
    gap: 8px;
  }
  .h-theme-toggle {
    --toggle-width: 48px;
    --toggle-thumb: 24px;
    --toggle-offset: 3px;
    --toggle-move: 18px;
  }
  .h-contact-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .h-contact-strip__icon {
    width: 40px;
    height: 40px;
  }
  .h-contact-strip strong {
    font-size: 15px;
  }
}
