body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* HERO SECTION */
.hero {
   padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 10% 20%, rgba(106,44,255,0.12), transparent),
    radial-gradient(circle at 90% 80%, rgba(255,0,200,0.1), transparent),
    linear-gradient(180deg, #ffffff, #f5f2ff);
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(106,44,255,0.3), transparent);
  top: 20%;
  right: 10%;
  filter: blur(120px);
  z-index: 0;
}


.hero-content {
  max-width: 1400px; 
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.hero-left {
  flex: 1;
   max-width: 750px;
}

.hero-left h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 700px; 
}

.hero-left span {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-left p {
  font-size: 16px;
  max-width: 520px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}

.highlight {
  font-weight: 600;
  color: #6a2cff;
}

.mini-proof {
  font-size: 14px;
  color: #777;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(106,44,255,0.4);
}

.btn-outline {
  border: 2px solid #6a2cff;
  color: #6a2cff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

/* TRUST BADGES */
.hero-trust {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #222;
}

.hero-trust span {
  background: rgba(106,44,255,0.12);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  color: #333;
}

/* RIGHT IMAGE */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  transform: none;  
}

.hero-img img {
  width: 100%;
  max-width: 500px;   
  border-radius: 16px;

  filter: drop-shadow(0 25px 60px rgba(106,44,255,0.3));
  animation: float 4s ease-in-out infinite;

  transform: none;   
}


@keyframes float {
  0% { transform: translateY(0) scale(1.15); }
  50% { transform: translateY(-12px) scale(1.15); }
  100% { transform: translateY(0) scale(1.15); }
}


@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-img {
    transform: none;
  }

  .hero-img img {
    max-width: 90%;
    transform: scale(1);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }
}


@media (max-width: 576px) {
  .hero {
    padding: 80px 15px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-img img {
    max-width: 100%;
  }
}


.value-section {
  padding: 70px 20px 60px;
  text-align: center;

  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.08), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.06), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);
}

.value-section h2 {
  font-size: clamp(28px,4vw,40px);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #333;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
}


.value-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  
}


.value-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 260px;
}


.value-line {
  width: 5px;
  height: 100%;   
  min-height: 280px;

  background: linear-gradient(180deg, #ff0000, #6a2cff);
  border-radius: 10px;

  box-shadow: 0 0 20px rgba(106,44,255,0.6);
}

.value-card {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 18px 22px;
  border-radius: 15px;

  background: rgba(255,255,255,0.8); 
  backdrop-filter: blur(12px);

  border: 1px solid rgba(106,44,255,0.12);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.05),
    0 5px 15px rgba(106,44,255,0.08);

  transition: 0.3s;
}


.value-card span {
  font-size: 20px;
}


.value-card p {
  margin: 0;
  font-size: 15px;
  color: #333;
}


.problem {
  border-left: 4px solid red;
  background: rgba(255, 0, 0, 0.03); 
}

.solution {
  border-left: 4px solid #6a2cff;
  background: rgba(106,44,255,0.05); 
}


.value-card:hover {
  transform: translateY(-6px);

  box-shadow: 
    0 25px 60px rgba(106,44,255,0.2),
    0 10px 30px rgba(0,0,0,0.08);
}


@media (max-width: 768px) {

  .value-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .value-line {
    display: none; 
  }

  .value-flex {
    flex-direction: column;
  }

  .value-img {
    order: 2; 
  }

  .value-grid {
    order: 1;
  }

}

/*  WEB SECTION*/
.container-wide {
  max-width: 1500px;
  margin: auto;
  padding: 0 60px;
}

.web-types {
   padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.08), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.06), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);
}

.web-types::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106,44,255,0.2), transparent);
  top: 10%;
  left: 10%;
  filter: blur(120px);
  z-index: 0;
}

.web-types .section-heading {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-heading h2 span {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-heading p {
  max-width: 700px;
  margin:  15px auto 0;
  color: #333;
  font-size: 15px;
   line-height: 1.7;
}


.web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.web-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 
    0 15px 40px rgba(106,44,255,0.1),
    0 5px 15px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.web-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106,44,255,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.web-card:hover::before {
  opacity: 1;
}


.web-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 
    0 30px 80px rgba(106,44,255,0.25),
    0 10px 30px rgba(255,0,200,0.15);
}


.web-card.featured {
  transform: scale(1.08);

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #6a2cff, #ff00cc) border-box;

  border: 2px solid transparent;

  box-shadow:
    0 40px 100px rgba(106,44,255,0.35),
    0 15px 40px rgba(255,0,200,0.2);
}


.web-icon {
  font-size: 28px;

  width: 75px;
  height: 75px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: #fff;

  margin: auto;
  margin-bottom: 15px;

  box-shadow: 
    0 10px 25px rgba(106,44,255,0.3),
    inset 0 0 10px rgba(255,255,255,0.2);

  transition: 0.4s;
}


.web-card:hover .web-icon {
  transform: scale(1.15) rotate(5deg);
}

.web-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.web-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}


