/* =========================================================
   SOFTWARE SUPPORT
   Main Stylesheet
========================================================= */

:root {
  --bg: #080b12;
  --bg-soft: #0d111b;
  --surface: #111722;
  --surface-light: #171e2b;
  --border: rgba(255, 255, 255, 0.09);

  --text: #f5f7fb;
  --text-soft: #aeb7c7;
  --text-muted: #7f899b;

  --accent: #7c5cff;
  --accent-light: #9a83ff;
  --accent-soft: rgba(124, 92, 255, 0.12);

  --white: #ffffff;

  --container: 1180px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

  --transition: 0.25s ease;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* =========================================================
   COMMON
========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container));

  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--accent-light);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.14em;

  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";

  width: 22px;
  height: 2px;

  background: var(--accent);
}

.section-heading {
  max-width: 720px;

  margin-bottom: 55px;
}

.section-heading h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(34px, 5vw, 54px);

  line-height: 1.08;

  letter-spacing: -0.04em;

  margin-bottom: 20px;
}

.section-heading h2 span,
.hero-content h1 span,
.why-content h2 span,
.cta-content h2 span {
  color: var(--accent-light);
}

.section-heading p {
  color: var(--text-soft);

  font-size: 17px;

  max-width: 650px;
}

.center-heading {
  margin-inline: auto;

  text-align: center;
}

.center-heading p {
  margin-inline: auto;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 25px;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);

  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);

  background: var(--accent);

  box-shadow: 0 12px 35px rgba(124, 92, 255, 0.25);
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-secondary {
  color: var(--text);

  border: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline-light {
  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.site-header {
  position: relative;
  z-index: 100;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  background: rgba(8, 11, 18, 0.92);

  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 78px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.brand {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border-radius: 10px;

  color: var(--white);

  background: var(--accent);

  font-size: 12px;
  font-weight: 800;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;

  font-size: 19px;
  font-weight: 700;
}

.brand-text span {
  color: var(--accent-light);
}

.navigation-wrapper {
  display: flex;

  align-items: center;

  gap: 32px;
}

.main-navigation {
  display: flex;

  align-items: center;

  gap: 28px;
}

.main-navigation a {
  position: relative;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 600;

  padding: 8px 0;

  transition: color var(--transition);
}

.main-navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: width var(--transition);
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--white);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  width: 100%;
}

.nav-cta {
  min-height: 42px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 18px;

  border-radius: 8px;

  background: var(--accent);

  color: var(--white);

  font-size: 13px;
  font-weight: 700;

  transition:
    background var(--transition),
    transform var(--transition);
}

.nav-cta:hover {
  background: var(--accent-light);

  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);

  border-radius: 9px;

  background: transparent;
}

.mobile-menu-toggle span {
  display: block;

  width: 19px;
  height: 2px;

  margin: 4px auto;

  background: var(--white);

  transition: var(--transition);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;

  padding: 105px 0 120px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(124, 92, 255, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 40%,
      rgba(124, 92, 255, 0.08),
      transparent 28%
    );
}

.hero-section::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 70px 70px;

  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);

  gap: 80px;

  align-items: center;
}

.hero-content h1 {
  max-width: 760px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(45px, 6vw, 78px);

  line-height: 0.98;

  letter-spacing: -0.055em;

  margin-bottom: 26px;
}

.hero-description {
  max-width: 650px;

  color: var(--text-soft);

  font-size: 17px;

  line-height: 1.8;

  margin-bottom: 32px;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 13px;

  flex-wrap: wrap;
}

.hero-trust {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-top: 48px;
}

.trust-item {
  display: flex;

  flex-direction: column;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  color: var(--text-muted);

  font-size: 12px;
}

.trust-divider {
  width: 1px;
  height: 35px;

  background: var(--border);
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;

  min-height: 500px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.hero-card-main {
  position: relative;

  width: min(100%, 490px);

  min-height: 350px;

  padding: 30px;

  border: 1px solid var(--border);

  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );

  box-shadow: var(--shadow);

  overflow: hidden;
}

.hero-card-main::before {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  background: var(--accent);

  opacity: 0.13;

  filter: blur(30px);
}

