:root {
  --home-bg: #07111e;
  --home-bg-soft: #0c1828;
  --home-panel: rgba(11, 24, 40, 0.78);
  --home-panel-strong: rgba(9, 20, 35, 0.92);
  --home-line: rgba(61, 217, 255, 0.16);
  --home-line-strong: rgba(61, 217, 255, 0.34);
  --home-text: #ecf7ff;
  --home-muted: #9fb7ca;
  --home-primary: #3dd9ff;
  --home-primary-strong: #0cb8f2;
  --home-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --home-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--home-text);
  background: var(--home-bg);
}

/* Shared header and footer */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(61, 217, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 17, 30, 0.9), rgba(7, 17, 30, 0.72));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-frame {
  display: inline-grid;
  place-items: center;
  min-width: 130px;
  min-height: 54px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(61, 217, 255, 0.06);
  border: 1px solid rgba(61, 217, 255, 0.14);
}

.brand-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-links a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--home-muted);
  background: transparent;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--home-text);
  background: rgba(61, 217, 255, 0.08);
}

.nav-logout {
  margin: 0;
}

.nav-logout button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--home-muted);
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-logout button:hover {
  color: var(--home-text);
  background: rgba(61, 217, 255, 0.08);
}

.nav-links .nav-cta {
  color: #03121a;
  background: linear-gradient(135deg, var(--home-primary), #8cecff);
  box-shadow: 0 14px 30px rgba(61, 217, 255, 0.2);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #03121a;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #8cecff, var(--home-primary));
}

.burger-menu {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  gap: 5px;
  border-radius: 15px;
  border: 1px solid rgba(61, 217, 255, 0.18);
  background: rgba(61, 217, 255, 0.07);
  cursor: pointer;
}

.burger-bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--home-text);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.burger-menu.active .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-menu.active .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown summary {
  list-style: none;
}

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

.dropdown-toggle::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.75rem;
  opacity: 0.82;
  transition: transform 0.2s ease;
}

.dropdown[open] .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(330px, calc(100vw - 32px));
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(7, 17, 30, 0.96);
  border: 1px solid rgba(61, 217, 255, 0.16);
  box-shadow: var(--home-shadow);
  backdrop-filter: blur(18px);
}

.dropdown:last-of-type .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown[open] .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  min-height: auto;
  display: block;
  padding: 13px 14px;
  border-radius: 15px;
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  line-height: 1.25;
}

.dropdown-menu a:hover {
  border-color: rgba(61, 217, 255, 0.24);
  background: rgba(61, 217, 255, 0.07);
}

