/* ===== index.html original styles ===== */
:root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --accent: #eff6ff;
      --text: #111827;
      --muted: #6b7280;
      --bg: #ffffff;
      --soft: #f8fafc;
      --border: #e5e7eb;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --radius: 18px;
      --max-width: 1200px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

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

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

    .container {
      width: min(100% - 32px, var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
    }

    .section-alt {
      background: var(--soft);
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      line-height: 1.15;
      margin-bottom: 14px;
      font-weight: 800;
      text-align: center;
    }

    .section-subtitle {
      max-width: 760px;
      margin: 0 auto 50px;
      text-align: center;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    }

    .header .container {
      width: calc(100% - 500px);
      max-width: none;
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .logo {
      width: 120px;
      height: 58px;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      flex-shrink: 0;
    }
    
    .logo img {
      width: 76px;
      height: auto;
      object-fit: contain;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-text .site-title {
      font-size: 1rem;
      line-height: 1.2;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-text p {
      font-size: 0.84rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-weight: 500;
      color: #374151;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 22px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.97rem;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
    }

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

    .btn-outline {
      background: white;
      border-color: var(--border);
      color: var(--text);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .btn-soft {
      background: var(--accent);
      color: var(--primary);
    }

    .btn-soft:hover {
      background: #dbeafe;
    }

    .hero {
      padding: 88px 0 64px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 26%),
        linear-gradient(to bottom, #ffffff, #f8fbff);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 48px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--primary);
      font-weight: 700;
      padding: 10px 14px;
      border-radius: 999px;
      margin-bottom: 22px;
      font-size: 0.92rem;
    }

    .hero h1,
    .hero h2 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.08;
      margin-bottom: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 640px;
      margin-bottom: 28px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: #374151;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .hero-card {
      background: white;
      border: 1px solid rgba(229, 231, 235, 0.9);
      border-radius: 26px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent 55%);
      pointer-events: none;
    }

    .hero-card-badge {
      display: inline-block;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--accent);
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .hero-card h3 {
      font-size: 1.55rem;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .hero-card p {
      font-size: 0.98rem;
      margin-bottom: 22px;
    }

    .hero-list {
      display: grid;
      gap: 14px;
      margin-bottom: 22px;
    }

    .hero-list li {
      list-style: none;
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 16px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .hero-list span {
      color: var(--primary);
      font-weight: 800;
    }

    /* ===== Homepage Hero Customization ===== */
    body.home-page #home.hero {
      position: relative;
      min-height: calc(100vh - 78px);
      padding: 110px 0 90px;
      background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.35)),
        url("images/hero-bg.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    body.home-page #home .eyebrow {
      background: rgba(255, 255, 255, 0.14);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(8px);
    }

    body.home-page #home h1,
    body.home-page #home h2 {
      color: #ffffff;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    body.home-page #home .hero-grid > div:first-child > p {
      color: rgba(255, 255, 255, 0.88);
    }

    body.home-page #home .hero-mini {
      color: rgba(255, 255, 255, 0.92);
    }

    body.home-page #home .hero-card {
          max-width: 450px;
          min-height: 630px;
          padding: 24px 28px 32px;
          border-radius: 24px;
          background: rgba(255, 255, 255, 0.94);
          backdrop-filter: blur(10px);
          transform: translate(180px, -80px);
          display: flex;
          flex-direction: column;
        }

    body.home-page #home .hero-card h3 {
      font-size: 26px;
      line-height: 1.15;
      color: #111827;
      margin-bottom: 10px;
    }

    body.home-page #home .hero-card p {
      font-size: 15px;
      line-height: 1.45;
      color: #64748b;
      margin-bottom: 14px;
    }

    body.home-page #home .hero-card-badge {
      font-size: 14px;
      padding: 8px 14px;
      margin-bottom: 12px;
    }

    body.home-page #home .hero-list {
      gap: 8px;
      margin-bottom: 12px;
    }

    body.home-page #home .hero-list li {
      font-size: 15px;
      padding: 10px 14px;
    }

    body.home-page #home .hero-list span {
      font-size: 15px;
    }

    body.home-page #home .hero-card .btn {
          font-size: 14px;
          padding: 12px 20px;
          width: fit-content;
          margin-top: auto;
        }

    body.home-page .logo {
      width: 120px;
      height: 58px;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    body.home-page .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }


    @media (max-width: 1100px) {
      body.home-page #home .hero-card {
        transform: translate(35px, -35px);
      }
    }

    @media (max-width: 900px) {
      body.home-page #home.hero {
        padding: 90px 0 70px;
      }

      body.home-page #home .hero-card {
        transform: none;
      }

      body.home-page .logo {
        width: 100px;
        height: 50px;
      }
    }


    .trust-grid,
    .services-grid,
    .testimonial-grid,
    .footer-grid {
      display: grid;
      gap: 22px;
    }

    .trust-grid {
      grid-template-columns: repeat(5, 1fr);
    }

    .trust-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px 18px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
      font-weight: 700;
    }

    .trust-item span {
      display: block;
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

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

    .card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
    }

    .card-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: var(--primary);
      font-size: 1.6rem;
      margin-bottom: 18px;
    }

    .card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .card p {
      color: var(--muted);
      margin-bottom: 20px;
      font-size: 0.97rem;
    }

    .text-link {
      color: var(--primary);
      font-weight: 700;
    }

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

    .feature-list {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .feature-list li,
    .program-list li {
      list-style: none;
    }

    .feature-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: #374151;
      font-weight: 500;
    }

    .check {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: #dbeafe;
      color: var(--primary);
      display: grid;
      place-items: center;
      font-weight: 800;
      margin-top: 1px;
    }

    .info-panel {
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .info-panel h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .info-panel p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .mini-stat {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px;
    }

    .mini-stat strong {
      display: block;
      font-size: 1.35rem;
      color: var(--primary);
      margin-bottom: 5px;
    }

    .program-box {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .program-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 26px;
    }

    .program-list {
      display: grid;
      gap: 12px;
    }

    .program-list li {
      padding: 12px 14px;
      border-radius: 14px;
      background: #f8fafc;
      border: 1px solid var(--border);
      color: #374151;
      font-weight: 500;
    }

    .highlight-card {
      background: linear-gradient(135deg, var(--primary), #3b82f6);
      color: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 22px 40px rgba(37, 99, 235, 0.28);
    }

    .highlight-card h3 {
      font-size: 1.55rem;
      margin-bottom: 10px;
    }

    .highlight-card p {
      opacity: 0.92;
      margin-bottom: 18px;
    }

    .highlight-card ul {
      display: grid;
      gap: 12px;
      margin-bottom: 24px;
    }

    .highlight-card li {
      list-style: none;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 12px 14px;
    }

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

    .step-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 26px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .step-number {
      width: 56px;
      height: 56px;
      margin: 0 auto 16px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: var(--primary);
      font-weight: 800;
      font-size: 1.2rem;
    }

    .step-card h3 {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .step-card p {
      color: var(--muted);
      font-size: 0.96rem;
    }

    .testimonial-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .testimonial-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }
    
    .stars {
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    
    .testimonial-card p {
      color: #374151;
      margin-bottom: 18px;
    }
    
    .testimonial-card strong {
      display: block;
      font-size: 1rem;
    }
    
    .testimonial-card span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .stars {
      font-size: 1.1rem;
      margin-bottom: 14px;
    }

    .testimonial-card p {
      color: #374151;
      margin-bottom: 18px;
    }

    .testimonial-card strong {
      display: block;
      font-size: 1rem;
    }

    .testimonial-card span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .faq-wrap {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    }

    .faq-question {
      width: 100%;
      padding: 20px 22px;
      background: white;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      text-align: left;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
    }

    .faq-question span:last-child {
      color: var(--primary);
      font-size: 1.2rem;
      transition: transform 0.25s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--muted);
      padding: 0 22px;
    }

    .faq-item.active .faq-answer {
      max-height: 220px;
      padding: 0 22px 20px;
    }

    .faq-item.active .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: start;
    }

    .contact-card,
    .form-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin: 24px 0;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 16px;
      background: #f8fafc;
      border: 1px solid var(--border);
    }

    .contact-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: var(--primary);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    form {
      display: grid;
      gap: 16px;
    }

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

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 16px;
      font: inherit;
      background: #fff;
      color: var(--text);
      outline: none;
    }

    input:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

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

    .footer {
      background: #0f172a;
      color: #e5e7eb;
      padding: 68px 0 28px;
    }

    .footer-grid {
      grid-template-columns: 1.2fr 0.8fr 1fr;
      margin-bottom: 34px;
    }

    .footer h3,
    .footer h4 {
      color: #fff;
      margin-bottom: 16px;
    }

    .footer p,
    .footer a {
      color: #cbd5e1;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 22px;
      text-align: center;
      color: #94a3b8;
      font-size: 0.95rem;
    }

    .floating-whatsapp {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .floating-whatsapp svg {
      width: 30px;
      height: 30px;
    }

    .floating-whatsapp {
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .split-grid,
      .contact-grid,
      .program-columns,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

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

      .testimonial-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 860px) {
      .nav-links,
      .nav-actions .desktop-only {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .nav.mobile-open {
        height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
      }

      .nav.mobile-open .nav-links {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 8px;
      }

      .nav.mobile-open .nav-actions {
        width: 100%;
        justify-content: flex-start;
      }

      .trust-grid,
      .services-grid,
      .steps-grid,
      .mini-stats,
      .form-row {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 60px;
      }

      .section {
        padding: 72px 0;
      }
    }

    @media (max-width: 560px) {
      .brand-text .site-title {
        white-space: normal;
        font-size: 0.95rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .contact-card,
      .form-card,
      .card,
      .step-card,
      .testimonial-card,
      .program-box,
      .info-panel,
      .hero-card {
        padding: 22px;
      }

    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    
    @media (max-width: 1100px) {
      .who-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 860px) {
      .who-grid {
        grid-template-columns: 1fr;
      }
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }
    
    .social-icons a {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #1f2937;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: white;
      transition: 0.3s;
    }
    
    .social-icons a:hover {
      box-shadow: 0 0 15px rgba(255,255,255,0.3);
    }
    
    /* Individual colors on hover */
    .social-icons a:nth-child(1):hover { background: #E1306C; } /* Instagram */
    .social-icons a:nth-child(2):hover { background: #1877F2; } /* Facebook */
    .social-icons a:nth-child(3):hover { background: #000000; } /* Twitter/X */
    .social-icons a:nth-child(4):hover { background: #FF0000; } /* YouTube */

    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    
    .video-box {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .video-box iframe {
      width: 100%;
      height: 280px;
      border: none;
    }
    @media (max-width: 768px) {
      .video-grid {
        grid-template-columns: 1fr;
      }
    
      .video-box iframe {
        height: 220px;
      }
    }

    .video-box:hover {
      transform: scale(1.03);
      transition: 0.3s;
    }


/* ===== courses.html original styles ===== */
:root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --accent: #eff6ff;
      --text: #111827;
      --muted: #6b7280;
      --bg: #ffffff;
      --soft: #f8fafc;
      --border: #e5e7eb;
      --green: #16a34a;
      --orange: #f97316;
      --purple: #7c3aed;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --max-width: 1200px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
    .section { padding: 78px 0; }
    .section-alt { background: var(--soft); }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.55rem);
      line-height: 1.15;
      font-weight: 900;
      text-align: center;
      margin-bottom: 14px;
      letter-spacing: -0.03em;
    }

    .section-subtitle {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .logo {
      width: 120px;
      height: 58px;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      flex-shrink: 0;
    }

    .brand-text .site-title {
      font-size: 1rem;
      line-height: 1.2;
      font-weight: 900;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-text p { font-size: 0.84rem; color: var(--muted); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-weight: 600;
      color: #374151;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--primary); }

    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .menu-toggle { display: none; background: transparent; border: none; font-size: 1.6rem; cursor: pointer; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 20px;
      border-radius: 12px;
      font-weight: 800;
      font-size: 0.95rem;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22); }
    .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .btn-outline { background: white; border-color: var(--border); color: var(--text); }
    .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
    .btn-soft { background: var(--accent); color: var(--primary); }
    .btn-soft:hover { background: #dbeafe; }

    .hero {
      padding: 84px 0 56px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.13), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.08), transparent 28%),
        linear-gradient(to bottom, #ffffff, #f8fbff);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 46px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--primary);
      font-weight: 900;
      padding: 10px 14px;
      border-radius: 999px;
      margin-bottom: 22px;
      font-size: 0.92rem;
    }

    .hero h1,
    .hero h2 {
      font-size: clamp(2.35rem, 5vw, 4.1rem);
      line-height: 1.07;
      margin-bottom: 18px;
      font-weight: 900;
      letter-spacing: -0.045em;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 670px;
      margin-bottom: 28px;
    }

    .hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

    .hero-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: #374151;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .hero-panel {
      background: white;
      border: 1px solid rgba(229, 231, 235, 0.95);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 58%);
      pointer-events: none;
    }

    .hero-panel > * { position: relative; }

    .panel-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #ecfdf5;
      color: var(--green);
      font-size: 0.84rem;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .hero-panel h3 { font-size: 1.55rem; line-height: 1.2; margin-bottom: 12px; }
    .hero-panel p { font-size: 0.98rem; margin-bottom: 20px; }

    .panel-list { display: grid; gap: 12px; }
    .panel-list li {
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 13px 15px;
      font-weight: 700;
    }
    .panel-list span { color: var(--primary); font-weight: 900; }

    .search-box-wrap {
      margin-top: -28px;
      position: relative;
      z-index: 20;
    }

    .search-box {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
    }

    .search-input-wrap {
      position: relative;
    }

    .search-input-wrap i {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
    }

    .search-input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 15px 16px 15px 44px;
      font: inherit;
      font-weight: 600;
      outline: none;
    }

    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 34px;
    }

    .filter-btn {
      border: 1px solid var(--border);
      background: white;
      color: #374151;
      padding: 10px 15px;
      border-radius: 999px;
      font-weight: 800;
      cursor: pointer;
      transition: 0.22s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
      box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
    }

    .course-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .course-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
      overflow: hidden;
      transition: 0.28s ease;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 48px rgba(15, 23, 42, 0.12);
    }

    .course-top {
      min-height: 164px;
      padding: 22px;
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 34%),
        linear-gradient(135deg, var(--primary), #60a5fa);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
    }

    .course-top.gem { background: linear-gradient(135deg, #2563eb, #60a5fa); }
    .course-top.docs { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
    .course-top.bid { background: linear-gradient(135deg, #16a34a, #4ade80); }
    .course-top.pricing { background: linear-gradient(135deg, #f97316, #fdba74); }
    .course-top.oem { background: linear-gradient(135deg, #0f172a, #64748b); }
    .course-top.cert { background: linear-gradient(135deg, #be123c, #fb7185); }

    .course-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.18);
      display: grid;
      place-items: center;
      font-size: 1.75rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .course-label-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .course-badge {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.20);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 900;
    }

    .course-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .course-body h3 {
      font-size: 1.22rem;
      line-height: 1.28;
      margin-bottom: 10px;
    }

    .course-body p {
      color: var(--muted);
      font-size: 0.96rem;
      margin-bottom: 18px;
    }

    .course-meta {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    .meta-item {
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 11px;
      font-size: 0.86rem;
      color: #374151;
      font-weight: 700;
    }

    .meta-item i { color: var(--primary); margin-right: 6px; }

    .price-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
      margin-top: auto;
      border-top: 1px solid var(--border);
      padding-top: 16px;
      margin-bottom: 16px;
    }

    .price strong {
      display: block;
      color: var(--primary);
      font-size: 1.45rem;
      line-height: 1;
    }

    .price span { color: var(--muted); font-size: 0.82rem; font-weight: 700; }

    .course-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .empty-state {
      display: none;
      text-align: center;
      padding: 34px;
      border: 1px dashed var(--border);
      border-radius: 22px;
      background: white;
      color: var(--muted);
      font-weight: 700;
    }

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

    .feature-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--accent);
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
    .feature-card p { color: var(--muted); font-size: 0.95rem; }

    .cta-box {
      background: linear-gradient(135deg, var(--primary), #60a5fa);
      color: white;
      padding: 36px;
      border-radius: 26px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      align-items: center;
      gap: 24px;
      box-shadow: 0 22px 40px rgba(37, 99, 235, 0.28);
    }

    .cta-box h2 {
      font-size: clamp(1.7rem, 3vw, 2.35rem);
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .cta-box p { opacity: 0.92; }
    .cta-actions { display: flex; flex-direction: column; gap: 12px; }
    .cta-actions .btn { width: 100%; }

    .faq-wrap { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    }

    .faq-question {
      width: 100%;
      padding: 20px 22px;
      background: white;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      text-align: left;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
    }

    .faq-question span:last-child { color: var(--primary); font-size: 1.2rem; transition: transform 0.25s ease; }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--muted);
      padding: 0 22px;
    }

    .faq-item.active .faq-answer { max-height: 240px; padding: 0 22px 20px; }
    .faq-item.active .faq-question span:last-child { transform: rotate(45deg); }

    .footer { background: #0f172a; color: #e5e7eb; padding: 68px 0 28px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 22px; margin-bottom: 34px; }
    .footer h3, .footer h4 { color: white; margin-bottom: 16px; }
    .footer p, .footer a, .footer span { color: #cbd5e1; }
    .footer-links { display: grid; gap: 10px; }

    .social-icons { display: flex; gap: 12px; margin-top: 10px; }
    .social-icons a {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #1f2937;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: white;
      transition: 0.3s;
    }

    .social-icons a:nth-child(1):hover { background: #E1306C; }
    .social-icons a:nth-child(2):hover { background: #1877F2; }
    .social-icons a:nth-child(3):hover { background: #000000; }
    .social-icons a:nth-child(4):hover { background: #FF0000; }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 22px;
      text-align: center;
      color: #94a3b8;
      font-size: 0.95rem;
    }

    .floating-whatsapp {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      animation: pulse 2s infinite;
    }

    .floating-whatsapp svg { width: 30px; height: 30px; }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @media (max-width: 1100px) {
      .hero-grid, .cta-box, .footer-grid { grid-template-columns: 1fr; }
      .course-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      .nav-links, .nav-actions .desktop-only { display: none; }
      .menu-toggle { display: block; }
      .nav.mobile-open { height: auto; padding: 16px 0; flex-wrap: wrap; }
      .nav.mobile-open .nav-links {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 8px;
      }
      .nav.mobile-open .nav-actions { width: 100%; justify-content: flex-start; }
      .search-box { grid-template-columns: 1fr; }
      .course-grid, .features-grid { grid-template-columns: 1fr; }
      .section { padding: 68px 0; }
      .hero { padding-top: 58px; }
    }

    @media (max-width: 560px) {
      .brand-text .site-title { white-space: normal; font-size: 0.94rem; }
      .hero-buttons { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .hero-panel, .course-body, .course-top, .feature-card { padding: 20px; }
      .course-actions { grid-template-columns: 1fr; }
      .course-meta { grid-template-columns: 1fr; }
      .cta-box { padding: 26px; }
    }


/* ===== course-details.html original styles ===== */
:root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --accent: #eff6ff;
      --text: #111827;
      --muted: #6b7280;
      --bg: #ffffff;
      --soft: #f8fafc;
      --border: #e5e7eb;
      --green: #16a34a;
      --orange: #f97316;
      --purple: #7c3aed;
      --red: #be123c;
      --dark: #0f172a;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --max-width: 1200px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    .container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
    .section { padding: 78px 0; }
    .section-alt { background: var(--soft); }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand { display: flex; align-items: center; gap: 14px; min-width: 0; }

    .logo {
      width: 120px;
      height: 58px;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      flex-shrink: 0;
    }

    .brand-text .site-title {
      font-size: 1rem;
      line-height: 1.2;
      font-weight: 900;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-text p { font-size: 0.84rem; color: var(--muted); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-weight: 600;
      color: #374151;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--primary); }

    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .menu-toggle { display: none; background: transparent; border: none; font-size: 1.6rem; cursor: pointer; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 20px;
      border-radius: 12px;
      font-weight: 800;
      font-size: 0.95rem;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22); }
    .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .btn-outline { background: white; border-color: var(--border); color: var(--text); }
    .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
    .btn-soft { background: var(--accent); color: var(--primary); }
    .btn-soft:hover { background: #dbeafe; }

    .hero {
      padding: 76px 0 58px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.13), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.08), transparent 28%),
        linear-gradient(to bottom, #ffffff, #f8fbff);
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 26px;
      font-size: 0.95rem;
    }

    .breadcrumb a { color: var(--primary); }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 42px;
      align-items: start;
    }

    .course-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--primary);
      font-weight: 900;
      padding: 10px 14px;
      border-radius: 999px;
      margin-bottom: 18px;
      font-size: 0.92rem;
    }

    .hero h1,
    .hero h2 {
      font-size: clamp(2.2rem, 5vw, 3.85rem);
      line-height: 1.08;
      margin-bottom: 18px;
      font-weight: 900;
      letter-spacing: -0.045em;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 720px;
      margin-bottom: 26px;
    }

    .hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

    .course-panel {
      background: white;
      border: 1px solid rgba(229, 231, 235, 0.95);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 100px;
      overflow: hidden;
    }

    .course-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 60%);
      pointer-events: none;
    }

    .course-panel > * { position: relative; }

    .price-box {
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      margin-bottom: 18px;
    }

    .price-box strong {
      display: block;
      color: var(--primary);
      font-size: 2.1rem;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .price-box span { color: var(--muted); font-size: 0.93rem; font-weight: 700; }

    .info-list { display: grid; gap: 12px; margin-bottom: 20px; }

    .info-item {
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 13px 15px;
      color: #374151;
      font-weight: 700;
    }

    .info-item span:last-child { color: var(--primary); font-weight: 900; text-align: right; }

    .panel-actions { display: grid; gap: 12px; }

    .layout-grid {
      display: grid;
      grid-template-columns: 0.72fr 0.28fr;
      gap: 28px;
      align-items: start;
    }

    .content-card,
    .side-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .content-card + .content-card { margin-top: 24px; }
    .content-card h3,
    .side-card h3 { font-size: 1.45rem; line-height: 1.25; margin-bottom: 14px; }
    .content-card p { color: var(--muted); margin-bottom: 16px; }

    .point-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .point-item {
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 15px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #374151;
      font-weight: 700;
    }

    .tick {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #dbeafe;
      color: var(--primary);
      display: grid;
      place-items: center;
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .syllabus-list { display: grid; gap: 14px; margin-top: 18px; }

    .syllabus-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      background: #ffffff;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
    }

    .module-number {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--accent);
      color: var(--primary);
      display: grid;
      place-items: center;
      font-weight: 900;
      flex-shrink: 0;
    }

    .syllabus-item h4 { font-size: 1.04rem; margin-bottom: 6px; }
    .syllabus-item p { margin-bottom: 0; font-size: 0.95rem; }

    .side-stack { display: grid; gap: 18px; position: sticky; top: 100px; }

    .side-list { display: grid; gap: 12px; }
    .side-list li {
      list-style: none;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #374151;
      font-weight: 700;
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
    }

    .instructor-box {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-top: 16px;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #f8fafc;
    }

    .avatar {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), #60a5fa);
      color: white;
      display: grid;
      place-items: center;
      font-weight: 900;
      flex-shrink: 0;
    }

    .instructor-box strong { display: block; }
    .instructor-box span { color: var(--muted); font-size: 0.9rem; font-weight: 700; }

    .faq-wrap { display: grid; gap: 14px; }
    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 19px 20px;
      background: white;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      text-align: left;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
    }

    .faq-question span:last-child { color: var(--primary); font-size: 1.2rem; transition: transform 0.25s ease; }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--muted);
      padding: 0 20px;
    }

    .faq-item.active .faq-answer { max-height: 240px; padding: 0 20px 18px; }
    .faq-item.active .faq-question span:last-child { transform: rotate(45deg); }

    .other-courses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 34px;
    }

    .other-course {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 22px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .other-course h3 { font-size: 1.13rem; margin-bottom: 8px; }
    .other-course p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }

    .footer { background: #0f172a; color: #e5e7eb; padding: 68px 0 28px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 22px; margin-bottom: 34px; }
    .footer h3, .footer h4 { color: white; margin-bottom: 16px; }
    .footer p, .footer a, .footer span { color: #cbd5e1; }
    .footer-links { display: grid; gap: 10px; }

    .social-icons { display: flex; gap: 12px; margin-top: 10px; }
    .social-icons a {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #1f2937;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: white;
      transition: 0.3s;
    }

    .social-icons a:nth-child(1):hover { background: #E1306C; }
    .social-icons a:nth-child(2):hover { background: #1877F2; }
    .social-icons a:nth-child(3):hover { background: #000000; }
    .social-icons a:nth-child(4):hover { background: #FF0000; }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 22px;
      text-align: center;
      color: #94a3b8;
      font-size: 0.95rem;
    }

    .floating-whatsapp {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      animation: pulse 2s infinite;
    }

    .floating-whatsapp svg { width: 30px; height: 30px; }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .layout-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .course-panel,
      .side-stack { position: static; }
      .other-courses-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      .nav-links, .nav-actions .desktop-only { display: none; }
      .menu-toggle { display: block; }
      .nav.mobile-open { height: auto; padding: 16px 0; flex-wrap: wrap; }
      .nav.mobile-open .nav-links {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 8px;
      }
      .nav.mobile-open .nav-actions { width: 100%; justify-content: flex-start; }
      .point-grid, .other-courses-grid { grid-template-columns: 1fr; }
      .section { padding: 68px 0; }
      .hero { padding-top: 58px; }
    }

    @media (max-width: 560px) {
      .brand-text .site-title { white-space: normal; font-size: 0.94rem; }
      .hero-buttons { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .course-panel,
      .content-card,
      .side-card { padding: 22px; }
      .syllabus-item { grid-template-columns: 1fr; }
    }


/* ===== Certification page and homepage certification section ===== */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.cert-home-wrap,
.cert-hero-grid,
.cert-process-box,
.cert-cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.cert-home-copy h2,
.cert-hero h1,
.cert-hero h2,
.cert-process-box h2,
.cert-cta-box h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 16px;
}

.cert-home-copy p,
.cert-hero p,
.cert-process-box p,
.cert-cta-box p {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 720px;
}

.cert-home-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.cert-home-panel,
.cert-hero-panel {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.28);
}

.cert-home-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cert-home-metric,
.cert-stat-grid div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
}

.cert-home-metric strong,
.cert-stat-grid strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
}

.cert-home-metric span,
.cert-stat-grid span { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 700; }

.cert-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.cert-feature-card,
.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cert-feature-card { display: flex; gap: 14px; align-items: flex-start; }
.cert-feature-icon,
.cert-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.cert-feature-card span { color: var(--primary); font-size: 0.82rem; font-weight: 900; }
.cert-feature-card h3 { font-size: 1rem; line-height: 1.25; margin: 5px 0; }
.cert-feature-card p { color: var(--muted); font-size: 0.9rem; }

.cert-hero {
  padding: 86px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 12% 16%, rgba(22, 163, 74, 0.10), transparent 26%),
    linear-gradient(to bottom, #ffffff, #f8fbff);
}

.cert-hero-badge {
  display: inline-flex;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 16px;
}
.cert-hero-panel h3 { font-size: 1.7rem; margin-bottom: 10px; }
.cert-hero-panel p { color: rgba(255,255,255,0.84); margin-bottom: 20px; }
.cert-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.cert-toolbar {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 14px;
  margin-bottom: 18px;
}
.cert-select {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  font-weight: 700;
  color: #374151;
  background: white;
  outline: none;
}
.cert-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.08); }
.cert-category-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 20px; }
.cert-filter-pill {
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.22s ease;
}
.cert-filter-pill strong { color: #374151; font-weight: 900; }
.cert-filter-pill em { color: var(--muted); font-style: normal; font-size: 0.82rem; font-weight: 700; }
.cert-filter-pill:hover,
.cert-filter-pill.active { background: var(--primary); border-color: var(--primary); }
.cert-filter-pill:hover strong,
.cert-filter-pill.active strong,
.cert-filter-pill:hover em,
.cert-filter-pill.active em { color: white; }
.cert-result-line { margin-bottom: 16px; color: var(--muted); font-weight: 800; }
.cert-result-line strong { color: var(--primary); }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-card { display: flex; flex-direction: column; min-height: 100%; transition: transform .25s ease, box-shadow .25s ease; }
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12); }
.cert-card-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.cert-badge { background: var(--accent); color: var(--primary); border: 1px solid #dbeafe; border-radius: 999px; padding: 7px 10px; font-weight: 900; font-size: 0.78rem; }
.cert-card h3 { font-size: 1.17rem; line-height: 1.25; margin-bottom: 10px; }
.cert-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; }
.cert-price-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: auto; margin-bottom: 16px; }
.cert-price-row div { background: #f8fafc; border: 1px solid var(--border); border-radius: 14px; padding: 12px; }
.cert-price-row span { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 800; margin-bottom: 4px; }
.cert-price-row strong { color: var(--text); font-size: 1rem; }
.cert-card-btn { width: 100%; }
.cert-process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cert-process-steps div { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: 0 8px 24px rgba(15,23,42,0.05); }
.cert-process-steps span { color: var(--primary); font-weight: 900; }
.cert-process-steps strong { display: block; font-size: 1.03rem; margin: 6px 0; }
.cert-process-steps p { font-size: 0.92rem; }
.cert-cta-box { background: linear-gradient(135deg, #eff6ff, #ffffff); border: 1px solid var(--border); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }

@media (max-width: 1100px) {
  .cert-home-wrap,
  .cert-hero-grid,
  .cert-process-box,
  .cert-cta-box { grid-template-columns: 1fr; }
  .cert-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .cert-home-panel { grid-template-columns: 1fr; }
  .cert-toolbar { grid-template-columns: 1fr; }
  .cert-grid,
  .cert-feature-grid,
  .cert-process-steps,
  .cert-stat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cert-home-actions { flex-direction: column; }
  .cert-home-panel,
  .cert-hero-panel,
  .cert-cta-box { padding: 22px; }
}


/* ===== Premium About Section Update ===== */
.about-premium {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-heading-wrap {
  max-width: 920px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.section-kicker.light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.about-premium-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.about-story-card,
.about-insight-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.about-badge {
  display: inline-flex;
  background: #ecfdf5;
  color: #16a34a;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.about-story-card h3,
.about-insight-panel h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-story-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.about-highlight-box {
  display: grid;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: 18px;
  padding: 18px;
  margin: 22px 0;
}

.about-highlight-box strong { color: var(--text); }
.about-highlight-box span { color: var(--muted); font-weight: 600; }

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.need-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.need-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.need-item > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.need-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.need-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.06rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.customer-gain-box {
  margin-top: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, #0f172a, #2563eb);
  color: white;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.24);
}

.customer-gain-box h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.customer-gain-box p { color: rgba(255,255,255,0.88); }

.gain-points {
  display: grid;
  gap: 12px;
}

.gain-points div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .about-premium-grid,
  .customer-gain-box { grid-template-columns: 1fr; }
  .benefit-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .about-story-card,
  .about-insight-panel,
  .customer-gain-box { padding: 24px; }
  .benefit-strip { grid-template-columns: 1fr; }
  .need-item { grid-template-columns: 1fr; }
  .about-actions .btn { width: 100%; }
}


/* ===== App Promo Section ===== */
.app-promo-section {
  padding-top: 0;
}

.app-promo-card {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #0f172a, #2563eb);
  color: #ffffff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.24);
}

.app-promo-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.app-promo-content p {
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin-bottom: 18px;
}

.app-promo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-promo-points span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
  font-size: 0.92rem;
}

.app-promo-action {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
}

.app-download-btn {
  width: 100%;
  background: #ffffff !important;
  color: #2563eb !important;
  margin-bottom: 12px;
}

.app-promo-action p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 900px) {
  .app-promo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .app-promo-card {
    padding: 24px;
  }

  .app-promo-points {
    display: grid;
  }
}

.footer-app-download {
  margin: 26px 0 28px;
}

.footer-app-download h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-app-download p {
  max-width: 420px;
  color: #cbd5e1;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0f172a !important;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.play-store-btn:hover {
  transform: translateY(-2px);
  background: #f8fafc;
}

.play-store-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #ffffff;
  font-size: 1.25rem;
}

.play-store-btn small {
  display: block;
  font-size: 0.72rem;
  line-height: 1;
  color: #475569;
}

.play-store-btn strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  color: #0f172a;
}

/* ===== Course Pricing & Badge Refinement ===== */
.price-row {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.price strong {
  display: block;
  line-height: 1.25;
}

.price span {
  display: block;
  margin-top: 3px;
}

.course-badge-blue {
  background: #eff6ff !important;
  color: #2563eb !important;
  border-color: #dbeafe !important;
}

.course-badge-green {
  background: #ecfdf5 !important;
  color: #16a34a !important;
  border-color: #bbf7d0 !important;
}

.course-badge-orange {
  background: #fff7ed !important;
  color: #f97316 !important;
  border-color: #fed7aa !important;
}

.course-badge-purple {
  background: #f5f3ff !important;
  color: #7c3aed !important;
  border-color: #ddd6fe !important;
}

.course-badge-muted {
  background: #f8fafc !important;
  color: #475569 !important;
  border-color: #e2e8f0 !important;
}

/* ===== Separate Policy / About / Contact Pages ===== */
.page-hero {
  padding: 78px 0 58px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.page-hero .hero-copy {
  max-width: 860px;
}

.page-hero h1,
.page-hero h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 16px 0 16px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 780px;
}

.legal-page,
.info-page,
.contact-page {
  background: #ffffff;
}

.legal-layout,
.info-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.legal-card,
.info-card,
.contact-card,
.policy-side-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.legal-card h3,
.info-card h3,
.contact-card h3,
.policy-side-card h3 {
  font-size: 1.28rem;
  margin: 26px 0 10px;
  line-height: 1.25;
}

.legal-card h3:first-child,
.info-card h3:first-child,
.contact-card h3:first-child,
.policy-side-card h3:first-child {
  margin-top: 0;
}

.legal-card p,
.info-card p,
.contact-card p,
.policy-side-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-card ul,
.info-card ul,
.policy-side-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
  padding-left: 20px;
  color: #374151;
}

.legal-card li,
.info-card li,
.policy-side-card li {
  padding-left: 4px;
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.side-stack-small {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 98px;
}

.quick-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.quick-contact-list a,
.quick-contact-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
  color: #374151;
  font-weight: 650;
}

.about-page-grid,
.values-grid,
.contact-method-grid {
  display: grid;
  gap: 22px;
}

.about-page-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

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

.value-card,
.about-mini-card,
.contact-method-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.value-card strong,
.about-mini-card strong,
.contact-method-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p,
.about-mini-card p,
.contact-method-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-method-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}

.contact-method-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  font-weight: 700;
  min-height: 24px;
}

.disclaimer-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  color: #374151;
  margin: 20px 0;
}

