/* ===============================
   HERO SECTION
================================ */
.idp-hero-section {
  position: relative;

  background:
    radial-gradient(
      1600px 1600px at 50% 20%,
      rgba(20, 184, 166, 0.25),
      transparent 60%
    ),
    radial-gradient(
      500px 500px at 80% 50%,
      rgba(20, 184, 166, 0.18),
      transparent 65%
    ),
    var(--bg-section);
  overflow: hidden;
}

/* ===============================
   CONTAINER
================================ */
.idp-hero-container {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ===============================
   CONTENT
================================ */
.idp-hero-content {
  max-width: 1260px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.idp-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--primary-dark);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.idp-title {
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.15;
  color: #000;
  margin-bottom: 16px;
}

.idp-subtitle {
  max-width: 800px;
  font-size: var(--text);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ===============================
   ACTIONS
================================ */
.idp-actions {
  width: 50%;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.idp-actions button {
  padding: 12px;
}

/* ===============================
   VISUAL
================================ */
.idp-hero-visual {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.idp-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  /* box-shadow: var(--shadow-soft); */
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .idp-hero-section {
    padding: 64px 16px;
  }

  .idp-title {
    font-size: 32px;
  }

  .idp-subtitle {
    font-size: 14px;
  }

  .idp-actions {
    width: 90%;
    flex-direction: column;
  }

  .idp-actions button {
    width: 100%;
  }

  .idp-hero-visual {
    margin-top: 24px;
  }
}

/* ===============================
   STATS SECTION
================================ */
/* ===============================
   CONTAINER
================================ */
.idp-stats-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
  text-align: center;
}

/* ===============================
   STAT ITEM
================================ */
.idp-stat-value {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.idp-stat-label {
  font-size: 15px;
  color: #6b7280;
}

/* ===============================
   MOBILE — CARD STYLE
================================ */
@media (max-width: 768px) {
  .idp-stats-container {
    background: var(--bg-card);
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 16px;
    padding: 32px 16px;
  }

  .idp-stat-value {
    font-size: 40px;
  }

  .idp-stat-label {
    font-size: 14px;
  }
}

/* ===============================
   SECTION
================================ */
.features-section {
  background: var(--bg-page);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===============================
   HEADER
================================ */
.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.features-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.features-title {
  font-size: var(--h2);
  font-weight: 700;
  margin-bottom: 12px;
}

.features-subtitle {
  font-size: var(--text);
  color: #6b7280;
}

/* ===============================
   DESKTOP GRID
================================ */
.features-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===============================
   CARD
================================ */
.feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 28px;
  border: 2px solid var(--border-soft);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}

/* ===============================
   DOTS
================================ */
.features-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.features-dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.features-dot.active {
  width: 28px;
  background: rgba(20, 184, 166, 0.2);
}

.features-dot-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
}

/* ===============================
   MOBILE — CAROUSEL
================================ */
@media (max-width: 768px) {
  .features-section {
    padding: 64px 16px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .feature-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .features-track::-webkit-scrollbar {
    display: none;
  }

  .features-track {
    scrollbar-width: none;
  }

  .features-dots {
    display: flex;
  }
}

/* ===============================
   AGENTIC SECTION
================================ */
.agentic-idp-section {
  background: #ffffff;
}

/* ===============================
   CONTAINER
================================ */
.agentic-idp-section {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.agentic-idp-section .container {
  width: 700px;
}
.visual-proof {
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.visual-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: flex-start;
}

/* Images */
.visual-grid .image-card {
  border-radius: 5px;
  overflow: hidden;
}

.visual-grid .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-grid .image-large {
  height: 480px;
}

.visual-grid .image-medium {
  height: 440px;
}

/* Right column */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Stats */
.stats {
  display: flex;
  gap: 16px;
}

.stat {
  width: 150px;
  flex: 1;
  border-radius: 12px;
  padding: 20px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat strong {
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.stat span {
  font-size: 12px;
  opacity: 0.9;
}
.stat .stat2 {
  text-align: center;
  font-size: 16px;
}
.stat.dark {
  height: 110px;
  background: #1f2937;
}

.stat.primary {
  height: 135px;
  background: var(--primary);
}

/* Decorative marks */
.decor {
  position: absolute;
  bottom: 120px;
  left: 40%;
  transform: translateX(-40%);
  width: 100px;
  pointer-events: none;
}

.decor img {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================
   MOBILE – EXACT STACK
========================= */
@media (max-width: 768px) {
  .agentic-idp-section {
    grid-template-columns: 1fr;
  }
  .agentic-idp-section .container {
    width: 100vw;
  }
  .visual-grid {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .visual-grid .image-large {
    width: 220px;
    height: 360px;
    overflow: visible;
  }

  .visual-grid .image-medium {
    width: 250px;
    position: relative;

    left: 62px;
    height: 350px;
  }

  .visual-grid .stats {
    z-index: 10;
    position: relative;
    top: 220px;
    right: 16px;
    flex-direction: column;
    gap: 12px;
  }
  .stat {
    border-radius: 5px;
  }
  .stat.dark {
    position: absolute;
    top: -220px;
    left: 120px;
    padding: 12px;
  }

  .decor {
    z-index: 100;
    bottom: -256px;
    left: 40px;
    transform: none;
    width: 82px;
  }
}
/* ===============================
   CONTENT (RIGHT)
================================ */
.agentic-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.agentic-title {
  font-size: var(--h2);
  font-weight: 700;
  margin-bottom: 16px;
}

.agentic-text {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
}

.agentic-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.agentic-list li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.agentic-list li::before {
  content: "●";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .agentic-idp-section {
    display: flex;
    flex-direction: column;
    padding: 64px 16px;
  }

  .agentic-idp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .agentic-idp-media {
    max-width: 100%;
  }

  .badge-dark {
    right: 8px;
  }

  .badge-primary {
    left: 8px;
    bottom: 120px;
  }

  .agentic-title {
    font-size: 28px;
  }

  .agentic-text {
    font-size: 14px;
  }
}

/* ===============================
   INDUSTRY SECTION
================================ */
.industry-section {
  padding: 40px 16px;
  background: #ffffff;
}

.industry-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
}

/* ---------------- LEFT ---------------- */
.industry-left {
  width: 650px;
}
.industry-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.industry-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 12px;
}

.industry-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 28px;
}

/* ---------------- TABS ---------------- */

.industry-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: #ecfdfb;
  border-radius: 999px;
  margin-bottom: 32px;
}

.industry-tab {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #0f766e;
  cursor: pointer;
}

.industry-tab.active {
  background: #99f6e4;
  color: #065f46;
}

/* ---------------- DETAILS ---------------- */
.industry-details {
  margin-bottom: 42px;
}
.industry-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-desc {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.industry-results {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

/* ---------------- FEATURES ---------------- */

.industry-feature {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.industry-feature .feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
}

.industry-feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.industry-feature p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.coming-soon {
  font-size: 11px;
  font-weight: 600;
  background: #fff7ed;
  color: #ea580c;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

/* ---------------- CTA ---------------- */

.industry-cta {
  margin-top: 28px;
  padding: 14px 22px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

/* ---------------- RIGHT ---------------- */
.industry-right {
  width: 600px;
}
.industry-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

/* ---------------- MOBILE ---------------- */

/* ===============================
   MOBILE FIX — INDUSTRY SECTION
================================ */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */

  .industry-section {
    padding: 48px 16px;
  }

  .industry-wrapper {
    flex-direction: column-reverse;
    gap: 28px;
  }
  .industry-left {
    width: 80vw;
  }
  /* Move image on top, reduce height */
  .industry-right {
    width: 80vw;
  }

  .industry-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
  }

  /* Typography scale-down */
  .industry-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .industry-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Tabs — horizontal scroll, no wrap */
  .industry-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px;
    gap: 0px;
    border-radius: 0px;
    background-color: transparent;
  }

  .industry-tab {
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 2px solid var(--bg-section);
  }
  .industry-tab.active {
    background-color: transparent;
    border-bottom: 2px solid var(--primary);
  }
  .industry-tabs::-webkit-scrollbar {
    display: none;
  }
  /* Details spacing tightened */
  .industry-details h3 {
    font-size: 16px;
  }

  .industry-desc {
    font-size: 13px;
  }

  .industry-results {
    font-size: 13px;
    margin-bottom: 18px;
  }

  /* Feature rows */
  .industry-feature {
    gap: 10px;
    margin-bottom: 14px;
  }

  .industry-feature h4 {
    font-size: 14px;
  }

  .industry-feature p {
    font-size: 13px;
    line-height: 1.5;
  }

  .industry-feature .feature-icon {
    width: 18px;
    height: 18px;
  }

  /* CTA button full width, compact */
  .industry-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-top: 20px;
  }
}

/* =====================
   INDUSTRY TABS
===================== */

.industry {
  background: #ffffff;
  padding: 120px 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 80px;
  align-items: center;
}

.subtitle {
  color: #64748b;
  margin: 10px 0 24px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.tab {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.tab.active {
  background: #e6fffb;
  color: var(--primary);
}

/* Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  margin-bottom: 6px;
}

.tab-content small {
  display: block;
  color: #64748b;
  margin-bottom: 16px;
}

.tab-content ul {
  list-style: none;
  margin-bottom: 28px;
}

.tab-content li {
  margin-bottom: 12px;
  font-size: 15px;
}

.soon {
  background: #ffeacc;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 8px;
}

/* Image */
.industry-image {
  background: #f1f5f9;
  padding: 40px;
  border-radius: 20px;
}

.industry-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.icon-list {
  list-style: none;
  margin-bottom: 28px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 14px;
}

.icon-list i {
  color: var(--primary);
  font-size: 18px;
}

/* INTEGRATION SECTION  */
/* =========================
   SECTION
========================= */
/* =========================
   SECTION
========================= */
.integrations-section {
  background: var(--bg-section);
  padding: 80px 16px;
}

.integrations-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Badge */
.integrations-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  margin-bottom: 20px;
}

/* Headings */
.integrations-title {
  font-size: var(--h2);
  margin-bottom: 12px;
}

.integrations-subtitle {
  max-width: 640px;
  margin: 0 auto 56px;
  color: #64748b;
  font-size: 15px;
}

/* =========================
   DESKTOP GRID
========================= */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 196px);
  justify-content: center;
  gap: 24px;
}

/* Card (FIXED SIZE) */
.integration-card {
  width: 196px;
  height: 217px;
  min-width: 196px;
  min-height: 217px;

  background: var(--bg-card);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: left;
  box-sizing: border-box;
}

.integration-card img {
  height: 40px;
  margin-bottom: 16px;
}

.integration-card h3 {
  font-size: var(--h3);
  margin-bottom: 8px;
}

.integration-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Hide arrows on desktop */
.integrations-nav {
  display: none;
}

/* =========================
   MOBILE — GRID CAROUSEL
========================= */
@media (max-width: 640px) {
  .integrations-grid {
    /* 👇 THIS is the key difference */
    grid-auto-flow: column;
    grid-auto-columns: 196px;

    overflow-x: auto;
    justify-content: start;
    padding: 0 16px;
    gap: 16px;
  }

  .integrations-grid::-webkit-scrollbar {
    display: none;
  }

  /* Arrows */
  .integrations-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    padding: 0 8px;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .nav-btn {
    pointer-events: all;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
  }
}

/* TESTEMONIALS SECTION  */
/* =========================
   TESTIMONIALS ROW
========================= */
/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  background: var(--bg-page);
  padding: 80px 16px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.testimonials-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid var(--border-soft);
  color: var(--primary-dark);
  background: var(--bg-page);
  margin-bottom: 20px;
}

/* Heading */
.testimonials-title {
  font-size: var(--h2);
  margin-bottom: 12px;
}

.testimonials-subtitles {
  max-width: 640px;
  margin: 0 auto 48px;
  color: #64748b;
}

/* =========================
   SLIDER (ONE AT A TIME)
========================= */
.testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

/* =========================
   TESTIMONIAL CARD
========================= */
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;

  background: var(--bg-card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;

  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-stars img {
  width: 18px;
  height: 18px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
}

/* =========================
   PAGINATION DOTS
========================= */
.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonials-pagination button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonials-pagination button.active {
  background: var(--primary);
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 640px) {
  .testimonial-card {
    height: 320px; /* ✅ FIXED HEIGHT */
  }

  .testimonial-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5; /* ✅ controls visible lines */
    text-overflow: ellipsis;
  }
}

/* pricing section  */
.pricing-section {
  background: var(--bg-page);
  padding: 4rem 1rem;
  overflow: hidden;
}

/* ===== Header ===== */
.pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.pricing-head .pill {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.pricing-head h2 {
  font-size: 2.1rem;
  font-weight: 700;
}

.pricing-head p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}

/* ===== Cards Track (Desktop) ===== */
.pricing-track {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* ===== Card ===== */
.card {
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  position: relative;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.card .desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.price-row {
  margin: 1.4rem 0;
}

.price-row strong {
  font-size: 2rem;
  font-weight: 700;
}

.price-row span {
  font-size: 0.85rem;
  color: #6b7280;
  margin-left: 0.25rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
}

.card li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.card li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 0.55rem;
  background: url("../icons/check.png") no-repeat center / contain;
}

/* ===== Featured ===== */
.featured {
  border-width: 2px;
}

.featured .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ===== Buttons ===== */
.price-btn {
  width: 100%;
  padding: 0.65rem;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
}
.f-btn {
  position: relative;
  top: 35px;
}
/* =========================
   MOBILE – CENTERED CAROUSEL
========================= */
@media (max-width: 768px) {
  .pricing-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
  }

  .card {
    min-width: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .pricing-track::-webkit-scrollbar {
    display: none;
  }
}

/* instructors section  */

.instructors-section {
  background: var(--bg-page);
}

.instructors-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.instructors-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.instructors-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 56px;
}

/* Grid */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  justify-content: center;
  gap: 24px;
}

/* Card */
.instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}