.menu-subtitle {
  display: block;
  margin-top: 5px;
  color: var(--home-muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.footer {
  position: relative;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(61, 217, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(7, 17, 30, 0.98), rgba(5, 12, 22, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.55fr) minmax(220px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(61, 217, 255, 0.06);
  border: 1px solid rgba(61, 217, 255, 0.14);
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-brand p {
  max-width: 46ch;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.16);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: var(--home-text);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer a,
.footer li {
  color: var(--home-muted);
  text-decoration: none;
}

.footer a {
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--home-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 217, 255, 0.12);
  color: var(--home-muted);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding: 8px 10px 14px;
    z-index: 1;
    overflow-y: auto;
    border-radius: 0;
    background: rgba(7, 17, 30, 0.96);
    border: 0;
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > :first-child {
    margin-top: 0;
  }

  .nav-links a,
  .dropdown-toggle,
  .nav-logout button {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dropdown {
    width: 100%;
    display: block;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu,
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .dropdown[open] .dropdown-menu {
    display: flex;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-frame {
    min-width: 112px;
    min-height: 48px;
    padding: 7px 10px;
  }

  .brand-logo {
    height: 36px;
  }

  .footer {
    padding-top: 42px;
  }
}

.homepage-shell {
  position: relative;
  overflow: clip;
}

.homepage-shell .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 76px 0 46px;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 217, 255, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12, 184, 242, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.floating-agent {
  --agent-color: var(--home-primary);
  --agent-bg: rgba(61, 217, 255, 0.11);
  --agent-border: rgba(61, 217, 255, 0.24);
  --agent-glow: rgba(61, 217, 255, 0.13);
  position: absolute;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  color: var(--agent-color);
  background: var(--agent-bg);
  border: 1px solid var(--agent-border);
  box-shadow: 0 24px 70px var(--agent-glow);
  opacity: 0.42;
  transform: rotate(-8deg);
  animation: float-agent 8s ease-in-out infinite;
}

.floating-agent svg {
  width: 62px;
  height: 62px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-agent svg circle {
  fill: currentColor;
  stroke: none;
}

.floating-agent-one {
  --agent-color: var(--home-primary);
  top: 42px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) rotate(-8deg);
}

.floating-agent-two {
  --agent-color: #2ff3ae;
  --agent-bg: rgba(47, 243, 174, 0.1);
  --agent-border: rgba(47, 243, 174, 0.22);
  --agent-glow: rgba(47, 243, 174, 0.12);
  right: 5%;
  bottom: 42px;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  animation-delay: -2.5s;
}

.floating-agent-three {
  --agent-color: #8cecff;
  --agent-bg: rgba(140, 236, 255, 0.1);
  --agent-border: rgba(140, 236, 255, 0.22);
  --agent-glow: rgba(140, 236, 255, 0.1);
  left: 7%;
  bottom: 76px;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  opacity: 0.3;
  animation-delay: -5s;
}

.hero-mascot {
  position: absolute;
  top: 18px;
  left: auto;
  right: max(22px, calc((100vw - 1180px) / 2));
  z-index: 2;
  width: clamp(118px, 11vw, 170px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 38px rgba(61, 217, 255, 0.18));
  animation: hero-mascot-float 7s ease-in-out infinite;
}

@keyframes float-agent {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes hero-mascot-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

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

.tag,
.section-label,
.eyebrow,
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(61, 217, 255, 0.16);
  background: rgba(61, 217, 255, 0.08);
  color: var(--home-primary);
  font-size: 0.9rem;
}

.hero h1,
.section h2,
.conversion-panel h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 3.35rem;
  margin-top: 18px;
}

.hero-lead,
.section p,
.conversion-panel p {
  color: var(--home-muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.68fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-expertise {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: 22px;
  border-radius: 22px;
  background: rgba(8, 20, 35, 0.62);
  border: 1px solid rgba(61, 217, 255, 0.13);
  backdrop-filter: blur(14px);
}

.hero-expertise-label {
  display: block;
  margin-bottom: 12px;
  color: var(--home-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-expertise-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-expertise-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 13px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dceefa;
  font-size: 0.9rem;
  line-height: 1.25;
}

.hero-expertise-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--home-primary);
  box-shadow: 0 0 12px rgba(61, 217, 255, 0.5);
}

.hero-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-value-strip article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-value-strip strong {
  display: block;
  margin-bottom: 6px;
}

.hero-value-strip span {
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  color: #03121a;
  background: linear-gradient(135deg, var(--home-primary), #8cecff);
  box-shadow: 0 16px 36px rgba(61, 217, 255, 0.22);
}

.btn-secondary {
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--home-primary);
  outline-offset: 3px;
}

.trust-item,
.service-card,
.reason-card,
.benefit-card,
.about-capability-card,
.process-step,
.contact-note,
.contact-form,
.conversion-panel,
.showcase-card,
.signal-card {
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
}

.trust-item strong,
.service-card h3,
.benefit-card strong,
.reason-card strong,
.about-capability-card h3,
.process-step h3,
.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

/* About page: reinforce homepage blue visual language without changing layout structure */
.about-page .section {
  position: relative;
}

.about-page .section::before {
  content: "";
  position: absolute;
  inset: 10px 0 auto;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0, rgba(61, 217, 255, 0.07), transparent 70%);
}

.about-page .stat,
.about-page .card,
.about-page .info-block {
  background: var(--home-panel);
  border-color: var(--home-line);
  box-shadow: var(--home-shadow);
}

.about-page .tag {
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.08);
  border-color: rgba(61, 217, 255, 0.2);
}

.about-page .section h2,
.about-page .card h3 {
  color: var(--home-text);
}

.about-page .about-logo-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.about-page .about-logo-badge {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.2);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.about-page .about-logo-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--home-primary);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .about-logo-badge svg circle {
  fill: var(--home-primary);
  stroke: none;
}

.about-page .about-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.about-page .about-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0.28;
  animation: about-float-move 9s ease-in-out infinite;
}

.about-page .about-float svg {
  width: 34px;
  height: 34px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .about-float svg circle {
  fill: var(--home-primary);
  stroke: none;
}

.about-page .about-float-one {
  top: 220px;
  right: 5%;
}

.about-page .about-float-two {
  top: 48%;
  left: 4%;
  animation-delay: -3s;
}

.about-page .about-float-three {
  bottom: 120px;
  right: 8%;
  animation-delay: -5.5s;
}

.about-page .about-section-visual {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 12px;
}

.about-page .about-section-visual span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.2);
}

.about-page .about-section-visual svg {
  width: 15px;
  height: 15px;
  stroke: var(--home-primary);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes about-float-move {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Services page: same blue UI language as About, with structured equal-height cards */
.services-page .hero,
.services-page .section {
  position: relative;
}

.services-page .hero .container,
.services-page .section .container {
  position: relative;
  z-index: 1;
}

.services-page .page-hero-tight {
  padding: 76px 0 42px;
}

.services-page .page-hero-tight .services-hero-container h1,
.services-page .page-hero-tight .services-hero-container p {
  max-width: none;
}

.services-page .hero p {
  max-width: 820px;
  color: var(--home-muted);
  line-height: 1.8;
}

.services-page .services-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.services-page .services-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0.26;
  animation: about-float-move 9s ease-in-out infinite;
}

.services-page .services-float svg {
  width: 34px;
  height: 34px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .services-float svg circle {
  fill: var(--home-primary);
  stroke: none;
}

.services-page .services-float-one {
  top: 210px;
  right: 6%;
}

.services-page .services-float-two {
  top: 50%;
  left: 4%;
  animation-delay: -3s;
}

.services-page .services-float-three {
  bottom: 150px;
  right: 9%;
  animation-delay: -5.5s;
}

.services-page .services-grid {
  align-items: stretch;
  gap: 24px;
}

.services-page .service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border-color: var(--home-line);
}

.services-page .service-card > * {
  position: relative;
  z-index: 1;
}

.services-page .service-icon {
  margin-bottom: 18px;
}

.services-page .badge-soft {
  align-self: flex-start;
  margin-bottom: 16px;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.2);
}

.services-page .service-card h3 {
  min-height: 58px;
  margin: 0 0 12px;
  color: var(--home-text);
  line-height: 1.2;
}

.services-page .service-card p {
  margin: 0 0 18px;
  color: var(--home-muted);
  line-height: 1.65;
}

.services-page .service-list {
  flex: 1;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--home-text);
}

.services-page .service-list li {
  position: relative;
  margin: 0;
  padding-left: 0;
  color: #dceefa;
  line-height: 1.5;
}

.services-page .service-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  vertical-align: 0.08em;
  border-radius: 999px;
  background: var(--home-primary);
  box-shadow: 0 0 12px rgba(61, 217, 255, 0.48);
}

