* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* ================= HEADER ================= */

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #4f46e5;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a.active {
  color: #4f46e5;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #4f46e5;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= HERO ================= */

.hero-v2 {
  position: relative;
  overflow: hidden;
  background: #f7f9ff;
  padding: 150px 0 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-left {
  max-width: 750px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}

.badge-green {
  background: #ecfdf5;
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
  letter-spacing: 2px;
}

.badge-white {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  margin-right: 8px;
}

.hero-v2 h1 {
  margin-top: 30px;
  font-size: 64px;
  line-height: 1.05;
  color: #0f172a;
}

.text-green {
  color: #16a34a;
}

.text-dark {
  color: #0f172a;
}

.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #64748b;
  max-width: 650px;
  line-height: 1.7;
}

.hero-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chips span {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.hero-buttons-v2 {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-green,
.btn-indigo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-green {
  background: #16a34a;
  color: white;
}

.btn-green:hover {
  background: #15803d;
}

.btn-indigo {
  background: #4f46e5;
  color: white;
}

.btn-indigo:hover {
  background: #4338ca;
}

/* ================= SECTION HEADER ================= */

.section-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #4f46e5;
  text-transform: uppercase;
}

.section-header h2 {
  margin-top: 18px;
  font-size: 48px;
  line-height: 1.2;
  color: #0f172a;
}

.section-header h2 span {
  color: #4f46e5;
}

.section-sub {
  margin-top: 20px;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* ================= BENEFITS ================= */

.benefits {
  background: #f8fbff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16a34a;
  border-radius: 50%;
  color: white;
}

.icon svg {
  width: 30px;
  height: 30px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #64748b;
}

.hero-v2,
.dashboard-section,
.who-section {
  overflow: hidden;
  position: relative;
}

/* ================= PAYMENT ================= */

.payment-section {
  position: relative;
  padding: 120px 0;
}

.payment-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.payment-tag {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #4f46e5;
}

.payment-header h2 {
  margin-top: 18px;
  font-size: 44px;
  color: #0f172a;
}

.payment-header h2 span {
  color: #4f46e5;
}

.payment-sub {
  margin-top: 20px;
  color: #64748b;
}

.payment-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.payment-card-inner {
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.payment-card-inner:hover {
  transform: translateY(-5px);
}

.payment-card img {
  height: 55px;
}

/* ================= WHY ================= */

.why-section {
  padding: 120px 0;
  background: linear-gradient(to top, #ffffff, rgba(99, 102, 241, 0.1));
}

.why-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.why-tag {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #4f46e5;
}

.why-header h2 {
  margin-top: 18px;
  font-size: 44px;
  color: #0f172a;
}

.why-header h2 span {
  color: #4f46e5;
}

.why-sub {
  margin-top: 20px;
  color: #64748b;
}

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  gap: 18px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-size: 18px;
}

.why-card p {
  margin-top: 8px;
  font-size: 14px;
  color: #64748b;
}

/* ================= FOOTER ================= */

.footer-top {
  background: #3730a3;
  color: white;
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: white;
}

.footer-bottom {
  background: #f1f5f9;
  padding: 15px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #0f172a;
}

.footer-payments img {
  height: 30px;
}

.who-content {
  max-width: 900px;
  margin: auto;
}

.who-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #4f46e5;
  margin-bottom: 18px;
}

.who-content h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
}

.who-content h2 span {
  color: #4f46e5;
}

.who-sub {
  margin-top: 20px;
  font-size: 18px;
  color: #64748b;
  max-width: 650px;
  line-height: 1.7;
}

.who-list {
  margin-top: 40px;
}

.who-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.who-item:last-child {
  border-bottom: none;
}

.who-icon {
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #bbf7d0;
}

.who-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.who-item p {
  margin-top: 6px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.who-buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-green-lg {
  background: #16a34a;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-green-lg:hover {
  background: #15803d;
}

.btn-outline-indigo {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline-indigo:hover {
  background: #eef2ff;
}

.dashboard-section {
  padding: 120px 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.05),
    rgba(99, 102, 241, 0.12)
  );
}

.dash-tag {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #4f46e5;
  text-transform: uppercase;
}

.dashboard-section h2 {
  margin-top: 20px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

.dashboard-section h2 span {
  color: #4f46e5;
}

.dash-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.7;
}

/* Background blur */
.dash-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.dash-indigo {
  width: 380px;
  height: 380px;
  background: rgba(99, 102, 241, 0.35);
  top: -100px;
  left: 80px;
}

.dash-green {
  width: 420px;
  height: 420px;
  background: rgba(34, 197, 94, 0.3);
  top: 200px;
  right: 80px;
}

/* ================= MOBILE SECTION ================= */

.mobile-section {
  padding: 120px 0;
  background: #ffffff;
}

.mobile-tag {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
}

.mobile-section h2 {
  margin-top: 20px;
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.mobile-section h2 span {
  color: #4f46e5;
}

.mobile-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.7;
}

/* ================= MODULAR SECTION ================= */

.modular-section {
  padding: 120px 0;
  background: #ffffff;
}

.modular-tag {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #4f46e5;
  text-transform: uppercase;
}

.modular-section h2 {
  margin-top: 20px;
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.modular-section h2 span {
  color: #4f46e5;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 12px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #10b981;
  border-radius: 4px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.timeline-icon {
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #059669;
}

.timeline-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.timeline-item p {
  margin-top: 6px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

/* ================= ABOUT HERO ================= */

.about-hero {
  padding: 160px 0 120px; /* space for fixed header */
  background: #f8fbff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #16a34a;
}

.about-hero-left h1 {
  margin-top: 20px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.about-hero-left h1 span {
  display: block;
  color: #16a34a;
}

.about-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
  max-width: 550px;
}

.about-buttons {
  margin-top: 35px;
}

.about-features {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 14px;
  color: #475569;
}

.about-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.green {
  background: #16a34a;
}

.dot.indigo {
  background: #4f46e5;
}

.dot.dark {
  background: #0f172a;
}

.about-hero-right {
  min-height: 420px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1),
    rgba(79, 70, 229, 0.1)
  );
  border-radius: 30px;
}

/* ================= WHO WE ARE ================= */

.who-section {
  padding: 120px 0;
  background: #ffffff;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.who-placeholder {
  min-height: 420px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1),
    rgba(34, 197, 94, 0.1)
  );
}

