    /* ===== CSS CUSTOM PROPERTIES ===== */
    :root {
      --black: #111111;
      --dark: #1a1a1a;
      --pink: #ed197f;
      --pink-dark: #c4156a;
      --white: #ffffff;
      --grey-bg: #f5f5f5;
      --text-dark: #1a1a1a;
      --text-body: #333333;
      --text-muted: #999999;
      --border: #e5e5e5;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-body);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
    }

    /* ===== CONTAINER ===== */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-block;
      background: var(--pink);
      color: var(--white);
      padding: 10px 20px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease;
      line-height: 1.4;
    }

    .btn-primary:hover {
      background: var(--pink-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--pink);
      padding: 10px 20px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border-radius: 4px;
      border: 2px solid var(--pink);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .btn-outline:hover {
      background: var(--pink);
      color: var(--white);
    }

    /* ===== SECTION HEADINGS ===== */
    .section-heading {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    /* ===== FADE-IN ANIMATION ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== HEADER ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      height: 65px;
      display: flex;
      align-items: center;
      transition: box-shadow 0.3s ease;
    }

    .site-header.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      height: 100%;
    }

    .logo {
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo img { display: block; height: 36px; width: auto; }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
    }

    .nav-list {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .nav-list a {
      color: var(--text-dark);
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      padding: 4px 0;
      position: relative;
    }

    .nav-list a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--pink);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    .nav-list a:hover { color: var(--pink); }
    .nav-list a:hover::after { transform: scaleX(1); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: 2px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-dark);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    /* ===== HERO ===== */
    .hero {
      background: var(--black);
      border-top: 4px solid var(--pink);
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
    }
    
    .hero-metaballs {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }

    .hero-sub {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 300;
      color: #cccccc;
      line-height: 1.4;
      margin-bottom: 16px;
    }

    .hero-body {
      font-size: 15px;
      color: #aaaaaa;
      margin-bottom: 36px;
      font-weight: 400;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    /* ===== ABOUT ===== */
    .about {
      background: var(--grey-bg);
      padding: 80px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 60fr 40fr;
      gap: 48px;
      align-items: start;
    }

    .about-text p {
      color: var(--text-body);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .about-text p:last-child {
      margin-bottom: 0;
    }

    .about-text .lead {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .about-image img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* ===== SERVICES ===== */
    .services {
      background: var(--white);
      padding: 80px 0;
    }

    .services-intro {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 48px;
      max-width: 600px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 4px solid var(--pink);
      border-radius: 4px;
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ===== EXPLAINER ===== */
    .explainer {
      background: var(--dark);
      border-top: 4px solid var(--pink);
      padding: 80px 0;
      text-align: center;
    }

    .explainer-copy {
      color: #cccccc;
      font-size: 15px;
      line-height: 1.8;
      max-width: 760px;
      margin: 0 auto 48px;
    }

    .agent-steps {
      display: flex;
      align-items: stretch;
      gap: 0;
      max-width: 760px;
      margin: 0 auto;
    }

    .agent-step {
      flex: 1;
      background: #111111;
      border: 1px solid #333333;
      border-radius: 4px;
      padding: 28px 24px;
      text-align: center;
    }

    .agent-step h4 {
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      margin: 12px 0 8px;
    }

    .agent-step p {
      color: #888888;
      font-size: 13px;
      line-height: 1.6;
    }

    .step-arrow {
      color: var(--pink);
      font-size: 24px;
      align-self: center;
      padding: 0 16px;
      flex-shrink: 0;
      font-weight: 300;
    }

    /* ===== FETCH ===== */
    .fetch {
      background: var(--grey-bg);
      padding: 80px 0;
    }

    .fetch-grid {
      display: grid;
      grid-template-columns: 55fr 45fr;
      gap: 56px;
      align-items: start;
    }

    .fetch-text p {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .fetch-text p:last-of-type {
      margin-bottom: 28px;
    }

    .fetch-feature-card {
      background: #111111;
      border-left: 4px solid var(--pink);
      border-radius: 4px;
      padding: 32px;
    }

    .fetch-feature-card h4 {
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .fetch-feature-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .fetch-feature-list li {
      color: #cccccc;
      font-size: 14px;
      display: flex;
      align-items: baseline;
      gap: 10px;
      line-height: 1.5;
    }

    .fetch-feature-list li .bullet {
      color: var(--pink);
      flex-shrink: 0;
      font-size: 12px;
    }

    /* ===== TALKS ===== */
    .talks {
      background: var(--white);
      padding: 80px 0;
    }

    .talks-grid {
      display: grid;
      grid-template-columns: 55fr 45fr;
      gap: 56px;
      align-items: start;
    }

    .talks-copy {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .talks-topics {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .talks-topics strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
      background: var(--grey-bg);
      padding: 80px 0;
    }

    /* ===== CONTACT ===== */
    .contact {
      background: var(--dark);
      border-top: 4px solid var(--pink);
      padding: 80px 0;
    }

    .contact-sub {
      color: #aaaaaa;
      font-size: 15px;
      margin-bottom: 48px;
      max-width: 600px;
    }

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

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 16px;
      font-size: 15px;
      color: #cccccc;
    }

    .contact-item a {
      color: var(--pink);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .contact-item a:hover {
      opacity: 0.8;
    }

    /* Contact form */
    .contact-form label {
      color: #888888;
      font-size: 12px;
      font-weight: 500;
      display: block;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: #222222;
      border: 1px solid #333333;
      border-radius: 4px;
      color: var(--white);
      padding: 12px 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      margin-bottom: 16px;
      outline: none;
      transition: border-color 0.2s ease;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--pink);
    }

    .contact-form textarea {
      min-height: 120px;
    }

    .contact-form .btn-primary {
      width: 100%;
      padding: 12px;
      font-size: 15px;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .form-success,
    .form-error {
      padding: 20px 24px;
      border-radius: 4px;
      font-size: 15px;
      line-height: 1.6;
    }

    .form-success {
      background: rgba(237, 25, 127, 0.1);
      border: 1px solid rgba(237, 25, 127, 0.3);
      color: #ed197f;
    }

    .form-error {
      background: rgba(255, 80, 80, 0.1);
      border: 1px solid rgba(255, 80, 80, 0.3);
      color: #ff6b6b;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: #111111;
      border-top: 1px solid #222222;
      padding: 40px 0;
    }

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

    .footer-copy {
      color: #666666;
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .footer-links a {
      color: #666666;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #999999;
    }

    .footer-links .sep {
      color: #333333;
      margin: 0 8px;
    }

    /* ===== MOBILE NAV ===== */
    @media (max-width: 768px) {
      .main-nav { display: none; }
      .hamburger { display: flex; }

      .nav-open .main-nav {
        display: flex;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 99;
      }

      .nav-open .nav-list {
        flex-direction: column;
        gap: 28px;
        text-align: center;
        align-items: center;
      }

      .nav-open .nav-list a {
        font-size: 22px;
        color: var(--white);
        font-weight: 500;
      }

      .nav-open .nav-list a:hover { color: var(--pink); }

      .header-actions {
        position: relative;
        z-index: 101;
        flex-shrink: 0;
      }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-image {
        order: -1;
      }

      .about-image img {
        height: 280px;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .agent-steps {
        flex-direction: column;
        gap: 16px;
        max-width: 400px;
      }

      .step-arrow {
        display: none;
      }

      .fetch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .talks-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

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

      .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
      }

      .talks-pills {
        margin-left: -6px;
      }
    }

    /* ===== MODALS ===== */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-box {
      background: var(--white);
      border-radius: 4px;
      max-width: 680px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      padding: 40px;
      position: relative;
    }

    .modal-box h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .modal-box h2 span { color: var(--pink); }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-muted);
      line-height: 1;
      padding: 4px 8px;
      transition: color 0.2s;
    }

    .modal-close:hover { color: var(--text-dark); }

    .modal-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .modal-box h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 24px 0 8px;
    }

    .modal-box p, .modal-box li {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .modal-box ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 12px;
    }

    .modal-box a { color: var(--pink); text-decoration: underline; }

    @media (max-width: 480px) {
      .modal-box { padding: 28px 20px; }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 60px 0 50px;
      }

      .about,
      .services,
      .explainer,
      .fetch,
      .talks,
      .testimonials,
      .contact {
        padding: 60px 0;
      }

      .section-heading {
        margin-bottom: 12px;
      }
    }

/* ============================================
   SUB-PAGE VISUAL COMPONENTS
   ============================================ */

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.step-card {
  background: white;
  border-left: 4px solid var(--pink);
  border-radius: 4px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.step-card-icon {
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.info-box {
  background: white;
  border-left: 4px solid var(--pink);
  border-radius: 4px;
  padding: 32px;
  margin: 32px 0;
}

.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.info-box li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .step-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MISSING COMPONENT STYLES
   ============================================ */

/* Pricing Table */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-table thead {
  background: var(--pink);
  color: var(--white);
}

.pricing-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: #fafafa;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody td {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text-body);
}

.pricing-table tbody td:first-child {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

.pricing-table tbody td:nth-child(2) {
  color: var(--text-muted);
  font-size: 14px;
}

.pricing-table tbody td:last-child {
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
}

/* Contact Page - Full Styles */
.contact-section {
  background: var(--grey-bg);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-item-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.contact-item-content a {
  color: var(--pink);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-item-content a:hover {
  opacity: 0.8;
}

/* Contact Form Styles */
.contact-form {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label .required {
  color: var(--pink);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--grey-bg);
  border: 2px solid transparent;
  border-radius: 4px;
  color: var(--text-dark);
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: white;
}

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

.form-group select {
  cursor: pointer;
}

/* Credentials Grid (4 columns) */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.credential-card {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--pink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.credential-card i {
  font-size: 32px;
  color: var(--pink);
  margin-bottom: 16px;
}

.credential-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.credential-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Speaking Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.topic-card {
  background: #f9f9f9;
  border-left: 4px solid var(--pink);
  border-radius: 4px;
  padding: 24px;
  transition: transform 0.2s ease;
}

.topic-card:hover {
  transform: translateX(4px);
}

.topic-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.topic-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    font-size: 13px;
  }
  
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 12px 8px;
  }
}

/* 4-column grid for credentials */
.credentials-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.credentials-grid-4col .step-card {
  background: white;
  border-left: 4px solid var(--pink);
  border-radius: 4px;
  padding: 28px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 992px) {
  .credentials-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .credentials-grid-4col {
    grid-template-columns: 1fr;
  }
}

/* Enhanced info-box for visual impact */
.info-box {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-left: 5px solid var(--pink);
  border-radius: 8px;
  padding: 36px 32px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.info-box li:last-child {
  margin-bottom: 0;
}

.info-box li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
