:root {
  --black: #05070b;
  --black-2: #0a1018;
  --white: #ffffff;
  --soft: #f5f7fa;
  --text: #151923;
  --muted: #606b7a;
  --green: #00a94f;
  --green-2: #12c96a;
  --red: #f01822;
  --line: rgba(255, 255, 255, 0.12);
  --border: rgba(10, 16, 24, 0.10);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 18px 45px rgba(7, 15, 26, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--soft);
  overflow-x: hidden;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

::selection {
  color: var(--white);
  background: var(--green);
}

:focus-visible {
  outline: 3px solid rgba(18, 201, 106, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 7% 8%, rgba(0, 169, 79, 0.14), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(240, 24, 34, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fa 42%, #ffffff 100%);
}

.section {
  width: var(--container);
  margin-inline: auto;
}

.header {
  width: var(--container);
  min-height: 76px;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(85, 90, 99, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  transition: 0.28s ease;
}

.header.scrolled {
  top: 10px;
  background: rgba(36, 80, 41, 0.321);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 130px;
}

.brand img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 15px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-cta {
  padding: 14px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 12px 24px rgba(0, 169, 79, 0.32);
  font-size: 13px;
  text-transform: uppercase;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.86) 38%, rgba(5, 7, 11, 0.46) 100%),
    radial-gradient(circle at 88% 18%, rgba(0, 169, 79, 0.24), transparent 28%),
    linear-gradient(135deg, #05070b, #111a28 58%, #05070b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 100vw;
  height: 100%;
  z-index: -1;
  transform: translateX(-50%);
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-content {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero h1 strong,
.split-content h2 strong {
  color: var(--green-2);
  font-style: normal;
}

.hero p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 34px;
}

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

.hero-proof {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.45;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 18px 28px rgba(0, 169, 79, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(0, 169, 79, 0.36);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
  position: relative;
  perspective: 1100px;
}

.visual-orbit {
  position: absolute;
  top: -46px;
  right: -10px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(18, 201, 106, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(18, 201, 106, 0.035),
    0 0 0 68px rgba(18, 201, 106, 0.025);
  animation: orbitPulse 5s ease-in-out infinite;
}

.hero-image-card {
  position: relative;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
  isolation: isolate;
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-visual:hover .hero-image-card {
  transform: rotateY(0) rotateX(0) translateY(-4px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.46);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(5, 7, 11, 0.74)),
    linear-gradient(90deg, rgba(5, 7, 11, 0.30), transparent 46%);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(5, 7, 11, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.compliance-card {
  animation: cardFloat 4.8s ease-in-out infinite;
}

.report-card {
  animation: cardFloat 4.8s 1.2s ease-in-out infinite;
}

.visual-status {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 7, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
}

.visual-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 5px rgba(18, 201, 106, 0.12);
}

.floating-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-2);
  background: rgba(0, 169, 79, 0.12);
  font-size: 20px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 14px;
  margin-bottom: 4px;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.compliance-card {
  left: -26px;
  bottom: 42px;
}

.report-card {
  right: -18px;
  top: 76px;
}

.trust-panel {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(5, 7, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.compliance-band {
  width: var(--container);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 35px rgba(7, 15, 26, 0.055);
  backdrop-filter: blur(12px);
}

.compliance-band > span {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compliance-band div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 14px;
  color: #26303e;
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.04em;
}

.compliance-band i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green-2);
  background: rgba(0, 169, 79, 0.10);
  font-size: 22px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.services-section,
.process-section,
.faq-section {
  padding: 78px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.split-content h2,
.dashboard-info h2,
.contact-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.section-heading p,
.split-content p,
.dashboard-info p,
.contact-content p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 410px;
  padding: 0 24px 28px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.28s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-media {
  height: 178px;
  margin: 0 -24px 0;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: -30px auto 18px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border: 5px solid var(--white);
  box-shadow: 0 14px 22px rgba(0, 169, 79, 0.25);
  font-size: 22px;
}

.service-card h3 {
  min-height: 48px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.service-card a i {
  transition: transform 0.22s ease;
}

.service-card a:hover i {
  transform: translateX(4px);
}

.split-section {
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  padding: 54px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.86) 35%, rgba(5, 7, 11, 0.32) 100%),
    radial-gradient(circle at 85% 10%, rgba(0, 169, 79, 0.18), transparent 30%),
    #05070b;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-content {
  position: relative;
  z-index: 2;
}

.split-content p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.feature-list i {
  color: var(--green-2);
}

.split-media {
  position: relative;
  min-height: 360px;
  align-self: stretch;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 7, 11, 0.1), transparent 55%, rgba(18, 201, 106, 0.12));
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.process-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 52px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(5, 7, 11, 0.18), rgba(5, 7, 11, 0.18) 10px, transparent 10px, transparent 20px);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 34px;
  color: var(--black);
}

.process-step span {
  display: inline-flex;
  justify-content: center;
  min-width: 42px;
  margin: -33px auto 14px;
  padding: 7px 10px;
  position: relative;
  z-index: 4;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-size: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.dashboard-section {
  padding: 24px 0 78px;
}

.dashboard-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.dashboard-info p {
  max-width: 610px;
}

.dashboard-widget {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 79, 0.16), transparent 30%),
    linear-gradient(145deg, #080d15, #121a26);
  color: var(--white);
  box-shadow: var(--shadow);
}

.widget-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.widget-top span,
.widget-top strong {
  display: block;
}

.widget-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin-bottom: 6px;
}

.widget-top strong {
  font-size: 22px;
}

.widget-top i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--green-2);
  background: rgba(0, 169, 79, 0.12);
  font-size: 24px;
}

.progress-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.progress-row > div:first-child {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.progress-row strong {
  color: var(--white);
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard-card.visible .progress span {
  transform: scaleX(1);
}

.widget-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-summary div {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.widget-summary strong,
.widget-summary span {
  display: block;
}

.widget-summary strong {
  margin-bottom: 4px;
  color: var(--green-2);
  font-size: 17px;
}

.widget-summary span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.35;
}

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

.faq-item {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-weight: 900;
}

.faq-item button i {
  transition: 0.25s ease;
}

.faq-item p {
  max-height: 0;
  padding: 0 22px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-item.active p {
  max-height: 180px;
  padding: 0 22px 22px;
}

.faq-item.active button i {
  transform: rotate(180deg);
  color: var(--green);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 68px;
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 169, 79, 0.16), transparent 28%),
    linear-gradient(145deg, #05070b, #101827);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-content p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 26px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-link i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-2);
  background: rgba(0, 169, 79, 0.12);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-form label:nth-child(4),
.contact-form button,
.form-note,
.privacy-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  outline: 0;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select option {
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 201, 106, 0.78);
  box-shadow: 0 0 0 4px rgba(18, 201, 106, 0.10);
}

.form-note {
  min-height: 20px;
  color: var(--green-2);
  font-weight: 800;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.privacy-note i {
  color: var(--green-2);
}

.footer {
  width: var(--container);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

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

.footer-nav a:hover {
  color: var(--green);
}

.footer img {
  width: 96px;
  margin-bottom: 8px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.10));
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 16px 32px rgba(0, 169, 79, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.service-card:nth-child(2),
.process-step:nth-child(2) {
  transition-delay: 0.08s;
}

.service-card:nth-child(3),
.process-step:nth-child(3) {
  transition-delay: 0.16s;
}

.service-card:nth-child(4),
.process-step:nth-child(4) {
  transition-delay: 0.24s;
}

.service-card:nth-child(5) {
  transition-delay: 0.32s;
}

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

@keyframes orbitPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.45; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

@media (max-width: 1140px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .hero-visual {
    max-width: 760px;
  }

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

@media (max-width: 920px) {
  .header {
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 86px 0 auto 0;
    width: var(--container);
    margin-inline: auto;
    display: grid;
    gap: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 12px;
  }

  .nav a::after {
    bottom: 6px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .compliance-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-image-card {
    height: 430px;
  }

  .split-section,
  .dashboard-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .process-line::before {
    display: none;
  }

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

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .header {
    min-height: 66px;
    top: 10px;
  }

  .brand img {
    width: 92px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .hero-image-card {
    height: 340px;
    border-radius: 24px;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
    animation: none;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .visual-orbit,
  .visual-status {
    display: none;
  }

  .compliance-band {
    margin-top: 14px;
    padding: 18px;
  }

  .compliance-band div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .service-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .split-section,
  .dashboard-card,
  .contact-section {
    padding: 24px;
    border-radius: 26px;
  }

  .split-media {
    min-height: 250px;
  }

  .dashboard-widget,
  .contact-form {
    padding: 18px;
  }

  .widget-top strong {
    font-size: 18px;
  }

  .widget-summary {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 390px) {
  :root {
    --container: min(100% - 20px, 1180px);
  }

  .header {
    padding-inline: 12px;
  }

  .hero-image-card {
    height: 290px;
  }

  .split-section,
  .dashboard-card,
  .contact-section {
    padding: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