.hero-card-header {
  position: relative;
  z-index: 1;

  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.card-label {
  display: block;

  color: var(--text-muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.15em;

  margin-bottom: 10px;
}

.hero-card-header h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 28px;

  line-height: 1.1;
}

.status-dot {
  width: 10px;
  height: 10px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #64e59a;

  box-shadow: 0 0 0 6px rgba(100, 229, 154, 0.08);
}

.growth-chart {
  position: relative;

  height: 190px;

  margin-top: 45px;

  border-bottom: 1px solid var(--border);

  border-left: 1px solid var(--border);

  background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 100% 47px;
}

.chart-line {
  position: absolute;

  left: 5%;
  right: 5%;

  bottom: 22px;

  height: 120px;

  border-top: 3px solid var(--accent);

  transform: skewY(-18deg) rotate(-2deg);

  filter: drop-shadow(0 0 8px rgba(124, 92, 255, 0.4));
}

.chart-point {
  position: absolute;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: var(--accent);

  border: 3px solid var(--surface);

  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}

.point-one {
  left: 5%;
  bottom: 31px;
}

.point-two {
  left: 27%;
  bottom: 65px;
}

.point-three {
  left: 49%;
  bottom: 88px;
}

.point-four {
  left: 72%;
  bottom: 118px;
}

.point-five {
  right: 5%;
  bottom: 145px;
}

.chart-labels {
  display: flex;

  justify-content: space-between;

  margin-top: 13px;

  color: var(--text-muted);

  font-size: 11px;
}

/* Floating cards */

.floating-card {
  position: absolute;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 16px;

  border: 1px solid var(--border);

  border-radius: 13px;

  background: rgba(17, 23, 34, 0.92);

  box-shadow: var(--shadow);

  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;

  font-size: 12px;
}

.floating-card small {
  display: block;

  color: var(--text-muted);

  font-size: 10px;

  margin-top: 2px;
}

.floating-icon {
  width: 35px;
  height: 35px;

  display: grid;

  place-items: center;

  border-radius: 9px;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-weight: 800;
}

.floating-card-top {
  top: 42px;
  right: -12px;
}

.floating-card-bottom {
  bottom: 45px;
  left: -15px;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 310px;

  padding: 30px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.025);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(124, 92, 255, 0.4);

  background: rgba(124, 92, 255, 0.045);
}

.service-number {
  position: absolute;

  top: 25px;
  right: 25px;

  color: var(--text-muted);

  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-size: 18px;
  font-weight: 800;

  margin-bottom: 25px;
}

.service-card h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 22px;

  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.75;

  margin-bottom: 22px;
}

.service-link {
  color: var(--accent-light);

  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   WHY
========================================================= */

.why-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(400px, 0.8fr);

  gap: 90px;

  align-items: center;
}

.why-content h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(35px, 5vw, 55px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  margin-bottom: 22px;
}

.why-content > p {
  color: var(--text-soft);

  font-size: 16px;

  line-height: 1.8;

  margin-bottom: 38px;
}

.why-list {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.why-item {
  display: flex;

  gap: 15px;
}

.check-icon {
  width: 28px;
  height: 28px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-size: 12px;
  font-weight: 800;
}

.why-item h3 {
  font-size: 15px;

  margin-bottom: 5px;
}

.why-item p {
  color: var(--text-muted);

  font-size: 13px;
}

.why-panel {
  padding: 1px;

  border-radius: var(--radius-lg);

  background: linear-gradient(135deg, rgba(124, 92, 255, 0.6), transparent 55%);
}

.why-panel-inner {
  min-height: 400px;

  padding: 40px;

  border-radius: calc(var(--radius-lg) - 1px);

  background:
    radial-gradient(
      circle at top right,
      rgba(124, 92, 255, 0.15),
      transparent 40%
    ),
    var(--surface);
}

.panel-small {
  color: var(--text-muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.15em;
}

.why-panel-inner h3 {
  max-width: 350px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 31px;

  line-height: 1.25;

  margin-top: 18px;
}

.why-panel-inner h3 span {
  color: var(--accent-light);
}

.approach-steps {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin-top: 45px;
}

.approach-step {
  display: flex;

  flex-direction: column;

  gap: 7px;

  padding: 18px;

  border: 1px solid var(--border);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.02);
}

.approach-step span {
  color: var(--text-muted);

  font-size: 10px;
}

.approach-step strong {
  font-size: 13px;
}

.approach-step.active {
  border-color: rgba(124, 92, 255, 0.45);

  background: var(--accent-soft);
}

/* =========================================================
   PROCESS
========================================================= */

.process-section {
  background: var(--bg-soft);
}

.process-grid {
  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  gap: 18px;

  align-items: start;
}

.process-item {
  padding: 25px 0;
}

.process-number {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-size: 11px;
  font-weight: 800;

  margin-bottom: 20px;
}

.process-item h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 18px;

  line-height: 1.3;

  margin-bottom: 10px;
}