.services-page .service-cta {
  margin-top: auto;
  padding-top: 24px;
}

.services-page .service-cta .btn {
  width: 100%;
}

.services-page .info-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(16, 40, 68, 0.9), rgba(8, 20, 35, 0.95)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(12, 184, 242, 0.1), transparent 40%);
  border-color: var(--home-line);
  box-shadow: var(--home-shadow);
}

.services-page .info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 217, 255, 0.55), transparent);
}

.services-page .info-panel-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.services-page .info-panel-heading h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--home-text);
}

.services-page .info-panel-heading p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.8;
}

.services-page .highlight-strip {
  gap: 18px;
}

.services-page .highlight-box {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(61, 217, 255, 0.075), rgba(255, 255, 255, 0.025));
  border-color: rgba(61, 217, 255, 0.18);
}

.services-page .highlight-box::after {
  content: "";
  position: absolute;
  inset: auto -35px -55px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 217, 255, 0.12), transparent 70%);
}

.services-page .highlight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.1);
  border: 1px solid rgba(61, 217, 255, 0.24);
}

.services-page .highlight-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .highlight-box strong,
.services-page .highlight-box p {
  position: relative;
  z-index: 1;
}

.services-page .highlight-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--home-text);
}

.services-page .highlight-box p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

@media (max-width: 680px) {
  .services-page .service-card {
    padding: 22px;
  }

  .services-page .service-card h3 {
    min-height: auto;
  }

  .services-page .info-panel {
    padding: 24px;
  }

}

/* Smart ARC TV page: match Services and Contact visual system */
.smart-tv-page .hero,
.smart-tv-page .section {
  position: relative;
}

.smart-tv-page .hero .container,
.smart-tv-page .section .container {
  position: relative;
  z-index: 1;
}

.smart-tv-page .page-hero-tight {
  padding: 76px 0 42px;
}

.smart-tv-page .solution-grid {
  gap: 28px;
  align-items: stretch;
}

.smart-tv-page .solution-grid > div:first-child,
.smart-tv-page .info-panel {
  position: relative;
  z-index: 1;
}

.smart-tv-page .hero h1 {
  max-width: none;
}

.smart-tv-page .hero p {
  max-width: none;
  color: var(--home-muted);
  line-height: 1.8;
}

.smart-tv-page .smart-tv-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.smart-tv-page .smart-tv-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0.26;
  animation: about-float-move 9s ease-in-out infinite;
}

.smart-tv-page .smart-tv-float svg {
  width: 34px;
  height: 34px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smart-tv-page .smart-tv-float-one {
  top: 210px;
  right: 6%;
}

.smart-tv-page .smart-tv-float-two {
  top: 52%;
  left: 4%;
  animation-delay: -3s;
}

.smart-tv-page .smart-tv-float-three {
  bottom: 130px;
  right: 9%;
  animation-delay: -5.5s;
}

.smart-tv-page .info-panel {
  height: 100%;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border-color: var(--home-line);
  box-shadow: var(--home-shadow);
}

.smart-tv-page .info-panel h3 {
  margin: 0 0 18px;
  color: var(--home-text);
}

.smart-tv-page .service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-tv-page .service-list li {
  margin: 0;
  color: #dceefa;
  line-height: 1.55;
}

.smart-tv-page .service-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  vertical-align: 0.08em;
  border-radius: 999px;
  background: var(--home-primary);
  box-shadow: 0 0 12px rgba(61, 217, 255, 0.48);
}

.smart-tv-page .video-showcase {
  padding: 26px 0 40px;
}

.smart-tv-page .section-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.smart-tv-page .section-head h2 {
  margin: 16px 0 14px;
  color: var(--home-text);
}

.smart-tv-page .section-head p {
  margin: 0;
  color: var(--home-muted);
}

.smart-tv-page .video-stage {
  padding: 24px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background:
    linear-gradient(135deg, rgba(16, 40, 68, 0.72), rgba(8, 20, 35, 0.86)),
    radial-gradient(circle at 50% 0, rgba(61, 217, 255, 0.13), transparent 44%);
  box-shadow: var(--home-shadow);
}

.smart-tv-page .video-card {
  border-color: rgba(61, 217, 255, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.smart-tv-page .video-card.center {
  border-color: rgba(61, 217, 255, 0.32);
}

.smart-tv-page .slider-btn {
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(61, 217, 255, 0.2);
}

.smart-tv-page .slider-btn:hover {
  background: rgba(61, 217, 255, 0.1);
}

.smart-tv-page .timeline-dots button {
  background: rgba(255, 255, 255, 0.22);
}

.smart-tv-page .timeline-dots button.active {
  background: var(--home-primary);
  box-shadow: 0 0 12px rgba(61, 217, 255, 0.48);
}

.smart-tv-page .highlight-strip {
  align-items: stretch;
  gap: 18px;
}

.smart-tv-page .highlight-box {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(61, 217, 255, 0.075), rgba(255, 255, 255, 0.025));
  border-color: rgba(61, 217, 255, 0.18);
}

.smart-tv-page .highlight-box::after {
  content: "";
  position: absolute;
  inset: auto -35px -55px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 217, 255, 0.12), transparent 70%);
}

