﻿:root {
  --bg: #f3f7ff;
  --bg-soft: #eef2ff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: #edf3ff;
  --ink: #111827;
  --muted: #52607a;
  --line: rgba(129, 140, 248, 0.18);
  --brand: #3b82f6;
  --brand-strong: #5b21b6;
  --brand-soft: #dbeafe;
  --accent: #8b5cf6;
  --accent-soft: #ede9fe;
  --danger: #dc2626;
  --success: #15803d;
  --shadow: 0 24px 56px rgba(59, 130, 246, 0.14);
  --shadow-soft: 0 14px 34px rgba(91, 33, 182, 0.12);
  --radius: 26px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.24), transparent 24%),
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 26%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 50%, #eef4ff 100%);
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(129, 140, 248, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
}

.brand img {
  width: 250px;
  height: auto;
}

.brand-copy {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav > a,
.services-nav summary {
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.services-nav[open] summary,
.services-nav summary:hover {
  color: var(--brand-strong);
}

.services-nav {
  position: relative;
}

.services-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.services-nav summary::-webkit-details-marker {
  display: none;
}

.services-nav summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.services-nav[open] summary::after {
  transform: rotate(135deg);
  margin-top: 4px;
}

.services-menu {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 0.8rem);
  min-width: 290px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(129, 140, 248, 0.16);
  border-radius: 22px;
  padding: 0.9rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.35rem;
}

.services-menu a {
  padding: 0.78rem 0.9rem;
  border-radius: 16px;
  font-weight: 700;
  color: var(--muted);
}

.services-menu a:hover {
  background: var(--surface-muted);
  color: var(--brand-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.26);
}

.button-secondary {
  color: var(--brand-strong);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.16));
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(129, 140, 248, 0.22);
}

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

.hero,
.page-hero {
  padding: 4.4rem 0 2rem;
}

.hero-grid,
.contact-grid,
.footer-grid,
.hero-split {
  display: grid;
  gap: 1.2rem;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.hero-split {
  grid-template-columns: 1fr;
}

.eyebrow {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--brand-strong);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 1.6rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-notes span,
.pill {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(129, 140, 248, 0.16);
  color: var(--muted);
  font-weight: 800;
}

.hero-logo-panel,
.hero-card,
.panel,
.card,
.pricing-card,
.quote-card,
.case-card,
.faq-item,
.article-card,
.contact-card,
.article-body,
.service-detail-panel {
  background: var(--surface);
  border: 1px solid rgba(129, 140, 248, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-logo-panel,
.hero-card,
.panel {
  padding: 1.5rem;
}

.hero-logo-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.94)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(139, 92, 246, 0.08));
}

.hero-logo-panel img {
  width: min(100%, 520px);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.status-strip div {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.95), rgba(237, 233, 254, 0.68));
}

.status-strip strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}

.section {
  padding: 2rem 0 4rem;
}

.section-tight {
  padding-top: 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-title p {
  margin: 0;
  max-width: 55ch;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(139, 92, 246, 0.15));
  color: var(--brand-strong);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.trust-band {
  border-top: 1px solid rgba(129, 140, 248, 0.12);
  border-bottom: 1px solid rgba(129, 140, 248, 0.12);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
  padding: 1rem 0;
  color: var(--brand-strong);
  font-weight: 900;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.pricing-card,
.quote-card,
.case-card,
.faq-item,
.article-card,
.contact-card,
.service-detail-panel,
.article-body {
  padding: 1.45rem;
}

.card h3,
.pricing-card h3,
.quote-card h3,
.case-card h3,
.faq-item h3,
.article-card h3,
.contact-card h3,
.service-detail-panel h3,
.article-body h2,
.article-body h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.card p,
.pricing-card p,
.quote-card p,
.case-card p,
.faq-item p,
.article-card p,
.contact-card p,
.service-detail-panel p,
.article-body p,
.article-body li {
  margin: 0;
  color: var(--muted);
}

.article-body p + p,
.article-body ul,
.article-body ol,
.article-body h2,
.article-body h3 {
  margin-top: 1rem;
}

.icon-list,
.feature-list,
.hero-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.icon-list li,
.feature-list li,
.hero-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
}

.icon-list li::before,
.feature-list li::before,
.hero-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  margin-top: 0.45rem;
  flex: 0 0 auto;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 4rem;
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(91, 33, 182, 0.16);
}

.pricing-card strong {
  display: block;
  margin: 0.65rem 0;
  font-size: 1.9rem;
}

.pricing-card .price-line {
  display: block;
  margin: 0.7rem 0 0.35rem;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink);
}

.pricing-card .price-caption {
  display: block;
  color: var(--brand-strong);
  font-weight: 800;
}

.pricing-select {
  width: 100%;
  margin-top: 1rem;
}

.pricing-lead-panel {
  margin-top: 1.2rem;
}

.pricing-lead-panel[hidden] {
  display: none;
}

.selected-plan {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.15));
  color: var(--brand-strong);
  font-weight: 900;
}

.selected-plan strong {
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.03rem;
}

.quote-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.14rem;
  margin-bottom: 0.9rem;
  color: #fbbf24;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.28);
}

.quote-meta,
.article-meta {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
}

.case-card {
  border-inline-start: 6px solid var(--brand);
}

