:root {
  --bg: #050714;
  --bg-alt: #0b0e1c;
  --card: #0f1224;
  --border-subtle: #1b2140;
  --accent: #5b8cff;
  --accent-soft: rgba(91, 140, 255, 0.15);
  --text: #f9fafb;
  --text-soft: #a4acc7;
  --danger: #ff4f6a;
  --good: #22c55e;
  --max-width: 1120px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #171b3a, #050714 55%);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5, 7, 20, 0.9);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #9ae6ff, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #020617;
}

.logo-text {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #7f5bff);
  color: #020617;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(1.02);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.btn-full {
  width: 100%;
}

.ghost-link {
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.ghost-link:hover {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

.hero-sub {
  color: var(--text-soft);
  max-width: 32rem;
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trust-tags span {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Hero card (right) */
.hero-card {
  background: radial-gradient(circle at top, #1f2937, #020617);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem;
  background: rgba(15, 23, 42, 0.9);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.dot-green { background: #22c55e; }
.dot-amber { background: #f97316; }
.dot-red { background: #ef4444; }

.hero-card-body {
  padding: 1.5rem 1.5rem 1.4rem;
}

.card-label {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.hero-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.card-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.card-foot {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}



.logos-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logos-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.logo-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.8);
}

/* Metrics */
.metrics {
  padding: 3.4rem 0 3.6rem;
}

.metrics-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metrics-head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.metrics-head p {
  margin: 0;
  color: var(--text-soft);
  max-width: 28rem;
  font-size: 0.96rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #0f172a, #020617);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1rem;
}

.metric-value {
  font-size: 1.7rem;
  font-weight: 600;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Sections */
.section-head {
  margin-bottom: 2.3rem;
}

.section-head h2 {
  margin: 0.3rem 0;
  font-size: 1.7rem;
}

.section-sub {
  margin: 0;
  color: var(--text-soft);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
  font-size: 0.9rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 0.7rem;
  color: var(--text-soft);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.service-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
}

.step-number {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Team */
.team-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.check-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
}

.team-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.3rem;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  background-image: url("avatar.jpg");
  
}

.team-card h3 {
  margin: 0 0 0.1rem;
}

.role {
  margin: 0 0 0.8rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.bio {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.social-row {
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
}

.social-row a {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

/* Comparison */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.compare-col {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem;
}

.compare-bad {
  background: #111827;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.compare-good {
  background: #022c22;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.compare-col h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.compare-col ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

/* Results */
.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
  font-size: 0.9rem;
}

.result-metric {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.result-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}

.result-body {
  margin: 0 0 0.7rem;
  color: var(--text-soft);
}

.result-name {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1rem;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.92rem;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--text-soft);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 0.8rem;
}

.faq-answer p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Contact */
.contact-section {
  background: radial-gradient(circle at top, #111827, #020617);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.field label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.field input,
.field textarea {
  background: #020617;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.6rem 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
}

.form-foot {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.2rem 0 1rem;
  background: #020617;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-left p {
  margin: 0.4rem 0;
  color: var(--text-soft);
}

.footer-address {
  font-size: 0.8rem;
}

.footer-right {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.footer-bottom {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .metrics-grid,
  .cards-grid,
  .steps-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .compare-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 0.9rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .logos-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .metrics-grid,
  .cards-grid,
  .steps-grid,
  .results-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }
}