.smart-tv-page .highlight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.1);
  border: 1px solid rgba(61, 217, 255, 0.24);
}

.smart-tv-page .highlight-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smart-tv-page .highlight-box strong,
.smart-tv-page .highlight-box p {
  position: relative;
  z-index: 1;
}

.smart-tv-page .highlight-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--home-text);
}

.smart-tv-page .highlight-box p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

@media (max-width: 680px) {
  .smart-tv-page .info-panel,
  .smart-tv-page .video-stage,
  .smart-tv-page .highlight-box {
    padding: 22px;
  }
}

/* Contact page: align standalone contact view with the newer blue UI system */
.contact-page .hero,
.contact-page .section {
  position: relative;
}

.contact-page .hero .container,
.contact-page .section .container {
  position: relative;
  z-index: 1;
}

.contact-page .page-hero-tight {
  padding: 76px 0 42px;
}

.contact-page .page-hero-tight .contact-hero-container h1,
.contact-page .page-hero-tight .contact-hero-container p {
  max-width: none;
}

.contact-page .hero p {
  max-width: 820px;
  color: var(--home-muted);
  line-height: 1.8;
}

.contact-page .contact-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.contact-page .contact-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0.26;
  animation: about-float-move 9s ease-in-out infinite;
}

.contact-page .contact-float svg {
  width: 34px;
  height: 34px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-float svg circle {
  fill: var(--home-primary);
}

.contact-page .contact-float-one {
  top: 210px;
  right: 6%;
}

.contact-page .contact-float-two {
  top: 52%;
  left: 4%;
  animation-delay: -3s;
}

.contact-page .contact-float-three {
  bottom: 130px;
  right: 9%;
  animation-delay: -5.5s;
}

.contact-page .contact-grid {
  align-items: stretch;
  gap: 24px;
}

.contact-page .contact-request-card,
.contact-page .contact-office-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border-color: var(--home-line);
  box-shadow: var(--home-shadow);
}

.contact-page .contact-card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-page .contact-card-heading.compact {
  margin-bottom: 18px;
}

.contact-page .contact-card-heading h2,
.contact-page .contact-card-heading h3 {
  margin: 10px 0 0;
  color: var(--home-text);
}

.contact-page .contact-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.1);
  border: 1px solid rgba(61, 217, 255, 0.24);
}

.contact-page .contact-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .form-grid {
  gap: 18px;
}

.contact-page .field label {
  color: #dceefa;
  font-size: 0.95rem;
}

.contact-page input,
.contact-page textarea,
.contact-page select {
  border-color: rgba(61, 217, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--home-text);
  border-radius: 16px;
  outline: none;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: #89a3b8;
}

.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  border-color: rgba(61, 217, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(61, 217, 255, 0.08);
}

.contact-page select option {
  color: #07111e;
  background: #ffffff;
}

.contact-page .button-row {
  margin-top: 24px;
}

.contact-page .button-row .btn {
  min-width: 210px;
}

.contact-page .contact-office-card {
  display: grid;
  gap: 14px;
}

.contact-page .contact-office-card .info-block {
  margin: 0;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(61, 217, 255, 0.14);
  color: var(--home-muted);
}

.contact-page .contact-office-card .info-block strong {
  color: var(--home-text);
}

.contact-page .contact-office-card a {
  color: var(--home-primary);
}

.contact-page .company-block {
  background: rgba(61, 217, 255, 0.075);
}

.contact-page .notice {
  border-left-color: var(--home-primary);
  background: rgba(61, 217, 255, 0.08);
  color: #dceefa;
}

.contact-page .form-alert {
  margin-bottom: 24px;
}

.contact-page .form-alert ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 680px) {
  .contact-page .contact-request-card,
  .contact-page .contact-office-card {
    padding: 22px;
  }

  .contact-page .button-row .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Templates page: three-package pricing layout in the shared blue visual system */
.templates-page .hero,
.templates-page .section {
  position: relative;
}

.templates-page .hero .container,
.templates-page .section .container {
  position: relative;
  z-index: 1;
}

.templates-page .page-hero-tight {
  padding: 76px 0 42px;
}

.templates-page .hero p {
  max-width: 820px;
  color: var(--home-muted);
  line-height: 1.8;
}

.templates-page .templates-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.templates-page .templates-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0.26;
  animation: about-float-move 9s ease-in-out infinite;
}

.templates-page .templates-float svg {
  width: 34px;
  height: 34px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.templates-page .templates-float-one {
  top: 210px;
  right: 6%;
}

.templates-page .templates-float-two {
  top: 50%;
  left: 4%;
  animation-delay: -3s;
}

.templates-page .templates-float-three {
  bottom: 130px;
  right: 9%;
  animation-delay: -5.5s;
}

.templates-page .templates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 38px;
}

.templates-page .template-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.templates-page .template-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-line-strong);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.templates-page .template-card-featured {
  background:
    linear-gradient(180deg, rgba(16, 48, 78, 0.92), rgba(8, 20, 35, 0.95)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.18), transparent 38%);
}

.templates-page .template-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(61, 217, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.templates-page .template-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.templates-page .template-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.templates-page .template-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--home-primary);
  border: 1px solid rgba(61, 217, 255, 0.2);
  background: linear-gradient(180deg, rgba(61, 217, 255, 0.14), rgba(61, 217, 255, 0.04));
}

