/* Blackstorm Experts — VSL (light theme) */

:root {
  --bg-page: #ffffff;
  --bg-muted: #f7f8fa;
  --bg-guarantee: #f0fdf4;
  --nav-bg: #0a0a0a;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --accent: #1a3a5c;
  --star: #f0a500;
  --border-card: #e2e8f0;
  --guarantee-green: #16a34a;
  --divider: #e2e8f0;
  --video-bg: #1a1a1a;
  --video-label: #cccccc;
  --shell: 1100px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-page);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* —— Nav —— */

.site-header {
  background-color: var(--nav-bg);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 56px;
  width: 285px;
  max-height: 56px;
  overflow: hidden;
}

.logo img {
  display: block;
  height: 56px !important;
  width: 285px !important;
  max-width: 285px;
  object-fit: contain;
  object-position: center;
  transform: scale(2.3);
  transform-origin: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
}

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

.btn--nav-solid {
  background: #ffffff;
  color: var(--nav-bg);
  border-color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
}

.btn--nav-solid:hover {
  background: #f7f8fa;
}

.btn--primary-hero {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 48px;
  border-radius: 6px;
  width: 100%;
  max-width: 500px;
  border: none;
}

.btn--primary-hero:hover {
  background: #152d47;
  box-shadow: 0 4px 14px rgba(26, 58, 92, 0.35);
}

.btn--final {
  background: #ffffff;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 48px;
  border-radius: 6px;
  width: 100%;
  max-width: 500px;
  border: none;
}

.btn--final:hover {
  background: #f7f8fa;
}

.page-shell {
  width: 100%;
}

.section-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* —— Hero —— */

.hero {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-page);
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 40px 0;
  text-align: center;
}

.headline {
  margin: 0 0 12px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.subheadline {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--video-bg);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-placeholder__play {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-placeholder__play:hover {
  opacity: 0.92;
  transform: scale(1.03);
}

.video-placeholder__icon {
  display: block;
}

.video-placeholder__label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: var(--video-label);
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.trust-line {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.trust-line--hero {
  margin-top: 1rem;
  color: var(--text-secondary);
}

.hero-scroll-hint {
  margin-top: 16px;
  text-align: center;
  padding: 0;
  pointer-events: none;
}

.hero-scroll-hint__chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(45deg);
  animation: hero-bounce 2.2s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 1;
  }
}

/* —— Trusted By —— */

.social-proof {
  background-color: var(--bg-muted);
}

.social-proof .section-inner {
  padding-top: 80px;
  padding-bottom: 24px;
}

.section-heading {
  margin: 0 0 2.5rem;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-primary);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--star);
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-card__quote {
  margin: 0;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-card__attr {
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-secondary);
}

/* —— How It Works —— */

.how {
  background-color: var(--bg-page);
}

.how .section-inner {
  padding-top: 80px;
  padding-bottom: 24px;
}

.how__sub {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
}

.how .section-heading {
  margin-bottom: 0.75rem;
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.how-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 32px;
  background: var(--bg-muted);
  border: 1px solid var(--border-card);
  border-left: 3px solid #1a3a5c;
  border-radius: 8px;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.how-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.how-card__num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.how-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}

.how-card__desc {
  margin: 0.5rem 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}


.how-divider {
  height: 1px;
  margin-top: 24px;
  background: #e2e8f0;
}

/* —— Trust Signals —— */

.trust-signals {
  background: #f7f8fa;
  border-bottom: 1px solid #e2e8f0;
}

.trust-signals__inner {
  padding-top: 24px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
  flex: 0 0 25%;
}

.trust-item svg {
  display: block;
  margin: 0 auto 12px;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.trust-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4a5568;
}

/* —— Guarantee —— */

/* —— Comparison —— */

.comparison {
  background: #ffffff;
}

.comparison__inner {
  max-width: 900px;
  margin: 8px auto 0;
  padding: 0 40px 80px;
}

.comparison__heading {
  margin: 0;
  text-align: center;
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 700;
}

.comparison__sub {
  margin: 12px 0 32px;
  text-align: center;
  color: #4a5568;
  font-size: 16px;
}

.comparison-table-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
}