@media (max-width: 992px) {
  .web-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-card.featured {
    transform: none; 
  }
}

@media (max-width: 576px) {
  .web-types {
    padding: 80px 0;
  }

  .web-grid {
    grid-template-columns: 1fr;
  }

  .web-card {
    padding: 25px;
  }
}

/* ===== TECH SECTION ===== */
.tech-section {
 padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.08), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.06), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);
}

.tech-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106,44,255,0.2), transparent);
  bottom: 10%;
  right: 10%;
  filter: blur(120px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  margin-top: 60px;
  justify-items: stretch; 
}

.tech-card {
  width: 100%;
  max-width: 100%;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;

  padding: 16px;
  border-radius: 20px;

  font-size: 16px;
  font-weight: 600;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(106,44,255,0.12);

  box-shadow:
    0 15px 40px rgba(106,44,255,0.12),
    0 5px 15px rgba(0,0,0,0.05);

  transition: all 0.35s ease;
}

.tech-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: linear-gradient(135deg, #a88af0, #e668cc);
  color: #fff;

  font-size: 18px;

  box-shadow: 0 8px 20px rgba(106,44,255,0.3);
}

.tech-card:hover {
  transform: translateY(-8px) scale(1.05);

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: #fff;

  box-shadow:
    0 30px 80px rgba(106,44,255,0.4),
    0 0 30px rgba(255,0,200,0.35);
}

.tech-card:hover {
  letter-spacing: 0.5px;
}


@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {

  .container-wide {
    padding: 0 15px;
  }

  .tech-section {
    padding: 60px 15px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-items: stretch;
  }

  .tech-card {
    padding: 16px;
    font-size: 14px;
  }
}

/* ===== PROCESS SECTION ===== */

.process-section .section-heading  {
  text-align: center;
  max-width: 1600px;
  margin: auto;
}

.process-section .section-heading h2 {
  font-size: 38px;
  font-weight: 700;
}

.process-section .section-heading span {
  background: linear-gradient(90deg, #007bff, #ff0099);
  -webkit-background-clip: text;
  background-clip: text;             
  -webkit-text-fill-color: transparent;
  color: transparent;               
}

.process-section {
  padding: 120px 20px; 
  background:
    radial-gradient(circle at 20% 20%, rgba(0,123,255,0.08), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,150,0.08), transparent),
    linear-gradient(180deg, #ffffff, #f6f7ff);
}

.process-section .section-heading p {
  color: #333;
  max-width: 1100px;
  margin: 15px auto 0;
  line-height: 1.8;
  font-size: 20px;
}

.process-timeline {
  position: relative;
  max-width: 1200px; 
  margin: 60px auto 0;
}

/* CENTER LINE */
.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#007bff, #ff0099);
  transform: translateX(-50%);
}


.process-step {
  position: relative;
  width: 50%;
  margin-bottom: 80px;
}


.process-step:nth-child(odd) {
  left: 0;
  padding-right: 80px;
  text-align: right;
}


.process-step:nth-child(even) {
  left: 50%;
  padding-left: 80px;
  text-align: left;
}


.process-step .step-content {
  text-align: left;
  max-width: 420px; 
}


.process-step:nth-child(odd) .step-content {
  margin-left: auto;
}

.process-step:nth-child(even) .step-content {
  margin-right: auto;
}


.process-step::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 100%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #007bff, #ff0099);
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(0,123,255,0.1),
    0 0 20px rgba(255,0,150,0.4);
  z-index: 10;
}


.process-step:nth-child(even)::before {
  left: 0;
  transform: translateX(-50%);
}


.step-content {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}


.process-step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,123,255,0.18);
}


.step-content h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}


@media (max-width: 992px) {

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    width: 100%;
    left: 0 !important;
    padding-left: 80px !important;
    padding-right: 20px !important;
    text-align: left !important;
  }

  .process-step::before {
    left: 30px !important;
    transform: translateX(-50%);
  }
}


@media (max-width: 576px) {

  .process-section {
    padding: 70px 15px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-step {
    padding-left: 70px !important;
    padding-right: 10px !important;
    margin-bottom: 35px;
  }

  .process-step::before {
    left: 20px !important;
    width: 12px;
    height: 12px;
  }

  .step-content {
    padding: 16px;
    border-radius: 12px;
    max-width: 100%; 
  }

  .step-content h3 {
    font-size: 15px;
  }

  .step-content p {
    font-size: 13px;
  }
}

/*  PRICING SECTION  */
.pricing-section {
    padding: 70px 20px 60px;
  background:
    radial-gradient(circle at 20% 30%, rgba(106,44,255,0.05), transparent),
    radial-gradient(circle at 80% 70%, rgba(143,92,255,0.05), transparent),
    #f9fafe;
  position: relative;
  overflow: hidden;
}


.pricing-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(106,44,255,0.08);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  filter: blur(100px);
  animation: moveBg 12s infinite alternate ease-in-out;
}


.pricing-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(143,92,255,0.08);
  border-radius: 50%;
  top: 60%;
  right: 10%;
  filter: blur(120px);
  animation: moveBg2 14s infinite alternate ease-in-out;
}

