/* ===== SECTION ===== */
    .why-section {
      position: relative;
      padding: 85px 60px 105px;
      background: linear-gradient(180deg, #0a0e27 0%, #0e1438 50%, #0a0e27 100%);
      overflow: hidden;
    }

    .why-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 55%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    }

    /* Dot pattern background */
    .why-dot-bg {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .why-inner {
      position: relative;
      z-index: 2;
      max-width: 1080px;
      margin: 0 auto;
    }

    /* ===== HEADER ===== */
    .why-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .why-header-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      background: rgba(139, 92, 246, 0.08);
      border: 1px solid rgba(139, 92, 246, 0.18);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #a78bfa;
      margin-bottom: 16px;
    }

    .why-header-label i {
      font-size: 10px;
    }

    .why-heading {
      font-size: 32px;
      font-weight: 800;
      line-height: 1.22;
      letter-spacing: -0.02em;
      max-width: 720px;
      margin: 0 auto;
    }

    .why-heading .accent {
      background: linear-gradient(135deg, #f97316, #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ===== CARDS GRID ===== */
    .why-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }

    /* ===== INDIVIDUAL CARD ===== */
    .why-card {
      position: relative;
      padding: 30px 28px;
      background: rgba(255, 255, 255, 0.022);
      border: 1px solid rgba(255, 255, 255, 0.055);
      border-radius: 18px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    /* Top accent line */
    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .why-card:hover::before {
      transform: scaleX(1);
    }

    /* Corner glow */
    .why-card::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .why-card:hover::after {
      opacity: 1;
    }

    .why-card:hover {
      background: rgba(255, 255, 255, 0.045);
      border-color: rgba(255, 255, 255, 0.09);
      transform: translateY(-5px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    }

    /* ---- Card Color Variants ---- */
    .why-card.c-green::before { background: linear-gradient(90deg, #4ade80, rgba(74, 222, 128, 0.2)); }
    .why-card.c-green::after { background: radial-gradient(circle, rgba(74, 222, 128, 0.08), transparent 70%); }

    .why-card.c-blue::before { background: linear-gradient(90deg, #60a5fa, rgba(96, 165, 250, 0.2)); }
    .why-card.c-blue::after { background: radial-gradient(circle, rgba(96, 165, 250, 0.08), transparent 70%); }

    .why-card.c-orange::before { background: linear-gradient(90deg, #fb923c, rgba(251, 146, 60, 0.2)); }
    .why-card.c-orange::after { background: radial-gradient(circle, rgba(251, 146, 60, 0.08), transparent 70%); }

    .why-card.c-purple::before { background: linear-gradient(90deg, #a78bfa, rgba(167, 139, 250, 0.2)); }
    .why-card.c-purple::after { background: radial-gradient(circle, rgba(167, 139, 250, 0.08), transparent 70%); }

    /* Card top row */
    .why-card-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }

    .why-card-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 21px;
      transition: all 0.4s;
    }

    .c-green .why-card-icon { background: rgba(74,222,128,0.09); color: #4ade80; border: 1px solid rgba(74,222,128,0.14); }
    .c-blue .why-card-icon { background: rgba(96,165,250,0.09); color: #60a5fa; border: 1px solid rgba(96,165,250,0.14); }
    .c-orange .why-card-icon { background: rgba(251,146,60,0.09); color: #fb923c; border: 1px solid rgba(251,146,60,0.14); }
    .c-purple .why-card-icon { background: rgba(167,139,250,0.09); color: #a78bfa; border: 1px solid rgba(167,139,250,0.14); }

    .why-card:hover .why-card-icon {
      transform: scale(1.08) rotate(-2deg);
    }

    .c-green:hover .why-card-icon { background: rgba(74,222,128,0.18); box-shadow: 0 0 20px rgba(74,222,128,0.12); }
    .c-blue:hover .why-card-icon { background: rgba(96,165,250,0.18); box-shadow: 0 0 20px rgba(96,165,250,0.12); }
    .c-orange:hover .why-card-icon { background: rgba(251,146,60,0.18); box-shadow: 0 0 20px rgba(251,146,60,0.12); }
    .c-purple:hover .why-card-icon { background: rgba(167,139,250,0.18); box-shadow: 0 0 20px rgba(167,139,250,0.12); }

    .why-card-title {
      font-size: 17px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.92);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .why-card-text {
      font-size: 13.5px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.38);
      font-weight: 400;
      position: relative;
      z-index: 2;
    }

    .why-card-text strong {
      color: rgba(255, 255, 255, 0.62);
      font-weight: 600;
    }

    /* ===== CTA BUTTONS ===== */
    .why-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-explore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 17px 40px;
      background: linear-gradient(135deg, #8b5cf6, #7c3aed);
      color: #fff;
      font-size: 13.5px;
      font-weight: 700;
      border: none;
      border-radius: 13px;
      cursor: pointer;
      transition: all 0.35s ease;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      box-shadow: 0 6px 24px rgba(139, 92, 246, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-explore::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
      transition: left 0.5s;
    }

    .btn-explore:hover::after {
      left: 100%;
    }

    .btn-explore:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 38px rgba(139, 92, 246, 0.45);
    }

    .btn-explore i {
      font-size: 13px;
      transition: transform 0.3s;
    }

    .btn-explore:hover i {
      transform: translateX(4px);
    }

    .btn-contact {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 17px 40px;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      font-size: 13.5px;
      font-weight: 700;
      border: none;
      border-radius: 13px;
      cursor: pointer;
      transition: all 0.35s ease;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      box-shadow: 0 6px 24px rgba(34, 197, 94, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-contact::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
      transition: left 0.5s;
    }

    .btn-contact:hover::after {
      left: 100%;
    }

    .btn-contact:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 38px rgba(34, 197, 94, 0.45);
    }

    .btn-contact i {
      font-size: 14px;
      transition: transform 0.3s;
    }

    .btn-contact:hover i {
      transform: rotate(15deg) scale(1.1);
    }

    /* ===== FLOATING ACTIONS ===== */
    .floating-actions {
      position: fixed;
      bottom: 28px;
      right: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }

    .fab {
      width: 52px;
      height: 52px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      border: none;
      text-decoration: none;
      position: relative;
      transition: all 0.3s ease;
    }

    .fab-wa {
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: #fff;
      box-shadow: 0 5px 18px rgba(37, 211, 102, 0.35);
    }

    .fab-wa:hover {
      transform: translateY(-3px) scale(1.06);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    }

    .fab-wa::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 18px;
      border: 2px solid rgba(37, 211, 102, 0.35);
      animation: waPulse 2.5s ease-in-out infinite;
    }

    .fab-top {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.65);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
      opacity: 0;
      pointer-events: none;
      transition: all 0.35s ease;
    }

    .fab-top.show {
      opacity: 1;
      pointer-events: auto;
    }

    .fab-top:hover {
      background: rgba(139, 92, 246, 0.2);
      border-color: rgba(139, 92, 246, 0.3);
      color: #fff;
      transform: translateY(-3px);
    }

    @keyframes waPulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 0; }
    }

    /* ===== REVEAL ANIMATIONS ===== */
    .why-header,
    .why-card,
    .why-cta {
      opacity: 0;
      transform: translateY(28px);
    }

    .why-header.in-view {
      animation: riseIn 0.65s ease forwards;
    }

    .why-card.in-view {
      animation: riseIn 0.6s ease forwards;
    }

    .why-card:nth-child(1).in-view { animation-delay: 0.06s; }
    .why-card:nth-child(2).in-view { animation-delay: 0.16s; }
    .why-card:nth-child(3).in-view { animation-delay: 0.26s; }
    .why-card:nth-child(4).in-view { animation-delay: 0.36s; }

    .why-cta.in-view {
      animation: riseIn 0.6s 0.46s ease forwards;
    }

    @keyframes riseIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 820px) {
      .why-section { padding: 55px 22px 100px; }
      .why-heading { font-size: 24px; }
      .why-cards { grid-template-columns: 1fr; gap: 16px; }
      .why-card { padding: 24px 22px; }
    }

    @media (max-width: 500px) {
      .why-section { padding: 40px 16px 90px; }
      .why-heading { font-size: 20px; }
      .why-card-icon { width: 46px; height: 46px; font-size: 18px; border-radius: 12px; }
      .why-card-title { font-size: 15px; }
      .why-card-text { font-size: 12.5px; }
      .why-cta { flex-direction: column; gap: 12px; }
      .btn-explore, .btn-contact { width: 100%; justify-content: center; padding: 15px 24px; font-size: 12.5px; }
      .floating-actions { bottom: 18px; right: 16px; }
      .fab { width: 46px; height: 46px; font-size: 19px; border-radius: 13px; }
    }