/* ---------- Universal Styles ---------- */


/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navbar ---------- */
.navbar {
  width: 100%;
  background-color: rgb(100, 127, 188); /* navbar strip */
  box-shadow: 0 2px 5px #FAFDD6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Logo */
.navbar .logo img {
  height: 40px;
  width: auto;
}

/* Nav links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #FAFDD6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #AED6CF;
}

/* Email */
.navbar .email a {
  text-decoration: none;
  color: #FAFDD6;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar .email a:hover {
  color: #91ADC8;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #FAFDD6;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
  }

  .navbar ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar .email {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  width: 100%;
  background-color: #FFFAE4;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-top: 25px;
  
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  align-items: center;
}

/* Hero Content */
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 850;
  color: #647FBC;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-content h1 {
     font-size: 2rem;
  font-weight: 650;
  }

 
}
@media (min-width: 1500px) {
  .hero-content h1 {
     font-size: 4rem;
  font-weight: 1000;
  }

 
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #647FBC;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #91ADC8;
  transform: translateY(-3px);
}

/* Hero Image Frame */
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  /* border: 6px solid #AED6CF; */
  /* border-radius: 20px; */
  overflow: hidden;
  /* background: #fff; */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Images inside frame for slideshow */
.hero-image-frame img.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Show current active image */
.hero-image-frame img.slide-img.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-frame {
    max-width: 90%;
    height: 250px;
    margin: 0 auto;
  }
}




/* for the content block section */
/* Features Section */
.features-section-1 {
  background-color: #AED6CF;
  padding-bottom: 1px;
  padding-top: 60px;
}
.features-section-2 {
  background-color: #647FBC;
  padding: 80px 0;
}


.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* Reverse row for alternating layout */
.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse .feature-text,
.feature-row.reverse .feature-image {
  direction: ltr;
}

/* Feature Image Frame */
/* .feature-image {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border: 6px solid #AED6CF;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
} */

 feature-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  /* border: 6px solid #AED6CF; */
  /* border-radius: 20px; */
  overflow: hidden;
  /* background: #fff; */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* full image fits frame */
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.feature-image img:hover {
  transform: scale(1.05);
}

/* Feature Text */
.feature-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1b3c88;
  margin-bottom: 20px;
}

.feature-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #333;
}

.feature-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Reveal animation class */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .feature-image {
    max-width: 90%;
    height: 250px;
    margin: 0 auto 20px;
  }
}
  /* section code for the product */
  /* Section */
.products-section {
  background: #91C8E4;
  padding: 22px 2px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #647FBC;
  margin-bottom: 40px;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: #91ADC8;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #647FBC;
  transform: translateY(-2px);
}

/* Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Grid */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.products-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* exactly 2 columns */
  gap: 3px; /* remove grid gap */
  width: 100%;
  max-width: 800px; /* keeps layout neat */
  margin: 0 auto;
  justify-items: center;

}
@media (max-width: 768px) {
  .products-grid-2 {
    grid-template-columns: 1fr; /* single column */
    gap: 16px; /* a bit more space between stacked cards */
  }
}


/* Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* Badge */
.badge {
  display: inline-block;
  background: #28a745;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Product Text */
.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #647FBC;
  margin-bottom: 5px;
}

.product-desc {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

/* Price */
/* .product-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
} */

.product-price {

  font-size: 1.8rem;
  font-weight: bold;
  color: #3652a2;
  display: flex;
  align-items: center;
  gap: 6px; /* space between icon and number */
}


.currency-icon {
  width: 25px;   /* adjust size */
  height: auto;
  object-fit: contain;
}
.vat-text {
  font-size: 0.9rem; /* smaller than price */
  font-weight: normal;
  color: #555;
}

/* Buy Button */
.buy-btn {
  display: block;
  width: 100%;
  background: #f8b400;
  color: #000;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #e0a200;
}

/* Features */
.features-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.product-features li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.check {
  color: #28a745;
  margin-right: 8px;
  font-weight: bold;
}
 .cross {
  color: red;
  font-weight: bold;
  margin-right: 8px;
}

.info {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #647FBC;
  margin-left: 6px;
  cursor: pointer;
  border: 1px solid #647FBC;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    gap: 15px;
  }
}
/* content section end */
/* Promo Strip */
.promo-strip {
  width: 100%;
  background: linear-gradient(90deg, #31326F, #31326F, #31326F);
  padding: 15px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 5px 15px rgba(227, 214, 250, 0.911);
}

/* Shimmer Effect */
.promo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: #494fa3e7;
  transform: skewX(-50deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.promo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-content h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #FCAF1B;
  font-weight: 800;
}

.promo-content h2 span {
  color: #FCAF1B;
  font-weight: 700;
}

.promo-btn {
  background: #FAFDD6;
  color: #647FBC;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.promo-btn:hover {
  background: #FCAF1B;
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
    gap: 10px;
  }

  .promo-content h3 {
    font-size: 1rem;
    text-align: center;
  }
}
/* promo complete */
/* section statics */
/* Basic container (use your site .container if exists) */
/* .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; } */