.process-item p {
  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.7;
}

.process-line {
  width: 30px;
  height: 1px;

  margin-top: 45px;

  background: var(--border);
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  padding: 0 0 110px;

  background: var(--bg-soft);
}

.cta-box {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 55px;

  border: 1px solid rgba(124, 92, 255, 0.25);

  border-radius: var(--radius-lg);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(124, 92, 255, 0.18),
      transparent 32%
    ),
    var(--surface);
}

.cta-content {
  max-width: 650px;
}

.cta-content h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.05;

  letter-spacing: -0.04em;

  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-soft);

  font-size: 15px;
}

.cta-actions {
  display: flex;

  gap: 12px;

  flex-shrink: 0;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 75px 0 25px;

  border-top: 1px solid var(--border);

  background: #06080d;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

  gap: 50px;

  padding-bottom: 55px;
}

.footer-about {
  max-width: 350px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-about p {
  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.8;

  margin-bottom: 20px;
}

.footer-email {
  color: var(--accent-light);

  font-size: 13px;
  font-weight: 600;
}

.footer-column h3 {
  font-size: 14px;

  margin-bottom: 20px;
}

.footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-column a {
  color: var(--text-muted);

  font-size: 13px;

  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 11px;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-light);

  outline-offset: 4px;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
  position: relative;

  padding: 100px 0 95px;

  overflow: hidden;

  border-bottom: 1px solid var(--border);

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(124, 92, 255, 0.13),
      transparent 32%
    ),
    var(--bg);
}

.page-hero::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  right: -180px;
  top: -200px;

  border-radius: 50%;

  background: var(--accent);

  opacity: 0.04;

  filter: blur(50px);

  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  z-index: 1;

  max-width: 850px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(42px, 6vw, 70px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 25px;
}

.page-hero h1 span {
  color: var(--accent-light);
}

.page-hero p {
  position: relative;
  z-index: 1;

  max-width: 700px;

  color: var(--text-soft);

  font-size: 17px;

  line-height: 1.8;
}

/* =========================================================
   SERVICE BOTTOM CTA
========================================================= */

.service-bottom-section,
.about-cta-section {
  background: var(--bg-soft);
}

.simple-cta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 50px;

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  background: var(--surface);
}

.simple-cta h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.05;

  letter-spacing: -0.04em;

  margin-bottom: 13px;
}

.simple-cta h2 span {
  color: var(--accent-light);
}

.simple-cta p {
  color: var(--text-soft);

  font-size: 14px;
}

/* =========================================================
   ABOUT
========================================================= */

.about-intro {
  background: var(--bg);
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 100px;

  align-items: start;
}

.about-grid h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(36px, 5vw, 55px);

  line-height: 1.05;

  letter-spacing: -0.045em;
}

.about-grid h2 span {
  color: var(--accent-light);
}

.about-grid > div:last-child {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.about-grid > div:last-child p {
  color: var(--text-soft);

  font-size: 16px;

  line-height: 1.9;
}

/* =========================================================
   VALUES
========================================================= */

.about-values {
  background: var(--bg-soft);
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.value-card {
  min-height: 260px;

  padding: 28px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.025);
}

.value-number {
  display: block;

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  margin-bottom: 45px;
}

.value-card h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 23px;

  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.75;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(400px, 1.2fr);

  gap: 80px;

  align-items: start;
}

