/* =============================================================
   SINAU CPNS — Custom Stylesheet
   Consolidated clean version, no duplicates.
   Load AFTER style.css in layouts/home.blade.php
   ============================================================= */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
    --blue-dark:  #2A7BD4;
    --blue-main:  #4BA8FD;
    --blue-mid:   #6DC0FF;
    --cyan:       #37EBED;
    --cyan-dark:  #1FC8C8;
    --navy:       #1A4A8A;
    --text-dark:  #1A3A6B;
    --text-mid:   #3060A0;
    --text-muted: #5B80B8;
    --bg-light:   #F0F7FF;
    --white:      #FFFFFF;
  }

  /* ── GLOBAL ───────────────────────────────────────────────── */
  body { padding-top: 68px; }

  /* ── NAVBAR ───────────────────────────────────────────────── */
  #main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 68px;
    background: rgba(42,123,212,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: background 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
  }
  #main-nav.scrolled {
    background: rgba(26,74,138,0.99);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  }
  .nav-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 40px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
  .nav-links a {
    color: rgba(255,255,255,0.78); font-size: 14.5px; font-weight: 500;
    text-decoration: none; transition: color 0.2s; position: relative; padding-bottom: 2px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--cyan); border-radius: 2px;
    transform: scaleX(0); transition: transform 0.25s;
  }
  .nav-links a:hover,
  .nav-links a.nav-active { color: #fff; }
  .nav-links a:hover::after,
  .nav-links a.nav-active::after { transform: scaleX(1); }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  .nav-cta {
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--navy) !important; font-weight: 700; font-size: 14px;
    padding: 10px 26px; border-radius: 30px; text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(55,235,237,0.35);
  }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

  /* User dropdown */
  .nav-user-dropdown { position: relative; }
  .nav-user-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 14px; font-weight: 500; font-family: 'Poppins', sans-serif;
    padding: 8px 18px; border-radius: 30px; cursor: pointer; transition: background 0.2s;
  }
  .nav-user-btn:hover { background: rgba(255,255,255,0.18); }
  .nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: #fff; border-radius: 14px;
    box-shadow: 0 12px 40px rgba(26,74,138,0.18);
    min-width: 190px; padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.2s; z-index: 200;
  }
  .nav-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px; font-size: 14px; color: var(--navy);
    text-decoration: none; transition: background 0.15s; font-family: 'Poppins', sans-serif;
  }
  .nav-dropdown-item:hover { background: var(--bg-light); }
  .nav-dropdown-danger { color: #CC4444; }
  .nav-dropdown-danger:hover { background: #FFF0F0; }
  .nav-dropdown-divider { height: 1px; background: #E8EFFF; margin: 4px 0; }

  /* Hamburger */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: rgba(255,255,255,0.9); border-radius: 2px; transition: all 0.3s;
  }

  /* Mobile menu */
  .mobile-menu-overlay {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  }
  .mobile-menu-overlay.open { display: block; }
  .mobile-menu { position: absolute; top: 0; right: 0; bottom: 0; width: 280px; background: #fff; overflow-y: auto; }
  .mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid #E8EFFF;
  }
  .mobile-menu-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #666; }
  .mobile-nav-links { list-style: none; padding: 12px 0; margin: 0; }
  .mobile-nav-links li a {
    display: block; padding: 14px 24px; font-size: 15px; color: var(--navy);
    font-weight: 500; text-decoration: none; font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #F0F5FF; transition: background 0.15s;
  }
  .mobile-nav-links li a:hover { background: var(--bg-light); }
  .mobile-nav-links .mobile-cta {
    background: linear-gradient(135deg, var(--blue-main), var(--cyan));
    color: var(--navy) !important; font-weight: 700; text-align: center;
    border-radius: 10px; margin: 16px 24px; border: none !important;
  }

  @media (max-width: 900px) {
    .nav-inner { padding: 0 20px; }
    .nav-links, .nav-cta, .nav-user-dropdown { display: none; }
    .nav-hamburger { display: flex; }
  }

  /* ── HOME PAGE — HERO ─────────────────────────────────────── */
  .new-landing * { box-sizing: border-box; }
  .hero-v2 {
    min-height: calc(100vh - 68px);
    background: linear-gradient(160deg, #2980D9 0%, var(--blue-main) 50%, var(--blue-mid) 100%);
    display: flex; align-items: center; position: relative; overflow: hidden;
  }
  .hero-bg-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
  .hero-bg-svg circle { opacity: 0.06; }
  .hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; }
  .hero-inner-v2 {
    position: relative; z-index: 2; max-width: 1160px; margin: 0 auto;
    padding: 80px 40px 160px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; width: 100%;
  }
  .hero-badge-v2 {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px; padding: 6px 16px;
    font-size: 13px; font-weight: 500; color: var(--cyan); margin-bottom: 24px;
  }
  .hero-badge-v2::before {
    content: ''; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.5; transform:scale(1.35); }
  }
  .hero-inner-v2 h1 {
    font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.2; color: #fff;
    margin-bottom: 20px; letter-spacing: -0.5px; font-family: 'Poppins', sans-serif;
  }
  .hero-inner-v2 h1 span { color: var(--cyan); }
  .hero-inner-v2 .hero-desc {
    font-size: 17px; font-weight: 400; line-height: 1.7;
    color: rgba(255,255,255,0.78); margin-bottom: 36px; font-family: 'Poppins', sans-serif;
  }
  .hero-actions-v2 { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--navy); font-weight: 700; font-size: 15px;
    padding: 15px 32px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 6px 24px rgba(46,220,201,0.45); transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
  }
  .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(46,220,201,0.55); color: var(--navy); text-decoration: none; }
  .btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff; font-weight: 600; font-size: 15px;
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    transition: background 0.2s; font-family: 'Poppins', sans-serif;
  }
  .btn-hero-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; text-decoration: none; }
  .hero-stats-v2 {
    display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .hero-stats-v2 .stat strong { display: block; font-size: 26px; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; }
  .hero-stats-v2 .stat span   { font-size: 13px; color: rgba(255,255,255,0.6); font-family: 'Poppins', sans-serif; }

  /* Hero illustration */
  .hero-illus { display: flex; justify-content: center; align-items: center; position: relative; }
  .hero-illus svg { width: 100%; max-width: 520px; height: auto; animation: float-illus 4s ease-in-out infinite; }
  @keyframes float-illus { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
  .float-card {
    position: absolute; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 12px 18px;
    display: flex; align-items: center; gap: 12px; animation: float-illus 4s ease-in-out infinite;
  }
  .float-card.fc-1 { top: 14%; right: -4%; animation-delay: 0.5s; }
  .float-card.fc-2 { bottom: 22%; left: -4%; animation-delay: 1s; }
  .float-card .fc-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-main), var(--cyan));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .float-card .fc-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; font-family: 'Poppins', sans-serif; }
  .float-card .fc-text span   { font-size: 11px; color: rgba(255,255,255,0.7); font-family: 'Poppins', sans-serif; }

  /* ── HOME PAGE — SECTION SHARED ──────────────────────────── */
  .section-label-v2 {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--blue-main);
    background: rgba(75,168,253,0.10); border-radius: 6px;
    padding: 5px 14px; margin-bottom: 14px;
  }
  .section-heading-v2 {
    font-size: clamp(26px, 3vw, 40px); font-weight: 800;
    color: var(--navy); line-height: 1.2; margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
  }
  .section-heading-v2 span { color: var(--blue-main); }
  .section-sub-v2 {
    font-size: 16px; color: var(--text-muted); font-weight: 400;
    line-height: 1.7; max-width: 560px; margin: 0 auto; font-family: 'Poppins', sans-serif;
  }

  /* ── HOME PAGE — SERVICES ─────────────────────────────────── */
  .services-v2 { max-width: 1160px; margin: 0 auto; padding: 90px 40px; }
  .services-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .service-card-v2 {
    background: var(--white); border: 1.5px solid #E5EFFF; border-radius: 24px; padding: 36px 30px;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .service-card-v2:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,111,250,0.12); border-color: var(--blue-main); }
  .service-card-v2::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-main), var(--cyan)); opacity: 0; transition: opacity 0.25s;
  }
  .service-card-v2:hover::before { opacity: 1; }
  .service-icon-v2 { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
  .service-card-v2:nth-child(1) .service-icon-v2 { background: linear-gradient(135deg, #E8F0FF, #C4D9FF); }
  .service-card-v2:nth-child(2) .service-icon-v2 { background: linear-gradient(135deg, #E0FAF6, #B2F2E8); }
  .service-card-v2:nth-child(3) .service-icon-v2 { background: linear-gradient(135deg, #FFF0E0, #FFD9A8); }
  .service-card-v2 h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; font-family: 'Poppins', sans-serif; }
  .service-card-v2 p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-family: 'Poppins', sans-serif; margin-bottom: 0; }

  /* ── HOME PAGE — HOW IT WORKS ─────────────────────────────── */
  .how-section-v2 { background: var(--bg-light); padding: 90px 0; }
  .how-inner-v2 { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
  .how-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
  .how-steps-v2 { display: flex; flex-direction: column; gap: 28px; }
  .step-v2 { display: flex; gap: 20px; align-items: flex-start; }
  .step-num-v2 {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif;
  }
  .step-v2 h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
  .step-v2 p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-family: 'Poppins', sans-serif; margin: 0; }
  .how-screen-v2 {
    background: var(--white); border-radius: 24px;
    box-shadow: 0 24px 64px rgba(11,61,145,0.12); padding: 28px; width: 100%;
  }
  .how-screen-header-v2 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .screen-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
  .screen-dots span:nth-child(1) { background: #FF5F56; }
  .screen-dots span:nth-child(2) { background: #FFBD2E; }
  .screen-dots span:nth-child(3) { background: #27C93F; }
  .screen-title-v2 { font-size: 13px; font-weight: 600; color: var(--text-mid); font-family: 'Poppins', sans-serif; }
  .q-item-v2 { background: var(--bg-light); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
  .q-item-v2 .q-label { font-size: 12px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
  .q-item-v2 .q-text  { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 12px; font-family: 'Poppins', sans-serif; }
  .q-opts-v2 { display: flex; flex-direction: column; gap: 8px; }
  .q-opt-v2 {
    font-size: 12px; padding: 8px 14px; border-radius: 8px;
    color: var(--text-mid); background: var(--white);
    border: 1.5px solid #D8E7FF; font-family: 'Poppins', sans-serif;
  }
  .q-opt-v2.correct { background: #E0FAF6; border-color: var(--cyan); color: var(--cyan-dark); font-weight: 600; }
  .q-opt-v2.wrong   { background: #FFF0F0; border-color: #FFB3B3; color: #CC4444; }
  .q-progress-wrap  { margin-top: 16px; background: #E8F0FF; border-radius: 30px; height: 8px; overflow: hidden; }
  .q-progress-fill  { height: 100%; width: 68%; background: linear-gradient(90deg, var(--blue-main), var(--cyan)); border-radius: 30px; }
  .q-progress-label { display: flex; justify-content: space-between; margin-top: 8px; }
  .q-progress-label span  { font-size: 12px; color: var(--text-muted); font-family: 'Poppins', sans-serif; }
  .q-progress-label strong{ font-size: 12px; color: var(--blue-main); font-family: 'Poppins', sans-serif; }

  /* ── HOME PAGE — TESTIMONIALS ─────────────────────────────── */
  .testi-section-v2 {
    background: linear-gradient(135deg, #2980D9 0%, var(--blue-main) 60%, var(--blue-mid) 100%);
    position: relative; overflow: hidden; padding: 90px 0;
  }
  .testi-inner-v2 { max-width: 1160px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
  .testi-grid-v2  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .testi-card-v2 {
    background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px; padding: 32px 28px; backdrop-filter: blur(8px);
    transition: transform 0.25s, background 0.25s;
  }
  .testi-card-v2:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
  .testi-stars-v2 { display: flex; gap: 4px; margin-bottom: 18px; }
  .testi-stars-v2 svg { width: 16px; height: 16px; }
  .testi-quote-v2 { font-size: 15px; font-style: italic; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 24px; font-family: 'Poppins', sans-serif; }
  .testi-author-v2 { display: flex; align-items: center; gap: 14px; }
  .testi-avatar-v2 {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; color: var(--navy); flex-shrink: 0; font-family: 'Poppins', sans-serif;
  }
  .testi-avatar-v2.av1 { background: linear-gradient(135deg, #FFD580, #FFB23F); }
  .testi-avatar-v2.av2 { background: linear-gradient(135deg, #80E8D8, #2EDCC9); }
  .testi-avatar-v2.av3 { background: linear-gradient(135deg, #C8A8FF, #9B6BFF); }
  .testi-name-v2 strong { display: block; font-size: 14px; font-weight: 700; color: #fff; font-family: 'Poppins', sans-serif; }
  .testi-name-v2 span   { font-size: 12px; color: rgba(255,255,255,0.55); font-family: 'Poppins', sans-serif; }

  /* ── HOME PAGE — CTA ─────────────────────────────────────── */
  .cta-section-v2 { padding: 80px 40px; }
  .cta-inner-v2 {
    max-width: 1160px; margin: 0 auto;
    background: linear-gradient(135deg, #2980D9, var(--blue-main));
    border-radius: 32px; padding: 70px 80px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    position: relative; overflow: hidden;
  }
  .cta-inner-v2::before {
    content: ''; position: absolute; right: -80px; top: -80px;
    width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%;
  }
  .cta-inner-v2::after {
    content: ''; position: absolute; right: 80px; bottom: -120px;
    width: 240px; height: 240px; background: rgba(46,220,201,0.12); border-radius: 50%;
  }
  .cta-text-v2 { position: relative; z-index: 1; }
  .cta-text-v2 h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 12px; font-family: 'Poppins', sans-serif; }
  .cta-text-v2 p  { font-size: 16px; color: rgba(255,255,255,0.72); font-family: 'Poppins', sans-serif; margin: 0; }
  .cta-btn-v2 {
    position: relative; z-index: 1; flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--navy); font-weight: 700; font-size: 16px;
    padding: 18px 40px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 8px 28px rgba(46,220,201,0.5);
    transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; font-family: 'Poppins', sans-serif;
  }
  .cta-btn-v2:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(46,220,201,0.6); color: var(--navy); text-decoration: none; }

  /* ── FOOTER ───────────────────────────────────────────────── */
  .footer-v2 { background: #1A4A8A; font-family: 'Poppins', sans-serif; }
  .footer-v2-inner {
    max-width: 1160px; margin: 0 auto; padding: 64px 40px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  }
  .footer-v2-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin: 16px 0 20px; line-height: 1.6; }
  .footer-v2-socials { display: flex; gap: 12px; }
  .footer-v2-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); text-decoration: none; transition: background 0.2s, color 0.2s;
  }
  .footer-v2-socials a:hover { background: var(--cyan); color: var(--navy); }
  .footer-v2-links-group h4 {
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 20px;
  }
  .footer-v2-links-group ul { list-style: none; padding: 0; margin: 0; }
  .footer-v2-links-group ul li { margin-bottom: 12px; }
  .footer-v2-links-group ul li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
  .footer-v2-links-group ul li a:hover { color: var(--cyan); }
  .footer-v2-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1160px; margin: 0 auto; padding: 20px 40px 28px;
    display: flex; align-items: center; justify-content: center;
  }
  .footer-v2-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }

  /* ── LOGIN MODAL ──────────────────────────────────────────── */
  .lm-backdrop {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,30,70,0.6); backdrop-filter: blur(8px);
    align-items: center; justify-content: center; padding: 20px;
    font-family: 'Poppins', sans-serif;
  }
  .lm-backdrop.lm-open { display: flex; animation: lm-fade-in 0.25s ease; }
  @keyframes lm-fade-in { from { opacity:0; } to { opacity:1; } }
  .lm-card {
    background: #fff; border-radius: 24px; width: 100%; max-width: 440px;
    position: relative; overflow: hidden;
    box-shadow: 0 32px 80px rgba(10,40,120,0.25), 0 0 0 1px rgba(75,168,253,0.12);
    animation: lm-slide-up 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  @keyframes lm-slide-up { from { opacity:0; transform:translateY(32px) scale(0.97); } to { opacity:1; transform:none; } }
  .lm-topbar {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 55%, var(--cyan) 100%);
    height: 148px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .lm-topbar-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); }
  .lm-blob-1 { width: 200px; height: 200px; top: -70px; left: -60px; }
  .lm-blob-2 { width: 140px; height: 140px; top: -30px; right: -30px; background: rgba(55,235,237,0.15); }
  .lm-blob-3 { width: 80px;  height: 80px;  bottom: 10px; left: 42%; background: rgba(255,255,255,0.08); }
  .lm-logo-wrap {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.18); backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.35); border-radius: 18px;
    padding: 14px 28px; display: flex; align-items: center; justify-content: center;
  }
  .lm-logo { height: 38px; width: auto; }
  .lm-close {
    position: absolute; top: 14px; right: 14px; z-index: 10;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
    color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s; line-height: 1;
  }
  .lm-close:hover { background: rgba(255,255,255,0.35); transform: scale(1.08); }
  .lm-body { padding: 32px 36px; text-align: center; }
  .lm-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
  .lm-subtitle { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; font-family: 'Poppins', sans-serif; }
  .lm-notice {
    display: flex; align-items: flex-start; gap: 10px; text-align: left;
    background: var(--bg-light); border: 1px solid #C4D9FF; border-radius: 12px;
    padding: 12px 14px; margin-bottom: 24px;
  }
  .lm-notice-icon {
    width: 30px; height: 30px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-main), var(--cyan));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: white; margin-top: 1px;
  }
  .lm-notice p { font-size: 12.5px; color: var(--text-mid); line-height: 1.5; margin: 0; font-family: 'Poppins', sans-serif; }
  .lm-google-btn {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1.5px solid #E0EAFF; border-radius: 14px; padding: 14px 20px;
    text-decoration: none; color: var(--navy); font-size: 15px; font-weight: 600;
    font-family: 'Poppins', sans-serif; transition: all 0.22s; width: 100%;
    box-shadow: 0 2px 8px rgba(26,74,138,0.08); position: relative; overflow: hidden;
  }
  .lm-google-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg-light), #E8F4FF); opacity: 0; transition: opacity 0.22s;
  }
  .lm-google-btn:hover { border-color: var(--blue-main); box-shadow: 0 6px 20px rgba(75,168,253,0.2); transform: translateY(-2px); color: var(--navy); text-decoration: none; }
  .lm-google-btn:hover::before { opacity: 1; }
  .lm-google-icon {
    position: relative; z-index: 1; width: 36px; height: 36px; border-radius: 8px;
    background: #fff; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .lm-google-text  { position: relative; z-index: 1; flex: 1; text-align: left; }
  .lm-google-arrow { position: relative; z-index: 1; color: var(--blue-main); flex-shrink: 0; transition: transform 0.2s; }
  .lm-google-btn:hover .lm-google-arrow { transform: translateX(3px); }
  .lm-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
  .lm-divider::before, .lm-divider::after { content: ''; flex: 1; height: 1px; background: #E5EFFF; }
  .lm-divider span { font-size: 12px; color: #8AAAD4; white-space: nowrap; font-family: 'Poppins', sans-serif; }
  .lm-guest-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent; border: 1.5px solid #E0EAFF; border-radius: 14px; padding: 12px 20px;
    text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500;
    font-family: 'Poppins', sans-serif; transition: all 0.2s; width: 100%;
  }
  .lm-guest-btn:hover { background: var(--bg-light); border-color: #B8D4FF; color: var(--navy); text-decoration: none; }
  .lm-terms { font-size: 11.5px; color: #AAC0DC; line-height: 1.6; margin-top: 20px; font-family: 'Poppins', sans-serif; }
  .lm-terms a { color: var(--blue-main); text-decoration: none; font-weight: 500; }
  .lm-terms a:hover { text-decoration: underline; }

  /* ── CHIP / TAG FILTER ────────────────────────────────────── */
  .chip {
    display: inline-flex; align-items: center; border-radius: 16px;
    padding: 0 12px; height: 32px; font-size: 14px; cursor: pointer;
    transition: all 0.2s ease; user-select: none;
  }
  .chip-sm   { height: 24px; padding: 0 10px; font-size: 12px; }
  .chip-text { padding: 0 4px; }
  .chip-icon-left { margin-right: 4px; display: flex; align-items: center; }
  .chip-outline { border: 1px solid #dee2e6; background-color: transparent; }
  .chip-solid    { background-color: var(--blue-main); color: #fff; border: 1px solid var(--blue-main); }
  .chip-filter   { user-select: none; }

  /* ── ARTICLE CONTENT ─────────────────────────────────────── */
  .article-content { overflow: visible; }
  .article-content img {
    max-width: 100% !important; height: auto !important;
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 1rem 0; display: block;
  }
  .article-content figure { margin: 1.5rem 0; text-align: center; }
  .article-content figure img { margin-bottom: 0.5rem; }
  .article-content figcaption { font-size: 0.9rem; color: #6c757d; font-style: italic; }
  .article-content h2, .article-content h3, .article-content h4 { margin-top: 1.5rem; margin-bottom: 1rem; }
  .article-content p  { margin-bottom: 1rem; line-height: 1.7; }
  .article-content ul li { margin-left: 40px; }
  .article-content blockquote {
    border-left: 4px solid var(--blue-main); padding: 1rem;
    margin: 1.5rem 0; font-style: italic;
    background-color: #f8f9fa; border-radius: 0 8px 8px 0;
  }
  .article-content pre  { background: #f8f9fa; padding: 1rem; border-radius: 8px; overflow-x: auto; font-size: 0.875rem; }
  .article-content code { background: #f8f9fa; padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.875rem; }
  .article-content pre code { background: none; padding: 0; }

  /* Table responsive */
  .table-responsive-wrapper { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1rem; display: block; position: relative; }
  .article-content table   { border-collapse: collapse; width: max-content; min-width: 100%; }
  .article-content th, .article-content td { padding: 10px 14px; border: 1px solid #dee2e6; vertical-align: top; }
  .article-content th { background-color: #f8f9fa; font-weight: 600; white-space: nowrap; }
  @media (max-width: 768px) {
    .article-content th, .article-content td { padding: 8px 12px; font-size: 0.875rem; }
  }

  /* ── BREADCRUMB ───────────────────────────────────────────── */
  .breadcrumb { margin-bottom: 1rem; }
  .breadcrumb-item { font-size: 0.9rem; }
  .breadcrumb-item + .breadcrumb-item::before { display: none; }
  .breadcrumb-separator { color: #6c757d; margin: 0 0.5rem; }

  /* ── SHARED UTILITY ───────────────────────────────────────── */
  .hover-shadow { transition: box-shadow 0.3s ease, transform 0.3s ease; }
  .hover-shadow:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); transform: translateY(-2px); }

  /* ── SCROLL REVEAL ────────────────────────────────────────── */
  .rv { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .rv.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner-v2 { grid-template-columns: 1fr; text-align: center; padding: 60px 24px 120px; }
    .hero-actions-v2, .hero-stats-v2 { justify-content: center; }
    .hero-illus { display: none; }
    .services-grid-v2 { grid-template-columns: 1fr; gap: 20px; }
    .services-v2 { padding: 60px 24px; }
    .how-section-v2 { padding: 60px 0; }
    .how-inner-v2 { padding: 0 24px; }
    .how-grid-v2 { grid-template-columns: 1fr; gap: 40px; }
    .testi-section-v2 { padding: 60px 0; }
    .testi-inner-v2 { padding: 0 24px; }
    .testi-grid-v2 { grid-template-columns: 1fr; gap: 16px; }
    .cta-section-v2 { padding: 60px 20px; }
    .cta-inner-v2 { flex-direction: column; padding: 50px 32px; text-align: center; }
    .footer-v2-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 24px 32px; }
    .footer-v2-brand { grid-column: 1 / -1; }
    .footer-v2-bottom { padding: 16px 24px 24px; }
    .lm-body { padding: 44px 24px 28px; }
    .lm-topbar { height: 110px; }
    .lm-title { font-size: 20px; }
  }
  @media (max-width: 600px) {
    .hero-stats-v2 { flex-wrap: wrap; gap: 20px; }
    .how-screen-v2 { padding: 20px; }
  }
  @media (max-width: 500px) {
    .footer-v2-inner { grid-template-columns: 1fr; gap: 32px; }
  }