/* Stats Section */
.stats-section {
  background: #FFFBDE;
  padding: 60px 0;
  text-align: center;
}

.stats-heading {
  font-size: 1.9rem;
  color: #647FBC;
  margin-bottom: 36px;
  font-weight: 700;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
}

/* Stat block base */
.stat-block {
  background: #91C8E4;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 600ms cubic-bezier(.2,.9,.2,1), opacity 600ms ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Starting X offset for left/right slide */
.stat-block.left { transform: translateX(-80px) translateY(0); }
.stat-block.right { transform: translateX(80px) translateY(0); }

/* Show state */
.stat-block.show { opacity: 1; transform: translateX(0) translateY(0); }

/* Icon */
.stat-icon { margin: 0 auto 6px auto; display: inline-flex; }

/* Number */
.stat-block h3 { font-size: 2rem; color: #FFFBDE; margin: 6px 0; font-weight: 800; }
.stat-block p { margin: 0; color: #333; font-size: 0.98rem; }

/* Responsive: stack single column on small screens, and alternate animation origin */
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-block.left, .stat-block.right { transform: translateY(30px); } /* vertical entrance on mobile */
}
/* complete statics */
.testimonial-section {
  background: #91ADC8;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  background: #FAFDD6;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.user {
  font-weight: bold;
  color: #647FBC;
  margin-bottom: 10px;
}

.review-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #647FBC;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.review-btn:hover {
  background: #3652a2;
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #647ebc00;
  border: none;
  color: #789ff381;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.nav-arrow:hover {
  background: #3653a273;
}

.nav-arrow.prev {
  left: 1px;
}

.nav-arrow.next {
  right: 1px;
}

/* Dots */
.testimonial-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #647FBC;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .nav-arrow.prev {
    left: 5px;
  }

  .nav-arrow.next {
    right: 5px;
  }
}

/* testimonial complete */
.faq-section {
  background: #f8fbff;
  padding: 60px 20px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Side */
.faq-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FAQ Content */
.faq-content {
  text-align: left;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3652a2;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 15px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #444;
}

.faq-question:hover {
  color: #3652a2;
}

.faq-icon {
  font-size: 1.5rem;
  color: #3652a2;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-image img {
    margin: 0 auto 20px;
  }
}

