
    /* ===================== TOKENS ===================== */
    :root {
      --pp-orange: #F79227;
      --pp-orange-dark: #E07D00;
      --pp-orange-text: #C2670E;  /* 4.52:1 on white — WCAG AA untuk text */
      --pp-yellow: #FFCA42;
      --pp-blue: #1D4ED8;
      --pp-blue-light: #EFF6FF;
      --pp-dark: #1E293B;
      --pp-gray: #52606E;
      --pp-gray-light: #F1F5F9;
      --pp-white: #FFFFFF;
      --pp-green: #16A34A;
      --pp-red: #DC2626;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
      --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
      --shadow-hover: 0 8px 32px rgba(249,115,22,0.18);
      --font-display: 'Plus Jakarta Sans', sans-serif;
      --font-body: 'Nunito', sans-serif;
      --space-1: 8px; --space-2: 16px; --space-3: 24px;
      --space-4: 32px; --space-5: 48px; --space-6: 64px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--pp-dark);
      background: var(--pp-white);
      overflow-x: hidden;
    }

    /* ===================== NAVBAR ===================== */
    .navbar {
      position: sticky; top: 0; z-index: 100;
      background: var(--pp-white);
      border-bottom: 1px solid #E2E8F0;
      padding: 12px 0;
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { height: 60px; width: auto; }
    .nav-logo span { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--pp-orange-text); }