.contact-information h2,
.quote-information h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  margin-bottom: 20px;
}

.contact-information h2 span,
.quote-information h2 span {
  color: var(--accent-light);
}

.contact-information > p,
.quote-information > p {
  color: var(--text-soft);

  font-size: 15px;

  line-height: 1.8;
}

.contact-details {
  display: flex;

  flex-direction: column;

  gap: 22px;

  margin-top: 40px;
}

.contact-detail {
  display: flex;

  align-items: center;

  gap: 15px;
}

.contact-detail-icon {
  width: 45px;
  height: 45px;

  display: grid;

  place-items: center;

  border-radius: 11px;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-weight: 800;
}

.contact-detail span {
  display: block;

  color: var(--text-muted);

  font-size: 11px;

  margin-bottom: 2px;
}

.contact-detail a {
  color: var(--text);

  font-size: 14px;
}

.contact-detail a:hover {
  color: var(--accent-light);
}

/* =========================================================
   FORM CARD
========================================================= */

.form-card {
  padding: 35px;

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  background: var(--surface);

  box-shadow: var(--shadow);
}

.form-card-heading {
  margin-bottom: 28px;
}

.form-card-heading h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 28px;

  margin-bottom: 7px;
}

.form-card-heading p {
  color: var(--text-muted);

  font-size: 13px;
}

.form-row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 15px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 18px;
}

.form-group label {
  color: var(--text-soft);

  font-size: 12px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;

  border: 1px solid var(--border);

  border-radius: 9px;

  outline: none;

  background: #0c111a;

  color: var(--text);

  padding: 13px 14px;

  font-size: 13px;

  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group input,
.form-group select {
  min-height: 48px;
}

.form-group textarea {
  resize: vertical;

  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5f6979;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);

  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

.form-submit {
  width: 100%;

  margin-top: 5px;

  border: 0;
}

/* =========================================================
   QUOTE
========================================================= */

.quote-section {
  background: var(--bg);
}

.quote-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(450px, 1.2fr);

  gap: 80px;

  align-items: start;
}

.quote-points {
  display: flex;

  flex-direction: column;

  gap: 22px;

  margin-top: 40px;
}

.quote-point {
  display: flex;

  gap: 13px;
}

.quote-point > span {
  width: 27px;
  height: 27px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-size: 11px;
  font-weight: 800;
}

.quote-point strong {
  display: block;

  font-size: 14px;

  margin-bottom: 4px;
}

.quote-point p {
  color: var(--text-muted);

  font-size: 12px;

  line-height: 1.65;
}

.form-consent {
  margin: 5px 0 18px;
}

.form-consent label {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  color: var(--text-muted);

  font-size: 11px;

  line-height: 1.6;

  cursor: pointer;
}

.form-consent input {
  width: 15px;
  height: 15px;

  flex-shrink: 0;

  margin-top: 2px;

  accent-color: var(--accent);
}

/* =========================================================
   THANK YOU
========================================================= */

.thank-you-section {
  min-height: calc(100vh - 80px);

  display: grid;

  place-items: center;

  padding: 90px 0;

  background:
    radial-gradient(circle at center, rgba(124, 92, 255, 0.1), transparent 35%),
    var(--bg);
}

.thank-you-card {
  max-width: 750px;

  margin-inline: auto;

  padding: 65px 50px;

  text-align: center;

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  background: var(--surface);

  box-shadow: var(--shadow);
}

.thank-you-icon {
  width: 65px;
  height: 65px;

  display: grid;

  place-items: center;

  margin: 0 auto 25px;

  border-radius: 50%;

  color: var(--accent-light);

  background: var(--accent-soft);

  font-size: 24px;
  font-weight: 800;
}

.thank-you-card h1 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 20px;
}

.thank-you-card h1 span {
  color: var(--accent-light);
}

.thank-you-card > p {
  max-width: 570px;

  margin: 0 auto;

  color: var(--text-soft);

  font-size: 15px;

  line-height: 1.8;
}

.thank-you-actions {
  display: flex;

  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 32px;
}

.thank-you-email {
  display: flex;

  flex-direction: column;

  gap: 5px;

  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 11px;
}