@media (max-width: 980px) {
  .legal-layout,
  .info-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .side-stack-small {
    position: static;
  }

  .about-page-grid,
  .values-grid,
  .contact-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .legal-card,
  .info-card,
  .contact-card,
  .policy-side-card {
    padding: 22px;
    border-radius: 20px;
  }

  .about-page-grid,
  .values-grid,
  .contact-method-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 58px 0 42px;
  }
}

/* ===== Final Visual & Header Fixes - 2026-06-18 ===== */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-soft: #dbeafe;
  --cyan: #06b6d4;
  --ink: #0f172a;
  --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* Header width + brand protection */
.header .container {
  width: min(100% - 36px, 1420px) !important;
  max-width: 1420px !important;
}

.nav {
  min-height: 82px !important;
  height: auto !important;
  gap: 16px !important;
}

.brand {
  flex: 0 0 auto !important;
  min-width: 350px !important;
  max-width: 410px !important;
  gap: 12px !important;
}

.logo,
body.home-page .logo {
  width: 86px !important;
  height: 56px !important;
  justify-content: flex-start !important;
}

.logo img,
body.home-page .logo img {
  width: 86px !important;
  height: 56px !important;
  object-fit: contain !important;
}

.brand-text {
  min-width: 245px !important;
  flex: 0 0 auto !important;
}