.templates-page .template-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.templates-page .template-card .badge-soft {
  align-self: flex-start;
  margin-bottom: 16px;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.2);
}

.templates-page .template-card h2 {
  margin: 0 0 12px;
  color: var(--home-text);
  font-size: 1.42rem;
  line-height: 1.2;
}

.templates-page .template-card p {
  margin: 0 0 20px;
  color: var(--home-muted);
  line-height: 1.65;
}

.templates-page .template-price {
  display: block;
  margin-bottom: 22px;
  color: var(--home-primary);
  font-size: 1.75rem;
  line-height: 1.1;
}

.templates-page .template-list {
  flex: 1;
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.templates-page .template-list li {
  color: #dceefa;
  line-height: 1.5;
}

.templates-page .template-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  vertical-align: 0.08em;
  border-radius: 999px;
  background: var(--home-primary);
  box-shadow: 0 0 12px rgba(61, 217, 255, 0.48);
}

.templates-page .template-card .btn {
  width: 100%;
  margin-top: auto;
}

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

@media (max-width: 680px) {
  .templates-page .template-card {
    padding: 22px;
  }
}

/* Order page: scoped layout to avoid old contact-form collisions */
.order-page .hero,
.order-page .section {
  position: relative;
}

.order-page .hero .container,
.order-page .section .container {
  position: relative;
  z-index: 1;
}

.order-page .page-hero-tight {
  padding: 76px 0 42px;
}

.order-page .hero p {
  max-width: 780px;
  color: var(--home-muted);
  line-height: 1.8;
}

.order-page .order-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.order-page .order-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0.26;
  animation: about-float-move 9s ease-in-out infinite;
}

.order-page .order-float svg {
  width: 34px;
  height: 34px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-page .order-float-one {
  top: 210px;
  right: 6%;
}

.order-page .order-float-two {
  bottom: 130px;
  left: 5%;
  animation-delay: -3s;
}

.order-page .order-panel {
  max-width: 840px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.order-page .order-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(61, 217, 255, 0.075);
  border: 1px solid rgba(61, 217, 255, 0.2);
}

.order-page .order-selection span {
  display: block;
  margin-bottom: 4px;
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-page .order-selection strong,
.order-page .order-selection a {
  color: var(--home-primary);
}

.order-page .order-selection a {
  font-size: 0.88rem;
  font-weight: 800;
}

.order-page .order-form {
  display: grid;
  gap: 22px;
}

.order-page .order-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.order-page .field.full {
  grid-column: 1 / -1;
}

.order-page .field label {
  color: #dceefa;
  font-size: 0.95rem;
}

.order-page input,
.order-page textarea,
.order-page select,
.auth-page input {
  border-color: rgba(61, 217, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--home-text);
  border-radius: 16px;
  outline: none;
}

.order-page input::placeholder,
.order-page textarea::placeholder,
.auth-page input::placeholder {
  color: #89a3b8;
}

.order-page input:focus,
.order-page textarea:focus,
.order-page select:focus,
.auth-page input:focus {
  border-color: rgba(61, 217, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(61, 217, 255, 0.08);
}

.order-page select option {
  color: #07111e;
  background: #ffffff;
}

.order-page .domain-grid {
  display: grid;
  gap: 12px;
}

.order-page .domain-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
}

.order-page .theme-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-page .theme-options label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(61, 217, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.order-page .theme-options input {
  width: auto;
}

.order-page .order-form .btn {
  width: 100%;
  min-height: 56px;
}

.order-page .form-alert ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 680px) {
  .order-page .order-panel {
    padding: 22px;
  }

  .order-page .order-selection {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-page .order-form-grid {
    grid-template-columns: 1fr;
  }

  .order-page .domain-choice {
    grid-template-columns: 1fr;
  }
}

/* Cart, checkout and auth pages */
.cart-page .hero .container,
.cart-page .section .container,
.auth-page .section .container {
  position: relative;
  z-index: 1;
}

.cart-page .hero p,
.auth-page .auth-card p {
  max-width: 760px;
  color: var(--home-muted);
  line-height: 1.8;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 24px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item,
.cart-empty,
.cart-summary,
.auth-card {
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px;
}

.cart-item h2,
.cart-empty h2,
.auth-card h1 {
  margin: 14px 0 10px;
  color: var(--home-text);
  line-height: 1.16;
}

.cart-item p,
.cart-empty p {
  margin: 0;
  color: var(--home-muted);
}

.cart-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cart-domains span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #dceefa;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.16);
  font-size: 0.86rem;
}

.cart-item-side {
  display: grid;
  gap: 12px;
  justify-items: end;
  align-content: start;
}

.cart-item-side strong {
  color: var(--home-primary);
  font-size: 1.2rem;
}

.cart-empty,
.cart-summary,
.auth-card {
  padding: 28px;
}

.cart-summary {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(61, 217, 255, 0.14);
}

.summary-row strong {
  color: var(--home-text);
}

.summary-row.deposit strong {
  color: var(--home-primary);
  font-size: 1.35rem;
}

.cart-summary p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.cart-summary .btn,
.cart-summary form,
.cart-summary form .btn {
  width: 100%;
}

.express-service-group {
  /* margin-top: 38px; */
  margin-bottom: 22px;
}

.templates-grid-single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  margin-bottom: 46px;
}

.template-preview-agent {
  background: rgba(61, 217, 255, 0.06);
}

.template-preview-agent img {
  object-fit: contain;
  padding: 18px;
}

.orders-stack {
  display: grid;
  gap: 24px;
}

.order-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.82), rgba(8, 20, 35, 0.92)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.12), transparent 34%);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.orders-heading,
.order-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.orders-heading h2,
.order-row h3 {
  margin: 10px 0 8px;
  color: var(--home-text);
}

