:root {
  --bg: #060707;
  --bg-soft: #0d0f0f;
  --bg-deep: #111414;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7f6;
  --text-soft: #c8d1cc;
  --text-muted: #8a9891;
  --green: #22c55e;
  --green-2: #16a34a;
  --green-3: #86efac;
  --green-dark: #14532d;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-height: 88px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 197, 94, 0.1), transparent 22%),
    radial-gradient(
      circle at 90% 20%,
      rgba(22, 163, 74, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #050606 0%, #0b0d0d 42%, #050606 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-sm {
  padding: 40px 0 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.9;
}

.bg-orb-1 {
  width: 360px;
  height: 360px;
  left: -90px;
  top: -70px;
  background: rgba(34, 197, 94, 0.18);
}

.bg-orb-2 {
  width: 420px;
  height: 420px;
  right: -110px;
  bottom: -90px;
  background: rgba(74, 222, 128, 0.1);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28),
    transparent 85%
  );
}

.panel-glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #d9ffe6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.section-heading-left {
  max-width: 100%;
  text-align: left;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--text-soft);
  font-size: 18px;
}

.section-subheading {
  max-width: 760px;
  margin: 60px auto 30px;
  text-align: center;
}

.section-subheading h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-subheading p {
  color: var(--text-soft);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

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

.btn-primary {
  color: #031108;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow:
    0 16px 35px rgba(34, 197, 94, 0.2),
    0 10px 25px rgba(22, 163, 74, 0.16);
}

.btn-primary:hover {
  box-shadow:
    0 22px 45px rgba(34, 197, 94, 0.26),
    0 14px 28px rgba(22, 163, 74, 0.2);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  min-height: 46px;
  padding: 10px 20px;
}

.btn-full {
  width: 100%;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(6, 7, 7, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(6, 7, 7, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #7ee7a4);
  transition: width var(--transition);
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  margin: 5px 0;
  transition: var(--transition);
}

/* HERO */
.hero {
  padding: 80px 0 50px;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  max-width: 920px;
}

.hero-title span {
  color: var(--green-3);
}

.hero-text {
  max-width: 740px;
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

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

.metric-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.metric-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--green-3);
}

.metric-card span {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(34, 197, 94, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(74, 222, 128, 0.08),
      transparent 24%
    );
  pointer-events: none;
}

.panel-top {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dashboard-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 120px;
}

.dashboard-card-large {
  min-height: 180px;
}

.accent-card {
  border-color: rgba(34, 197, 94, 0.18);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.08);
}

.dashboard-label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #d9ffe6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.dashboard-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.dashboard-card p {
  color: var(--text-soft);
  font-size: 15px;
}

.floating-badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(11, 15, 13, 0.92);
  border: 1px solid rgba(34, 197, 94, 0.14);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge span {
  font-weight: 700;
  font-size: 14px;
  color: var(--green-3);
}

.floating-badge-1 {
  position: absolute;
  top: 40px;
  right: 0.5%;
}

.floating-badge-2 {
  position: absolute;
  bottom: 2px;
  left: 0.5%;
}

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

/* TRUSTED */
.trusted-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.trusted-strip span {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

/* SERVICES */
.services-grid {
  display: grid;
  gap: 24px;
}

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

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

.service-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent 45%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.3);
}

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

.service-card-primary {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border-color: rgba(34, 197, 94, 0.14);
}

.service-card-secondary {
  opacity: 0.95;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.18),
    rgba(74, 222, 128, 0.08)
  );
  border: 1px solid rgba(34, 197, 94, 0.14);
  color: var(--green-3);
}

.service-icon i {
  font-size: 24px;
  line-height: 1;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 20px;
}

.service-card ul {
  display: grid;
  gap: 10px;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #9af0b8);
}

/* RESULTS */
.results-box {
  padding: 50px;
  border-radius: 34px;
}

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

.result-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--green-3);
}

.result-card p {
  color: var(--text-soft);
  font-size: 15px;
}

/* TIMELINE */
.timeline {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  border-radius: 22px;
  font-size: 28px;
  font-weight: 800;
  color: #021108;
  background: linear-gradient(135deg, var(--green), #7ee7a4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-soft);
}

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

.project-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.2);
}

.project-tag {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.16);
  color: #d9ffe6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.project-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.project-card p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.project-card span {
  color: var(--text-muted);
  font-size: 14px;
}

/* CONTACT */
.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: start;
}

.contact-info {
  padding: 12px 6px 12px 0;
}

.contact-info h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.contact-info p {
  color: var(--text-soft);
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

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

.contact-item span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-item strong {
  font-size: 18px;
  font-weight: 700;
}

.contact-form {
  padding: 32px;
  border-radius: 30px;
}

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

.form-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-group label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a9891;
}

