*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1b3d;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #16a34a;
  --green-light: #dcfce7;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --white: #ffffff;
  --star: #f59e0b;
  --shadow: 0 4px 24px rgba(15,27,61,0.10);
  --shadow-lg: 0 8px 40px rgba(15,27,61,0.14);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { color: white; }

.logo span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=60') center/cover no-repeat;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 3rem 1.5rem 2rem;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

/* FORM CARD */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.price-box {
  background: var(--green-light);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-box p {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-box .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.btn-delivery {
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--gray-600);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.form-group { margin-bottom: 1.1rem; }

.form-input {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: white;
}

.form-input::placeholder { color: var(--gray-400); }

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}

.email-hint {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.btn-main {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-main:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

/* FEATURES */
.features {
  background: var(--gray-50);
  padding: 4rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg { color: var(--blue); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* INFO SECTIONS */
.info-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .info-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

.info-box {
  background: var(--gray-50);
  border-radius: 18px;
  padding: 2rem;
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.info-box-icon {
  width: 36px;
  height: 36px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.info-box p, .info-box li {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.info-box ul { list-style: none; margin-top: 0.75rem; }

.info-box ul li {
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.info-box ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

/* REPORT PREVIEW */
.report-section {
  background: var(--gray-50);
  padding: 4rem 2rem;
}

.report-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .report-inner { grid-template-columns: 1fr; }
}

.report-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.report-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.check-list { list-style: none; margin-bottom: 2rem; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg { color: var(--green); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover { background: var(--blue-dark); }

/* Fake PDF mockup */
.report-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  font-size: 0.82rem;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--gray-200);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.mockup-logo {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}

.mockup-logo span { color: var(--blue); }

.mockup-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.mockup-row strong { color: var(--gray-800); }

.mockup-result {
  margin-top: 1rem;
  text-align: center;
  background: var(--green-light);
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 0.75rem;
  font-weight: 700;
  color: var(--green);
  font-size: 0.9rem;
}

.mockup-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  color: var(--gray-400);
  font-size: 0.78rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testi-card {
  background: var(--gray-50);
  border-radius: 18px;
  padding: 2rem;
  text-align: left;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--star);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-quote {
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.avatar.orange { background: #f97316; }
.avatar.car {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.2rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* FOOTER */
footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 3rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0.75rem 0 1rem;
  max-width: 340px;
}

.footer-meta {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer-meta strong { color: var(--gray-800); }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  max-width: 1100px;
  margin: 0 auto;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-btn:hover { transform: scale(1.1); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.7s ease both; }
.form-card { animation: fadeUp 0.7s 0.15s ease both; }