.orders-heading p,
.order-row p,
.order-description {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.order-description {
  margin-top: 14px;
}

.order-row {
  padding: 18px;
  border: 1px solid rgba(61, 217, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.order-row-side {
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 190px;
}

.order-row-side strong {
  color: var(--home-primary);
}

.order-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  color: #dceefa;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.status-cancelled {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.24);
}

.status-completed,
.status-paid,
.status-deposit-paid {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.24);
}

.status-pending-checkout,
.status-ai-agent-under-creation,
.status-waiting-admin-response,
.status-deposit-requested,
.status-deposit-pending,
.status-balance-pending {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.24);
}

.agent-countdown {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(61, 217, 255, 0.06);
  border: 1px solid rgba(61, 217, 255, 0.16);
}

.agent-countdown > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.agent-countdown strong {
  color: var(--home-primary);
  font-size: 1.35rem;
  line-height: 1;
}

.agent-countdown p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.55;
}

.admin-order-actions select,
.admin-item-status-form select,
.admin-status-form select {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--home-line);
  background: rgba(4, 14, 26, 0.92);
  color: var(--home-text);
  padding: 0 12px;
}

.admin-status-form {
  display: grid;
  gap: 12px;
}

.admin-item-status-form {
  width: 100%;
}

.admin-status-form label {
  color: var(--home-muted);
  font-weight: 700;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.pagination-wrap nav {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.panel-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(61, 217, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #07111f, #030914 72%);
  color: var(--home-text);
}

.panel-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.panel-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 28px 22px;
  border-right: 1px solid var(--home-line);
  background: rgba(4, 14, 26, 0.9);
}

.panel-brand {
  display: inline-flex;
  align-items: center;
}

.panel-brand img {
  width: 132px;
  height: auto;
}

.panel-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.panel-nav a,
.panel-logout button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--home-muted);
  background: transparent;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.panel-nav a:hover,
.panel-nav a.active,
.panel-logout button:hover {
  color: var(--home-text);
  background: rgba(61, 217, 255, 0.08);
  border-color: rgba(61, 217, 255, 0.16);
}

.panel-main {
  min-width: 0;
}

.panel-topbar {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 34px;
  border-bottom: 1px solid var(--home-line);
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(16px);
}

.panel-kicker {
  display: block;
  color: var(--home-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.panel-topbar h1 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.panel-user {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-line);
  font-weight: 800;
}

.panel-content {
  padding: 34px;
}

.panel-detail-layout .cart-summary {
  top: 24px;
}

.auth-shell {
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(100%, 560px);
}

.auth-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.auth-form .btn {
  width: 100%;
}

.auth-switch {
  margin: 20px 0 0;
}

.auth-switch a {
  color: var(--home-primary);
  font-weight: 800;
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

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

  .panel-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto auto;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .panel-nav {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .panel-topbar,
  .panel-content {
    padding: 22px;
  }
}

@media (max-width: 620px) {
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-side {
    justify-items: stretch;
  }

  .orders-heading,
  .order-row {
    flex-direction: column;
  }

  .order-row-side {
    justify-items: stretch;
    min-width: 100%;
    width: 100%;
  }

  .panel-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-user {
    max-width: 100%;
  }
}

.trust-item span,
.service-card p,
.service-points li,
.benefit-card span,
.reason-card span,
.contact-note span {
  color: var(--home-muted);
}

.hero-showcase {
  position: relative;
}

.hero-visual {
  background: linear-gradient(145deg, rgba(15, 32, 52, 0.8), rgba(8, 17, 30, 0.92));
  border: 1px solid rgba(61, 217, 255, 0.18);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
  padding: 40px 36px;
  position: relative;
}

.visual-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.visual-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 110px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(61, 217, 255, 0.12);
  transition: all 0.3s ease;
}

.visual-box:hover {
  background: rgba(61, 217, 255, 0.06);
  border-color: rgba(61, 217, 255, 0.3);
  transform: translateY(-4px);
}

.visual-box svg {
  width: 56px;
  height: 56px;
  stroke: var(--home-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--home-text);
  text-align: center;
}

.visual-box .visual-label {
  font-size: 0.85rem;
}

.visual-label {
  font-size: 0.85rem;
  color: var(--home-muted);
}

.visual-arrow {
  color: var(--home-primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  min-width: 30px;
  text-align: center;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.86), rgba(7, 17, 30, 0.96)),
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.14), transparent 28%);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 217, 255, 0.16), transparent 70%);
}

.showcase-top,
.showcase-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10, 26, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6ebf8;
  font-size: 0.85rem;
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ff3ae;
  box-shadow: 0 0 12px rgba(47, 243, 174, 0.8);
}

.showcase-foot small {
  color: var(--home-muted);
}

.trust-strip {
  padding: 18px 0 24px;
}

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

.trust-item {
  padding: 22px;
}

.section {
  padding: 88px 0;
}

.alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 42px;
}

.section h2,
.conversion-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  margin-top: 16px;
}

.about-layout {
  display: block;
}

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

.about-intro {
  display: flex;
  flex-direction: column;
  position: static;
}

.about-intro h2 {
  margin: 16px 0 14px;
}