.thank-you-email a {
  color: var(--accent-light);

  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   FORM SPAM PROTECTION
========================================================= */

.form-honeypot {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0, 0, 0, 0) !important;

  white-space: nowrap !important;

  border: 0 !important;
}

/* =========================================================
   SERVICE LANDING PAGES
========================================================= */

.service-landing-hero {
  padding: 90px 0;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(124, 92, 255, 0.14),
      transparent 32%
    ),
    var(--bg);

  border-bottom: 1px solid var(--border);
}

.service-landing-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  gap: 80px;

  align-items: center;
}

.service-landing-content h1 {
  max-width: 850px;

  margin: 18px 0 25px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(45px, 6vw, 72px);

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.service-landing-content h1 span {
  color: var(--accent-light);
}

.service-landing-content > p {
  max-width: 700px;

  color: var(--text-soft);

  font-size: 17px;

  line-height: 1.8;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.service-visual {
  display: flex;

  justify-content: center;

  min-height: 330px;
}

.service-visual-card {
  width: 100%;
  max-width: 440px;

  min-height: 300px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 45px;

  border: 1px solid var(--border);

  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(124, 92, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );

  box-shadow: var(--shadow);
}

.service-visual-card span {
  color: var(--accent-light);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.service-visual-card strong {
  font-family: "Space Grotesk", sans-serif;

  font-size: 27px;

  line-height: 1.25;
}

.visual-bars {
  display: flex;

  align-items: flex-end;

  gap: 8px;

  height: 75px;

  margin-top: 35px;
}

.visual-bars i {
  display: block;

  width: 25px;

  border-radius: 5px 5px 0 0;

  background: var(--accent);

  opacity: 0.7;
}

.visual-bars i:nth-child(1) {
  height: 30%;
}

.visual-bars i:nth-child(2) {
  height: 50%;
}

.visual-bars i:nth-child(3) {
  height: 72%;
}

.visual-bars i:nth-child(4) {
  height: 100%;
}

/* =========================================================
   SERVICE FEATURE GRID
========================================================= */

.service-feature-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 16px;

  margin-top: 45px;
}

.service-feature-card {
  min-height: 250px;

  padding: 28px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: var(--surface);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.service-feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(124, 92, 255, 0.45);

  background: var(--surface-light);
}

.service-feature-card > span {
  display: block;

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  margin-bottom: 45px;
}

.service-feature-card h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 21px;

  margin-bottom: 10px;
}

.service-feature-card p {
  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.75;
}

/* =========================================================
   SERVICE PROCESS
========================================================= */

.service-process-section {
  background: var(--bg-soft);
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;

  margin-top: 45px;
}

.process-item {
  padding: 28px;

  border-top: 1px solid var(--border);
}

.process-item strong {
  display: block;

  color: var(--accent-light);

  font-size: 12px;

  margin-bottom: 35px;
}

.process-item h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 22px;

  margin-bottom: 10px;
}

.process-item p {
  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================================
   SERVICE CTA
========================================================= */

.service-cta-section {
  background: var(--bg);
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-hero {
  padding: 80px 0 70px;

  background: radial-gradient(
    circle at 80% 20%,
    rgba(124, 92, 255, 0.12),
    transparent 35%
  );

  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  margin: 18px 0 15px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(42px, 6vw, 68px);

  line-height: 1;

  letter-spacing: -0.05em;
}

.legal-hero h1 span {
  color: var(--accent-light);
}

.legal-hero p {
  color: var(--text-muted);

  font-size: 13px;
}

.legal-container {
  max-width: 900px;
}

.legal-content {
  padding: 10px 0;
}

.legal-content h2 {
  margin-top: 45px;
  margin-bottom: 14px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);

  font-size: 15px;

  line-height: 1.85;
}

.legal-content ul {
  padding-left: 22px;

  margin: 15px 0 25px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent-light);

  text-decoration: underline;

  text-underline-offset: 3px;
}

.legal-content strong {
  color: var(--text);
}

.footer-legal-links {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 18px;

  margin-top: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);

  font-size: 12px;

  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--text);
}

@media (max-width: 600px) {
  .footer-legal-links {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }
}