.emergency {
  padding: 1.65rem;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(91, 33, 182, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.emergency p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  font-weight: 700;
  text-align: right;
  line-height: 1.55;
  direction: rtl;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(129, 140, 248, 0.22);
  background: rgba(255, 255, 255, 0.94);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.muted {
  color: var(--muted);
}

.form-note.is-error {
  color: var(--danger);
}

.form-note.is-success {
  color: var(--success);
}

.page-hero .panel {
  padding: 2rem;
}

.page-hero h1 {
  max-width: 15ch;
}

.services-accordion {
  display: grid;
  gap: 0.9rem;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.service-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
  isolation: isolate;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.service-visual::before {
  inset: 20px 20px auto;
  height: 220px;
  background:
    linear-gradient(120deg, transparent 0 8%, rgba(96, 165, 250, 0.28) 8.5% 9.2%, transparent 10% 24%, rgba(124, 58, 237, 0.2) 24.6% 25.3%, transparent 26% 45%, rgba(96, 165, 250, 0.22) 45.5% 46.2%, transparent 47% 100%);
  opacity: 0.6;
}

.service-visual::after {
  inset: auto 30px 18px;
  height: 150px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(124, 58, 237, 0.03));
  filter: blur(4px);
}

.service-scene {
  padding: 0;
}

.service-scene-grid {
  position: absolute;
  inset: 40px 26px 26px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px) 0 0 / 38px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
}

.service-stack {
  position: relative;
  z-index: 2;
  width: min(80%, 330px);
  margin: 126px auto 0;
  height: 232px;
}

.stack-layer,
.stack-shadow,
.service-visual-core,
.scene-base {
  position: absolute;
}

.stack-shadow {
  inset: auto 18px -10px;
  height: 34px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  filter: blur(14px);
}

.scene-base {
  inset: auto 0 0;
  height: 120px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(222, 236, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(129, 140, 248, 0.12);
}

.stack-layer {
  left: 50%;
  translate: -50% 0;
  width: 250px;
  height: 76px;
  border-radius: 26px;
  transform-style: preserve-3d;
}

.stack-layer::before,
.stack-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.stack-layer::before {
  background: linear-gradient(180deg, rgba(78, 105, 179, 0.95), rgba(47, 61, 116, 0.98));
}

.stack-layer::after {
  inset: 14px 18px auto;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(96, 165, 250, 0.7), rgba(255, 255, 255, 0.15));
}

.stack-layer-top {
  bottom: 112px;
  animation: topLayerLift 4.8s ease-in-out infinite;
}

.stack-layer-middle {
  bottom: 56px;
  background: none;
}

.stack-layer-middle::before {
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.98), rgba(203, 217, 244, 0.95));
}

.stack-layer-bottom {
  bottom: 8px;
}

.service-visual-core {
  left: 50%;
  bottom: 136px;
  translate: -50% 0;
  width: 246px;
  height: 170px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(227, 237, 255, 0.95));
  border: 1px solid rgba(129, 140, 248, 0.16);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.18);
  display: grid;
  place-items: center;
  animation: coreLift 4.8s ease-in-out infinite;
}

.service-visual-core::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.service-visual-core::after {
  content: "";
  position: absolute;
  inset: auto 48px 16px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.22), rgba(124, 58, 237, 0.22));
}

.service-visual-icon {
  position: absolute;
  inset: 18px 18px 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(223, 233, 255, 0.8));
  border: 1px solid rgba(129, 140, 248, 0.14);
  z-index: 1;
  overflow: hidden;
}

.service-icon-chip,
.service-icon-title,
.service-icon-subtitle,
.service-shape {
  position: absolute;
}

.service-icon-chip {
  top: 16px;
  right: 16px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.16));
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-icon-title {
  top: 54px;
  right: 16px;
  left: 16px;
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--ink);
}