.who-text h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
}

.who-text h2 span {
  color: #4f46e5;
}

.who-point {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.who-check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 4px;
}

.who-point p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Who Section Image */
.who-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-placeholder img {
  width: 100%;
  max-width: 480px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ================= VISION & MISSION ================= */

.vision-section {
  padding: 120px 0;
  background: #ffffff;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vision-block h2,
.mission-block h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.vision-block h2 span,
.mission-block h2 span {
  color: #4f46e5;
}

.vision-text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 520px;
}

/* Vertical Divider (desktop only) */
.mission-block {
  position: relative;
  padding-left: 60px;
}

.mission-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #e2e8f0;
}

/* ================= HOW IT WORKS ================= */

.how-section {
  padding: 120px 0;
  background: #ffffff;
}

.how-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.how-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.how-header h2 span {
  color: #4f46e5;
}

.how-header p {
  margin-top: 20px;
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.how-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 15px 50px -35px rgba(15, 23, 42, 0.35);
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -45px rgba(15, 23, 42, 0.45);
}

.how-card img {
  height: 60px;
  object-fit: contain;
  transition: 0.3s ease;
}

.how-card:hover img {
  transform: scale(1.05);
}

.how-card p {
  margin-top: 18px;
  font-weight: 600;
  color: #0f172a;
}

/* ================= WHY CHOOSE ================= */

.why-choose-section {
  padding: 120px 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.05),
    rgba(99, 102, 241, 0.08)
  );
}

.why-choose-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-choose-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.why-choose-header span {
  color: #4f46e5;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-choose-card {
  display: flex;
  gap: 20px;
  padding: 40px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
  box-shadow: 0 18px 60px -45px rgba(15, 23, 42, 0.25);
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px -60px rgba(15, 23, 42, 0.35);
}

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.why-choose-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.why-choose-card p {
  margin-top: 8px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ================= CORE VALUES ================= */

.core-values-section {
  padding: 120px 0;
  background: #ffffff;
}

.core-values-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.core-left h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.core-left h2 span {
  color: #4f46e5;
}

.core-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.core-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.core-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  border: 2px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  background: #ffffff;
}

