@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --primary: #FF0000;
  --secondary: #00247D;
  --yellow: #facc15;
  --trustpilot: #00B67A;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --font: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 50;
  transition: all 0.3s ease; padding: 0.75rem 0;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1); padding: 0.5rem 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 2.5rem; object-fit: contain; transition: filter 0.3s; filter: brightness(0) invert(1); }
.nav.scrolled .nav-logo { filter: none; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: none; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700; color: white; transition: color 0.2s;
}
.nav.scrolled .nav-phone { color: var(--primary); }
.nav-phone svg { width: 1rem; height: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; cursor: pointer;
  transition: all 0.2s; border: none; line-height: 1;
}
.btn-pill { border-radius: 9999px; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.btn-md { padding: 0.7rem 1.75rem; font-size: 0.9rem; }
.btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.25rem; font-size: 1rem; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: rgba(255,0,0,0.9); transform: translateY(-2px); }
.btn-white-pill { background: white; color: var(--primary); border-radius: 9999px; }
.btn-white-pill:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white {
  background: rgba(255,255,255,0.1); color: white;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 9999px;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.btn-white-on-red { background: white; color: var(--primary); border-radius: 9999px; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-white-on-red:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

/* ---- HERO ---- */
.hero { position: relative; padding: 6rem 0 2.5rem; display: flex; align-items: flex-start; min-height: auto; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(255,0,0,0.4), rgba(0,0,0,0.65)); z-index: 1; }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 48rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
.hero h1 { font-size: 2.5rem; font-weight: 900; color: white; line-height: 1.05; margin-bottom: 1rem; letter-spacing: -0.02em; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; max-width: 32rem; line-height: 1.6; }
.hero-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 600; }
.trust-item { display: flex; align-items: center; gap: 0.375rem; }
.trust-item svg { width: 1rem; height: 1rem; }

/* ---- SOCIAL PROOF BAR ---- */
.social-proof { padding: 1.5rem 0 0; background: white; border-bottom: 1px solid var(--gray-200); }
.sp-top { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.sp-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); }
.rating-group { display: flex; align-items: center; gap: 1.5rem; }
.rating-item { display: flex; align-items: center; gap: 0.5rem; }
.rating-item > svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 0.875rem; height: 0.875rem; }
.star-y { fill: var(--yellow); color: var(--yellow); }
.star-g { fill: var(--trustpilot); color: var(--trustpilot); }
.rating-text { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); }
.divider-v { width: 1px; height: 2rem; background: var(--gray-200); }
.stat-val { font-size: 1.25rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); }

/* Marquee */
.marquee-wrap { margin-top: 1rem; overflow: hidden; position: relative; }
.marquee-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 3rem; background: linear-gradient(to right, white, transparent); z-index: 1; pointer-events: none; }
.marquee-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 3rem; background: linear-gradient(to left, white, transparent); z-index: 1; pointer-events: none; }
.marquee-track { display: flex; width: max-content; animation: marquee 60s linear infinite; opacity: 0.8; }
.marquee-city { font-size: 1.25rem; font-weight: 900; white-space: nowrap; padding: 0.25rem 1.5rem; }
.marquee-dot { color: var(--primary); margin: 0 0.25rem; }

