:root {
  --bg: #060606;
  --card: #0f0f0f;
  --accent: #e50914;
  --accent-yellow: #f5c400;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --border: rgba(255, 255, 255, 0.1);
  --success: #19c37d;
  --error: #ff5f52;
  --shadow-strong: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* We stack a dark gradient ON TOP of the image so text is readable */
  background: 
    linear-gradient(to bottom, rgba(6, 6, 6, 0.85), rgba(6, 6, 6, 0.95)),
    url('https://images.unsplash.com/photo-1542282088-fe8426682b8f?q=80&w=2574&auto=format&fit=crop');
  
  /* This ensures the image covers the whole screen and stays fixed when you scroll */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand img {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid var(--border);
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.7), rgba(229, 9, 20, 0.35));
  box-shadow: var(--shadow-soft);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.lang-toggle button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle button.active {
  background: var(--accent);
  border-color: var(--accent);
}

.lang-toggle button:hover {
  border-color: var(--accent);
  color: #fff;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
  padding: 60px 0 50px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(0, 0, 0, 0.75));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-strong);
}

.kicker {
  color: var(--accent-yellow);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(120deg, #e50914, #b00710);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(229, 9, 20, 0.15);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.14), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 8px;
}

.section {
  padding: 36px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.why-points .card {
  border-left: 4px solid var(--accent);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonials .card {
  border: 1px solid rgba(245, 196, 0, 0.35);
}

.quote {
  font-style: italic;
}

.cta-banner {
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.9), rgba(0, 0, 0, 0.75));
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-strong);
}

/* --- FOOTER & DEVELOPER LOGO --- */
.footer {
  padding: 40px 0 50px; /* More space at bottom for the logo */
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center; /* This centers all text */
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Ensures everything stacks in the center */
}

.footer .disclaimers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px; /* Keeps text from getting too wide/hard to read */
  margin: 0 auto;   /* Centers the block */
}

.footer small {
  color: var(--muted);
  line-height: 1.5;
}

.developer-badge {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; 
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.developer-badge:hover {
  opacity: 1;
}

.developer-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  
  /* NEW: Removes extra vertical space inside the text line */
  line-height: 1; 
  margin: 0;
  padding: 0;
}

.developer-badge img {
  height: 220px; 
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  
  /* NEW: If it's still too far, change this -5px to -10px or -15px */
  margin-top: -25px; 
}

.developer-badge:hover img {
  filter: grayscale(0%);
}
.ribbon {
  position: absolute;
  top: 12px;
  right: -32px;
  background: var(--accent-yellow);
  color: #000;
  padding: 6px 38px;
  transform: rotate(12deg);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-header:hover {
  background: rgba(229, 9, 20, 0.12);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px;
  color: var(--muted);
}

.accordion-item.active .accordion-content {
  padding: 0 18px 16px;
}

.page-hero {
  padding: 46px 0 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.input, .file-input, textarea, select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  transition: var(--transition);
}

.input:focus, .file-input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.25);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.error {
  color: var(--error);
  font-size: 13px;
}

.success-banner {
  background: rgba(25, 195, 125, 0.12);
  border: 1px solid rgba(25, 195, 125, 0.5);
  color: #c8ffe2;
  padding: 14px;
  border-radius: 12px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.modal.show {
  display: flex;
}

.file-hint {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 36px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* --- NEW ADDITIONS FOR CONVERSION --- */

/* 1. Trust Badges (Under Hero Button) */
.trust-row {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--success);
}

/* 2. Visual Timeline (Replaces the old cards in How It Works) */
.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
  gap: 20px;
}
/* The line connecting steps */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}
.step-icon {
  width: 50px;
  height: 50px;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.step-content h4 {
  margin: 0 0 8px 0;
  color: var(--accent-yellow);
  font-size: 16px;
}
.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
/* --- PHONE CALL FLOAT BUTTON --- */
.call-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  /* Using your variable for green, or you can use var(--accent) for red */
  background-color: var(--success); 
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.call-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
/* 4. Pricing / Trust Banner */
.info-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.info-item {
  text-align: center;
}
.info-item strong {
  display: block;
  font-size: 24px;
  color: var(--text);
}
.info-item span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* FIXED: Default to hidden, only show when data-open="true" */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
  }

  /* This tells the menu to appear only when the button is clicked */
  .mobile-menu[data-open="true"] {
    display: flex;
  }
}
/* --- MAP SECTION --- */
.map-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.map-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text);
}

.map-info p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.address-box {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.address-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent); /* Red icon */
  flex-shrink: 0;
  margin-top: 4px;
}

.map-frame {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;

}

@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
  }
  .map-frame {
    height: 300px;
  }
}
/* --- HERO CHECKLIST --- */
.hero-checklist {
  list-style: none; /* Removes default dots */
  padding: 0;
  margin: 0;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.hero-checklist li svg {
  width: 18px;
  height: 18px;
  fill: var(--success); /* Makes the checkmarks green */
  flex-shrink: 0;
}