:root {
  --bg: #111827;
  --bg-soft: #172033;
  --bg-card: rgba(30, 41, 59, 0.78);
  --bg-card-solid: #1e293b;
  --text: #f4f8ff;
  --muted: #b6c3d4;
  --muted-strong: #e0e7f0;
  --line: rgba(203, 213, 225, 0.22);
  --primary: #38bdf8;
  --primary-strong: #0ea5e9;
  --accent: #22c55e;
  --warning: #f59e0b;
  --danger: #fb7185;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.28);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 8%, rgba(56, 189, 248, 0.22), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(34, 197, 94, 0.16), transparent 30%),
    linear-gradient(180deg, #172033 0%, var(--bg) 48%, #0f172a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(17, 24, 39, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(34, 197, 94, 0.22));
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: var(--primary);
  box-shadow: 0 0 34px rgba(56, 189, 248, 0.18);
}

.brand-text span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #e0f2fe;
  font-weight: 700;
}

.language-menu {
  position: relative;
  color: var(--muted-strong);
  font-weight: 800;
}

.language-menu summary {
  min-width: 58px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.62);
  cursor: pointer;
  list-style: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "⌄";
  color: var(--primary);
  font-size: 0.85rem;
  transform: translateY(-1px);
}

.language-menu[open] summary,
.language-menu summary:hover {
  border-color: rgba(56, 189, 248, 0.38);
  color: var(--primary);
  background: rgba(56, 189, 248, 0.1);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.98);
  box-shadow: var(--shadow);
}

.language-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 11px;
  color: var(--muted-strong);
  font-weight: 800;
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  background: rgba(56, 189, 248, 0.1);
  color: var(--primary);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.86);
  color: var(--text);
  cursor: pointer;
}

.section {
  padding: 110px 0;
  position: relative;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: #bae6fd;
  font-size: 0.88rem;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  margin-bottom: 26px;
}

.es h1 {
  font-size: clamp(2rem, 4.2vw, 4.9rem);
}


h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(90deg, #f8fafc, #7dd3fc 52%, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  margin-bottom: 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #02111f;
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.28);
}

.button-secondary {
  background: rgba(30, 41, 59, 0.72);
  border-color: var(--line);
  color: var(--text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-meta strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
}

.dashboard {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), transparent 35%, rgba(34, 197, 94, 0.14));
  pointer-events: none;
}

.dashboard-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.7;
}

.window-dots span:nth-child(1) { background: var(--danger); }
.window-dots span:nth-child(2) { background: var(--warning); }
.window-dots span:nth-child(3) { background: var(--accent); }

.dashboard-status {
  font-size: 0.8rem;
  color: #bbf7d0;
  font-weight: 800;
}

.dashboard-body {
  position: relative;
  padding: 22px;
}

.terminal {
  min-height: 230px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  color: #dbeafe;
  overflow: hidden;
}

.terminal-line {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  animation: reveal 0.55s ease forwards;
}

.terminal-line:nth-child(2) { animation-delay: 0.35s; }
.terminal-line:nth-child(3) { animation-delay: 0.7s; }
.terminal-line:nth-child(4) { animation-delay: 1.05s; }
.terminal-line:nth-child(5) { animation-delay: 1.4s; }

.prompt { color: var(--accent); }
.command { color: #bae6fd; }
.ok { color: #86efac; }
.muted-code { color: #94a3b8; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.74);
}

.metric strong {
  display: block;
  font-size: 1.25rem;
  color: #f8fafc;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section-header {
  max-width: 840px;
  margin-bottom: 46px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-text {
  color: var(--muted-strong);
  font-size: 1.08rem;
  max-width: 760px;
}

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

.card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.34);
  background: rgba(37, 51, 74, 0.96);
}

.card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  pointer-events: none;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--primary);
  font-weight: 900;
}

.card p,
.card li,
.timeline-card p,
.faq-content p {
  color: var(--muted);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.card li {
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.problem-panel,
.dedicated-panel,
.white-label-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), transparent 42%),
    rgba(30, 41, 59, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.problem-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  padding: 34px;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.36);
  color: var(--muted-strong);
}

.problem-item span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(251, 113, 133, 0.12);
  color: var(--danger);
  font-weight: 900;
  font-size: 0.82rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.audience-card {
  padding: 22px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.62);
}

.audience-card strong {
  display: block;
  margin-bottom: 10px;
  color: #f8fafc;
  font-size: 1.05rem;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.5;
}

.timeline-card {
  position: relative;
  padding: 78px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.7);
}

.step-number {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #020617;
  font-weight: 900;
  z-index: 2;
}

.stack-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.stack-column {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.38);
}

.stack-column h3 {
  color: #f8fafc;
  font-size: 1.05rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: #c4e8ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.dedicated-panel {
  padding: 34px;
}

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

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.benefit {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.34);
}

.benefit strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 4px;
}

.benefit p {
  color: var(--muted);
  font-size: 0.95rem;
}

.code-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #dbeafe;
  overflow: auto;
}

.code-card pre {
  min-width: 420px;
  white-space: pre-wrap;
}

.white-label-panel {
  padding: 34px;
}

.white-label-services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.service-chip {
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.07);
  color: #dff6ff;
  font-weight: 800;
}

.sla-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.monitor-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.72);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-ok {
  color: #86efac;
  font-weight: 900;
}

.bar {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: 99.94%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  animation: grow 1.2s ease both;
}

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

.case-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.46));
}

.case-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.84rem;
}

.case-card p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.72);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #f8fafc;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-button span:last-child {
  color: var(--primary);
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.faq-content {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-button span:last-child {
  transform: rotate(45deg);
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  padding: 36px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.46);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.recaptcha-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  overflow-x: auto;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.38);
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  border-color: rgba(34, 197, 94, 0.38);
  color: #bbf7d0;
}

.form-status.error {
  border-color: rgba(251, 113, 133, 0.42);
  color: #fecdd3;
}

input:focus,
textarea:focus {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grow {
  from { width: 34%; }
  to { width: 99.94%; }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero-grid,
  .problem-panel,
  .sla-grid,
  .cta-panel,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

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

  .white-label-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 12px;
  }

  .language-menu {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .language-menu summary {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
    padding: 13px 12px;
  }

  .language-options {
    position: static;
    margin-top: 8px;
    min-width: 100%;
    box-shadow: none;
  }

  .hero {
    padding-top: 126px;
  }

  .section {
    padding: 78px 0;
  }

  .timeline,
  .cards-grid,
  .stack-wrap,
  .audience-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 20px;
    bottom: 20px;
    left: 36px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .metrics,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .problem-panel,
  .dedicated-panel,
  .white-label-panel,
  .cta-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .dashboard-body,
  .card,
  .monitor-card {
    padding: 18px;
  }

  .white-label-services,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