.service-icon-subtitle {
  top: 84px;
  right: 16px;
  left: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-shape::before,
.service-shape::after {
  content: "";
  position: absolute;
}

.service-visual-icon.windows .service-shape-one {
  left: 24px;
  bottom: 24px;
  width: 96px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(180deg, #d8e7ff, #f8fbff);
  border: 4px solid #2563eb;
}

.service-visual-icon.windows .service-shape-one::before {
  inset: 11px;
  background:
    linear-gradient(90deg, #2563eb 47%, transparent 47%, transparent 53%, #2563eb 53%),
    linear-gradient(#2563eb 47%, transparent 47%, transparent 53%, #2563eb 53%);
}

.service-visual-icon.windows .service-shape-one::after {
  inset: auto 28px -14px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-visual-icon.windows .service-shape-two {
  right: 24px;
  bottom: 28px;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 24px, transparent 25px),
    conic-gradient(from 0deg, #2563eb 0 25%, #7c3aed 25% 50%, #2563eb 50% 75%, #7c3aed 75% 100%);
  animation: slowSpin 7s linear infinite;
}

.service-visual-icon.windows .service-shape-two::before {
  inset: 16px;
  border-radius: 999px;
  background: #fff;
}

.service-visual-icon.windows .service-shape-two::after {
  inset: 24px;
  border-radius: 999px;
  border: 5px solid #2563eb;
}

.service-visual-icon.windows .service-shape-three {
  right: 40px;
  bottom: 44px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.service-visual-icon.microsoft365 .service-shape-one {
  right: 26px;
  bottom: 24px;
  width: 102px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.18));
}

.service-visual-icon.microsoft365 .service-shape-one::before {
  inset: 14px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, #4f46e5 48%, transparent 48%, transparent 52%, #4f46e5 52%),
    linear-gradient(#4f46e5 48%, transparent 48%, transparent 52%, #4f46e5 52%);
}

.service-visual-icon.microsoft365 .service-shape-two {
  left: 24px;
  bottom: 24px;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background:
    linear-gradient(#2563eb 0 0) 0 0 / 34px 34px no-repeat,
    linear-gradient(#7c3aed 0 0) 50px 0 / 34px 34px no-repeat,
    linear-gradient(#60a5fa 0 0) 0 50px / 34px 34px no-repeat,
    linear-gradient(#4f46e5 0 0) 50px 50px / 34px 34px no-repeat;
}

.service-visual-icon.microsoft365 .service-shape-three {
  left: 92px;
  bottom: 38px;
  width: 84px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  box-shadow:
    -18px 10px 0 -6px rgba(96, 165, 250, 0.9),
    18px 10px 0 -8px rgba(139, 92, 246, 0.76);
}

.service-visual-icon.dns .service-shape-one {
  right: 30px;
  bottom: 28px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 5px solid #2563eb;
}

.service-visual-icon.dns .service-shape-one::before {
  inset: 18px 8px;
  border-radius: 999px;
  border-left: 4px solid #2563eb;
  border-right: 4px solid #2563eb;
}

.service-visual-icon.dns .service-shape-one::after {
  inset: 8px 18px;
  border-radius: 999px;
  border-top: 4px solid #2563eb;
  border-bottom: 4px solid #2563eb;
}

.service-visual-icon.dns .service-shape-two {
  left: 22px;
  bottom: 38px;
  width: 110px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-visual-icon.dns .service-shape-two::before,
.service-visual-icon.dns .service-shape-two::after {
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 999px;
  background: #7c3aed;
}

.service-visual-icon.dns .service-shape-two::before {
  right: -2px;
}

.service-visual-icon.dns .service-shape-two::after {
  left: -2px;
}

.service-visual-icon.dns .service-shape-three {
  right: 16px;
  top: 92px;
  width: 54px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.18));
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.service-visual-icon.dns .service-shape-three::before {
  content: "DNS";
  position: static;
}

.service-visual-icon.migration .service-shape-one,
.service-visual-icon.migration .service-shape-two {
  bottom: 28px;
  width: 64px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-visual-icon.migration .service-shape-one {
  right: 22px;
}

.service-visual-icon.migration .service-shape-two {
  left: 22px;
}

.service-visual-icon.migration .service-shape-one::before,
.service-visual-icon.migration .service-shape-two::before {
  inset: 12px 12px 14px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0 0) 0 16px / 72% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.44) 0 0) 0 30px / 58% 3px no-repeat;
}

.service-visual-icon.migration .service-shape-three {
  left: 50%;
  bottom: 42px;
  width: 84px;
  height: 16px;
  translate: -50% 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-visual-icon.migration .service-shape-three::before {
  top: -7px;
  left: 26px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 22px solid #7c3aed;
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.service-visual-icon.cloud .service-shape-one {
  right: 22px;
  bottom: 30px;
  width: 98px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.service-visual-icon.cloud .service-shape-one::before {
  right: -2px;
  top: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: inherit;
}

.service-visual-icon.cloud .service-shape-one::after {
  left: -8px;
  top: 6px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #7cb9ff;
}

.service-visual-icon.cloud .service-shape-two {
  left: 24px;
  bottom: 26px;
  width: 72px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd873, #ffbc3d);
  border-bottom: 8px solid #f59e0b;
}

.service-visual-icon.cloud .service-shape-two::before {
  inset: 10px auto auto 12px;
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: rgba(120, 71, 0, 0.25);
}

.service-visual-icon.cloud .service-shape-three {
  left: 92px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #dde8ff);
  border: 4px solid #2563eb;
}

.service-visual-icon.cloud .service-shape-three::before {
  inset: 11px 15px 15px;
  border-left: 6px solid #16a34a;
  border-bottom: 6px solid #16a34a;
  transform: rotate(-45deg);
}

.service-visual-icon.hosting .service-shape-one {
  right: 22px;
  bottom: 30px;
  width: 114px;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-visual-icon.hosting .service-shape-one::before {
  inset: 0;
  height: 14px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-visual-icon.hosting .service-shape-one::after {
  inset: 28px 18px 16px;
  background:
    linear-gradient(#2563eb 0 0) 0 0 / 72% 8px no-repeat,
    linear-gradient(#8b5cf6 0 0) 0 18px / 88% 8px no-repeat,
    linear-gradient(#60a5fa 0 0) 0 36px / 56% 8px no-repeat;
}

.service-visual-icon.hosting .service-shape-two {
  left: 26px;
  bottom: 26px;
  width: 62px;
  height: 86px;
  border-radius: 16px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.service-visual-icon.hosting .service-shape-two::before {
  inset: 14px 14px auto;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.9), 0 36px 0 rgba(255, 255, 255, 0.9);
}

.service-visual-icon.hosting .service-shape-three {
  left: 86px;
  bottom: 88px;
  width: 62px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.service-visual-icon.hosting .service-shape-three::before {
  content: "SSL";
  position: static;
}

.service-visual-icon.users .service-shape-one {
  right: 18px;
  bottom: 26px;
  width: 104px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-visual-icon.users .service-shape-one::before {
  inset: 14px;
  background:
    radial-gradient(circle at 24% 40%, #2563eb 0 10px, transparent 11px),
    radial-gradient(circle at 50% 40%, #7c3aed 0 10px, transparent 11px),
    radial-gradient(circle at 76% 40%, #60a5fa 0 10px, transparent 11px),
    linear-gradient(#2563eb 0 0) 20% 82% / 16px 6px no-repeat,
    linear-gradient(#7c3aed 0 0) 50% 82% / 16px 6px no-repeat,
    linear-gradient(#60a5fa 0 0) 80% 82% / 16px 6px no-repeat;
}

.service-visual-icon.users .service-shape-two {
  left: 22px;
  bottom: 34px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 7px solid #7c3aed;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(35deg);
}

.service-visual-icon.users .service-shape-two::before {
  right: -8px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #7c3aed;
}

.service-visual-icon.users .service-shape-three {
  left: 42px;
  bottom: 20px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  box-shadow: 0 0 0 10px rgba(96, 165, 250, 0.16);
}

.service-visual-icon.mail .service-shape-one {
  right: 24px;
  bottom: 24px;
  width: 110px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-visual-icon.mail .service-shape-one::before {
  inset: 14px 14px 16px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0 0) 0 16px / 78% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.44) 0 0) 0 30px / 56% 3px no-repeat;
}

.service-visual-icon.mail .service-shape-two {
  left: 24px;
  bottom: 30px;
  width: 64px;
  height: 84px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
}

.service-visual-icon.mail .service-shape-two::before {
  inset: 18px 14px auto;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.9), 0 32px 0 rgba(255, 255, 255, 0.9);
}

.service-visual-icon.mail .service-shape-three {
  left: 84px;
  bottom: 86px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #dde8ff);
  border: 4px solid #16a34a;
}

.service-visual-icon.mail .service-shape-three::before {
  inset: 10px 16px 18px;
  border-left: 5px solid #16a34a;
  border-bottom: 5px solid #16a34a;
  transform: rotate(-45deg);
}

.scene-node,
.scene-beam,
.scene-badge,
.service-wave {
  position: absolute;
}

.scene-node {
  z-index: 3;
  width: 146px;
  padding: 0.8rem 0.85rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(129, 140, 248, 0.14);
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.12);
  text-align: center;
  animation: nodeFloat 4.8s ease-in-out infinite;
}

.scene-node::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  bottom: -34px;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.7), rgba(59, 130, 246, 0.04));
  transform: translateX(-50%);
}

.scene-node strong,
.scene-node span {
  display: block;
}

.scene-node strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.scene-node span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.scene-node-a {
  top: 34px;
  left: 20px;
}

.scene-node-b {
  top: 18px;
  right: 24px;
  animation-delay: 0.6s;
}

.scene-node-c {
  top: 128px;
  right: 4px;
  animation-delay: 1.1s;
}

.scene-beam {
  z-index: 1;
  inset: 92px 78px auto 74px;
  height: 172px;
  border-radius: 32px;
  border: 1px dashed rgba(59, 130, 246, 0.22);
  border-bottom: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.scene-beam::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.12), rgba(124, 58, 237, 0.04));
  animation: beamPulse 3.8s ease-in-out infinite;
}

.scene-badge {
  z-index: 4;
  left: 26px;
  bottom: 28px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.96), rgba(124, 58, 237, 0.92));
  box-shadow: 0 18px 32px rgba(59, 130, 246, 0.22);
}

.service-wave {
  inset: auto 34px 44px 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.6);
  overflow: hidden;
  z-index: 3;
}

.service-wave::before,
.service-wave::after {
  content: "";
  position: absolute;
  inset: 4px auto 4px -38%;
  width: 58%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.92), rgba(139, 92, 246, 0.72));
  animation: waveSlide 2.8s linear infinite;
}

.service-wave::after {
  inset-inline-start: -62%;
  opacity: 0.36;
  animation-duration: 3.3s;
}

@keyframes waveSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(260%); }
}

@keyframes topLayerLift {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -22px); }
}

@keyframes coreLift {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -14px); }
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.03); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.8; }
  50% { transform: translateX(-10px); opacity: 1; }
}

.service-dropdown {
  overflow: hidden;
}

.service-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.service-dropdown summary::-webkit-details-marker {
  display: none;
}

.service-dropdown summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand-strong);
}