/* faq section complete */
    /* Free Trial CTA Section */
    .trial-cta-section {
        background: linear-gradient(135deg, #FFFAE4 0%, #FFF5E1 100%);
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
    }

    /* Decorative background elements */
    .trial-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.05;
        background-image: 
            radial-gradient(circle at 20% 20%, #4A90E2 2px, transparent 2px),
            radial-gradient(circle at 80% 80%, #FFD700 2px, transparent 2px);
        background-size: 50px 50px;
        pointer-events: none;
    }

    .trial-cta-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .trial-cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    /* Left Content Section */
    .trial-content-left {
        padding-right: 2rem;
    }

    .trial-badge-top {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 50px;
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2rem;
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    }

    .trial-main-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 900;
        line-height: 1.2;
        color: #1A202C;
        margin-bottom: 1.5rem;
    }

    .trial-heading-highlight {
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .trial-heading-free {
        background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .trial-subheading {
        font-size: clamp(1.15rem, 2vw, 1.4rem);
        color: #4A5568;
        font-weight: 600;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    /* Benefits List */
    .trial-benefits-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .trial-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border-left: 5px solid #4A90E2;
        transition: all 0.3s ease;
    }

    .trial-benefit-item:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
        border-left-color: #FFD700;
    }

    .trial-benefit-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    }

    .trial-benefit-text {
        flex: 1;
    }

    .trial-benefit-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        color: #1A202C;
        margin-bottom: 0.3rem;
    }

    .trial-benefit-desc {
        font-size: 1rem;
        color: #4A5568;
        line-height: 1.5;
        font-weight: 500;
    }

    /* Trust Indicators */
    .trial-trust-badges {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        align-items: center;
        padding-top: 2rem;
        border-top: 2px solid rgba(74, 144, 226, 0.1);
    }

    .trial-trust-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 700;
        color: #4A5568;
        font-size: 0.95rem;
    }

    .trial-trust-icon {
        font-size: 1.3rem;
        color: #22C55E;
    }

    /* Right Form Section */
    .trial-form-wrapper {
        background: white;
        padding: 3rem;
        border-radius: 25px;
        box-shadow: 0 20px 80px rgba(74, 144, 226, 0.15);
        border: 3px solid #E8F4F8;
        position: relative;
    }

    .trial-form-wrapper::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, #4A90E2, #50C9CE, #FFD700);
        border-radius: 25px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .trial-form-wrapper:hover::before {
        opacity: 0.3;
    }

    .trial-form-heading {
        font-family: 'Outfit', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: #1A202C;
        text-align: center;
        margin-bottom: 0.8rem;
    }

    .trial-form-subtext {
        text-align: center;
        color: #4A5568;
        font-weight: 600;
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }

    /* Form Styling */
    .form-group {
        margin-bottom: 1.8rem;
    }

    .form-group label {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #1A202C;
        margin-bottom: 0.6rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 1rem;
        font-weight: 500;
        border: 2px solid #E8F4F8;
        border-radius: 12px;
        background: #F7FAFC;
        color: #1A202C;
        transition: all 0.3s ease;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #4A90E2;
        background: white;
        box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    }

    .form-group input::placeholder {
        color: #A0AEC0;
    }

    .form-group input[readonly] {
        background: #E8F4F8;
        cursor: not-allowed;
        font-weight: 600;
        color: #4A90E2;
    }

    .form-group select {
        cursor: pointer;
    }

    /* Submit Button */
    .btn-buy {
        width: 100%;
        padding: 1.4rem 2rem;
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        color: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-buy::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-buy:hover::before {
        left: 100%;
    }

    .btn-buy:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 45px rgba(74, 144, 226, 0.4);
        background: linear-gradient(135deg, #50C9CE 0%, #4A90E2 100%);
    }

    .btn-buy:active {
        transform: translateY(0);
    }

    /* Form Security Badge */
    .form-security-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding: 1rem;
        background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
        border-radius: 10px;
        border: 1px solid #86EFAC;
    }

    .form-security-icon {
        font-size: 1.2rem;
        color: #22C55E;
    }

    .form-security-text {
        font-size: 0.9rem;
        font-weight: 700;
        color: #166534;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .trial-cta-grid {
            gap: 4rem;
        }

        .trial-main-heading {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
        }

        .trial-form-wrapper {
            padding: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .trial-cta-section {
            padding: 4rem 1.5rem;
        }

        .trial-cta-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .trial-content-left {
            padding-right: 0;
        }

        .trial-main-heading {
            font-size: clamp(2rem, 6vw, 3.5rem);
        }

        .trial-subheading {
            font-size: 1.1rem;
        }

        .trial-benefits-list {
            gap: 1.2rem;
        }

        .trial-benefit-item {
            padding: 1rem;
        }

        .trial-benefit-icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }

        .trial-benefit-title {
            font-size: 1.15rem;
        }

        .trial-trust-badges {
            gap: 1.5rem;
        }

        .trial-form-wrapper {
            padding: 2rem;
        }

        .trial-form-heading {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 480px) {
        .trial-cta-section {
            padding: 3rem 1rem;
        }

        .trial-main-heading {
            font-size: clamp(1.8rem, 7vw, 3rem);
        }

        .trial-badge-top {
            font-size: 0.8rem;
            padding: 0.5rem 1.2rem;
        }

        .trial-benefits-list {
            gap: 1rem;
        }

        .trial-benefit-item {
            flex-direction: column;
            text-align: center;
            padding: 1.2rem;
        }

        .trial-benefit-icon {
            margin: 0 auto;
        }

        .trial-trust-badges {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .trial-form-wrapper {
            padding: 1.8rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group select {
            padding: 0.9rem 1rem;
            font-size: 0.95rem;
        }

        .btn-buy {
            padding: 1.2rem 1.5rem;
            font-size: 1.1rem;
        }

        .form-security-text {
            font-size: 0.85rem;
        }
    }

    @media (min-width: 1440px) {
        .trial-cta-container {
            max-width: 1600px;
        }

        .trial-cta-section {
            padding: 7rem 3rem;
        }
    }
