:root {
   
    --bg-dark: #000000;
    --bg-light: #181717; /* Slightly lighter black for center */
    --bg-gradient-size: 90%; /* Adjustable gradient size */
    --accent: #96e035;
    --text-light: #f0f0f0;
    --text-muted: #999;
    --btn-primary: #96e035;
    --btn-text: #000;
    --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-secondary: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background: radial-gradient(
        circle at center,
        var(--bg-light) 0%,
        var(--bg-dark) var(--bg-gradient-size)
      );
      color: var(--text-light);
      font-family: var(--font-secondary);
      line-height: 1.6;
      min-height: 100vh;
}

.bg-svg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-image: url('bg.svg');
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    overflow: hidden;
  }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.logo sub {
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--btn-text);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(150, 224, 53, 0.2);
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
      padding: 1rem 1.25rem;
  }

  .logo {
      font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .navbar {
      padding: 0.875rem 1rem;
  }

  .logo {
      font-size: 1.1rem;
  }

  .logo sub {
      font-size: 0.65em;
  }

  .btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .navbar {
      padding: 0.75rem 0.875rem;
  }

  .logo {
      font-size: 1rem;
  }

  .btn {
      padding: 0.5rem 0.875rem;
      font-size: 0.85rem;
  }
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

.hero-text {
    flex: 1;
    min-width: 300px;  /* Minimum width before wrapping */
    max-width: 550px;
}

.hero h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero p {
    font-family: var(--font-secondary);
    font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.subtext {
  color: var(--text-muted);
}

.trust-list {
  list-style: none;
  margin-top: 1rem;
}

.trust-list li {
  margin-bottom: 0.5rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Add glow effect */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(
        ellipse at center,
        rgba(157, 206, 91, 0.3) 0%,
        rgba(157, 206, 91, 0) 70%
    );
    filter: blur(10px);
    pointer-events: none;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
  /* First, update the hamburger styles for better appearance */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    z-index: 100;
  }
  
  .hamburger span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  /* Tablet and smaller desktop screens */
@media (max-width: 1024px) {
    .container {
      padding: 0 1.5rem;
    }
  
    .navbar {
      padding: 1.2rem 1.5rem;
    }
  
    .hero {
      gap: 1.5rem;
      padding: 1.5rem;
    }
  
    .hero-text {
      max-width: 50%;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .hero-image img {
      max-width: 350px;
    }
  }
  
  /* Mobile devices */
  @media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .navbar {
        padding: 1rem 1.25rem;
    }

    /* Hero section */
    .hero {
      display: flex;
      flex-direction: column;
      padding: 1.5rem 0;
      gap: 1.5rem;
  }

  .hero-text {
      display: flex;
      flex-direction: column;
      width: 100%;
  }

  /* Reorder elements using flex order */
  .hero h1 {
      order: 1;
      font-size: 1.8rem;
      margin-bottom: 1rem;
  }

  .hero p {
      order: 2;
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
  }

  .subtext {
      order: 3;
      font-size: 0.9rem;
      margin-bottom: 1rem;
  }

  .hero-image {
      order: 4;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0.5rem 0;
  }

  .hero-image img {
      max-width: 200px;
      width: 100%;
      object-fit: contain;
  }

  .cta-buttons {
      order: 5;
      width: 100%;
      margin-top: 1rem;
  }

  .trust-list {
      order: 6;
      margin-top: 1.5rem;
      font-size: 0.85rem;
  }

  /* Adjust glow effect */
  .hero-image::after {
      width: 80%;
      height: 20px;
      bottom: -10px;
  }

  .btn {
      width: 100%;
      padding: 0.8rem 1.5rem;
      font-size: 0.95rem;
      text-align: center;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero h1 {
      font-size: 1.6rem;
  }

  .hero p {
      font-size: 0.9rem;
  }

  .hero-image img {
      max-width: 180px;
  }
}

.why-sales-section {
  background: transparent;
  padding: 4rem 2rem;
  color: #e0e0e0;
  text-align: left;
}

.why-sales-content {
  max-width: 800px;
  margin: auto;
}

.why-sales-content h2 {
  color: #96e035;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.why-sales-content .lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.why-sales-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #ccc;
}

.mistakes-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.mistakes-list li {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #96e035;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-radius: 6px;
}

.truth {
  font-weight: 500;
  font-style: italic;
  color: #ddd;
  margin-bottom: 2rem;
}

.cta-btn.green {
  display: inline-block;
  background-color: #96e035;
  color: #111;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn.green:hover {
  background-color: #7bc722;
}

@media (max-width: 768px) {
  .why-sales-content {
    padding: 0 1rem;
  }
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.our-solution-section {
  padding: 4rem 2rem;
  color: #e0e0e0;
  background: transparent;
}

.our-solution-section h2 {
  color: #96e035;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.our-solution-section .intro {
  font-weight: 600;
  color: #96e035;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.product {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #96e035;
  padding: 1rem;
  border-radius: 6px;
}

.highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ccc;
  margin: 2rem auto;
  text-align: center;
  max-width: 700px;
}

.benefits {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.9;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.benefits p:first-child {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  background: rgba(150, 224, 53, 0.1);
}

.benefits ul {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefits li {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 0;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.benefits li strong {
  color: var(--accent);
}

.benefits p:last-child {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits p:last-child strong {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .benefits {
      padding: 2rem 1.5rem;
      margin: 2rem auto;
  }

  .benefits p:first-child {
      font-size: 1.2rem;
      padding: 0.4rem 1.2rem;
  }

  .benefits ul {
      grid-template-columns: 1fr;
      gap: 1rem;
  }

  .benefits li {
      padding: 1rem;
      font-size: 0.95rem;
  }

  .benefits p:last-child {
      font-size: 1rem;
      margin-top: 1.5rem;
  }
}

.testimonial {
  max-width: 700px;
  margin: 3rem auto;
  text-align: center;
  font-style: italic;
  color: #bbb;
  border-left: none;
  padding: 0;
}
.product-grid-with-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
  text-align: center;
}

.product-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
  border-radius: 8px;
}

.product-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.product-card:hover {
  transform: translateY(-5px);
}

.cta-btn.green {
  display: block;
  width: fit-content;
  margin: 2rem auto;
  padding: 0.8rem 2rem;
}
@media (max-width: 768px) {
  .container {
      padding: 0 1.25rem;
  }

  .benefits ul {
      max-width: 100%;
  }

  .benefits li {
      text-align: left;
      justify-content: flex-start;
  }
}



.how-it-works-section {
  padding: 4rem 2rem;
  background: transparent;
  color: #e0e0e0;
}
.how-it-works-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #96e035;
  margin-bottom: 1rem;
}
.how-it-works-section .intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  color: #fff;
  border-left: 4px solid #96e035;
}
.step-card.purple {
  border-left-color: #81007F;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #96e035;
}
.step-card.purple h3 {
  color: #96e035;
}
.step-card i {
  margin-right: 0.5rem;
}
.bottom-note {
  text-align: center;
  font-size: 1rem;
  margin: 1.5rem auto;
}


.proof-section {
  padding: 4rem 2rem;
  background: transparent;
  color: #e0e0e0;
}
.proof-section h2 {
  color: #96e035;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.proof-section .intro {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.proof-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  color: #ccc;
  transition: all 0.3s ease;
}
.proof-box summary {
  cursor: pointer;
  font-size: 1.05rem;
  color: #96e035;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proof-box summary::-webkit-details-marker {
  display: none;
}
.proof-box[open] summary .arrow {
  transform: rotate(180deg);
}
.proof-box .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}
.proof-box p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ddd;
}
.proof-section .note {
  text-align: center;
  margin: 2rem auto;
  font-style: italic;
  font-size: 0.95rem;
  color: #ccc;
}


.plan-section {
  padding: 4rem 2rem;
  background: transparent;
  color: #e0e0e0;
}

.plan-section h2 {
  text-align: center;
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

.plan-section .intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.plan-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  color: #e0e0e0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.plan-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.plan-box summary {
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-box summary i {
  font-size: 1.4rem;
  color: var(--accent);
}

.plan-box summary strong {
  flex: 1;
  font-family: var(--font-primary);
}

.plan-box p {
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.plan-box ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.plan-box li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.plan-box li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.plan-box li strong {
  color: var(--accent);
  font-weight: 600;
}

.plan-box ul ul {
  margin: 1rem 0 1rem 1rem;
}

.plan-box .cta-btn {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.plan-box .cta-btn:hover {
  transform: translateY(-2px);
}

.bottom-help {
  margin-top: 4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 12px;
}

.bottom-help p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.bottom-help i {
  color: var(--accent);
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .plan-section {
    padding: 3rem 1.5rem;
  }

  .plan-section h2 {
    font-size: 2rem;
  }

  .plan-box {
    padding: 1.5rem;
  }

  .plan-box summary {
    font-size: 1.1rem;
  }

  .bottom-help {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}



.summary-section {
  padding: 4rem 2rem;
  color: #e0e0e0;
  background: transparent;
}

.summary-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

.summary-section .intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.summary-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
}

.summary-image {
  position: relative;
}

.summary-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(150, 224, 53, 0.2) 0%,
    rgba(150, 224, 53, 0) 70%
  );
  filter: blur(10px);
}

.summary-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.summary-image img:hover {
  transform: translateY(-10px);
}

.summary-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.summary-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.summary-list li:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.08);
}