.brand-text .site-title {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 1.03rem !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  color: #0f172a !important;
}

.brand-text p {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 0.83rem !important;
  line-height: 1.25 !important;
  color: #64748b !important;
}

.nav-links {
  flex: 1 1 auto !important;
  justify-content: center !important;
  gap: 8px !important;
}

.nav-links a {
  padding: 9px 10px !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transition: 0.2s ease !important;
}

.nav-links a:hover,
.nav-links a.active {
  background: #eff6ff !important;
  color: var(--primary) !important;
}

.nav-actions {
  flex: 0 0 auto !important;
}

.nav-actions .btn {
  padding: 11px 16px !important;
  white-space: nowrap !important;
}

@media (max-width: 1240px) {
  .brand {
    min-width: 320px !important;
  }

  .brand-text .site-title {
    font-size: 0.96rem !important;
  }

  .nav-links {
    gap: 4px !important;
  }

  .nav-links a {
    padding: 8px 8px !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 1120px) {
  .nav-actions .desktop-only {
    display: none !important;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
  }

  .nav.mobile-open {
    padding: 14px 0 !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
  }

  .nav.mobile-open .nav-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    order: 5;
    gap: 10px !important;
    padding-top: 12px;
  }

  .nav.mobile-open .nav-links a {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0;
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 640px) {
  .header .container {
    width: min(100% - 22px, 1420px) !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 132px) !important;
    gap: 8px !important;
  }

  .logo,
  body.home-page .logo {
    width: 68px !important;
    height: 44px !important;
  }

  .logo img,
  body.home-page .logo img {
    width: 68px !important;
    height: 44px !important;
  }

  .brand-text {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .brand-text .site-title {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.84rem !important;
    max-width: 190px;
  }

  .brand-text p {
    display: none !important;
  }

  .nav-actions .btn-primary {
    padding: 10px 12px !important;
    font-size: 0.86rem !important;
    width: auto !important;
  }

  .nav.mobile-open .nav-links {
    grid-template-columns: 1fr;
  }
}

/* Stronger visual treatment for the new separate pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 76px !important;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 64, 175, 0.84) 45%, rgba(14, 165, 233, 0.54) 100%),
    url("images/hero-bg.png") !important;
  background-size: cover !important;
  background-position: center !important;
  color: #ffffff !important;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.20), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(34,211,238,0.28), transparent 26%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -72px;
  height: 150px;
  background: #ffffff;
  transform: rotate(-2deg);
  border-radius: 50% 50% 0 0;
}

.page-hero .container,
.page-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero .hero-copy {
  max-width: 920px !important;
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255,255,255,0.84);
  padding: 9px 13px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.page-hero .breadcrumb a {
  color: #ffffff !important;
  font-weight: 700;
}

.page-hero .eyebrow,
.page-hero .section-kicker {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none !important;
  backdrop-filter: blur(10px);
}

.page-hero h1,
.page-hero h2 {
  color: #ffffff !important;
  font-size: clamp(2.25rem, 5vw, 4.35rem) !important;
  line-height: 1.04 !important;
  max-width: 1000px;
  text-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.90) !important;
  font-size: 1.12rem !important;
  max-width: 820px !important;
}

.page-hero .btn-outline,
.page-hero .btn-soft {
  background: rgba(255, 255, 255, 0.13) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.page-hero .btn-outline:hover,
.page-hero .btn-soft:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}

.legal-page,
.info-page,
.contact-page {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.legal-card,
.info-card,
.contact-card,
.policy-side-card,
.about-mini-card,
.value-card,
.contact-method-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.9) !important;
  box-shadow: var(--card-shadow) !important;
}

.legal-card::before,
.info-card::before,
.contact-card::before,
.policy-side-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.legal-card h3,
.info-card h3,
.contact-card h3,
.policy-side-card h3 {
  color: #0f172a;
  letter-spacing: -0.02em;
}

.legal-card h3:not(:first-child),
.info-card h3:not(:first-child) {
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.policy-meta {
  background: linear-gradient(135deg, #eff6ff, #ecfeff) !important;
  border: 1px solid #bfdbfe;
  color: #1d4ed8 !important;
}

.quick-contact-list a,
.quick-contact-list span {
  background: linear-gradient(135deg, #ffffff, #f8fbff) !important;
  border-color: #dbeafe !important;
  transition: 0.22s ease;
}

.quick-contact-list a:hover {
  transform: translateY(-2px);
  border-color: #93c5fd !important;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.10);
}

.about-page-grid,
.values-grid,
.contact-method-grid {
  gap: 20px !important;
}

.about-mini-card,
.value-card,
.contact-method-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98)) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-mini-card:hover,
.value-card:hover,
.contact-method-card:hover {
  transform: translateY(-5px);
  border-color: #60a5fa !important;
  box-shadow: 0 22px 42px rgba(37, 99, 235, 0.12) !important;
}

.value-card strong,
.about-mini-card strong,
.contact-method-card strong {
  color: #0f172a;
  font-weight: 850;
}

.contact-method-card i {
  background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.20);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #f8fafc !important;
  border-color: #dbeafe !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: #ffffff !important;
}

.disclaimer-box {
  background: linear-gradient(135deg, #eff6ff, #f8fafc) !important;
  border-color: #bfdbfe !important;
}

.highlight-card {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(135deg, #1d4ed8, #2563eb 52%, #06b6d4) !important;
}

.footer {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.20), transparent 28%),
    #0f172a !important;
}

@media (max-width: 760px) {
  .page-hero {
    padding: 76px 0 58px !important;
  }

  .page-hero h1,
.page-hero h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .page-hero .breadcrumb {
    font-size: 0.9rem;
  }
}