.about-intro p {
  margin: 0;
  color: var(--home-muted);
  max-width: 46ch;
}

.about-focus-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-focus-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-focus-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.16);
  color: var(--home-primary);
}

.about-focus-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-focus-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.about-focus-list strong {
  color: var(--home-text);
  line-height: 1.25;
}

.about-focus-list small {
  color: var(--home-muted);
  line-height: 1.45;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 18px;
  height: auto;
  margin-top: 34px;
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-capability-card {
  padding: 26px;
}

.about-ecosystem-card {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(14, 34, 56, 0.86), rgba(9, 20, 35, 0.9));
}

.about-card-header {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.about-card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.18);
  color: var(--home-primary);
}

.about-card-icon svg,
.about-list-icon svg,
.about-ecosystem-node svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
}

.about-card-icon svg circle,
.about-list-icon svg circle,
.about-ecosystem-node svg circle {
  fill: currentColor;
  stroke: none;
}

.about-card-label {
  display: block;
  margin-bottom: 5px;
  color: var(--home-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-capability-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.about-capability-card p {
  margin: 0 0 18px;
  color: var(--home-muted);
}

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

.about-process-grid div {
  min-height: 118px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--home-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.about-process-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--home-text);
}

.about-process-grid small {
  display: block;
  color: var(--home-muted);
  line-height: 1.45;
}

.about-ecosystem-flow {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-ecosystem-flow i {
  display: block;
  height: 1px;
  flex: 1;
  min-width: 24px;
  background: rgba(61, 217, 255, 0.35);
}

.about-card-list {
  display: grid;
  gap: 11px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.about-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--home-muted);
  line-height: 1.5;
}

.about-list-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--home-primary);
}

.about-list-icon svg {
  width: 100%;
  height: 100%;
}

.about-ecosystem-node {
  width: 96px;
  min-height: 84px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--home-primary);
  text-align: center;
}

.about-ecosystem-node svg {
  width: 24px;
  height: 24px;
}

.about-ecosystem-node span {
  color: var(--home-text);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.cards-grid,
.reasons-grid,
.product-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card::before,
.reason-card::before,
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(61, 217, 255, 0.08), transparent 36%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card:hover,
.reason-card:hover,
.benefit-card:hover,
.process-step:hover,
.contact-note:hover {
  transform: translateY(-4px);
  border-color: var(--home-line-strong);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.service-card:hover::before,
.reason-card:hover::before,
.benefit-card:hover::before {
  opacity: 1;
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(16, 40, 68, 0.88), rgba(8, 20, 35, 0.9));
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(61, 217, 255, 0.2);
  background: linear-gradient(180deg, rgba(61, 217, 255, 0.14), rgba(61, 217, 255, 0.04));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-badge {
  margin-bottom: 16px;
}

.service-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 1.36rem;
}

.service-card p {
  position: relative;
  margin: 0;
}

.service-visual {
  position: relative;
  margin: 18px 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-visual-top,
.mini-grid {
  display: grid;
  gap: 10px;
}

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

.service-visual-top span,
.mini-grid span {
  display: block;
  padding: 10px 8px;
  text-align: center;
  border-radius: 12px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.12);
  color: #dceefa;
  font-size: 0.85rem;
}

.service-visual-track {
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.service-visual-dot {
  width: 56%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-primary), var(--home-primary-strong));
}

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

.service-visual svg {
  width: 100%;
  height: 70px;
  stroke: var(--home-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-visual svg circle {
  fill: var(--home-primary);
}

.mini-window {
  height: 74px;
  border-radius: 16px;
  border: 1px solid rgba(61, 217, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(61, 217, 255, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.mini-window span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.service-points,
.signal-list,
.form-alert ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li,
.signal-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-primary);
  box-shadow: 0 0 12px rgba(61, 217, 255, 0.45);
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.service-points li::before {
  content: none;
}

.point-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--home-primary);
}

.point-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.point-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.product-section {
  position: relative;
}

.product-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.product-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-header .section-label {
  justify-self: start;
}

.product-header h2 {
  margin: 0 0 8px;
}

.product-lead {
  max-width: 66ch;
  margin: 0;
  line-height: 1.65;
}

.product-story {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  height: 100%;
}

.product-block-title {
  margin-bottom: 2px;
}

.product-block-title span {
  display: block;
  margin-bottom: 6px;
  color: var(--home-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-block-title strong {
  display: block;
  max-width: 52ch;
  line-height: 1.35;
}

.product-story article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-story-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  color: var(--home-primary);
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.16);
}

.product-story-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.product-story-icon svg,
.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-story-icon svg circle,
.benefit-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.product-story strong {
  display: block;
  margin-bottom: 4px;
  color: var(--home-text);
}

.product-story p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.95rem;
}

.product-benefits-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(14, 34, 56, 0.72), rgba(9, 20, 35, 0.84));
  border: 1px solid rgba(61, 217, 255, 0.14);
}

.product-benefits {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.product-benefits li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  color: #dceefa;
  line-height: 1.35;
}

.product-benefits .benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.screen-frame,
.signal-card {
  background: var(--home-panel-strong);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
}

.screen-frame {
  padding: 18px;
}

