/* Base styles */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #050814;
  --bg-alt: #0f1424;
  --bg-soft: #12182a;
  --accent: #2f7cf6;
  --accent-soft: rgba(47, 124, 246, 0.12);
  --accent-strong: #1f5cc0;
  --text-main: #f7f7fb;
  --text-muted: #a0a6c0;
  --border-subtle: #242b3f;
  --error: #e55353;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #151b30, #050814 60%);
  color: var(--text-main);
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 20, 0.9),
    rgba(5, 8, 20, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(36, 43, 63, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #4fa5ff, #2f7cf6 55%, #1b2850);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(47, 124, 246, 0.5);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.main-nav a:hover {
  color: var(--text-main);
  background-color: rgba(47, 124, 246, 0.16);
}

.main-nav .nav-cta {
  border: 1px solid rgba(47, 124, 246, 0.7);
  color: var(--text-main);
}

/* Hero */

.hero {
  padding: 40px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.1rem, 2.6vw + 1.2rem, 2.9rem);
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero-cta {
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.badge {
  background: rgba(10, 16, 35, 0.9);
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 124, 246, 0.25);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.badge-number {
  font-weight: 600;
  font-size: 1rem;
}

.badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero image */

.hero-image {
  background: radial-gradient(circle at 10% 0, #263154, #050814 65%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 124, 246, 0.2);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
  object-fit: cover;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.08s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(47, 124, 246, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(47, 124, 246, 0.6);
}

.btn-full {
  width: 100%;
}

/* Sections general */

section {
  padding: 40px 0;
}

section h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.section-intro {
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 26px;
}

/* Results section */

.results {
  background: radial-gradient(circle at top left, #151b30, #050814 60%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.results-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 36px;
  align-items: center;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 10px;
}

.results-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.results-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 6px;
  top: 0.6em;
}

.results-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.results-image {
  border-radius: var(--radius-xl);
  background: #050814;
  border: 1px solid rgba(47, 124, 246, 0.2);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.results-image img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
}

/* How it works */

.how-it-works {
  background: var(--bg-alt);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid rgba(47, 124, 246, 0.15);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Who it's for */

.who-its-for {
  background: var(--bg);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 18px;
}

.who-its-for h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.who-its-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-its-for li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.who-its-for li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--accent);
}

/* About */

.about {
  background: var(--bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 32px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.about-image {
  border-radius: var(--radius-xl);
  background: #050814;
  border: 1px solid rgba(47, 124, 246, 0.18);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 6px);
  object-fit: cover;
  display: block;
}

/* Contact */

.contact {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 34px;
  align-items: flex-start;
}

.contact-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 20px 18px 18px;
  border: 1px solid rgba(47, 124, 246, 0.2);
  box-shadow: var(--shadow-soft);
}

.hidden {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.form-field label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(160, 166, 192, 0.4);
  background-color: #050814;
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5f6684;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(47, 124, 246, 0.6);
  background-color: #050a1a;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 16px 0 20px;
  background: #050814;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-note {
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .results-inner,
  .steps,
  .two-column,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 28px;
  }

  .steps {
    gap: 16px;
  }

  .contact-inner {
    gap: 26px;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 26px;
  }

  section {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-badges {
    gap: 12px;
  }

  .contact-form {
    padding: 18px 14px 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;

  padding: 0.85rem 1.6rem;
  border-radius: 999px;

  border: 1px solid #4f7dff;      /* outline to make it pop */
  background: rgba(79, 125, 255, 0.08);
  color: #e5ebff;

  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.hero-cta .btn-secondary:hover {
  background: rgba(79, 125, 255, 0.18);
  border-color: #87a5ff;
  transform: translateY(-1px);
}
.testimonials {
  padding: 3rem 0 5rem;      /* less space on top, keep bottom comfortable */
  background: transparent;   /* let the main dark background show through */
}


.testimonials-header {
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.testimonials-header .btn-secondary {
  margin-bottom: 1.5rem;
}

/* Grid layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* Card styles */
.testimonial-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Logo box with light background and uniform visual height */
.testimonial-logo {
  background: #f0f3fa;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px; /* controls logo area height */
  margin-bottom: 1.25rem;
}

.testimonial-logo img {
  max-height: 40px;         /* keeps logos visually consistent */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Text styling inside cards */
.testimonial-card blockquote {
  margin: 0 0 1.25rem 0;
  font-style: italic;
  color: #1f2933;
}

.testimonial-name {
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.testimonial-title {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }
}
.testimonials .container {
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 0.75rem;
}

.testimonials .section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  color: #cbd5f5; /* matches other light body text on dark bg */
}
.testimonials-top-link {
  margin-bottom: 2rem;
}

.testimonials-top-link .btn-secondary {
  background: #ffffff;
  color: #1d4ed8;
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}
.testimonial-card {
  text-align: left;
}