.service-dropdown[open] summary::after {
  content: "−";
}

.service-dropdown-content {
  padding-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.service-links {
  display: grid;
  gap: 0.55rem;
}

.service-links a {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--surface-muted);
  color: var(--brand-strong);
  font-weight: 800;
}

.service-links a:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(139, 92, 246, 0.14));
}

.service-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

/* Clean service visuals: simple, readable, and service-specific */
.service-visual {
  min-height: 390px;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
}

.service-scene {
  position: relative;
  overflow: hidden;
}

.service-scene-grid,
.service-stack,
.scene-node,
.scene-beam,
.scene-badge,
.service-wave,
.stack-shadow,
.scene-base,
.stack-layer,
.service-visual-core {
  display: none;
}

.service-grid-lines {
  position: absolute;
  inset: 38px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px) 0 0 / 34px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.service-callout {
  position: absolute;
  top: 26px;
  z-index: 2;
  min-width: 132px;
  max-width: 164px;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(129, 140, 248, 0.12);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.12);
}

.service-callout.left {
  left: 26px;
}

.service-callout.right {
  right: 26px;
}

.service-callout strong,
.service-callout span {
  display: block;
}

.service-callout strong {
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 1rem;
}

.service-callout span {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.95rem;
}

.service-display {
  position: absolute;
  inset: 106px 42px 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(129, 140, 248, 0.14);
  box-shadow:
    0 18px 40px rgba(59, 130, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.service-display::before {
  content: "";
  position: absolute;
  inset: auto 28px 18px 28px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.85), rgba(124, 58, 237, 0.78));
}