@media (max-width: 480px) {
  .nav-logo span { font-size: 0.85rem; }
}
    .nav-links { display: flex; gap: 28px; list-style: none; }
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 100; }
  .nav-links.nav-menu-open { display: flex; }
  .nav-icons { display: none; }
  .nav-icons.nav-menu-open { display: flex; gap: 12px; padding: 8px 20px; }
}
    .nav-links a { text-decoration: none; color: var(--pp-dark); font-weight: 600; font-size: 0.9rem; transition: color .2s; }
    .nav-links a:hover { color: var(--pp-orange-text); }
    /* nav-icons hidden on desktop — icon buttons duplicated text links, show only in mobile menu */
    .nav-icons { display: none; align-items: center; gap: 10px; }
    .nav-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--pp-white); border: 1.5px solid #E2E8F0;
      color: var(--pp-dark); text-decoration: none;
      transition: all .2s;
    }
    .nav-icon:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
    .nav-icon.ig:hover { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4); border-color: transparent; color: #fff; }
    .nav-icon.web:hover { background: var(--pp-blue); border-color: var(--pp-blue); color: #fff; }
    .nav-icon svg { width: 18px; height: 18px; }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--pp-dark); margin: 5px 0; border-radius: 2px; transition: .3s; }
    .skip-link {
      position: absolute; left: -999px; top: 0; background: var(--pp-orange);
      color: #fff; padding: 12px 20px; z-index: 1000; border-radius: 0 0 8px 0;
    }
    .skip-link:focus { left: 0; }

    /* === WCAG 2.4.7 Focus Visible === */
    :focus-visible {
      outline: 3px solid var(--pp-orange-dark);
      outline-offset: 2px;
      border-radius: 4px;
    }
    .btn-primary:focus-visible, .btn-submit:focus-visible {
      outline-color: var(--pp-orange-dark);
      box-shadow: 0 0 0 4px rgba(249,115,22,0.3);
    }

    /* ===================== HERO ===================== */
    .hero {
      background: linear-gradient(135deg, #FFF7ED 0%, #EFF6FF 100%);
      padding: 48px 0 64px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 20px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
    .hero-badges:empty { display: none; }
    .hero-badge {
      background: var(--pp-white); border: 1.5px solid var(--pp-orange);
      color: var(--pp-orange-text); border-radius: 100px;
      padding: 4px 14px; font-size: 0.78rem; font-weight: 700;
    }
    .hero h1 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 2.4rem; line-height: 1.2;
      color: var(--pp-dark); margin-bottom: 16px;
    }
    .hero h1 span { color: var(--pp-orange-text); }
    .hero-sub { font-size: 1rem; color: var(--pp-gray); line-height: 1.75; margin-bottom: 28px; }
    .hero-trust { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
    .hero-trust-icons { display: flex; }
    .hero-trust-icons span {
      width: 32px; height: 32px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pp-orange), var(--pp-yellow));
      border: 2px solid #fff; margin-left: -8px; display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; color: #fff; font-weight: 700;
    }
    .hero-trust-icons span:first-child { margin-left: 0; }
    .hero-trust-text { font-size: 0.82rem; color: var(--pp-gray); font-weight: 600; }
    .hero-trust-text strong { color: var(--pp-dark); }
    .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--pp-orange); color: #fff;
      border: none; border-radius: var(--radius-sm);
      padding: 14px 28px; font-weight: 800; font-size: 1rem;
      cursor: pointer; transition: all .2s; text-decoration: none;
      display: inline-block; box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    }
    .btn-primary:hover { background: var(--pp-orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
    .btn-hero {
      padding: 16px 32px;
      font-size: 1.06rem;
    }
    .btn-secondary {
      background: transparent; color: var(--pp-blue);
      border: 2px solid var(--pp-blue); border-radius: var(--radius-sm);
      padding: 12px 24px; font-weight: 700; font-size: 1rem;
      cursor: pointer; transition: all .2s; text-decoration: none;
      display: inline-block;
    }
    .btn-hero-outline {
      padding: 14px 28px;
      font-size: 1.03rem;
    }
    .btn-secondary:hover { background: var(--pp-blue); color: #fff; }

    .hero-visual {
      min-height: 240px;
      display: flex; justify-content: center; align-items: center;
      position: relative;
      width: 100%;
      min-width: 300px;
    }
    .hero-visual img {
      max-width: 420px; width: 100%; height: auto;
      border-radius: var(--radius-lg);
      filter: drop-shadow(0 8px 32px rgba(0,0,0,0.12));
      display: block;
      z-index: 1;
    }
    
    
    
    .hero-float-badge {
      position: absolute; z-index: 10;
      background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
      padding: 8px 14px; border-radius: 100px;
      font-size: 0.82rem; font-weight: 700;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      display: flex; align-items: center; gap: 6px;
      white-space: nowrap;
    }
    .hero-float-badge.top-left { top: 16px; left: 8px; }
    .hero-float-badge.bottom-right { bottom: 16px; right: 8px; }
    .hero-decor { display: none; }
    .hero-float-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pp-green); }

    /* ===================== BANNER PROMO ===================== */
    .banner-promo {
      background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 50%, #FDBA74 100%);
      padding: 36px 0;
      text-align: center;
      border-top: 1px solid rgba(249,115,22,0.15);
      border-bottom: 1px solid rgba(249,115,22,0.15);
    }
    .banner-promo-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 20px;
    }
    .banner-promo h2 {
      font-family: var(--font-display); font-weight: 800;
      color: var(--pp-orange-dark); font-size: 1.6rem; letter-spacing: 1px;
      text-transform: uppercase;
    }
    .banner-promo p { color: #7C2D12; font-size: 0.9rem; margin-top: 4px; }
    .banner-promo .btn-promo {
      display: inline-block; margin-top: 14px;
      background: var(--pp-orange); color: #fff;
      border-radius: var(--radius-sm); padding: 10px 28px;
      font-weight: 800; text-decoration: none; font-size: 0.95rem;
      transition: background .2s;
    }
    .banner-promo .btn-promo:hover { background: var(--pp-orange-dark); }

    /* ===================== WHY US ===================== */
    .why-us { padding: 64px 0; background: var(--pp-white); }
    .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section-header { text-align: center; margin-bottom: 44px; }
    .section-eyebrow {
      display: inline-block;
      color: var(--pp-orange); font-weight: 800; font-size: 0.82rem;
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.9rem; color: var(--pp-dark); line-height: 1.25;
    }
    .section-title span { color: var(--pp-orange); }
    .section-sub { color: var(--pp-gray); margin-top: 10px; font-size: 0.95rem; }

    .why-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .why-card {
      text-align: center; padding: var(--space-4) var(--space-3);
      border-radius: var(--radius-md); background: var(--pp-gray-light);
      box-shadow: var(--shadow-sm);
      transition: all .25s;
    }
    .why-card:hover { background: var(--pp-blue-light); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .why-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: linear-gradient(135deg, var(--pp-orange), var(--pp-yellow));
      margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
    }
    .why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
    .why-card p { font-size: 0.85rem; color: var(--pp-gray); line-height: 1.6; }

    /* ===================== ALERT BEASISWA ===================== */
    .alert-beasiswa {
      background: linear-gradient(90deg, var(--pp-blue) 0%, #2563EB 100%);
      border-radius: var(--radius-lg); padding: 24px 32px;
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      margin: 0 0 48px;
    }
    .alert-beasiswa-text h3 {
      font-family: var(--font-display); font-weight: 800;
      color: var(--pp-white); font-size: 1.15rem;
    }
    .alert-beasiswa-text p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-top: 4px; }
    .alert-beasiswa .btn-white {
      background: #fff; color: var(--pp-blue);
      border: none; border-radius: var(--radius-sm);
      padding: 12px 24px; font-weight: 800; font-size: 0.9rem;
      cursor: pointer; white-space: nowrap; text-decoration: none;
      transition: all .2s;
    }
    .alert-beasiswa .btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

    /* ===================== SERVICES GRID ===================== */
    .services { padding: 64px 0; background: var(--pp-white); }
    .services-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    .service-card {
      border: 2px solid #94A3B8; border-radius: var(--radius-md);
      padding: var(--space-3); transition: all .25s; position: relative;
      background: var(--pp-white); box-shadow: var(--shadow-sm);
    }
    .service-card:hover {
      border-color: var(--pp-orange); transform: translateY(-3px); box-shadow: var(--shadow-hover);
    }
    .service-card .badge-popular {
      position: absolute; top: -10px; right: 16px;
      background: var(--pp-red); color: #fff;
      border-radius: 100px; padding: 2px 12px; font-size: 0.7rem; font-weight: 800;
    }
    .service-card .badge-new {
      position: absolute; top: -10px; right: 16px;
      background: var(--pp-green); color: #fff;
      border-radius: 100px; padding: 2px 12px; font-size: 0.7rem; font-weight: 800;
    }
    .service-icon { font-size: 2rem; margin-bottom: 10px; }
    .service-card h3 {
      font-family: var(--font-display); font-weight: 700;
      font-size: 0.95rem; color: var(--pp-dark); margin-bottom: 4px;
    }
    .service-card .service-desc { font-size: 0.8rem; color: var(--pp-gray); line-height: 1.5; margin-bottom: 12px; }
    .service-price {
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.1rem; color: var(--pp-orange);
    }
    .service-price-original {
      font-size: 0.8rem; color: var(--pp-gray);
      text-decoration: line-through; margin-right: 6px;
    }
    .btn-daftar {
      display: block; width: 100%; margin-top: 12px;
      background: var(--pp-orange); color: #fff;
      border: none; border-radius: var(--radius-sm);
      padding: 10px; font-weight: 700; font-size: 0.85rem;
      cursor: pointer; text-align: center; text-decoration: none;
      transition: background .2s;
    }
    .btn-daftar:hover { background: var(--pp-orange-dark); }

    /* ===================== SOCIAL PROOF ===================== */
    .social-proof {
      background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
      padding: 64px 0; text-align: center;
    }
    .social-proof .section-title { color: var(--pp-white); }
    .social-proof .section-sub { color: rgba(255,255,255,0.7); }
    .stars { color: var(--pp-yellow); font-size: 2rem; letter-spacing: 2px; margin: 16px 0 8px; }
    .rating-num {
      font-family: var(--font-display); font-weight: 800;
      font-size: 3rem; color: var(--pp-yellow);
    }
    .rating-sub { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }
    .trust-badges {
      display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
      margin-top: 36px;
    }
    .trust-badge-item {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-md); padding: 16px 24px;
      display: flex; align-items: center; gap: 10px;
      color: #fff; font-weight: 600; font-size: 0.88rem;
    }
    .trust-badge-item .icon { font-size: 1.4rem; }

    /* ===================== FORM ===================== */
    .form-section {
      padding: 64px 0;
      background: linear-gradient(135deg, #FFF7ED 0%, #EFF6FF 100%);
    }
    .form-wrapper {
      max-width: 680px; margin: 0 auto;
      background: var(--pp-white); border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg); padding: var(--space-5) 44px;
    }
    .form-header { text-align: center; margin-bottom: 36px; }
    .form-header h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.6rem; color: var(--pp-dark);
    }
    .form-header p { color: var(--pp-gray); font-size: 0.9rem; margin-top: 6px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-weight: 700; font-size: 0.88rem;
      color: var(--pp-dark); margin-bottom: 6px;
    }
    .form-group label .required { color: var(--pp-red); margin-left: 2px; }
    .form-control {
      width: 100%; border: 2px solid #94A3B8;
      border-radius: var(--radius-sm); padding: 12px 16px;
      font-family: var(--font-body); font-size: 0.95rem;
      color: var(--pp-dark); transition: border-color .2s;
      background: var(--pp-white);
    }
    .form-control:focus { outline: none; border-color: var(--pp-orange); }
    .form-control::placeholder { color: #94A3B8; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .btn-submit {
      width: 100%; background: var(--pp-orange); color: #fff;
      border: none; border-radius: var(--radius-sm);
      padding: 16px; font-weight: 800; font-size: 1.05rem;
      cursor: pointer; transition: all .2s; margin-top: 8px;
      box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    }
    .btn-submit:hover { background: var(--pp-orange-dark); transform: translateY(-2px); }
    .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
    .form-note {
      text-align: center; margin-top: 14px;
      font-size: 0.85rem; color: var(--pp-gray);
    }
    .form-note a { color: var(--pp-orange); text-decoration: none; font-weight: 600; }

