:root {
      --primary: hsl(263 70% 60%);
      --primary-dim: hsla(263, 70%, 60%, 0.26);
      --accent: #eb4a9b;
      --green: rgb(74, 222, 128);
      --green-dim: rgba(74, 222, 128, 0.28);
      --bg: #0e0e10;
      --card: #1c1c1f;
      --text: #f4f4f5;
      --muted: #aaa;
      --border-width: 1px;
      --radius: 12px;
      --max-width: 1400px;
      --bg: #111216;
      --surface: #1a1b20;
      --border: rgba(255,255,255,0.08);
      --border-open: rgba(255,255,255,0.14);
      --text-primary: #f0f1f5;
      --text-secondary: #6b7280;
      --text-answer: #9ca3af;
      --accent: #818cf8;
    }

   /* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));

}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c0c10;
  color: white;
}

 ul li {
    display: flex;
    align-items: center;
    align-content: center;
    list-style-type: none;
    line-height: 2rem;
}

.check-box {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    flex-wrap: nowrap;
    margin: 3rem;
}

.flex, .items-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    margin: 0.5rem
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin: auto;
  max-width: 1400px;
  padding: 1rem 2rem;
  background: transparent;
  z-index: 10;
  top:0
}

.logo-new {
  max-width: 170px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #e754e5, #3f86f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span, .heading-color, span.highlight {
  /*background: linear-gradient(90deg, #e754e5, #3f86f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  background: linear-gradient(45deg, #8b5cf6, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }          
  50% { background-position: 100% 50%; }          
}        


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sign-in {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.get-started {
  background-color: #8b5cf6;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.get-started:hover {
  background-color: #7c3aed;
}

.sub-heading span {
    display: inline-flex;
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0.1rem 0.4rem;
    /*border: solid 1px var(--green);*/
    border-color: var(--green);
    border-radius: var(--radius);
    color: var(--green);
    background-color: var(--green-dim);
}


.gradient-border
 {
    position: relative;
    border-color: var(--primary-dim);
    border: 1px solid
  
}


    .hero {
      padding: 6rem 2rem 4rem;
      text-align: center;
      z-index: -1;
      max-width: 100%;
      /*background: radial-gradient(circle, #1c1c1f, #0e0e10);*/
    }

    .hero-gradient
    {
      background: radial-gradient(rgba(139, 92, 246, 0.15) 0%, transparent 60%), radial-gradient(at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%), radial-gradient(at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 500;
    }

   /* .hero span {
      color: var(--accent);
    }*/

    .hero p {
      max-width: 700px;
      margin: 1rem auto 2rem;
      color: var(--muted);
      font-size: 24px;
    }

    .btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      background: linear-gradient(45deg, #8b5cf6, #ec4899);
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

     .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
      }
        
      .btn:hover::before {
        left: 100%;
      }

      .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
      }

  .btn.secondary {
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .btn.secondary:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
  }


/* logos for smooth scroll effect */
.logo-slider {
  overflow: hidden; /* Hide overflowing logos for smooth scroll effect */
  white-space: nowrap; /* Prevent line break */
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 0; /* Vertical spacing */
  background: transparent;
  border-top: 1px solid var(--card);
  border-bottom: 1px solid var(--card);
}

.logo-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 25s linear infinite; /* Continuous scrolling effect */
}

.logo-track img {
  height: 60px;
  margin: 0 3rem; /* Horizontal spacing between logos */
  vertical-align: middle;
  transition: transform 0.3s ease; /* Smooth scale on hover */
}

/* Enlarge logo slightly on hover for interactivity */
.logo-track img:hover {
  transform: scale(1.2);
}

/* Keyframes to create leftward scrolling effect */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move left by 50% of the track width */
  }
}