.service-display-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem 0;
}

.service-display-chip,
.service-display-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.service-display-chip {
  padding: 0.35rem 0.75rem;
  color: var(--brand-strong);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(139, 92, 246, 0.16));
}

.service-display-status {
  padding: 0.35rem 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.service-display-body {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 1.35rem 1.45rem;
}

.service-figure {
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 28px;
  background: linear-gradient(180deg, #edf4ff, #dde9ff);
  box-shadow: inset 0 0 0 1px rgba(129, 140, 248, 0.14);
}

.service-figure .shape-a,
.service-figure .shape-b,
.service-figure .shape-c {
  position: absolute;
}

.service-copy {
  display: grid;
  gap: 0.4rem;
}

.service-copy strong {
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--ink);
}

.service-copy span {
  color: #4658d3;
  font-size: 1.02rem;
  font-weight: 800;
}

.service-copy small {
  color: #5a6983;
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-floor {
  position: absolute;
  inset: auto 70px 18px;
  height: 118px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(219, 234, 254, 0.9), rgba(191, 219, 254, 0.56));
  filter: blur(2px);
  z-index: 0;
}

.service-visual-icon,
.service-icon-chip,
.service-icon-title,
.service-icon-subtitle,
.service-shape {
  all: unset;
}

.service-figure.windows .shape-a {
  inset: 28px;
  background:
    linear-gradient(90deg, #2563eb 47%, transparent 47%, transparent 53%, #2563eb 53%),
    linear-gradient(#2563eb 47%, transparent 47%, transparent 53%, #2563eb 53%);
}

.service-figure.windows .shape-b {
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 6px solid #2563eb;
}

.service-figure.windows .shape-c {
  right: 2px;
  bottom: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #8b5cf6;
}

.service-figure.microsoft365 .shape-a {
  top: 26px;
  left: 26px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #2563eb;
  box-shadow: 46px 0 0 #7c3aed, 0 46px 0 #60a5fa, 46px 46px 0 #4f46e5;
}

.service-figure.microsoft365 .shape-b {
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.service-figure.microsoft365 .shape-c {
  left: 16px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.dns .shape-a {
  inset: 22px;
  border-radius: 999px;
  border: 5px solid #2563eb;
}

.service-figure.dns .shape-a::before,
.service-figure.dns .shape-a::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-figure.dns .shape-a::before {
  inset: 16px 8px;
  border-left: 4px solid #2563eb;
  border-right: 4px solid #2563eb;
}

.service-figure.dns .shape-a::after {
  inset: 8px 16px;
  border-top: 4px solid #2563eb;
  border-bottom: 4px solid #2563eb;
}

.service-figure.dns .shape-b {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.dns .shape-c {
  right: 14px;
  top: 12px;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.92);
}

.service-figure.dns .shape-c::before {
  content: "DNS";
}

.service-figure.migration .shape-a,
.service-figure.migration .shape-b {
  bottom: 28px;
  width: 50px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.migration .shape-a {
  right: 18px;
}

.service-figure.migration .shape-b {
  left: 18px;
}

.service-figure.migration .shape-a::before,
.service-figure.migration .shape-b::before {
  content: "";
  position: absolute;
  inset: 10px 10px 12px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0 0) 0 14px / 74% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.46) 0 0) 0 26px / 58% 3px no-repeat;
}

.service-figure.migration .shape-c {
  left: 50%;
  top: 58px;
  width: 60px;
  height: 10px;
  translate: -50% 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.migration .shape-c::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -7px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 18px solid #7c3aed;
}

.service-figure.cloud .shape-a {
  right: 18px;
  bottom: 24px;
  width: 76px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.service-figure.cloud .shape-a::before,
.service-figure.cloud .shape-a::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: inherit;
}

.service-figure.cloud .shape-a::before {
  width: 32px;
  height: 32px;
  right: 4px;
  top: -10px;
}

.service-figure.cloud .shape-a::after {
  width: 36px;
  height: 36px;
  left: 4px;
  top: -14px;
}

.service-figure.cloud .shape-b {
  left: 18px;
  bottom: 24px;
  width: 46px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffd873, #ffbc3d);
  border-bottom: 7px solid #f59e0b;
}

.service-figure.cloud .shape-c {
  left: 74px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  border: 4px solid #16a34a;
}

.service-figure.cloud .shape-c::before {
  content: "";
  position: absolute;
  inset: 8px 10px 12px;
  border-left: 4px solid #16a34a;
  border-bottom: 4px solid #16a34a;
  transform: rotate(-45deg);
}

.service-figure.hosting .shape-a {
  right: 14px;
  top: 18px;
  width: 88px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.hosting .shape-a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 12px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.hosting .shape-a::after {
  content: "";
  position: absolute;
  inset: 20px 14px 12px;
  background:
    linear-gradient(#2563eb 0 0) 0 0 / 68% 6px no-repeat,
    linear-gradient(#8b5cf6 0 0) 0 14px / 84% 6px no-repeat,
    linear-gradient(#60a5fa 0 0) 0 28px / 54% 6px no-repeat;
}

.service-figure.hosting .shape-b {
  left: 18px;
  bottom: 18px;
  width: 40px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.service-figure.hosting .shape-b::before {
  content: "";
  position: absolute;
  inset: 14px 10px auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.92), 0 28px 0 rgba(255, 255, 255, 0.92);
}

.service-figure.hosting .shape-c {
  right: 18px;
  bottom: 16px;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.service-figure.hosting .shape-c::before {
  content: "SSL";
}

.service-figure.users .shape-a {
  inset: 26px 18px 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.users .shape-a::before {
  content: "";
  position: absolute;
  inset: 16px;
  background:
    radial-gradient(circle at 22% 32%, #2563eb 0 8px, transparent 9px),
    radial-gradient(circle at 50% 32%, #7c3aed 0 8px, transparent 9px),
    radial-gradient(circle at 78% 32%, #60a5fa 0 8px, transparent 9px),
    linear-gradient(#2563eb 0 0) 20% 76% / 16px 6px no-repeat,
    linear-gradient(#7c3aed 0 0) 50% 76% / 16px 6px no-repeat,
    linear-gradient(#60a5fa 0 0) 80% 76% / 16px 6px no-repeat;
}

.service-figure.users .shape-b {
  left: 12px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 6px solid #7c3aed;
  border-top-color: transparent;
  transform: rotate(42deg);
}

.service-figure.users .shape-b::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -1px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #7c3aed;
}

.service-figure.users .shape-c {
  right: 18px;
  bottom: 18px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.service-figure.mail .shape-a {
  right: 14px;
  bottom: 22px;
  width: 88px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.mail .shape-a::before {
  content: "";
  position: absolute;
  inset: 10px 10px 12px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0 0) 0 14px / 78% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.44) 0 0) 0 26px / 60% 3px no-repeat;
}

.service-figure.mail .shape-b {
  left: 18px;
  bottom: 18px;
  width: 36px;
  height: 66px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
}

.service-figure.mail .shape-b::before {
  content: "";
  position: absolute;
  inset: 14px 8px auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.92), 0 28px 0 rgba(255, 255, 255, 0.92);
}

.service-figure.mail .shape-c {
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  border: 4px solid #16a34a;
}

.service-figure.mail .shape-c::before {
  content: "";
  position: absolute;
  inset: 8px 10px 12px;
  border-left: 4px solid #16a34a;
  border-bottom: 4px solid #16a34a;
  transform: rotate(-45deg);
}

.site-footer {
  padding: 2.7rem 0;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(129, 140, 248, 0.16);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 0.5rem;
}

.footer-links a,
.footer-legal a {
  color: var(--muted);
  font-weight: 700;
}

.footer-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

.reveal.delay-3 {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .service-hero-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .trust-items,
  .contact-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset-inline: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(129, 140, 248, 0.18);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

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

  .services-nav {
    width: 100%;
  }

  .services-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    margin-top: 0.7rem;
    background: var(--surface-muted);
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 2.6rem;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.12;
  }

  .service-visual {
    min-height: 420px;
  }

  .service-grid-lines {
    inset: 24px;
  }

  .service-callout {
    top: 18px;
    min-width: 0;
    max-width: 132px;
    padding: 0.72rem 0.8rem;
  }

  .service-callout.left {
    left: 18px;
  }

  .service-callout.right {
    right: 18px;
  }

  .service-callout strong {
    font-size: 0.92rem;
  }

  .service-callout span {
    font-size: 0.84rem;
  }

  .service-display {
    inset: 98px 18px 20px;
  }

  .service-display-body {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-figure {
    margin: 0 auto;
  }

  .service-copy strong {
    font-size: 1.25rem;
  }

  .service-floor {
    inset-inline: 28px;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .brand img {
    width: 142px;
  }
}

/* Simplified service visuals */
.service-visual.service-scene {
  position: relative;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
}

.service-showcase {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.15rem;
  padding: 1.35rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 240, 255, 0.96));
  border: 1px solid rgba(129, 140, 248, 0.16);
  box-shadow:
    0 22px 48px rgba(59, 130, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.service-showcase::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 28%);
  pointer-events: none;
}

.service-showcase-head,
.service-showcase-points {
  position: relative;
  z-index: 1;
}

.service-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.service-chip,
.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.95rem;
}

.service-chip {
  color: var(--brand-strong);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(139, 92, 246, 0.18));
}

.service-tag {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.18);
}

.service-showcase-center {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-areas:
    "figure title"
    "figure subtitle";
  align-content: center;
  align-items: center;
  column-gap: 1.25rem;
  row-gap: 0.55rem;
  padding: 0.2rem 0.15rem;
  direction: ltr;
}

.service-figure {
  position: relative;
  grid-area: figure;
  justify-self: center;
  width: 188px;
  height: 188px;
  border-radius: 38px;
  background: linear-gradient(180deg, #eef5ff, #dbe8ff);
  box-shadow:
    inset 0 0 0 1px rgba(129, 140, 248, 0.14),
    0 22px 38px rgba(59, 130, 246, 0.14);
  animation: serviceFloat 4.6s ease-in-out infinite;
}

.service-figure::after {
  content: "";
  position: absolute;
  inset: auto 18px -16px;
  height: 20px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  filter: blur(12px);
}

.service-figure .shape-a,
.service-figure .shape-b,
.service-figure .shape-c {
  position: absolute;
}

.service-visual-title {
  color: var(--ink);
  grid-area: title;
  width: 100%;
  max-width: none;
  font-size: clamp(1.38rem, 1.9vw, 1.9rem);
  font-weight: 900;
  text-align: right;
  line-height: 1.12;
  align-self: end;
  overflow-wrap: anywhere;
}

.service-visual-subtitle {
  grid-area: subtitle;
  max-width: none;
  color: var(--muted);
  font-weight: 700;
  text-align: right;
  line-height: 1.55;
  font-size: 1rem;
  align-self: start;
}

.service-showcase-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.8rem;
}

.service-point {
  min-height: 102px;
  padding: 0.95rem 0.75rem 0.85rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(129, 140, 248, 0.12);
  display: grid;
  align-content: center;
  gap: 0.28rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
}

.service-point strong,
.service-point span {
  display: block;
}

.service-point strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.service-point span {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.service-figure.windows .shape-a {
  inset: 34px 28px 42px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #dde8ff);
  border: 5px solid #2563eb;
}

.service-figure.windows .shape-a::before {
  content: "";
  position: absolute;
  inset: 16px;
  background:
    linear-gradient(90deg, #2563eb 47%, transparent 47%, transparent 53%, #2563eb 53%),
    linear-gradient(#2563eb 47%, transparent 47%, transparent 53%, #2563eb 53%);
}

.service-figure.windows .shape-a::after {
  content: "";
  position: absolute;
  inset: auto 28px -16px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.windows .shape-b {
  right: 16px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  border: 6px solid #2563eb;
}

.service-figure.windows .shape-c {
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #8b5cf6;
  animation: servicePulse 2.2s ease-in-out infinite;
}

.service-figure.microsoft365 .shape-a {
  top: 30px;
  left: 22px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #2563eb;
  box-shadow: 40px 0 0 #7c3aed, 0 40px 0 #60a5fa, 40px 40px 0 #4f46e5;
}

.service-figure.microsoft365 .shape-b {
  right: 16px;
  top: 26px;
  width: 84px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #e2ecff);
  border: 4px solid rgba(37, 99, 235, 0.82);
  box-shadow:
    0 12px 24px rgba(59, 130, 246, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-figure.microsoft365 .shape-b::before {
  content: "";
  position: absolute;
  inset: 12px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.26) 0 0) 0 16px / 70% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.44) 0 0) 0 28px / 86% 3px no-repeat,
    linear-gradient(180deg, rgba(37, 99, 235, 0.22) 0 0) 0 40px / 54% 3px no-repeat;
}

.service-figure.microsoft365 .shape-b::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -16px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.96), rgba(139, 92, 246, 0.92));
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.16);
}

.service-figure.microsoft365 .shape-c {
  right: 22px;
  bottom: 18px;
  width: 88px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid rgba(37, 99, 235, 0.78);
}

.service-figure.microsoft365 .shape-c::before,
.service-figure.microsoft365 .shape-c::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-figure.microsoft365 .shape-c::before {
  left: 14px;
  top: 14px;
  width: 18px;
  height: 10px;
  background: #60a5fa;
  box-shadow:
    24px 0 0 #7c3aed,
    48px 0 0 #2563eb;
}

.service-figure.microsoft365 .shape-c::after {
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
}

.service-figure.dns .shape-a {
  inset: 28px;
  border-radius: 999px;
  border: 6px solid #2563eb;
}

.service-figure.dns .shape-a::before,
.service-figure.dns .shape-a::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-figure.dns .shape-a::before {
  inset: 16px 8px;
  border-left: 4px solid #2563eb;
  border-right: 4px solid #2563eb;
}

.service-figure.dns .shape-a::after {
  inset: 8px 16px;
  border-top: 4px solid #2563eb;
  border-bottom: 4px solid #2563eb;
}

.service-figure.dns .shape-b {
  inset: auto 26px 28px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.dns .shape-b::before,
.service-figure.dns .shape-b::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 999px;
  background: #7c3aed;
}

.service-figure.dns .shape-b::before {
  left: -2px;
}

.service-figure.dns .shape-b::after {
  right: -2px;
}

.service-figure.dns .shape-c {
  right: 20px;
  top: 20px;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
}

.service-figure.dns .shape-c::before {
  content: "DNS";
}

.service-figure.migration .shape-a,
.service-figure.migration .shape-b {
  bottom: 34px;
  width: 54px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.migration .shape-a {
  right: 24px;
}

.service-figure.migration .shape-b {
  left: 24px;
}

.service-figure.migration .shape-a::before,
.service-figure.migration .shape-b::before {
  content: "";
  position: absolute;
  inset: 10px 10px 12px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0 0) 0 14px / 74% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.46) 0 0) 0 26px / 58% 3px no-repeat;
}

.service-figure.migration .shape-c {
  left: 50%;
  top: 76px;
  width: 72px;
  height: 10px;
  translate: -50% 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.migration .shape-c::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -8px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 20px solid #7c3aed;
  animation: serviceArrow 1.9s ease-in-out infinite;
}

.service-figure.cloud .shape-a {
  right: 20px;
  bottom: 30px;
  width: 84px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.service-figure.cloud .shape-a::before,
.service-figure.cloud .shape-a::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: inherit;
}

.service-figure.cloud .shape-a::before {
  width: 34px;
  height: 34px;
  right: 4px;
  top: -10px;
}

.service-figure.cloud .shape-a::after {
  width: 40px;
  height: 40px;
  left: 2px;
  top: -14px;
}

.service-figure.cloud .shape-b {
  left: 22px;
  bottom: 26px;
  width: 50px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffd873, #ffbc3d);
  border-bottom: 8px solid #f59e0b;
}

.service-figure.cloud .shape-c {
  left: 80px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  border: 4px solid #16a34a;
}

.service-figure.cloud .shape-c::before {
  content: "";
  position: absolute;
  inset: 8px 10px 12px;
  border-left: 4px solid #16a34a;
  border-bottom: 4px solid #16a34a;
  transform: rotate(-45deg);
}

.service-figure.hosting .shape-a {
  right: 18px;
  top: 24px;
  width: 96px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.hosting .shape-a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 12px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-figure.hosting .shape-a::after {
  content: "";
  position: absolute;
  inset: 20px 14px 12px;
  background:
    linear-gradient(#2563eb 0 0) 0 0 / 70% 6px no-repeat,
    linear-gradient(#8b5cf6 0 0) 0 14px / 84% 6px no-repeat,
    linear-gradient(#60a5fa 0 0) 0 28px / 56% 6px no-repeat;
}

.service-figure.hosting .shape-b {
  left: 24px;
  bottom: 22px;
  width: 44px;
  height: 78px;
  border-radius: 13px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.service-figure.hosting .shape-b::before {
  content: "";
  position: absolute;
  inset: 16px 10px auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.92), 0 28px 0 rgba(255, 255, 255, 0.92);
}

.service-figure.hosting .shape-c {
  right: 18px;
  bottom: 18px;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.service-figure.hosting .shape-c::before {
  content: "SSL";
}

.service-figure.users .shape-a {
  inset: 30px 22px 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef5ff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.users .shape-a::before {
  content: "";
  position: absolute;
  inset: 16px;
  background:
    radial-gradient(circle at 22% 32%, #2563eb 0 8px, transparent 9px),
    radial-gradient(circle at 50% 32%, #7c3aed 0 8px, transparent 9px),
    radial-gradient(circle at 78% 32%, #60a5fa 0 8px, transparent 9px),
    linear-gradient(#2563eb 0 0) 20% 74% / 16px 6px no-repeat,
    linear-gradient(#7c3aed 0 0) 50% 74% / 16px 6px no-repeat,
    linear-gradient(#60a5fa 0 0) 80% 74% / 16px 6px no-repeat;
}

.service-figure.users .shape-b {
  left: 18px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 6px solid #7c3aed;
  border-top-color: transparent;
  transform: rotate(42deg);
}

.service-figure.users .shape-b::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #7c3aed;
}

.service-figure.users .shape-c {
  right: 20px;
  bottom: 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  animation: servicePulse 2.2s ease-in-out infinite;
}

.service-figure.mail .shape-a {
  right: 20px;
  bottom: 24px;
  width: 90px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(180deg, #f8fbff, #dce8ff);
  border: 4px solid #2563eb;
}

.service-figure.mail .shape-a::before {
  content: "";
  position: absolute;
  inset: 10px 10px 12px;
  background:
    linear-gradient(180deg, #2563eb 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0 0) 0 14px / 78% 3px no-repeat,
    linear-gradient(180deg, rgba(96, 165, 250, 0.44) 0 0) 0 26px / 60% 3px no-repeat;
}

.service-figure.mail .shape-b {
  left: 22px;
  bottom: 20px;
  width: 40px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
}

.service-figure.mail .shape-b::before {
  content: "";
  position: absolute;
  inset: 16px 9px auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.92), 0 28px 0 rgba(255, 255, 255, 0.92);
}

.service-figure.mail .shape-c {
  right: 24px;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff;
  border: 4px solid #16a34a;
}

.service-figure.mail .shape-c::before {
  content: "";
  position: absolute;
  inset: 8px 10px 12px;
  border-left: 4px solid #16a34a;
  border-bottom: 4px solid #16a34a;
  transform: rotate(-45deg);
}

@keyframes serviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes servicePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.28); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
}

@keyframes serviceArrow {
  0%, 100% { transform: translateX(0); opacity: 0.8; }
  50% { transform: translateX(-8px); opacity: 1; }
}

@media (max-width: 980px) {
  .pricing-grid,
  .service-showcase-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-visual.service-scene {
    min-height: 520px;
  }

  .service-showcase {
    inset: 18px;
    padding: 1rem;
  }

  .service-showcase-center {
    grid-template-columns: 1fr;
    grid-template-areas:
      "figure"
      "title"
      "subtitle";
    justify-items: center;
    text-align: center;
    row-gap: 0.7rem;
  }

  .service-figure {
    width: 168px;
    height: 168px;
  }

  .service-visual-title,
  .service-visual-subtitle {
    text-align: center;
  }

  .service-visual-title {
    font-size: 1.3rem;
  }

  .service-showcase-points {
    gap: 0.65rem;
  }

  .pricing-card .price-line {
    font-size: 1.9rem;
  }
}