/* ===================== PROSES / STEPS ===================== */
    .proses { 
      padding: 64px 20px; 
      background: linear-gradient(135deg, #FFFBF5 0%, #FFF9F0 100%);
    }
    .proses .section-inner { max-width: 1200px; margin: 0 auto; }
    
    /* Timeline Container — Desktop: 5 columns, 1 row */
    .steps-timeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      position: relative;
      padding: 40px 0;
      max-width: 1100px;
      margin: 0 auto;
    }
    
    /* Horizontal connector line (desktop only) */
    .steps-timeline::before {
      content: '';
      position: absolute;
      top: 60px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, #FED7AA 20%, #FED7AA 80%, transparent 100%);
      z-index: 0;
    }
    
    /* Step Card */
    .step-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      padding: 28px 20px;
      background: #FFFFFF;
      border: 2px solid #FED7AA;
      border-radius: 16px;
      position: relative;
      z-index: 1;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      cursor: pointer;
    }
    
    .step-card:hover {
      border-color: var(--pp-orange);
      box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
      transform: translateY(-8px);
      background: #FFFBF5;
    }
    
    /* Arrow via ::after — only between cards, NOT after last card */
    .step-card:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -22px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--pp-orange);
      font-size: 1.5rem;
      font-weight: bold;
      z-index: 2;
    }
    
    /* Step Number */
    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pp-orange) 0%, #FB923C 100%);
      color: #FFFFFF;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
      position: relative;
      z-index: 2;
    }
    
    .step-card:hover .step-number {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    }
    
    /* Step Content */
    .step-content {
      flex: 1;
      width: 100%;
    }
    
    .step-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--pp-dark);
      margin: 8px 0;
      line-height: 1.3;
    }
    
    .step-desc {
      font-size: 0.9rem;
      color: var(--pp-gray);
      line-height: 1.6;
      margin: 0;
    }
    
    /* ===================== RESPONSIVE ===================== */
    
    /* Tablet: 2 columns, 5th card centered, no arrows */
    @media (max-width: 1023px) {
      .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0;
      }
      
      .steps-timeline::before {
        display: none;
      }
      
      .step-card::after {
        display: none;
      }
      
      /* 5th card centered full-width */
      .step-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 50%;
      }
      
      .step-card {
        padding: 24px 18px;
      }
      
      .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      
      .step-title {
        font-size: 0.98rem;
      }
      
      .step-desc {
        font-size: 0.85rem;
      }
    }
    

    /* ===================== FAQ ===================== */

    .faq { padding: 64px 0; background: var(--pp-gray-light); }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-cta {
      max-width: 760px; margin: 32px auto 0;
      text-align: center;
      padding: 24px;
      background: var(--pp-white);
      border-radius: var(--radius-md);
      border: 1.5px dashed #FED7AA;
    }
    .faq-cta p { color: var(--pp-gray); margin-bottom: 12px; font-size: 0.92rem; }
    .btn-faq-wa {
      background: var(--pp-green); color: #fff;
      border: none; border-radius: var(--radius-sm);
      padding: 12px 28px; font-weight: 700; font-size: 0.95rem;
      cursor: pointer; transition: all .2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-faq-wa:hover { background: #15803D; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(34,197,94,0.3); }
    .faq-item {
      background: var(--pp-white); border-radius: var(--radius-md);
      margin-bottom: 12px; overflow: hidden;
      border: 1px solid #E2E8F0;
    }
    .faq-q {
      width: 100%; text-align: left; padding: 18px 22px;
      background: none; border: none; cursor: pointer;
      font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
      color: var(--pp-dark); display: flex; justify-content: space-between; align-items: center;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--pp-orange); }
    .btn-primary:focus-visible, .btn-submit:focus-visible, .btn-secondary:focus-visible,
    .nav-icon:focus-visible, .btn-daftar:focus-visible, .faq-q:focus-visible,
    .btn-promo:focus-visible, .btn-white:focus-visible, .btn-white-cta:focus-visible {
      outline: 3px solid var(--pp-blue); outline-offset: 2px;
    }
    .form-control:focus-visible { outline: none; border-color: var(--pp-orange); box-shadow: 0 0 0 3px rgba(249,146,39,0.15); }
    .faq-q .chevron { transition: transform .3s; font-style: normal; }
    .faq-item.open .faq-q .chevron { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 22px; font-size: 0.9rem; color: var(--pp-gray); line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 600px; padding: 0 22px 18px; }
    .faq-show-more { text-align: center; margin-top: 16px; }
    .faq-show-more-btn { background: none; border: 2px solid var(--pp-orange); color: var(--pp-orange); padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all .2s; }
    .faq-show-more-btn:hover { background: var(--pp-orange); color: #fff; }
    .faq-item.faq-hidden {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  border-width: 0;
  pointer-events: none;
  transition: max-height .4s ease, opacity .3s ease .05s,
              margin-bottom .4s ease, border-width .4s ease;
}
.faq-item.faq-hidden.reveal {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 12px;
  border-width: 1px;
  pointer-events: auto;
}
.faq-item.faq-hidden.reveal.open {
  max-height: 800px;
}

    /* ===================== TESTIMONIALS ===================== */
    .testimonials { padding: 64px 0; background: var(--pp-white); }
    /* Carousel wrapper */
    .testi-carousel-wrapper { position: relative; overflow: hidden; }
    .testi-carousel { position: relative; }
    .testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 8px 4px 16px; }
    .testi-track::-webkit-scrollbar { height: 6px; }
    .testi-track::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
    .testi-track::-webkit-scrollbar-thumb { background: var(--pp-orange); border-radius: 3px; }
    .testi-card { flex: 0 0 calc(33.333% - 16px); min-width: 300px; scroll-snap-align: start; border: 1.5px solid #E2E8F0; border-radius: var(--radius-md); padding: var(--space-3); box-shadow: var(--shadow-sm); transition: all .25s; }
    .testi-card:hover { border-color: var(--pp-orange); box-shadow: var(--shadow-card); transform: translateY(-2px); }
    .testi-stars { color: var(--pp-yellow); font-size: 1rem; margin-bottom: 12px; }
    .testi-text { font-size: 0.9rem; color: var(--pp-dark); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--pp-orange), var(--pp-yellow)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1rem; }
    .testi-name { font-weight: 700; font-size: 0.88rem; color: var(--pp-dark); }
    .testi-role { font-size: 0.78rem; color: var(--pp-gray); }
    /* Navigation */
    .testi-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
    .testi-prev, .testi-next { background: var(--pp-orange); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 1.5rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
    .testi-prev:hover, .testi-next:hover { background: var(--pp-orange-dark); transform: scale(1.1); }
    .testi-dots { display: flex; gap: 8px; }
    .testi-dot { width: 10px; height: 10px; border-radius: 50%; background: #E2E8F0; cursor: pointer; transition: all .2s; }
    .testi-dot.active { background: var(--pp-orange); transform: scale(1.2); }

    /* ===================== CTA BOTTOM ===================== */
    .cta-bottom {
      background: linear-gradient(135deg, var(--pp-orange) 0%, #F59E0B 100%);
      padding: 56px 0; text-align: center;
    }
    .cta-bottom-inner {
      max-width: 900px; margin: 0 auto; padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px;
    }
    .cta-bottom-text { flex: 1; text-align: left; }
    .cta-bottom-text h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.65rem; color: #fff; margin-bottom: 8px; line-height: 1.25;
    }
    .cta-bottom-text p { color: rgba(255,255,255,0.92); font-size: 0.95rem; }
    .cta-bottom-text p strong { color: #fff; font-weight: 700; }
    .cta-bottom .btn-white-cta {
      background: #fff; color: var(--pp-orange);
      border: none; border-radius: var(--radius-sm);
      padding: 14px 32px; font-weight: 800; font-size: 1rem;
      cursor: pointer; text-decoration: none; transition: all .2s;
      display: inline-block;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }
    .cta-bottom .btn-white-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--pp-dark); color: rgba(255,255,255,0.7);
      padding: 48px 0 24px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 20px;
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
    }
    .footer-brand-name { font-family: var(--font-display); font-weight: 800; color: var(--pp-orange); font-size: 1.1rem; margin-bottom: 10px; }
    .footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
    .footer-contact { font-size: 0.88rem; line-height: 2; }
    .footer-contact a { color: var(--pp-yellow); text-decoration: none; }
    .footer-col h4 { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
    .footer-links a:hover { color: var(--pp-orange); }
    .footer-bottom {
      max-width: 1200px; margin: 32px auto 0; padding: 24px 20px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

    /* ===================== SUCCESS MODAL ===================== */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .modal-overlay.show { opacity: 1; pointer-events: all; }
    .modal-box {
      background: #fff; border-radius: var(--radius-lg);
      padding: 48px 36px; max-width: 460px; width: 90%;
      text-align: center; transform: scale(0.9);
      transition: transform .3s;
    }
    .modal-overlay.show .modal-box { transform: scale(1); }
    .modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
    .modal-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: 10px; }
    .modal-box p { color: var(--pp-gray); font-size: 0.92rem; line-height: 1.7; }
    .modal-close {
      margin-top: 24px;
      background: var(--pp-orange); color: #fff;
      border: none; border-radius: var(--radius-sm);
      padding: 12px 32px; font-weight: 800; cursor: pointer;
    }

    /* ===================== FLOATING WA ===================== */
    .float-wa {
      position: fixed; bottom: 24px; right: 24px; z-index: 50;
      background: #25D366; color: #fff;
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      text-decoration: none; transition: transform .2s;
    }
    .float-wa:hover { transform: scale(1.1); }

    /* ===================== LOADING SPINNER ===================== */
    .spinner {
      width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3);
      border-top-color: #fff; border-radius: 50%;
      animation: spin .8s linear infinite; display: inline-block;
      vertical-align: middle; margin-right: 8px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-card { flex: 0 0 calc(50% - 12px); min-width: 280px; }
      .hero h1 { font-size: 2rem; }
    }
    @media (max-width: 768px) {
      .cta-bottom-inner { flex-direction: column; text-align: center; gap: 20px; }
      .cta-bottom-text { text-align: center; }
      .cta-bottom-text h2 { font-size: 1.4rem; }
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero h1 { font-size: 1.75rem; }
      .hero { padding: 32px 0 40px; }
      .hero-buttons { justify-content: center; }
      .hero-trust { justify-content: center; }
            .hero-visual {
      min-height: 240px; max-width: 320px; margin: 24px auto 0; display: block; }
  .hero-visual img { display: block; max-width: 100%; height: auto; }
      .hero-visual img { max-width: 100%; height: auto; }
      .banner-promo { padding: 28px 0; }
      .banner-promo h2 { font-size: 1.3rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr 1fr; }
      /* Steps mobile: 1 column, vertical connector, clean stack */
      .steps-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 72px 0;
        position: relative;
      }
      .steps-timeline::before {
        display: none;
      }
      /* Vertical connector line — stops before WA float area */
      .steps-timeline::after {
        content: '';
        position: absolute;
        left: 36px;
        top: 40px;
        bottom: 80px;
        width: 2px;
        background: var(--pp-orange);
        z-index: 0;
        opacity: 0.4;
      }
      .step-card {
        padding: 18px 16px 18px 16px;
        align-items: flex-start;
        text-align: left;
        flex-direction: row !important;
        gap: 14px;
        margin-bottom: 8px;
        border: 1.5px solid #FED7AA;
        border-radius: 12px;
        background: #fff;
        position: relative;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      }
      .step-card::after { display: none; }
            .step-card:last-child {
        padding-bottom: 32px;
      }
      /* Fix step 5 mobile: full width */
      .step-card:nth-child(5) {
        grid-column: auto;
        max-width: 100%;
        justify-self: stretch;
      }
      .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--pp-orange), #FB923C);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
      }
      .step-title { font-size: 0.95rem; margin-top: 0; }
      .step-desc { font-size: 0.8rem; }
      .testi-card { flex: 0 0 85%; min-width: 260px; }
      .testi-prev, .testi-next { width: 36px; height: 36px; font-size: 1.2rem; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .nav-links, .nav-icons {
        display: none; position: absolute; top: 60px; left: 0; right: 0;
        background: #fff; flex-direction: column; padding: 16px 20px;
        border-bottom: 1px solid #E2E8F0; box-shadow: var(--shadow-card);
        transform: translateY(-10px); opacity: 0; transition: all .25s ease;
        gap: 14px;
      }
      .nav-links.nav-menu-open, .nav-icons.nav-menu-open {
        display: flex !important; transform: translateY(0); opacity: 1;
      }
      .nav-icons.nav-menu-open { top: auto; position: static; flex-direction: row; box-shadow: none; border: none; padding: 0 20px 16px; transform: none; }
      .nav-mobile-only { display: list-item !important; }
      .nav-mobile-only a { text-decoration: none; color: var(--pp-dark); font-weight: 600; font-size: 0.9rem; }
      .nav-hamburger { display: block; }
      .nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-hamburger.active span:nth-child(2) { opacity: 0; }
      .nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .alert-beasiswa { flex-direction: column; text-align: center; }
      .form-wrapper { padding: 32px 20px; }
      .form-row { grid-template-columns: 1fr; }
      .trust-badges { gap: 16px; flex-direction: column; align-items: center; }
      .banner-promo h2 { font-size: 1.2rem; }
      .banner-promo .btn-promo { padding: 8px 18px; font-size: 0.85rem; }
      .form-control { font-size: 16px; }
    }
    @media (max-width: 360px) {
      .hero h1 { font-size: 1.4rem; }
      .hero { padding: 20px 0 28px; }
      .hero-sub { font-size: 0.9rem; margin-bottom: 20px; }
      .hero-buttons { gap: 8px; }
      .btn-hero { padding: 12px 24px; font-size: 0.95rem; }
      .btn-hero-outline { padding: 10px 20px; font-size: 0.95rem; }
    }
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 1.5rem; }
      .hero { padding: 24px 0 32px; }
      .banner-promo h2 { font-size: 1.1rem; }
      .banner-promo { padding: 24px 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; animation: none !important; }
    }
    @media (max-width: 768px) {
      .nav-logo img { height: 32px !important; }
    }
    @media (min-width: 769px) {
      .nav-logo img { height: 60px; }
    }
    
    /* Hide all decorative hero-float-badge except in hero-visual */
    .hero-float-badge { display: none; }
    .hero-visual .hero-float-badge { display: flex; }

    /* === FORM VALIDATION & LOADING === */
    .form-control.invalid { border-color: var(--pp-red) !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.12) !important; }
    .field-error { color: var(--pp-red); font-size: 0.78rem; margin-top: 4px; display: none; }
    .field-error.visible { display: block; }
    .btn-submit.loading { pointer-events: none; opacity: 0.8; position: relative; }
    .btn-submit .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin .6s linear infinite; margin-right: 8px; }
    .btn-submit.loading .spinner { display: inline-block; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .form-success { display: none; text-align: center; padding: 24px; background: #F0FDF4; border-radius: var(--radius-md); border: 1px solid #BBF7D0; }
    .form-success.visible { display: block; }
    .form-success h3 { color: var(--pp-green); margin-bottom: 8px; }
    /* === HELP TEXT === */
    .field-hint { font-size: 0.75rem; color: var(--pp-gray); margin-top: 2px; }
    /* === BACK TO TOP === */
    .back-to-top { position: fixed; bottom: 90px; right: 24px; z-index: 99; width: 48px; height: 48px; border-radius: 50%; background: var(--pp-orange); color: #fff; border: none; cursor: pointer; box-shadow: var(--shadow-lg); display: none; align-items: center; justify-content: center; font-size: 1.2rem; transition: all .2s; }
    .back-to-top.visible { display: flex; }
    .back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

/* ===== FORM INQUIRY KONSELING ===== */
.inquiry-overlay {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9999;
  align-items: center; justify-content: center;
}
.inquiry-overlay.active { display: flex; }
.inquiry-modal {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  max-width: 420px; width: 90%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.inquiry-modal h3 {
  font-size: 1.2rem; margin: 0 0 4px; color: #1a1a2e;
}
.inquiry-modal .subtitle {
  font-size: 0.82rem; color: #666; margin-bottom: 16px;
}
.inquiry-modal label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin: 12px 0 4px; color: #333;
}
.inquiry-modal label .req { color: #e74c3c; }
.inquiry-modal input[type=text],
.inquiry-modal input[type=number],
.inquiry-modal input[type=email],
.inquiry-modal select,
.inquiry-modal textarea {
  width: 100%; padding: 10px 12px; border: 1.5px solid #ddd;
  border-radius: 8px; font-size: 0.9rem; font-family: inherit;
  box-sizing: border-box;
}
.inquiry-modal textarea { height: 72px; resize: vertical; }
.inquiry-modal .checkbox-group {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.inquiry-modal .chip {
  display: inline-block; padding: 6px 12px; border: 1.5px solid #ddd;
  border-radius: 20px; font-size: 0.78rem; cursor: pointer;
  user-select: none; transition: all .15s;
}
.inquiry-modal .chip.selected {
  background: var(--pp-blue, #1a5fdc); color: #fff; border-color: var(--pp-blue, #1a5fdc);
}
.inquiry-modal .risk-section {
  background: #fff5f5; border: 1.5px solid #fecaca; border-radius: 10px;
  padding: 12px; margin: 12px 0;
}
.inquiry-modal .risk-section strong { color: #c0392b; }
.inquiry-modal .risk-warn {
  display: none; background: #fee2e2; border: 1.5px solid #fca5a5;
  border-radius: 8px; padding: 10px 14px; margin-top: 8px;
  font-size: 0.82rem; color: #991b1b;
}
.inquiry-modal .risk-warn.show { display: block; }
.inquiry-modal .consent-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.78rem; color: #555; margin: 14px 0 10px;
}
.inquiry-modal .consent-row input { margin-top: 2px; }
.inquiry-modal .btn-row {
  display: flex; gap: 10px; margin-top: 16px;
}
.inquiry-modal .btn-cancel {
  flex: 1; padding: 12px; border: 1.5px solid #ddd;
  border-radius: 8px; background: #fff; cursor: pointer; font-size: 0.9rem;
}
.inquiry-modal .btn-submit {
  flex: 2; padding: 12px; border: none; border-radius: 8px;
  background: var(--pp-blue, #1a5fdc); color: #fff;
  cursor: pointer; font-size: 0.9rem; font-weight: 600;
}
.inquiry-modal .btn-submit:disabled {
  opacity: 0.5; cursor: not-allowed;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #1a1a2e; color: #eee; padding: 12px 20px;
  display: none; align-items: center; justify-content: center;
  gap: 16px; font-size: 0.85rem; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: #F79227; text-decoration: underline; }
.cookie-banner button {
  background: #F79227; color: #fff; border: none;
  padding: 8px 20px; border-radius: 6px; cursor: pointer;
  font-weight: 600; font-size: 0.85rem;
}
.cookie-banner button:hover { background: #E07D00; }


/* ===== LP BETA ADDITIONS ===== */



/* Service Checklist Dropdown */
.service-checklist-dropdown { position: relative; }
.service-checklist-toggle { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; background: #fff; text-align: left; cursor: pointer; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
.service-checklist-panel { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 2px solid #e5e7eb; border-radius: 8px; max-height: 300px; overflow-y: auto; z-index: 10; }
.service-checklist-dropdown.open .service-checklist-panel { display: block; }
.service-checklist-item { display: flex; align-items: center; padding: 10px 16px; cursor: pointer; border-bottom: 1px solid #f3f4f6; }
.service-checklist-item:hover { background: #FFFBF5; }
.service-checklist-item input[type="checkbox"] { margin-right: 10px; }
.sci-text { flex: 1; }
.sci-name { font-weight: 600; font-size: 13px; }
.sci-price { font-weight: 700; color: var(--pp-orange-text); font-size: 13px; }
.chevron { width: 16px; height: 16px; transition: transform 0.2s; }
.service-checklist-dropdown.open .chevron { transform: rotate(180deg); }

/* Selected service box */
.selected-service-box { background: #FFFBF5; border: 2px solid #FED7AA; border-radius: 8px; padding: 12px 16px; margin-bottom: 16px; }
.selected-service-box ul { list-style: none; padding: 0; margin: 0; }
.selected-tag { display: inline-block; background: var(--pp-orange); color: #fff; padding: 2px 10px; border-radius: 4px; font-size: 12px; margin: 2px; }

@media (max-width: 600px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-card { padding: 8px 6px 6px; gap: 2px; }
  .svc-icon { font-size: 20px; margin-bottom: 0; }
  .svc-badge { font-size: 7px; padding: 1px 5px; top: 3px; right: 3px; }
  .svc-card h3 { font-size: 10px; margin: 0; line-height: 1.2; }
  .svc-desc { font-size: 11px; margin-bottom: 4px; line-height: 1.3; }
  .svc-price { font-size: 12px; margin-bottom: 4px; }
  .svc-select { font-size: 9px; padding: 4px 0; }
}

/* ===== LP BETA — Mobile Responsive ===== */
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-card { padding: 16px 12px 12px; }
  .svc-icon { font-size: 30px; }
  .svc-card h3 { font-size: 12px; }
  .svc-price { font-size: 16px; }
  .svc-select { font-size: 12px; padding: 6px 0; }
  .form-row { grid-template-columns: 1fr; }
  .service-checklist-panel { position: static; max-height: 250px; }
  .selected-service-box { padding: 10px 12px; }
  .selected-tag { font-size: 11px; padding: 2px 8px; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .svc-card { padding: 12px 8px 10px; }
  .svc-icon { font-size: 24px; margin-bottom: 4px; }
  .svc-card h3 { font-size: 11px; }
  .svc-price { font-size: 14px; margin-bottom: 8px; }
  .svc-desc { font-size: 11px; display: block; }
  .svc-badge { font-size: 8px; padding: 1px 6px; top: 4px; right: 4px; }
  .btn-submit { font-size: 14px; padding: 12px; }
  .form-group label { font-size: 12px; }
  .form-group input, .form-group select { padding: 8px 10px; font-size: 13px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid #E2E8F0; padding: 12px 20px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-icons { display: none; }
}

/* ===== Mobile Font Size Adjustments ===== */
@media (max-width: 480px) {
  .section-inner { padding: 0 14px; }
  .why-us, .services, .social-proof, .form-section, .proses, .faq { padding: 36px 0; }
  .hero h1 { font-size: 1.3rem; line-height: 1.3; }
  .hero-sub { font-size: 0.8rem; line-height: 1.5; margin-bottom: 16px; }
  .section-title { font-size: 1.3rem; }
  .section-sub { font-size: 0.82rem; }
  .section-eyebrow { font-size: 0.72rem; }
  .step-card h3 { font-size: 0.8rem; }
  .step-card p { font-size: 0.7rem; line-height: 1.35; }
  .faq-q { font-size: 0.82rem; padding: 14px 16px; }
  .faq-a p { font-size: 0.8rem; }
  .btn-submit { font-size: 14px; padding: 12px; }
  .why-card h3 { font-size: 0.9rem; }
  .why-card p { font-size: 0.78rem; }
  .alert-beasiswa h3 { font-size: 0.9rem; }
  .hero-trust-text { font-size: 0.78rem; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.15rem; }
  .section-title { font-size: 1.15rem; }
  .step-card h3 { font-size: 0.8rem; }
  .step-card p { font-size: 0.72rem; }
}

/* Logo image in navbar */
.nav-logo img { height: 36px; width: auto; display: block; }
@media (max-width: 480px) { .nav-logo img { height: 28px; } }

/* Polish */
.footer-inner { padding-top: 48px; padding-bottom: 32px; }
.services-grid { margin-bottom: 24px; }

/* Step card descriptions — smaller like LP Live */
.step-card p { font-size: 0.9rem; line-height: 1.5; }

.btn-faq-wa { text-decoration: none; }

/* IG icon on mobile */
.nav-ig-mobile {
  display: none;
}
@media (max-width: 480px) {
  .nav-ig-mobile { display: flex; align-items: center; justify-content: center; background: transparent; border-color: var(--pp-orange); color: var(--pp-orange); }
  .nav-hamburger { display: none; }
}

@media (max-width: 480px) {
  .svc-card { padding: 10px 8px 8px; min-height: auto; }
  .svc-card h3 { font-size: 11px; }
  .svc-price { font-size: 13px; margin-bottom: 6px; }
  .svc-select { font-size: 10px; padding: 5px 0; }
  .svc-icon { font-size: 22px; margin-bottom: 2px; }
}




}


/* ===== CLAUDE REDESIGN — Service Cards (single source of truth) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--pp-white);
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-card:hover {
  border-color: var(--pp-orange);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.svc-card.selected {
  border-color: var(--pp-orange);
  background: #FFFBF5;
  box-shadow: 0 0 0 2px rgba(249,146,39,0.15) inset;
}
.svc-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--pp-red); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 3px 12px; border-radius: 100px;
  letter-spacing: .3px;
}
.svc-icon { font-size: 28px; line-height: 1; margin-bottom: 8px; }
.svc-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; line-height: 1.3;
  color: var(--pp-dark);
  margin-bottom: 6px;
}
.svc-desc {
  font-size: 13px; line-height: 1.5;
  color: var(--pp-gray);
  margin-bottom: 16px;
  flex-grow: 1;
}
.svc-price {
  font-size: 18px; font-weight: 800;
  color: var(--pp-orange-text);
  margin-bottom: 12px;
}
.svc-select {
  width: 100%; padding: 8px 0;
  font-size: 13px; font-weight: 600;
  border-radius: 8px; border: none;
  background: var(--pp-orange); color: #fff;
  cursor: pointer;
}
.svc-select:hover { background: var(--pp-orange-dark); }

.testi-carousel-wrapper { position: relative; overflow: hidden; padding: 0 4px; }
.testi-fade { position: absolute; top: 0; bottom: 24px; width: 48px; z-index: 3; pointer-events: none; }
.testi-fade-left { left: 0; background: linear-gradient(90deg, var(--pp-white,#fff) 0%, transparent 100%); }
.testi-fade-right { right: 0; background: linear-gradient(270deg, var(--pp-white,#fff) 0%, transparent 100%); }
.testi-carousel-wrapper.at-start .testi-fade-left, .testi-carousel-wrapper.at-end .testi-fade-right { opacity: 0; transition: opacity .25s ease; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
@media (max-width: 640px) { .testi-fade { width: 28px; } }