/* End logos for smooth scroll effect */

    section {
      padding: 4rem 2rem;
      max-width: var(--max-width);
      margin: auto;
    }

    h2 {
      font-size: 3rem;
      margin-bottom: 1.2rem;
      color: white;
      text-align: center;
    }

    .section-sub {
      max-width: 700px;
      margin: 1rem auto 2rem;
      color: var(--muted);
      font-size: 1.2rem;
      text-align: center;
    }

    .cards {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      display: flex;
      position: relative;
      justify-content: center;
      flex-direction: column;
      border: 1px solid var(--primary-dim);
      transition: transform 0.3s ease;
    }

    #services .card:hover {
      transform: translate(0, -10px);
      box-shadow:  0px 10px 15px var(--primary-dim);
      backdrop-filter: blur 4px;
    }

    .card.featured:hover, #pricing .card:hover {
      border-color: #a855f7;
      transform: scale(1.05);
    }

    .card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #8b5cf6, #a855f7);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 1rem;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .card-icon-box {
      display:flex;
      padding: 1rem;
      justify-content: center;
      align-items: center;
      background-color: var(--primary-dim);
      width: 4rem;
      height: 4rem;
      border-radius: var(--radius);
      margin-bottom: 1.5rem;
    }

    .card h3 {
      color: var(--text);
      margin-bottom: 1rem;
      font-size: 1.5rem;
      font-weight: 500;
    }

    .card-sub, .faq-answer {
      color: var(--muted);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .card img {
      max-width: 350px;
      margin: auto;
    }

    .post-card {
      border-radius: var(--radius);
      display: flex;
      position: relative;
      flex-direction: column;
    }

    .post-card img {
      max-height: 400px;
      max-width: 100%;
      align-items: right;
      display: block;
      margin: auto;

    }

  
    .pricing-list, .service-list {
      margin-top: 1rem;
    }

    .pricing-list li, .service-list li {
      margin-bottom: 0.5rem;
    }

    .service-list li svg p {
      line-height: 1.1;
    }

    .service-list li svg {
      display: block;
      margin-right: 20px;
      width: 2rem !important;
      height: 2rem;
    }

    li svg {
      margin-right: 0.4rem;
    }

    .text-center {
      text-align: center;
    }

     .text-4xl {
      font-size: 3rem;
      font-weight: 700;
     }

    .mbl {
      margin-bottom: 2rem;
    }
    .text-dim {
      color: var(--muted);
    }

    .cta-btn {
      margin-top: 1.5rem;
      width: 100%;
      background: var(--primary);
      color: white;
      font-size: 16px;
      font-weight: 600;
      padding: 15px 25px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .cta-btn:hover {
      background-color: var(--accent);
    }

.testimonials {
  background-color: #0d0d16;
  max-width: 100%;
  z-index: -1;

}
/*
.highlight {
  background: linear-gradient(to right, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/
.subtext {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  max-width: 350px;
  /* Use transparent so the background image is visible */
  border: 1px solid transparent;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: left;
  color: #ccc;
  position: relative;
  background-image:
    linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(45deg, var(--primary), var(--accent));
  background-origin: border-box;
  background-clip: padding-box, border-box
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
}

.company {
  color: #a472f5;
}


/* new contact section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 80px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  margin: 20px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  margin: 20px;
  border: 1px solid transparent;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  color: #ccc;
  position: relative;
  background-image:
    linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(45deg, var(--primary), var(--accent));
  background-origin: border-box;
  background-clip: padding-box, border-box
}

/*
h2 .highlight {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/
.contact-left p {
  margin: 16px 0;
  max-width: 500px;
  line-height: 1.5;
}

.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}

.icon {
  display:flex;
      padding: 1rem;
      justify-content: center;
      align-items: center;
      background-color: var(--primary-dim);
      width: 4rem;
      height: 4rem;
      border-radius: var(--radius);
  font-size: 24px;
  margin-right: 16px;
  color: #b48aff;
}

.info-item h4 {
  margin: 0;
  color: white;
}

.icon-green {
  display:flex;
      padding: 1rem;
      justify-content: center;
      align-items: center;
      background-color: var(--green-dim);
      width: 4rem;
      height: 4rem;
      border-radius: var(--radius);
  font-size: 24px;
  margin-right: 16px;
  color: #b48aff;
}

.card-info {
      background: var(--card);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      display: flex;
      position: relative;
      justify-content: flex-start;
      flex-direction: row;
      border: 1px solid var(--green-dim);
      transition: transform 0.3s ease;
}

.card-info h4 {
  line-height: 1.7;
}

.seo-audit {
  background: linear-gradient(to right, #1a1a2e, #222244);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.seo-audit h4 {
  color: white;
  margin-bottom: 10px;
}


form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input,
textarea {
  background-color: black;
  border: 1px solid var(--border);
  padding: 15px;
  border-radius: 8px;
  color: #eee;
  width: 100%;
  font-size: 16px;
}

textarea {
  min-height: 250px;
  resize: vertical;
  margin-bottom: 20px;
  margin-top: 20px;
}

.form-button {
  background: linear-gradient(to right, #8f48ff, #7f64ff);
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background: linear-gradient(to right, #9a5fff, #918aff);
}
/* end contact section */

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #1c0f2b, #19192d);
  max-width: 100%;
  z-index: -1;
}

.cta-section h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
}

.question {
  color: white;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #9a4bff;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #b972ff;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid #555;
}

.btn-outline:hover {
  background-color: #222;
}

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin: auto;
  padding: 60px 40px;
  color: #ccc;

  max-width: var(--max-width);
}

.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.brand h2 {
  font-size: 1.6rem;
}

.brand p {
  margin: 10px 0;
}