.comparison-table th {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.comparison-table thead th:first-child {
  background: #ffffff;
}

.comparison-table thead th:nth-child(2) {
  background: #f7f8fa;
  color: #4a5568;
}

.comparison-table thead th:nth-child(3) {
  background: #1a3a5c;
  color: #ffffff;
}

.comparison-table tbody td:first-child {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
}

.comparison-table tbody td:nth-child(2) {
  padding: 16px;
  font-size: 14px;
  color: #4a5568;
  text-align: center;
}

.comparison-table tbody td:nth-child(3) {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 16px;
  background: #1a3a5c;
}

.comparison-table tbody tr:nth-child(even) td:first-child,
.comparison-table tbody tr:nth-child(even) td:nth-child(2) {
  background: #f7f8fa;
}

.comparison-table tbody tr:nth-child(odd) td:first-child,
.comparison-table tbody tr:nth-child(odd) td:nth-child(2) {
  background: #ffffff;
}

.comparison-table tbody tr:nth-child(even) td:nth-child(3) {
  background: #1e4570;
}

.comparison-check {
  margin-right: 6px;
  font-weight: 700;
}

/* —— Body copy —— */

.body-copy {
  background-color: var(--bg-page);
}

.body-copy__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 40px 0;
  text-align: left;
}

.body-copy__inner > p {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-primary);
}

.guarantee-card {
  margin: 0 0 24px;
  max-width: 760px;
  padding: 32px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  text-align: left;
}

.guarantee-card__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guarantee-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--guarantee-green);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.guarantee-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.guarantee-card__text {
  margin: 0 0 1.25rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.guarantee-card__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.guarantee-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
}

.guarantee-card__check {
  color: #16a34a;
  font-weight: 700;
}

/* —— Founder —— */

.founder {
  background-color: var(--bg-muted);
}

.founder .section-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.founder__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.founder__photo {
  width: 300px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.founder__content {
  text-align: left;
}

.founder__label {
  margin: 0 0 0.75rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder__heading {
  margin: 0 0 1.25rem;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.founder__body p {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.founder__body p:last-child {
  margin-bottom: 0;
}

.founder__cta {
  margin-top: 1.75rem;
  max-width: 380px;
  width: 100%;
}

/* —— Final CTA —— */

.final-cta {
  background-color: var(--accent);
  color: #ffffff;
}

.final-cta__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.final-cta__heading {
  margin: 0 0 1.25rem;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.final-cta .btn--final {
  margin-left: auto;
  margin-right: auto;
}

.trust-line--final {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* —— Footer —— */

.site-footer {
  background: var(--nav-bg);
  padding: 30px 40px;
  width: 100%;
}

.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* —— Search Modal —— */

.search-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.search-modal.is-open {
  display: flex;
}

.search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.search-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  z-index: 1;
}

.search-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: #4a5568;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.search-modal__title {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
}

.search-modal__subtext {
  margin: 0 0 24px;
  color: #4a5568;
  font-size: 14px;
}

.search-modal__field {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 12px;
}

.search-modal__field--phone {
  margin-bottom: 24px;
}

.search-modal__submit {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 14px;
  background: #1a3a5c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.search-modal__submit:hover {
  background: #152d4a;
}

.search-modal__error {
  margin-top: 12px;
  color: #dc2626;
  font-size: 14px;
}

.search-modal__success {
  display: none;
  text-align: center;
  color: #1a1a1a;
  font-size: 18px;
}

.search-modal__success.is-visible {
  display: block;
}

.search-modal__success-check {
  display: block;
  color: #16a34a;
  font-size: 28px;
  margin-bottom: 8px;
}

/* —— Responsive —— */

@media (max-width: 767px) {
  .site-header {
    position: relative;
  }

  .nav-inner {
    flex-direction: column;
    padding: 20px 24px;
  }

  .logo {
    width: auto;
    height: auto;
    max-height: 56px;
  }

  .logo img {
    height: 52px !important;
    width: auto !important;
    max-width: 220px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .headline {
    font-size: clamp(2rem, 8vw, 52px);
  }

  .hero__inner {
    padding: 24px 24px 0;
  }

  .section-inner,
  .body-copy__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .social-proof .section-inner,
  .founder .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .how .section-inner {
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .trust-signals__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .trust-item {
    width: 50%;
    flex: 0 0 50%;
  }

  .comparison__inner {
    padding: 60px 24px;
  }

  .final-cta__inner {
    padding: 60px 24px;
  }

  .site-footer {
    padding: 30px 24px;
  }

  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .how-cards {
    grid-template-columns: 1fr;
  }

  .founder__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .founder__photo {
    width: 100%;
    max-width: 300px;
  }

  .founder__content {
    text-align: center;
  }

  .founder__cta {
    margin-left: auto;
    margin-right: auto;
  }

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