.core-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.core-item p {
  margin-top: 6px;
  color: #64748b;
  font-size: 16px;
}

.core-right img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.3);
}

.faq-hero {
  padding: 120px 0 60px;
  background: #ffffff;
  text-align: center;
}

.faq-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4f46e5;
}

.faq-hero h1 {
  margin-top: 20px;
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.faq-hero h1 span {
  background: linear-gradient(90deg, #22c55e, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-hero p {
  margin-top: 25px;
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-categories {
  padding: 60px 0 120px;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  transition: 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px -45px rgba(15, 23, 42, 0.35);
  border-color: #c7d2fe;
}

.faq-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.faq-small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #4f46e5;
  display: block;
  margin-bottom: 10px;
}

.faq-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.faq-card p {
  margin-top: 12px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

/* Make cards clickable */
.faq-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Top buttons */
.faq-top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0;
}

.faq-nav-btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.faq-nav-btn:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}

.faq-nav-btn.active {
  background: #4f46e5;
  color: white;
  border-color: transparent;
}

/* Hide all sections by default */
.faq-content-section {
  display: none;
  margin-top: 40px;
}

/* Show active section */
.faq-content-section.active {
  display: block;
}

/* ================= CONTACT HERO ================= */

.contact-hero {
  padding: 160px 0 120px; /* space for fixed header */
  background: #ffffff;
  text-align: center;
}

.contact-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4f46e5;
}

.contact-hero h1 {
  margin-top: 20px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}