@media (max-width: 600px) {
      .logo-new {
        max-width: 120px;
      }
      .hero h1 {
        font-size: 2rem;
      }

      nav ul {
        flex-direction: column;
        gap: 1rem;
      }
  .contact-section {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: auto

}
.contact-right {
  margin: 0px;
  padding: 12px;
  max-width: 280px;
}


h2 {
  font-size: 2rem;
}

.card.featured {
  transform: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.check-box {
  flex-direction: column;
  align-items: flex-start;
}

}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links,
  .auth-buttons {
    display: none;
    flex-direction: column;
    background-color: #121212;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 99;
  }

  .nav-links.show,
  .auth-buttons.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    position: relative;
  }

  .auth-buttons {
    display: none !important;
  }

  .get-started, .sign-in {
    display: none;
  }

  .card img {
      max-width: 200px;
      margin: auto;
    }
  .post-card {
    display: flex;
    flex-direction: column;
  }
}
.color-border {
  background-image:
    linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(45deg, var(--primary), var(--accent));
  background-origin: border-box;
  background-clip: padding-box, border-box
}

#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  font-size: 18px;
  background-color: #333;
  color: white;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #555;
}

.row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
 
    .field {
      width: 100%;
      margin-bottom: 12px;
    }
 
    input, select, textarea {
      width: 100%;
      background: #0e0e12;
      border: 1px solid #2a2a35;
      border-radius: 10px;
      padding: 14px 16px;
      color: #d4d4e8;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
    }
 
    input::placeholder, select option[disabled], textarea::placeholder {
      color: #5a5a72;
    }
 
    select {
      appearance: none;
      cursor: pointer;
      color: #5a5a72;
    }
 
    select.has-value { color: #d4d4e8; }
 
    input:focus, select:focus, textarea:focus {
      border-color: #7c3aed;
      box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
    }
 
    textarea {
      resize: vertical;
      min-height: 180px;
      line-height: 1.5;
    }
 /*
    .btn {
      width: 100%;
      padding: 15px;
      background: #7c3aed;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 4px;
    }
 
    .btn:hover:not(:disabled) { background: #6d28d9; }
    .btn:active:not(:disabled) { transform: scale(0.99); }
    .btn:disabled { opacity: 0.6; cursor: not-allowed; }
 */
    .status {
      margin-top: 14px;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 13.5px;
      display: none;
    }
    .status.success {
      display: block;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #86efac;
    }
    .status.error {
      display: block;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #fca5a5;
    }
 
    .spinner {
      width: 16px; height: 16px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .btn.loading .spinner { display: block; }
    .btn.loading .btn-text { opacity: 0.7; }

.social-icons {
      display: flex;
      gap: 14px;
    }
 
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 2px solid #4ade80;
      border-radius: 50%;
      color: #4ade80;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
 
    .social-icons a:hover {
      background: #4ade80;
      color: #111;
      transform: scale(1.1);
    }
 
    .social-icons svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }

    /*--FAQ--*/

    .faq-wrapper {
      width: 100%;
      max-width: 800px;
    }
 
    /* Header */
    .faq-header {
      margin-bottom: 48px;
    }
 
    .faq-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
 
    .faq-title {
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
 
    .faq-subtitle {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.6;
      font-weight: 400;
    }
 
    /* List */
    .faq-list {
      margin-top: 5rem;
      display: flex;
      flex-direction: column;
      border: 1px solid transparent;
  padding: 20px 30px;
  color: #ccc;
  background-color: var(--primary-dim);
  border-radius: var(--radius);

    }
  
 
    /* Item */
    .faq-item {
      border-bottom: 1px solid var(--border);
      opacity: 0;
      animation: fadeUp 0.3s ease forwards;
    }
 
    .faq-item:first-child { border-top: 1px solid var(--border); }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    .faq-item:nth-child(1)  { animation-delay: .03s }
    .faq-item:nth-child(2)  { animation-delay: .07s }
    .faq-item:nth-child(3)  { animation-delay: .11s }
    .faq-item:nth-child(4)  { animation-delay: .15s }
    .faq-item:nth-child(5)  { animation-delay: .19s }
    .faq-item:nth-child(6)  { animation-delay: .23s }
    .faq-item:nth-child(7)  { animation-delay: .27s }
    .faq-item:nth-child(8)  { animation-delay: .31s }
    .faq-item:nth-child(9)  { animation-delay: .35s }
    .faq-item:nth-child(10) { animation-delay: .39s }
 
    /* Button */
    .faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 20px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }
 
    .faq-question {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.4;
      transition: color 0.15s;
    }
 
    .faq-item:hover .faq-question { color: #fff; }
 
    /* Chevron */
    .faq-chevron {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      color: var(--text-secondary);
      transition: transform 0.25s ease, color 0.15s;
    }
 
    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--accent);
    }
 
    /* Answer */
    .faq-answer-wrap {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }
 
    .faq-item.open .faq-answer-wrap {
      grid-template-rows: 1fr;
    }
 
    .faq-answer-inner { overflow: hidden; }
 /*
    .faq-answer {
      padding-bottom: 20px;
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 500;
    }
 */
    .faq-answer strong { color: var(--text-primary); font-weight: 600; }
 
    /* Footer */
    .faq-footer {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      font-size: 14px;
      color: var(--text-secondary);
    }
 
    .faq-footer a {
      color: var(--accent);
      text-decoration: none;
    }
 
    .faq-footer a:hover { text-decoration: underline; }