/* Image */
.instructor-image img {
  width: 100%;
  height: 280px !important;
  object-fit: contain !important;
}

/* Content */
.instructor-content {
  padding: 18px 16px;
}

.instructor-name {
  font-size: var(--h3);
  font-weight: 600;
  margin-bottom: 4px;
}

.instructor-role {
  font-size: var(--text);
  color: var(--primary);
  margin-bottom: 6px;
}

.instructor-exp {
  display: inline-block;
  padding: 4px 10px;

  font-size: 12px;
  font-weight: 500;

  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);

  border-radius: 999px;
  margin-bottom: 12px;
}

.instructor-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.faq-section {
  background: var(--bg-page);
}

.faq-container {
  max-width: 781px;

  margin: 0 auto;
  text-align: center;
}

/* Badge */
.faq-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--border-soft);
  color: var(--primary-dark);
  background: var(--bg-card);
  margin-bottom: 18px;
}

/* Heading */
.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 48px;
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ card */
.faq-card {
  min-height: 164px;
  height: auto;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-align: left;
  background: var(--bg-card);
}

/* Question */
.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

/* Answer */
.faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

/* Get started today section  */
.cta-section {
  padding: 120px 8px;
  background: var(--bg-section);
  display: flex;
  justify-content: center;
}

.cta-card {
  position: relative;
  max-width: 1100px;
  width: 100%;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 80px 24px;
  text-align: center;

  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  overflow: hidden;
}

/* Decorative shapes */
.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 50%;
}

.cta-card::before {
  left: -120px;
  bottom: -120px;
}

.cta-card::after {
  right: -120px;
  top: -120px;
}

/* Badge */
.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 20px;
}

/* Title */
.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

/* Subtitle */
.cta-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

/* Actions */
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.cta-section .btn-primary {
  height: 44px;
  width: 216px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.cta-section .btn-primary:hover {
  background: var(--primary-dark);
}

.cta-section .btn-outline {
  height: 44px;
  width: 216px;
  background: #fff;
  color: #000;
  border: 1px solid var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
  }
}
