:root {
  --bg-primary: #03040a;
  --bg-secondary: #0c111b;
  --bg-panel: rgba(9, 13, 21, 0.7);
  --text-primary: #f4f6ff;
  --text-muted: rgba(244, 246, 255, 0.68);
  --accent: #5ef4d6;
  --accent-secondary: #8b8afd;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --radius-small: 12px;
  --shadow-soft: 0 20px 70px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(94, 244, 214, 0.22);
}

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

body {
  font-family: "IBM Plex Sans", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(94, 244, 214, 0.08), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(139, 138, 253, 0.06), transparent 40%),
    linear-gradient(180deg, #03040a, #070a14);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: 80px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

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

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

.inner {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 4, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.logo-mark {
  height: 28px;
  width: 28px;
  flex: none;
}

.logo img {
  height: 32px;
  width: auto;
}

.logo span {
  color: var(--text-primary);
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

nav a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

nav .pill {
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  color: var(--accent);
}

.lang-toggle {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lang-toggle:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.22);
}

main {
  padding-top: 40px;
}

.hero {
  padding: 90px 0 40px;
}

.hero .inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.hero__content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--dynamic {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: baseline;
  color: rgba(244, 246, 255, 0.92);
}

.hero__title-rotator {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__title-rotator.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content p {
  color: var(--text-muted);
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  flex-wrap: wrap;
}

.cta,
button {
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

button.lang-toggle {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
}

button.lang-toggle:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(94, 244, 214, 0.95), rgba(139, 138, 253, 0.9));
  color: #020205;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

button.ghost {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
}

 a.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
 }

 .coming {
  padding: 90px 0 60px;
 }

 .coming__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: start;
 }

 .coming__copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
 }

 .coming__copy p {
  color: var(--text-muted);
  max-width: 580px;
 }

 .coming__actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  flex-wrap: wrap;
 }

 .coming__note {
  font-size: 0.95rem;
 }

 .coming__panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 6, 12, 0.5);
  box-shadow: var(--shadow-soft);
 }

 .coming__panel-inner {
  display: grid;
  gap: 0.8rem;
 }

 .coming__panel-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: rgba(244, 246, 255, 0.65);
 }

 .coming__panel-body {
  color: rgba(244, 246, 255, 0.82);
 }

 .coming__panel-link {
  color: var(--accent);
  font-weight: 600;
 }

 .coming__panel-link:hover {
  color: rgba(94, 244, 214, 0.85);
 }

.hero__footnote {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.panel-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  color: rgba(244, 246, 255, 0.9);
}

.panel-list {
  display: grid;
  gap: 1rem;
}

.panel-item {
  padding: 16px 16px;
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
  background: rgba(4, 6, 12, 0.65);
}

.panel-item__title {
  font-weight: 600;
  color: rgba(244, 246, 255, 0.92);
  margin-bottom: 0.35rem;
}

.panel-item__body {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stat-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-top: 0.4rem;
  color: var(--accent);
}