@keyframes moveBg2 {
  0% { transform: translate(0,0); }
  100% { transform: translate(-60px, -40px); }
}

@keyframes moveBg {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px, 40px); }
}

/* CONTAINER */
.pricing-section .container {
  max-width: 1200px;
  margin: auto;
}


.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.section-heading span {
  color: #6a2cff;
}

.section-heading p {
  font-size: 15px;
  color: #1f1e1e;
  margin-top: 10px;
  line-height: 1.6;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 16px;
  border: 1px solid #eee;

  position: relative;
  overflow: visible; 

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: all 0.35s ease;

  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}


.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  background: linear-gradient(
    120deg,
    rgba(106,44,255,0.05),
    rgba(143,92,255,0.07),
    rgba(106,44,255,0.04)
  );

  z-index: 0;
  animation: gradientMove 6s ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    transform: translateX(-20px) translateY(-10px);
  }
  50% {
    transform: translateX(20px) translateY(10px);
  }
  100% {
    transform: translateX(-20px) translateY(-10px);
  }
}


.pricing-card * {
  position: relative;
  z-index: 2;
}


.featured {
  border: 2px solid #6a2cff;
  box-shadow: 0 15px 40px rgba(106,44,255,0.15);
}


.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #6a2cff;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 5;
}


.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}


.plan-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;

  padding: 6px 12px;
  border-radius: 20px;

  background: rgba(106,44,255,0.08);
  color: #6a2cff;

  margin-bottom: 20px;
}


.pricing-card:nth-child(1) .plan-tag {
  background: rgba(0, 180, 120, 0.08);
  color: #00a86b;
}


.pricing-card:nth-child(2) .plan-tag {
  background: rgba(106,44,255,0.08);
  color: #6a2cff;
}


.pricing-card:nth-child(3) .plan-tag {
  background: rgba(255,140,0,0.08);
  color: #ff8c00;
}


.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-card ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;

  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.6s forwards;
}

/* STAGGER */
.pricing-card ul li:nth-child(1) { animation-delay: 0.1s; }
.pricing-card ul li:nth-child(2) { animation-delay: 0.2s; }
.pricing-card ul li:nth-child(3) { animation-delay: 0.3s; }
.pricing-card ul li:nth-child(4) { animation-delay: 0.4s; }
.pricing-card ul li:nth-child(5) { animation-delay: 0.5s; }
.pricing-card ul li:nth-child(6) { animation-delay: 0.6s; }
.pricing-card ul li:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON */
.pricing-btn {
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

  background: linear-gradient(135deg, #6a2cff, #8f5cff);
  color: #fff;

  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(106,44,255,0.3);
}

/* FEATURED BUTTON GLOW */
.featured .pricing-btn {
  animation: glowPulse 2.5s infinite;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 rgba(106,44,255,0.2); }
  50% { box-shadow: 0 0 20px rgba(106,44,255,0.4); }
  100% { box-shadow: 0 0 0 rgba(106,44,255,0.2); }
}


@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 30px 20px;
    animation: none;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

  .pricing-card ul li {
    font-size: 13px;
  }
}


.faq-section {
  padding: 80px 20px 60px;
}

.faq-container {
  max-width: 750px;
   margin: 70px auto 0;
}

.faq-item {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);

  border-radius: 14px;
  margin-bottom: 18px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(106,44,255,0.15);
}

.faq-question {
  width: 100%;
 padding: 18px 45px 18px 20px;

  border: none;
  background: none;

  font-size: 16px;
  font-weight: 600;

  text-align: left;
  cursor: pointer;
  position: relative;
  color: #111;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: #fff;

  font-size: 16px;
  transition: 0.3s;
}


.faq-item.active .faq-question::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;

  padding: 0 20px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}


.faq-item.active .faq-answer {
  max-height: 300px;
}

@media (max-width: 576px) {

  .faq-section {
    padding: 80px 15px;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 45px 18px 15px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

.cta-section {
  padding: 120px 15px;   
  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.2), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.2), transparent),
    linear-gradient(135deg, #6a2cff, #ff00cc);
}

.cta-box {
  text-align: center;
  color: #fff;

  max-width: 750px;
  margin: auto;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  padding: 50px 30px;
  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-box p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


.cta-buttons a {
  min-width: 180px;
  text-align: center;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;

  padding: 14px 28px;
  border-radius: 30px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

.btn-call {
  background: #fff;
  color: #6a2cff;

  padding: 14px 28px;
  border-radius: 30px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-call:hover {
  background: #f3f1ff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

@media (max-width: 576px) {

  .cta-section {
    padding: 80px 15px;
  }

  .cta-box {
    padding: 35px 20px;
  }

  .cta-box h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .cta-box p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;  
  }
}


#header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.value-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.value-img {
  flex: 1;
  text-align: center;
}

.value-img img {
  width: 100%;
  max-width: 400px;
}

.value-grid {
  flex: 2;
}