.form-group select option {
  color: #111827;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(34, 197, 94, 0.34);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

/* FOOTER */
.footer {
  padding: 30px 0 42px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
  font-size: 24px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

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

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

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

@media (max-width: 920px) {
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 4%;
    right: 4%;
    background: rgba(6, 7, 7, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: var(--transition);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding-top: 50px;
  }

  .hero-metrics,
  .dashboard-grid,
  .form-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    min-height: 72px;
  }

  .floating-badge-1,
  .floating-badge-2 {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 84px 0;
  }

  .section-sm {
    padding-top: 28px;
  }

  .logo {
    font-size: 24px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text,
  .section-heading p,
  .section-subheading p,
  .contact-info p {
    font-size: 16px;
  }

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

  .services-grid-main,
  .services-grid-secondary,
  .projects-grid,
  .results-grid,
  .trusted-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .service-card,
  .project-card,
  .contact-form,
  .results-box {
    padding: 24px;
  }

  .header-inner {
    min-height: 78px;
  }

  .contact-item strong {
    font-size: 16px;
    word-break: break-word;
  }
}

/* WHY US */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.why-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.why-badge-bad {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.why-badge-good {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #d9ffe6;
}

.why-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.why-card p {
  color: var(--text-soft);
  font-size: 16px;
}

/* FAQ */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-item.active {
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  text-align: left;
  color: #ffffff;
}

.faq-question span:first-child {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.16);
  color: var(--green-3);
  font-size: 22px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(34, 197, 94, 0.16);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  color: var(--text-soft);
  font-size: 16px;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 1180px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .why-card,
  .faq-question {
    padding-left: 22px;
    padding-right: 22px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
    font-size: 15px;
  }

  .faq-question span:first-child {
    font-size: 16px;
  }
}

.hero-trigger {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.08);
  color: #d9ffe6;
  font-size: 15px;
  font-weight: 600;
  max-width: 680px;
}

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

.case-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.2);
}

.case-tag {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.16);
  color: #d9ffe6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.case-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.case-card p {
  color: var(--text-soft);
  margin-bottom: 22px;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.case-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-stats strong {
  display: block;
  font-size: 24px;
  color: var(--green-3);
  margin-bottom: 4px;
}

.case-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.form-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1180px) {
  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cases-grid,
  .case-stats {
    grid-template-columns: 1fr;
  }

  .hero-trigger,
  .case-card,
  .review-card {
    padding: 22px;
  }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #d9ffe6;
}

.form-status.is-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.contact-form.is-loading .btn {
  opacity: 0.8;
  pointer-events: none;
}

/* CUSTOM SELECT */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-radius: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.custom-select-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.custom-select-trigger:focus {
  border-color: rgba(34, 197, 94, 0.34);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.custom-select-trigger span {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

.custom-select-trigger i {
  color: var(--green-3);
  font-size: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.custom-select.open .custom-select-trigger {
  border-color: rgba(34, 197, 94, 0.34);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.custom-select.open .custom-select-trigger i {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #101514;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  padding: 8px;
  display: none;
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
}

.custom-select.open .custom-select-dropdown {
  display: block;
}

.custom-select-option {
  width: 100%;
  border: none;
  background: transparent;
  color: #f5f7f6;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.4;
  transition:
    background var(--transition),
    color var(--transition);
}

.custom-select-option:hover {
  background: rgba(34, 197, 94, 0.14);
  color: #ffffff;
}

.custom-select-option.is-selected {
  background: rgba(34, 197, 94, 0.18);
  color: #d9ffe6;
}

.custom-select-placeholder span {
  color: #c8d1cc;
}

.form-consent {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.form-consent input {
  margin-right: 8px;
}

.policy-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(34, 197, 94, 0.08),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(22, 163, 74, 0.1),
      transparent 28%
    ),
    var(--bg);
  color: #ffffff;
}

.policy-section {
  padding: 80px 0;
  min-height: 100vh;
}

.policy-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.policy-card h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.policy-card h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 12px;
}

.policy-card p,
.policy-card li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.policy-card ul {
  margin: 0 0 0 20px;
  padding: 0;
}

.policy-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--green-3);
  font-weight: 700;
  text-decoration: none;
}

.policy-back-link:hover {
  text-decoration: underline;
}

.policy-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-card {
    padding: 24px;
    border-radius: 22px;
  }

  .policy-card h1 {
    font-size: 30px;
  }

  .policy-card h2 {
    font-size: 20px;
  }
}

.form-consent {
  margin-top: 18px;
}

.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.form-consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--green);
}

.form-consent-link {
  color: var(--green-3);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent-link:hover {
  color: #d9ffe6;
}

.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

.dashboard-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dashboard-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.dashboard-card-link h3,
.dashboard-card-link p,
.dashboard-card-link .dashboard-label {
  color: inherit;
}

.mobile-section-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-section-nav {
    display: block;
    position: sticky;
    top: 72px;
    z-index: 40;
    background: rgba(8, 12, 11, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-section-nav-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mobile-section-nav-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-section-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7dfda;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .mobile-section-link.is-active {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.22);
    color: #d9ffe6;
  }
}

.audit-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.audit-popup.is-visible {
  display: block;
}

.audit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 7, 0.72);
  backdrop-filter: blur(6px);
}

.audit-popup-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 520px);
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(20, 25, 24, 0.98),
    rgba(12, 16, 15, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.audit-popup-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #d9ffe6;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.audit-popup-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.12;
}

.audit-popup-card p {
  margin: 0 0 22px;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 16px;
}

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

.audit-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.audit-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .audit-popup-card {
    padding: 24px;
    border-radius: 20px;
  }

  .audit-popup-card h3 {
    font-size: 24px;
  }

  .audit-popup-actions {
    flex-direction: column;
  }

  .audit-popup-actions .btn {
    width: 100%;
  }
}