/* ---- SECTIONS ---- */
.section-muted { background: #f9fafb; }
.section-white { background: white; }
.section-primary { background: var(--primary); }
.section-pad { padding: 3.5rem 0; }
.section-hdr { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.section-title { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.section-title-white { color: white; }
.section-sub { font-size: 1rem; color: var(--gray-500); line-height: 1.6; }

/* ---- PROBLEM/SOLUTION ---- */
.ps-grid { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
.problem-card { background: var(--gray-900); padding: 1.5rem; border-radius: 1rem; }
.solution-card { background: var(--primary); padding: 1.5rem; border-radius: 1rem; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(255,0,0,0.25); }
.solution-card::after { content: ''; position: absolute; top: 0; right: 0; width: 10rem; height: 10rem; background: rgba(255,255,255,0.05); border-radius: 50%; filter: blur(2rem); pointer-events: none; }
.card-badge { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.card-badge-text { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.badge-red { color: #ff0000; }
.badge-yellow { color: #fde047; }
.card-badge svg { width: 1rem; height: 1rem; }
.neos-badge-logo { height: 1rem; filter: brightness(0) invert(1); display: inline-block; vertical-align: middle; }
.ps-list { display: flex; flex-direction: column; gap: 1rem; }
.ps-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.ps-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; }
.ps-item-title { font-weight: 700; }
.ps-item-title-w { color: white; }
.ps-item-desc { font-size: 0.875rem; margin-top: 0.125rem; }
.ps-desc-dark { color: var(--gray-400); }
.ps-desc-light { color: rgba(255,255,255,0.75); }
.cta-center { text-align: center; margin-top: 2rem; }

/* ---- NEOS PRODUCT ---- */
.neos-layout { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.neos-img-side { width: 100%; position: relative; }
.neos-img-frame { border-radius: 1.5rem; overflow: hidden; background: #f3f4f6; }
.neos-mib { position: absolute; bottom: -1rem; right: -1rem; background: white; padding: 0.75rem; border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border: 1px solid var(--gray-100); }
.neos-mib img { width: 5rem; height: auto; }
.neos-copy { width: 100%; }
.neos-copy p { font-size: 1rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.5rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.feature-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-icon { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,0,0,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.feature-title { font-weight: 700; font-size: 0.875rem; }
.feature-desc { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.125rem; }

/* ---- AS SEEN ON ---- */
.as-seen-on { border-bottom: 1px solid var(--gray-100); }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem 3.5rem; }
.logos-row img { height: 3rem; object-fit: contain; }

/* ---- WHY TRUST ---- */
.why-section { padding-top: 3.5rem; padding-bottom: 0; position: relative; overflow: hidden; }
.why-waves { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.why-waves svg { position: absolute; width: 100%; height: 100%; }
.why-grid { display: grid; gap: 2.5rem; align-items: end; position: relative; z-index: 1; }
.why-copy { padding-bottom: 3.5rem; }
.why-title { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 0.75rem; }
.why-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-text strong { display: block; font-weight: 700; color: white; }
.why-item-text p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.125rem; }
.why-team { display: none; align-items: flex-end; justify-content: center; align-self: flex-end; }
.why-team img { width: 100%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-img { width: 11rem; height: 11rem; border-radius: 50%; overflow: hidden; border: 4px solid white; box-shadow: 0 4px 16px rgba(0,0,0,0.15); margin-bottom: 1.25rem; }
.step-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.step-title { font-size: 1.1rem; font-weight: 900; color: var(--primary); margin-bottom: 0.375rem; }
.step-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.platform-badges { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.platform-badge { display: flex; align-items: center; gap: 0.5rem; background: white; border: 1px solid var(--gray-200); border-radius: 0.75rem; padding: 0.625rem 1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.platform-badge svg { width: 1.25rem; height: 1.25rem; }
.badge-rating-label { font-size: 0.75rem; font-weight: 700; color: var(--gray-700); margin-top: 1px; }
.reviews-grid { display: grid; gap: 1.25rem; max-width: 64rem; margin: 0 auto; }
.review-card { background: #f9fafb; border: 1px solid var(--gray-200); border-radius: 1rem; padding: 1.5rem; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.review-top svg { width: 1.25rem; height: 1.25rem; opacity: 0.6; }
.review-text { font-size: 1rem; font-style: italic; color: var(--gray-900); line-height: 1.6; margin-bottom: 1rem; }
.review-footer { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,0,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 900; font-size: 0.875rem; flex-shrink: 0; }
.review-name { font-weight: 700; color: var(--primary); font-size: 0.875rem; }
.review-replaced { font-size: 0.75rem; color: var(--gray-500); }

/* ---- FAQ ---- */
.faq-box { background: white; border-radius: 1.25rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06); border: 1px solid var(--gray-200); padding: 1rem 1.5rem; max-width: 48rem; margin: 0 auto; }
.acc-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.acc-item:last-child { border-bottom: none; }
.acc-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-size: 1rem; font-weight: 700; color: var(--primary); cursor: pointer; background: none; border: none; text-align: left; font-family: var(--font); gap: 1rem; }
.acc-trigger:hover { color: rgba(255,0,0,0.8); }
.acc-chevron { flex-shrink: 0; width: 1.25rem; height: 1.25rem; transition: transform 0.25s ease; }
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-body-inner { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; padding-bottom: 1rem; }
.acc-item.open .acc-body { max-height: 300px; }

/* ---- FINAL CTA ---- */
.final-cta { position: relative; overflow: hidden; padding: 3.5rem 0; text-align: center; }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: grayscale(1); }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(255,0,0,0.9); }
.final-cta-inner { position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; }
.final-cta h2 { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 1rem; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }
.final-btns { display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.final-note { margin-top: 1.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.final-note svg { width: 1rem; height: 1rem; }

/* ---- MODAL ---- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-box { position: relative; background: white; border-radius: 1.5rem; box-shadow: 0 25px 60px rgba(0,0,0,0.3); width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; z-index: 1; }
.modal-inner { padding: 2rem; }
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: #f3f4f6; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: background 0.2s; z-index: 2; }
.modal-close-btn:hover { background: var(--gray-200); }
.modal-close-btn svg { width: 1.25rem; height: 1.25rem; color: #4b5563; }
.modal-logo { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.modal-logo img { height: 2.5rem; object-fit: contain; }
.modal-title { font-size: 1.25rem; font-weight: 900; color: var(--gray-900); text-align: center; margin-bottom: 0.25rem; }
.modal-subtitle { font-size: 0.875rem; color: var(--gray-500); text-align: center; margin-bottom: 1.25rem; line-height: 1.6; }
.modal-bullets { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.modal-bullet { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4b5563; }
.modal-bullet svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 0; }
.form-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.form-input, .form-select {
  width: 100%; border: 1.5px solid var(--gray-300); border-radius: 0.5rem;
  padding: 0.625rem 0.75rem; font-size: 0.875rem; font-family: var(--font);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: white;
}
.form-input:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,0,0,0.1); }
.form-fields { display: flex; flex-direction: column; gap: 1rem; }
.btn-submit { width: 100%; padding: 0.875rem; font-size: 1rem; font-weight: 900; border-radius: 9999px; background: var(--primary); color: white; cursor: pointer; border: none; font-family: var(--font); box-shadow: 0 4px 16px rgba(255,0,0,0.3); transition: all 0.2s; margin-top: 0.5rem; }
.btn-submit:hover { background: rgba(255,0,0,0.9); transform: translateY(-1px); }
.form-privacy { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 0.5rem; }
.modal-success { text-align: center; padding: 2rem 0; display: none; }
.modal-success.show { display: block; }
.modal-form.hidden { display: none; }
.success-icon { width: 4rem; height: 4rem; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.success-icon svg { width: 2rem; height: 2rem; color: #16a34a; }
.modal-success h3 { font-size: 1.5rem; font-weight: 900; color: var(--gray-900); margin-bottom: 0.5rem; }
.modal-success p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ---- FOOTER ---- */
.footer { background: var(--gray-900); color: #d1d5db; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { height: 2.5rem; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.875rem; color: #9ca3af; max-width: 20rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #d1d5db; transition: background 0.2s, color 0.2s; }
.footer-social:hover { background: var(--primary); color: white; }
.footer-social svg { width: 1rem; height: 1rem; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 0.75rem; }
.footer-list { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.875rem; color: #9ca3af; }
.footer-contact-row { display: flex; align-items: center; gap: 0.5rem; }
.footer-contact-row svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; font-size: 0.75rem; color: #6b7280; text-align: center; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a:hover { color: white; }

/* ---- ANIMATIONS ---- */
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:0.5 } }
@keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:translateY(0) } }
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* ---- RESPONSIVE ---- */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
  .final-btns { flex-direction: row; }
  .nav-phone { display: flex; }
}
@media (min-width: 768px) {
  .hero { padding: 7rem 0 3rem; }
  .hero h1 { font-size: 3.5rem; }
  .sp-top { flex-direction: row; justify-content: space-between; }
  .ps-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-team { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .section-title { font-size: 2.25rem; }
  .final-cta h2 { font-size: 2.75rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
  .neos-layout { flex-direction: row; align-items: center; }
  .neos-img-side { width: 50%; }
  .neos-copy { width: 50%; }
}