.orbit {
  position: relative;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.planet {
  position: absolute;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(2, 2, 5, 0.8);
  font-size: 0.85rem;
}

.planet--core {
  position: relative;
  border-color: var(--accent);
  color: var(--accent);
}

.planet:nth-child(2) {
  top: 12%;
  left: 12%;
}

.planet:nth-child(3) {
  bottom: 18%;
  right: 10%;
}

.planet:nth-child(4) {
  top: 50%;
  right: -5%;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.stat-grid h3 {
  color: var(--accent-secondary);
  margin-top: 0.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section__intro {
  text-align: center;
  width: min(640px, 90vw);
  margin: 0 auto 40px;
}

.section__intro h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.section__intro p {
  color: var(--text-muted);
}

 .services__subsection {
  width: min(920px, 92vw);
  margin: 0 auto 48px;
 }

 .services__subhead {
  text-align: center;
  width: min(640px, 90vw);
  margin: 0 auto 28px;
 }

 .services__subhead h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
 }

 .services__subhead p {
  color: var(--text-muted);
 }

.services,
.principles,
.solutions,
.process,
.testimonials,
.contact {
  padding: 80px 0;
}

.principles .inner {
  display: grid;
  gap: 32px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.principle-grid article {
  padding: 20px;
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
  background: rgba(6, 10, 18, 0.55);
}

.principle-grid p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-grid article,
.service-card {
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
}

.service-card {
  padding: 0;
  width: 100%;
  text-align: left;
  background: transparent;
  color: inherit;
  display: block;
  overflow: hidden;
  perspective: 1200px;
  cursor: pointer;
}

.service-card:focus-visible {
  outline: 2px solid rgba(94, 244, 214, 0.5);
  outline-offset: 2px;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card__inner {
  display: block;
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  min-height: 290px;
}

.service-card.is-flipped .service-card__inner {
  transform: rotateY(180deg) translateZ(0);
  -webkit-transform: rotateY(180deg) translateZ(0);
}

.service-card__face {
  position: absolute;
  inset: 0;
  padding: 24px;
  background: rgba(6, 10, 18, 0.7);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card__face * {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-card__face--front {
  transform: translateZ(1px);
  -webkit-transform: translateZ(1px);
}

.service-card__face--back {
  transform: rotateY(180deg) translateZ(1px);
  -webkit-transform: rotateY(180deg) translateZ(1px);
}

.service-card__meta {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 246, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.9rem;
}

.service-card__hint {
  margin-top: auto;
  color: rgba(244, 246, 255, 0.55);
  font-size: 0.85rem;
}

.service-card__price {
  margin-top: 1rem;
  color: rgba(244, 246, 255, 0.7);
  font-weight: 600;
}

.service-grid p {
  color: var(--text-muted);
  margin: 0.7rem 0;
}

.service-grid ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-grid li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

.services__note {
  width: min(760px, 90vw);
  margin: 28px auto 0;
  color: var(--text-muted);
  text-align: center;
}

.service-tree {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-tree__branch {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.5rem 0 0.5rem;
}

.service-tree__branch > .service-card {
  width: 100%;
}

.service-tree__connector {
  position: relative;
  height: 0;
  opacity: 0;
  transition: height 0.35s ease, opacity 0.3s ease;
}

.service-tree__connector::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(94, 244, 214, 0) 0%, rgba(94, 244, 214, 0.7) 100%);
}

.service-tree__branch.is-expanded .service-tree__connector {
  height: 28px;
  opacity: 1;
}

.service-tree__leaf {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.55s ease, opacity 0.35s ease, transform 0.55s ease;
  pointer-events: none;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
}

.product-dots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.product-card {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(244, 246, 255, 0.14);
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.65) 0%, rgba(6, 10, 18, 0.35) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  row-gap: 10px;
  align-items: start;
  text-align: left;
  transform: translateY(6px);
  opacity: 0;
  animation: orbFade 0.5s ease forwards;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-card::before {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-top: 4px;
  background: radial-gradient(circle at top, rgba(94, 244, 214, 0.55), rgba(3, 7, 16, 0.85));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(94, 244, 214, 0.25);
}

.product-card > div {
  grid-column: 2;
  display: grid;
  gap: 6px;
}

.product-card > div + div {
  padding-top: 12px;
  border-top: 1px solid rgba(244, 246, 255, 0.1);
  gap: 4px;
}

.product-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin: 0.15rem 0 0;
}

.product-card p {
  margin: 0.35rem 0 0;
}

.product-card > div:first-child p:not(.product-card__meta) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.product-card:nth-child(2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3) {
  animation-delay: 0.16s;
}

.product-card:nth-child(4) {
  animation-delay: 0.24s;
}

.service-tree__branch.is-expanded .service-tree__leaf {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 18px;
  border-color: rgba(244, 246, 255, 0.12);
  background: rgba(6, 10, 18, 0.38);
}

.product-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 246, 255, 0.7);
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 244, 214, 0.18);
  background: rgba(94, 244, 214, 0.06);
}

.product-card__price {
  font-weight: 600;
  color: rgba(244, 246, 255, 0.85);
  margin-top: 0;
}

.product-card__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: -2px;
}