.screen-ui {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(61, 217, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #0b1d31 0%, #081524 100%);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #d9edfa;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-body {
  padding: 18px;
}

.screen-highlight {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-highlight strong {
  display: block;
  margin-bottom: 8px;
}

.screen-highlight span {
  color: var(--home-muted);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.screen-grid div {
  padding: 15px 14px;
  border-radius: 16px;
  border: 1px solid rgba(61, 217, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  color: #dbeef8;
}

.signal-card {
  padding: 22px;
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
}

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

.venue-card {
  padding: 14px 10px;
  border-radius: 18px;
  border: 1px solid rgba(61, 217, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.reason-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.reason-card span,
.benefit-card span {
  position: relative;
}

.reason-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(61, 217, 255, 0.08);
  border: 1px solid rgba(61, 217, 255, 0.12);
}

.reason-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--home-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion-band {
  padding-top: 24px;
  padding-bottom: 16px;
}

.conversion-panel {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 30px 32px;
  background:
    linear-gradient(135deg, rgba(14, 37, 60, 0.95), rgba(8, 20, 34, 0.98));
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.process-step {
  padding: 30px 26px;
  text-align: left;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--home-primary), var(--home-primary-strong));
  color: #03121a;
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(61, 217, 255, 0.2);
}

.process-step p {
  margin: 0;
}

.contact-section {
  margin-top: 16px;
}

.contact-copy {
  max-width: 590px;
}

.contact-onboarding {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-stage {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-stage > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--home-primary), var(--home-primary-strong));
  color: #03121a;
  font-weight: 800;
}

.contact-stage strong {
  display: block;
  margin-bottom: 6px;
}

.contact-stage small {
  display: block;
  color: var(--home-muted);
}

.contact-info p {
  margin: 9px 0;
  color: #dbeef8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #dceefa;
  font-size: 0.95rem;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--home-text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #89a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 217, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(61, 217, 255, 0.08);
}

.form-alert {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.form-alert-success {
  color: #dffdec;
  background: rgba(31, 120, 80, 0.22);
  border-color: rgba(74, 222, 128, 0.22);
}

.form-alert-error {
  color: #ffe4e6;
  background: rgba(127, 29, 29, 0.25);
  border-color: rgba(248, 113, 113, 0.24);
}

.form-alert ul {
  margin-top: 0;
}

.form-alert li + li {
  margin-top: 6px;
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 8px;
}

.form-footer p {
  margin: 0;
  color: var(--home-muted);
  max-width: 34ch;
}

@media (max-width: 1080px) {
  .hero-grid,
  .hero-content,
  .about-layout,
  .product-layout,
  .contact-grid,
  .trust-grid,
  .hero-value-strip {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-expertise {
    max-width: none;
    justify-self: stretch;
  }

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

  .hero-showcase {
    max-width: 720px;
  }

  .hero-mascot {
    top: 16px;
    left: auto;
    right: 18px;
    width: 120px;
  }

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

  .product-story {
    grid-template-rows: none;
    height: auto;
  }

  .product-benefits-panel {
    height: auto;
    padding: 18px;
  }

  .product-benefits {
    align-content: start;
    flex: none;
  }

  .floating-agent-one {
    left: 50%;
    right: auto;
  }

  .floating-agent-three {
    left: auto;
    right: 24%;
    bottom: 18px;
  }

  .cards-grid,
  .reasons-grid,
  .product-benefits {
    grid-template-columns: 1fr 1fr;
  }

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

  .ecosystem-core {
    left: 50%;
    transform: translateX(-50%);
  }

  .conversion-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .visual-step {
    flex-direction: column;
  }

  .visual-box {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px;
  }

  .visual-box svg {
    flex-shrink: 0;
  }

  .visual-label {
    text-align: left;
  }

  .visual-arrow {
    min-width: auto;
    transform: rotate(90deg);
    margin: 8px 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 62px 0 38px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .visual-step {
    flex-direction: column;
  }

  .visual-box {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px;
  }

  .visual-box svg {
    flex-shrink: 0;
  }

  .visual-label {
    text-align: left;
  }

  .visual-arrow {
    min-width: auto;
    transform: rotate(90deg);
    margin: 8px 0;
  }

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

@media (max-width: 768px) {
  .homepage-shell .container {
    width: min(1180px, calc(100% - 28px));
  }

  .hero {
    padding: 48px 0 24px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-visual {
    max-width: 100%;
  }

  .floating-agent {
    opacity: 0.22;
  }

  .floating-agent-one {
    top: 26px;
    left: 50%;
    right: auto;
  }

  .floating-agent-two {
    display: none;
  }

  .floating-agent-three {
    left: -20px;
    right: auto;
    bottom: 26px;
  }

  .hero-mascot {
    top: 14px;
    left: auto;
    right: 10px;
    width: 86px;
  }

  .hero-expertise {
    padding: 15px;
  }

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

  .hero-expertise-list span {
    width: 100%;
  }

  .product-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cards-grid,
  .reasons-grid,
  .product-benefits,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-card-header {
    grid-template-columns: 44px 1fr;
  }

  .about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .about-ecosystem-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .about-ecosystem-flow i {
    width: 1px;
    height: 18px;
    min-width: 0;
    margin: 0 auto;
  }

  .about-ecosystem-node {
    width: 100%;
    min-height: auto;
    grid-template-columns: 24px 1fr;
    justify-items: start;
    text-align: left;
  }

  .visual-step {
    flex-direction: column;
    gap: 18px;
  }

  .visual-box {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .visual-box svg {
    flex-shrink: 0;
  }

  .visual-label {
    text-align: left;
  }

  .visual-arrow {
    min-width: auto;
    transform: rotate(90deg);
    margin: 6px 0;
  }

  .trust-strip {
    padding-top: 10px;
  }

}
