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

    /* ========== CUSTOM SCROLLBAR ========== */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-secondary);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--lime-strong);
      border-radius: 100px;
      transition: background 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--lime-medium);
    }

    ::-webkit-scrollbar-thumb:active {
      background: var(--accent-lime);
    }

    * {
      scrollbar-width: thin;
      scrollbar-color: var(--lime-strong) var(--bg-secondary);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg-primary);
      color: var(--text-primary);
      font-family: 'Segoe UI', -apple-system, sans-serif;
      overflow-x: hidden;
    }

    /* ========== PAGE HERO ========== */
    .page-hero {
      position: relative;
      padding: 160px 40px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .page-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
    }

    .page-title {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 900;
      color: #ffffff;
      position: relative;
      z-index: 1;
      margin-bottom: 15px;
    }

    .page-title span {
      color: var(--accent-lime);
    }

    .page-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.75);
      position: relative;
      z-index: 1;
      max-width: 600px;
    }

    .page-breadcrumb {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 20px;
      position: relative;
      z-index: 1;
      font-size: 0.9rem;
    }

    .page-breadcrumb a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-breadcrumb a:hover {
      color: var(--accent-lime);
    }

    .page-breadcrumb span {
      color: rgba(255, 255, 255, 0.4);
    }

    .page-breadcrumb .current {
      color: #ffffff;
      font-weight: 600;
    }

    /* ========== SECTION COMMON ========== */
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      text-align: center;
    }

    .section-title span {
      color: var(--accent-lime);
    }

    .section-subtitle {
      color: var(--text-secondary);
      font-size: 1.05rem;
      max-width: 500px;
      margin: 0 auto;
    }

    .accent-line {
      display: block;
      width: 60px;
      height: 3px;
      background: var(--accent-lime);
      border-radius: 2px;
      margin: 16px auto 12px;
    }

    /* ========== PRICING SECTION ========== */
    .pricing-section {
      padding: 75px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
      gap: 30px;
    }

    .pricing-card {
      position: relative;
      padding: 50px 40px;
      border-radius: 24px;
      background: var(--bg-primary);
      border: 1px solid var(--border-color);
      text-align: center;
      transition: transform 0.5s var(--cubic-default), box-shadow 0.5s, border-color 0.5s;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border-color: var(--lime-medium);
    }

    .pricing-card.popular {
      border-color: var(--accent-lime);
      background: var(--bg-primary);
    }

    .pricing-card.popular::before {
      content: attr(data-popular);
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      padding: 6px 20px;
      background: var(--accent-lime);
      color: #ffffff;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 100px;
    }

    .pricing-icon {
      width: 60px;
      height: 60px;
      background: var(--lime-soft);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--accent-lime);
      margin: 0 auto 20px;
      transition: all 0.3s ease;
    }

    .pricing-card:hover .pricing-icon {
      background: var(--accent-lime);
      color: #ffffff;
    }

    .pricing-name {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--text-secondary);
    }

    .pricing-info {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 5px;
    }

    .pricing-price {
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .pricing-price span {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-muted);
    }

    .pricing-desc {
      color: var(--text-secondary);
      margin-bottom: 30px;
      font-size: 0.95rem;
    }

    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 35px;
    }

    .pricing-features li {
      padding: 12px 0;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-secondary);
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pricing-features li i {
      color: var(--accent-lime);
      font-size: 1.1rem;
    }

    .pricing-btn {
      display: block;
      width: 100%;
      padding: 18px 30px;
      border: 1px solid var(--accent-lime);
      background: transparent;
      color: var(--accent-lime);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.3s var(--cubic-default);
      text-decoration: none;
      text-align: center;
    }

    .pricing-btn:hover {
      background: var(--accent-lime);
      color: #ffffff;
    }

    .pricing-card.popular .pricing-btn {
      background: var(--accent-lime);
      color: #ffffff;
    }

    .pricing-card.popular .pricing-btn:hover {
      background: transparent;
      color: var(--accent-lime);
    }

    /* ========== WHY SECTION ========== */
    .why-section {
      padding: 75px 40px;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-item {
      padding: 35px 30px;
      border-radius: 20px;
      background: var(--bg-primary);
      border: 1px solid var(--border-color);
      transition: transform 0.5s var(--cubic-default), border-color 0.5s;
    }

    .why-item:hover {
      transform: translateY(-5px);
      border-color: var(--accent-lime);
    }

    .why-icon {
      width: 50px;
      height: 50px;
      background: var(--lime-soft);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--accent-lime);
      margin-bottom: 18px;
      transition: all 0.3s ease;
    }

    .why-item:hover .why-icon {
      background: var(--accent-lime);
      color: #ffffff;
    }

    .why-item h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .why-item p {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .why-section {
        padding: 60px 20px;
      }
      .why-item {
        padding: 25px 20px;
      }
    }

    /* ========== PROCESS SECTION ========== */
    .process-section {
      padding: 75px 40px;
      background: var(--bg-primary);
    }

    .process-timeline {
      display: flex;
      justify-content: center;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
    }

    .process-timeline::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--border-color);
    }

    .process-step {
      flex: 1;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }

    .process-step-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 24px;
    }

    .process-dot {
      width: 18px;
      height: 18px;
      background: var(--accent-lime);
      border-radius: 50%;
      border: 3px solid var(--bg-secondary);
      box-shadow: 0 0 0 2px var(--accent-lime);
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .process-step:hover .process-dot {
      transform: scale(1.3);
      box-shadow: 0 0 0 3px var(--accent-lime), 0 0 15px var(--lime-medium);
    }

    .process-step-number {
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--accent-lime);
      letter-spacing: 0.1em;
      margin-top: 12px;
    }

    .process-step-icon {
      font-size: 1.8rem;
      color: var(--accent-lime);
      margin-bottom: 14px;
    }

    .process-step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
      transition: color 0.3s ease;
    }

    .process-step:hover h3 {
      color: var(--accent-lime);
    }

    .process-step p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ========== CTA SECTION ========== */
    .cta-section {
      padding: 75px 40px;
      text-align: center;
      position: relative;
      background: var(--accent-lime);
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cta-overtitle {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .cta-title {
      font-size: clamp(2.5rem, 8vw, 6rem);
      font-weight: 900;
      line-height: 1;
      margin-bottom: 25px;
      position: relative;
      z-index: 1;
      color: #ffffff;
    }

    .cta-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 20px 50px;
      background: #ffffff;
      color: var(--accent-lime);
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-radius: 100px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s var(--cubic-default), box-shadow 0.3s ease;
      cursor: pointer;
      z-index: 1;
    }

    .cta-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }

    .cta-btn:hover::before {
      transform: translateX(100%);
    }

    .cta-btn span {
      position: relative;
      z-index: 1;
    }

    .cta-btn-arrow {
      transition: transform 0.3s var(--cubic-default);
    }

    .cta-btn:hover .cta-btn-arrow {
      transform: translateX(5px);
    }

    /* ========== SCROLL ANIMATIONS ========== */
    .reveal {
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s var(--cubic-default);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
      .page-hero {
        padding: 120px 20px 50px;
      }
      .page-title {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .pricing-section {
        padding: 60px 20px;
      }
      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      .pricing-card {
        padding: 35px 25px;
      }
      .pricing-price {
        font-size: 2.8rem;
      }
      .pricing-name {
        font-size: 1.15rem;
      }
      .pricing-desc {
        font-size: 0.875rem;
      }
      .pricing-features li {
        font-size: 0.875rem;
        padding: 10px 0;
      }
      .pricing-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
      }

      .process-section {
        padding: 60px 20px;
      }
      .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 30px;
      }
      .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 2px;
        height: auto;
      }
      .process-step {
        text-align: left;
        padding: 0 0 0 30px;
      }
      .process-step-top {
        flex-direction: row;
        gap: 12px;
        position: absolute;
        left: -30px;
        top: 0;
      }
      .process-dot {
        position: relative;
      }
      .process-step-number {
        margin-top: 0;
      }

      .section-header {
        margin-bottom: 40px;
      }
      .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
      }
      .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
      }

      .cta-section {
        padding: 80px 20px;
      }
      .cta-overtitle {
        font-size: 0.85rem;
      }
      .cta-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
      }
      .cta-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
      }
      .cta-btn {
        padding: 16px 30px;
        font-size: 0.85rem;
        gap: 10px;
        letter-spacing: 0.05em;
        max-width: 90vw;
      }
      .cta-glow {
        width: 300px;
        height: 300px;
      }
    }

    @media (max-width: 480px) {
      .pricing-card {
        padding: 30px 20px;
      }
      .pricing-price {
        font-size: 2.4rem;
      }
      .cta-btn {
        padding: 14px 24px;
        font-size: 0.8rem;
        gap: 8px;
        letter-spacing: 0.03em;
      }
      .cta-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
      }
    }

    /* ACCENT LINE CENTER */
    .accent-line-center {
      margin: 16px auto 12px;
    }

    /* TEXT SECTIONS */
    .text-section {
      padding: 50px 40px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .text-section-gray {
      max-width: none;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .text-section-gray > * {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .text-section-top {
      padding-bottom: 0;
    }
    .text-content {
      color: var(--text-secondary);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .text-content:last-child {
      margin-bottom: 0;
    }

    /* SHARE BAR */
    .share-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 30px 40px;
    }
    .share-label {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 600;
    }
    .share-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: var(--lime-soft);
      color: var(--accent-lime);
      font-size: 1.2rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .share-bar a:hover {
      background: var(--accent-lime);
      color: var(--bg-primary);
      transform: translateY(-2px);
    }
    @media (max-width: 768px) {
      .text-section { padding: 30px 20px; }
      .share-bar { padding: 20px; gap: 12px; }
      .share-label { font-size: 0.8rem; }
    }

    /* FAQ SIMPLE */
    /* FAQ ACCORDION */
    .faq-section {
      padding: 75px 40px;
      background: var(--bg-primary);
    }
    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      border-radius: 16px;
      background: var(--bg-primary);
      border: 1px solid var(--border-color);
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item.active {
      border-color: var(--accent-lime);
    }
    .faq-question {
      width: 100%;
      padding: 24px 30px;
      background: none;
      border: none;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 1.05rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      transition: color 0.3s;
    }
    .faq-item.active .faq-question {
      color: var(--accent-lime);
    }
    .faq-toggle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--lime-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s var(--cubic-default);
      font-size: 1.2rem;
      color: var(--accent-lime);
    }
    .faq-item.active .faq-toggle {
      background: var(--accent-lime);
      color: #ffffff;
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--cubic-default);
    }
    .faq-answer-inner {
      padding: 0 30px 24px;
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 0.95rem;
    }