.product-card ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0;
  opacity: 0;
  transform: translateY(6px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, margin-top 0.35s ease;
  padding-left: 0;
}

.product-card li + li {
  margin-top: 0.3rem;
}

.product-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

.product-card:hover ul,
.product-card:focus-within ul {
  margin-top: 0.6rem;
  opacity: 1;
  transform: translateY(0);
  max-height: 240px;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(94, 244, 214, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 244, 214, 0.35);
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.78) 0%, rgba(6, 10, 18, 0.42) 100%);
}

@keyframes orbFade {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@media (max-width: 800px) {
  .service-tree {
    gap: 1.25rem;
  }

  .service-tree__branch {
    padding: 0;
  }

  .service-tree__connector {
    display: none;
  }

  .service-tree__leaf {
    border-left: 2px solid rgba(94, 244, 214, 0.25);
    padding-left: 16px;
  }

  .product-card {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .product-card::before {
    width: 40px;
    height: 40px;
  }

  .product-dots {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .product-card ul {
    margin-top: 0.6rem;
    opacity: 1;
    transform: none;
    max-height: none;
  }
}

.budget {
  width: min(980px, 95vw);
  margin: 36px auto 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(6, 10, 18, 0.55);
}

.budget__header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 18px;
}

.budget__header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.budget__header p {
  color: var(--text-muted);
}

.budget2-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.budget2-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-small);
  padding: 20px;
  background: rgba(4, 6, 12, 0.65);
  display: grid;
  gap: 1rem;
}

.budget2-label {
  display: grid;
  gap: 0.4rem;
}

.budget2-label span {
  font-size: 0.9rem;
  color: rgba(244, 246, 255, 0.8);
}

.budget2-panel input[type="range"] {
  width: 100%;
  accent-color: rgba(94, 244, 214, 0.9);
}

.budget2-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(244, 246, 255, 0.6);
}

.budget2-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.budget2-value__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 246, 255, 0.6);
}

.budget2-value__number {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.budget2-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.budget2-matrix__wrapper {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-small);
  padding: 16px;
  background: rgba(4, 6, 12, 0.65);
}

.budget2-matrix__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 246, 255, 0.6);
  margin-bottom: 12px;
}

.budget2-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.budget2-row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(1, 3, 8, 0.6);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.budget2-row:hover {
  border-color: rgba(94, 244, 214, 0.5);
}

.budget2-row.is-active {
  border-color: rgba(94, 244, 214, 0.9);
  background: rgba(94, 244, 214, 0.08);
}

.budget2-row__title {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.budget2-row__desc {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.budget2-row__price {
  text-align: right;
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.budget2-row__price small {
  font-weight: normal;
  color: rgba(244, 246, 255, 0.7);
}

.budget2-detail {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-small);
  padding: 20px;
  background: rgba(4, 6, 12, 0.65);
  display: grid;
  gap: 0.6rem;
}

.budget2-detail__price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

.budget2-detail__formula,
.budget2-detail__note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.budget2-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.budget2-detail ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .service-card__inner {
    transition: none;
  }
}

.trusted {
  text-align: center;
  padding: 50px 0 30px;
  color: var(--text-muted);
}

.ticker {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-top: 1rem;
  opacity: 0.7;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 20px;
  background: rgba(4, 6, 12, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.solution-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.process .timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.timeline article {
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 20px;
  background: rgba(4, 7, 14, 0.7);
}

.timeline span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.timeline p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

blockquote {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(6, 10, 18, 0.85);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--text-primary);
}

.contact .inner {
  background: linear-gradient(135deg, rgba(94, 244, 214, 0.1), rgba(8, 12, 24, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact p {
  color: var(--text-muted);
}

.contact-direct {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(1, 3, 8, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-direct__email {
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-direct__email:hover,
.contact-direct__email:focus-visible {
  color: var(--accent);
}

.contact-direct__note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 30px 0;
  color: var(--text-muted);
}

.site-footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  nav {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .solution-card,
  .contact .inner {
    flex-direction: column;
  }

  .site-footer .inner {
    flex-direction: column;
  }
}
