﻿:root {
  --primary: #0D6EFD;
  --primary-dark: #0A4CB8;
  --secondary: #1A2B4C;
  --accent: #F57C00;
  --accent-hover: #E65100;
  --surface: #FFFFFF;
  --surface-alt: #F8FAFC;
  --surface-subtle: #EDF2F7;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --success: #16A34A;
  --error: #DC2626;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --container-w: 1200px;
}

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

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--surface);
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
}

.nav-link:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #FFFFFF;
}

.btn-accent {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  background-color: #DBEAFE;
  color: var(--primary-dark);
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 800;
}

.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--surface);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.visual-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #DCFCE7;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sections Common */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--surface-alt);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
}

/* Value Props / Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background-color: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background-color: #EFF6FF;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
}

.step-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  background-color: var(--secondary);
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Products / Features */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.product-specs li {
  font-size: 13px;
  color: var(--text-main);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--secondary);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 18px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-transparency-box {
  background-color: #EFF6FF;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--secondary);
}

.about-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Lead Form Section */
.form-section {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 80px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.form-info h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.form-info p {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-perks li {
  font-size: 14.5px;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-wrapper {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-main);
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.form-checkbox-group {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 17px;
  height: 17px;
}

.form-checkbox-group label {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
}

.form-reassurance {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-feedback {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.form-feedback.success {
  background-color: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

.form-feedback.error {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* Footer */
.footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 64px 0 24px 0;
  font-size: 13.5px;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.back-to-top {
  background-color: #1E293B;
  color: #FFFFFF;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 12.5px;
}

.back-to-top:hover {
  background-color: var(--primary);
}

/* Legal Pages Styling */
.legal-content {
  padding: 64px 0 96px 0;
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 32px;
  margin-bottom: 14px;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 22px;
  margin-bottom: 10px;
}

.legal-content p, .legal-content ul, .legal-content ol {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-box {
  background-color: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #0F172A;
  color: #F8FAFC;
  border-top: 1px solid #334155;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  padding: 20px 0;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.55;
  max-width: 820px;
}

.cookie-text a {
  color: #93C5FD;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.cookie-btn-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn-decline {
  background-color: transparent;
  color: #94A3B8;
  border: 1px solid #475569;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.cookie-btn-decline:hover {
  background-color: #1E293B;
  color: #FFFFFF;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits-grid, .products-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav.open {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 32px;
  }
  .benefits-grid, .products-grid, .testimonials-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}