.summary-list li strong {
  color: var(--accent);
  font-weight: 600;
}

.summary-footer {
  text-align: center;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.summary-footer p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.summary-footer .cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 968px) {
  .summary-content {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .summary-image {
    order: -1;
    text-align: center;
  }

  .summary-image img {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .summary-section {
    padding: 3rem 1.25rem;
  }

  .summary-section h2 {
    font-size: 2rem;
  }

  .summary-content {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .summary-list li {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .summary-footer {
    padding: 1.5rem;
  }

  .summary-footer p {
    font-size: 1.1rem;
  }
}


.faq-section {
  padding: 4rem 2rem;
  background: transparent;
  color: #e0e0e0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 3rem;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-list details:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  user-select: none;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  color: var(--accent);
  font-size: 1.2rem;
  opacity: 0.9;
}

.faq-list summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 2.7rem;
}

.faq-list .cta-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.faq-list .cta-link:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1.25rem;
  }

  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-list details {
    padding: 1.25rem;
  }

  .faq-list summary {
    font-size: 1rem;
    gap: 0.75rem;
  }

  .faq-list p {
    font-size: 0.95rem;
    padding-left: 2.2rem;
  }
}


.urgency-banner {
  background: rgba(255, 0, 0, 0.1);
  border-top: 2px solid #ff4c4c;
  border-bottom: 2px solid #ff4c4c;
  padding: 1rem 1.5rem;
  text-align: center;
  color: #ff4c4c;
  font-weight: 600;
  font-size: 1rem;
}
.urgency-banner .cta-btn {
  margin-top: 0.8rem;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #96e035;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.urgency-banner .cta-btn:hover {
  background-color: #7cb528;
}
.urgency-banner i {
  margin-right: 0.5rem;
  color: #ff4c4c;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 26px;
  padding: 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1da851;
  transform: scale(1.1);
}

.site-footer {
  background-color: #091100;
  color: #fff;
  padding: 40px 5% 30px;
  text-align: center;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.footer-brand {
  font-weight: 600;
  font-size: 1rem;
  color: #bbb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-socials a {
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-email {
  color: #bbb;
  font-size: 0.95rem;
  margin-top: 10px;
}

.footer-email a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-email a:hover {
  color: #fff;
}


/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-socials {
    gap: 16px;
  }
}