.contact-hero h1 span {
  background: linear-gradient(90deg, #22c55e, #6366f1, #4338ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  margin-top: 28px;
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ================= CONTACT FORM ================= */

.contact-form-section {
  padding: 80px 0 120px;
  background: #f8fafc;
}

.contact-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 18px 60px -45px rgba(15, 23, 42, 0.25);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.contact-card-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.contact-card-header p {
  margin-top: 6px;
  font-size: 14px;
  color: #64748b;
}

/* Decorative blur blobs */
.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.contact-blob-indigo {
  width: 280px;
  height: 280px;
  background: rgba(99, 102, 241, 0.15);
  top: -120px;
  right: -80px;
}

.contact-blob-sky {
  width: 280px;
  height: 280px;
  background: rgba(14, 165, 233, 0.15);
  bottom: -140px;
  left: -80px;
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT & RIGHT CARD LOOK */
.contact-left,
.contact-right {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 20px;
  padding: 25px;
  min-width: 0;
}

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

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

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: #475569;
}

.form-checkbox a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

/* Bottom */
.form-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.form-bottom p {
  font-size: 12px;
  color: #64748b;
}

/* ================= CONTACT INFO SECTION ================= */

.contact-info-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-info-card {
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 30px;
  padding: 60px 40px;
  background: #ffffff;
  box-shadow: 0 18px 60px -45px rgba(15, 23, 42, 0.18);
  text-align: center;
}

.contact-info-card h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.contact-info-card h2 span {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-box {
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 20px;
  padding: 30px 25px;
  transition: 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.25);
}

/* Top icon */
.contact-icon {
  height: 45px;
  width: 45px;
  margin: 0 auto 15px;
  background: #4f46e5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Text */
.contact-info-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.contact-info-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Social icons */
.social-icons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: 0.3s ease;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icons a:hover {
  background: #ffffff;
  color: #4f46e5;
}

/* ================= PRICING HERO ================= */

.pricing-hero {
  padding: 120px 0;
  background: linear-gradient(to right, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-left {
  max-width: 750px;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #4f46e5;
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.pricing-hero h2 {
  margin-top: 30px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: #0f172a;
}

.pricing-hero h2 span {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-sub {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
}

/* Points Grid */
.pricing-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 600px;
}

.pricing-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 45px -35px rgba(15, 23, 42, 0.35);
}

.pricing-point p {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4f46e5;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Button */
.pricing-buttons {
  margin-top: 40px;
}

.pricing-buttons .btn-indigo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pricing-buttons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: 0.3s ease;
}

.pricing-buttons .btn-indigo:hover svg {
  transform: translateX(4px);
}
/* 2 Column Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Right Image */
.pricing-right {
  display: flex;
  justify-content: center;
}

.pricing-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  transition: 0.3s ease;
}

.pricing-right img:hover {
  transform: translateY(-6px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-section h2,
  .mobile-section h2,
  .modular-section h2 {
    font-size: 36px;
  }
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 220px;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-v2 h1 {
    font-size: 34px;
  }

  .benefits-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
  }

  .section-header h2,
  .payment-header h2,
  .why-header h2 {
    font-size: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .dashboard-section h2,
  .mobile-section h2,
  .modular-section h2 {
    font-size: 28px;
  }
  .dash-indigo,
  .dash-green {
    width: 200px;
    height: 200px;
  }
  .who-content h2 {
    font-size: 28px;
  }
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-left h1 {
    font-size: 34px;
  }

  .about-features {
    justify-content: center;
  }
  .who-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .who-point {
    justify-content: center;
    text-align: left;
  }

  .who-text h2 {
    font-size: 28px;
  }
  /* About Hero Image */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .hero-v2 h1 {
    font-size: 34px;
  }
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mission-block {
    padding-left: 0;
  }

  .mission-block::before {
    display: none;
  }

  .vision-block h2,
  .mission-block h2 {
    font-size: 28px;
  }
  .how-header h2 {
    font-size: 28px;
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-header h2 {
    font-size: 28px;
  }

  .contact-hero {
    padding: 130px 0 80px;
  }

  .contact-hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .contact-hero p {
    font-size: 15px;
  }
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .core-left h2 {
    font-size: 28px;
  }

  .core-right img {
    max-width: 100%;
  }

  .faq-hero h1 {
    font-size: 28px;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-top-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .faq-top-nav::-webkit-scrollbar {
    display: none;
  }

  .faq-nav-btn {
    white-space: nowrap;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-left,
  .contact-right {
    padding: 20px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-card {
    padding: 25px 20px;
    border-radius: 24px;
  }
  .form-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .form-bottom button {
    width: 100%;
  }
  .contact-form-section {
    padding: 60px 0 80px;
  }
  .contact-grid,
  .form-group-row {
    min-width: 0;
  }

  .form-group {
    min-width: 0;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    max-width: 100%;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-card {
    padding: 40px 20px;
  }

  .contact-info-card h2 {
    font-size: 26px;
  }
  .pricing-hero h2 {
    font-size: 32px;
  }

  .pricing-points {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .pricing-left {
    margin: 0 auto;
  }

  .pricing-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-right img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
}

/* ================= SPLIT LAYOUT ================= */

.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .faq-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-left h2 {
    font-size: 32px;
  }
  .contact-hero h1 {
    font-size: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* LEFT SIDE */
.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4f46e5;
}

.faq-left h2 {
  font-size: 40px;
  margin: 20px 0;
}

.faq-left h2 span {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-left p {
  color: #6b7280;
  line-height: 1.7;
}

/* RIGHT SIDE */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
}

.faq-number {
  font-weight: 700;
}

.faq-title {
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 50px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .faq-toggle {
  background: #4f46e5;
  color: white;
  border-color: transparent;
}

/* hidden state */
.hidden {
  display: none !important;
}

/* hide sections by default */
.faq-content-section {
  display: none;
}

/* show active section */
.faq-content-section.active {
  display: block;
}

/* hide top nav initially */
.faq-top-nav {
  display: none;
}

/* Tablet */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    padding: 30px 20px;
  }
  .faq-left h2 {
    font-size: 26px;
    line-height: 1.3;
  }
  .faq-question {
    grid-template-columns: 30px 1fr 36px;
    gap: 8px;
  }

  .faq-answer {
    margin-left: 38px;
  }

  .faq-title {
    font-size: 15px;
  }

  .faq-number {
    font-size: 14px;
  }
  .contact-card {
    padding: 30px 20px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-bottom button {
    width: 100%;
  }
}
