 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --blue: #ff5100;
     --blue-dark: #f8a02c;
     --blue-light: #e8f0fe;
     --navy: #0b1f4f;
     --accent: #f97316;
     --green: #10b981;
     --bg: #f8faff;
     --white: #ffffff;
     --gray: #36393d;
     --gray-light: #f3f4f6;
     --text: #111827;
     --black: #111827;
     --darkgreen: #145f24;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Be Vietnam Pro', sans-serif;
     color: var(--text);
     background: var(--white);
     overflow-x: hidden;
 }

 /* ========== NAVBAR ========== */
 body > nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999;
     background: rgba(255, 255, 255, 0.96);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     padding: 0 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 68px;
 }

 .logo {
     font-size: 25px;
     font-weight: 700;
     color: #28334f;
     letter-spacing: -0.5px;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .logo-icon {
     width: 34px;
     height: 34px;
     background: var(--blue);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .logo-icon svg {
     width: 20px;
     height: 20px;
     fill: white;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 28px;
     list-style: none;
 }

 .nav-links>li {
     position: relative;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--text);
     font-size: 15px;
     font-weight: 500;
     transition: color .2s;
 }

 .nav-links a:hover {
     color: var(--blue);
 }

 /* ---- Mega toggle trigger ---- */
 .nav-mega-toggle {
     display: flex;
     align-items: center;
     gap: 4px;
     cursor: pointer;
 }

 .nav-chevron {
     transition: transform .25s;
     flex-shrink: 0;
     margin-top: 1px;
 }

 .nav-has-mega:hover .nav-chevron,
 .nav-has-mega.is-open .nav-chevron {
     transform: rotate(180deg);
 }

 /* Transparent bridge so cursor can travel from trigger → dropdown without losing hover */
 .nav-has-mega::after {
     content: '';
     position: absolute;
     top: 100%;
     left: -20px;
     right: -20px;
     height: 26px;
     /* covers the gap + a little extra */
 }

 /* ---- Mega Menu Shell ---- */
 .mega-menu {
     position: absolute;
     top: calc(100% + 18px);
     left: 50%;
     transform: translateX(-50%) translateY(8px);
     width: 820px;
     background: #fff;
     border-radius: 18px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
     border: 1px solid rgba(0, 0, 0, .07);
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: opacity .22s ease, transform .22s ease, visibility .22s;
     z-index: 1000;
 }

 .nav-has-mega:hover .mega-menu,
 .nav-has-mega.is-open .mega-menu {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: translateX(-50%) translateY(0);
 }

 /* arrow tip */
 .mega-menu::before {
     content: '';
     position: absolute;
     top: -7px;
     left: 50%;
     transform: translateX(-50%);
     width: 14px;
     height: 14px;
     background: #fff;
     border-left: 1px solid rgba(0, 0, 0, .07);
     border-top: 1px solid rgba(0, 0, 0, .07);
     rotate: 45deg;
 }

 .mega-inner {
     display: grid;
     grid-template-columns: 240px 1fr;
     min-height: 340px;
 }

 /* ---- Sidebar ---- */
 .mega-sidebar {
     background: #f8f9fb;
     border-radius: 18px 0 0 18px;
     padding: 16px 12px;
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .mega-cat {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 14px;
     border-radius: 12px;
     cursor: pointer;
     transition: background .18s;
     text-decoration: none;
 }

 .mega-cat:hover {
     background: rgba(255, 81, 0, .07);
 }

 .mega-cat.is-active {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
 }

 .mega-cat-icon {
     width: 40px;
     height: 40px;
     min-width: 40px;
     border-radius: 10px;
     background: #ffe8da;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
 }
 
 .mega-cat-icon i {
     color: var(--blue);
     font-size: 16px;
     line-height: 1;
 }
 
 .mega-posigning .mega-cat-icon i {
     color: #fff;
 }

 .mega-cat-name {
     font-size: 13.5px;
     font-weight: 700;
     color: var(--navy);
     line-height: 1.3;
 }

 .mega-cat-desc {
     font-size: 12px;
     color: #5e5e5e;
     margin-top: 2px;
 }

 .mega-cat-arrow {
     margin-left: auto;
     flex-shrink: 0;
     color: #9ca3af;
     transition: color .18s;
 }

 .mega-cat.is-active .mega-cat-arrow,
 .mega-cat:hover .mega-cat-arrow {
     color: var(--blue);
 }

 .mega-divider {
     height: 1px;
     background: rgba(0, 0, 0, .07);
     margin: 8px 6px;
 }

 .mega-posigning {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 14px;
     border-radius: 12px;
     cursor: pointer;
     transition: background .18s;
     text-decoration: none;
     border: 1.5px dashed rgba(14, 165, 233, .25);
 }

 .mega-posigning:hover {
     background: rgba(14, 165, 233, .06);
     border-color: rgba(14, 165, 233, .5);
 }

 /* ---- Panel ---- */
 .mega-panel {
     padding: 20px 22px;
     display: none;
 }

 .mega-panel.is-active {
     display: block;
 }

 .mega-panel-title {
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .08em;
     color: #9ca3af;
     padding: 0 4px 12px;
 }

 .mega-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6px;
 }

 .mega-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 12px 14px;
     border-radius: 12px;
     text-decoration: none;
     transition: background .18s, transform .18s;
 }

 .mega-item:hover {
     background: #f8f9fb;
     transform: translateX(2px);
 }

 .mega-item-icon {
     width: 38px;
     height: 38px;
     min-width: 38px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 17px;
 }
 
 .mega-item-icon i {
     color: var(--blue);
     font-size: 16px;
     line-height: 1;
 }

 .mega-item-name {
     font-size: 13.5px;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 3px;
 }

 .mega-item-desc {
     font-size: 12px;
     color: #363636;
     line-height: 1.5;
     font-weight: normal;
 }

 .mega-item:hover .mega-item-name {
     color: var(--blue);
 }

 .nav-right {
     display: flex;
     gap: 12px;
     align-items: center;
 }

 .btn-outline {
     padding: 9px 20px;
     border: 1.5px solid var(--blue);
     color: var(--blue);
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     background: transparent;
     text-decoration: none;
     transition: all .2s;
 }

 .btn-outline:hover {
     background: var(--blue-light);
 }

 .btn-primary {
     padding: 9px 20px;
     background: var(--blue);
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     text-decoration: none;
     transition: all .2s;
 }

 .btn-primary:hover {
     background: var(--blue-dark);
     transform: translateY(-1px);
 }

 /* ========== HERO ========== */
 .hero {
     margin-top: 68px;
     background: linear-gradient(135deg, var(--blue) 0%, #ff6c40 50%, #ff3c00 100%);
     min-height: 500px;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding: 80px 80px 60px;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .hero-blob {
     position: absolute;
     right: -100px;
     top: -100px;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(99, 179, 237, 0.18) 0%, transparent 70%);
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 620px;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(255, 255, 255, 0.12);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     padding: 6px 16px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 500;
     margin-bottom: 28px;
 }

 .hero-badge span {
     width: 6px;
     height: 6px;
     background: #34d399;
     border-radius: 50%;
     display: inline-block;
 }

 .hero h1 {

     font-weight: 800;
     color: white;
     line-height: 1.1;
     letter-spacing: -1.5px;
     margin-bottom: 24px;
 }

 .hero h1 em {
     color: #93c5fd;
     font-style: normal;
 }

 .hero p {
     font-size: 18px;
     color: rgb(255, 255, 255);
     line-height: 1.7;
     margin-bottom: 40px;
 }

 .hero-actions {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
 }

 .btn-hero-primary {
     padding: 14px 28px;
     background: white;
     color: var(--blue);
     border-radius: 10px;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     transition: all .2s;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .btn-hero-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
 }

 .btn-hero-outline {
     padding: 14px 28px;
     border: 1.5px solid rgba(255, 255, 255, 0.4);
     color: white;
     border-radius: 10px;
     font-size: 15px;
     font-weight: 600;
     text-decoration: none;
     transition: all .2s;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .btn-hero-outline:hover {
     background: rgba(255, 255, 255, 0.1);
 }

 .hero-stats {
     margin-top: 56px;
     display: flex;
     gap: 40px;
 }

 .stat {}

 .stat-num {
     font-size: 32px;
     font-weight: 800;
     color: white;
 }

 .stat-label {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.9);
     margin-top: 2px;
 }

 /* ========== SECTION COMMON ========== */
 section {
     padding: 50px 80px;
 }

 .section-tag {
     display: inline-block;
     background: var(--blue-light);
     color: var(--blue);
     padding: 5px 14px;
     border-radius: 100px;
     font-size: 15px;
     font-weight: 600;
     margin-bottom: 16px;
 }
 
 .section-tag i {
     margin-right: 6px;
     font-size: .9em;
 }

 .section-title {
     font-size: 40px;
     font-weight: 800;
     color: var(--navy);
     letter-spacing: -1px;
     line-height: 1.15;
     margin-bottom: 16px;
 }

 .section-sub {
     font-size: 17px;
     color: var(--gray);
     line-height: 1.7;
     
 }

 /* ========== TRUST BAR ========== */
 .trust-bar {
     background: var(--gray-light);
     padding: 28px 80px;
     display: flex;
     align-items: center;
     gap: 32px;
     overflow: hidden;
 }

 .trust-label {
     font-size: 13px;
     color: var(--gray);
     font-weight: 500;
     white-space: nowrap;
     flex: 0 0 auto;
 }

 .trust-logos {
     display: flex;
     align-items: center;
     gap: 40px;
     flex: 1;
     min-width: 0;
     overflow: hidden;
     white-space: nowrap;
 }

 .trust-logo {
     position: relative;
     font-size: 16px;
     font-weight: 700;
     color: #676767;
     letter-spacing: -0.5px;
     white-space: nowrap;
     flex: 0 0 auto;
     animation: trustMarquee 50s linear infinite;
     cursor: help;
     outline: none;
     transition: color .18s ease, transform .18s ease, text-shadow .18s ease;
  }
 
 .trust-logo:hover,
 .trust-logo:focus-visible {
     color: var(--trust-color, var(--blue));
     text-shadow: 0 0 18px color-mix(in srgb, var(--trust-color, var(--blue)) 28%, transparent);
     transform: translateY(-1px);
  }
 
 .trust-logos:hover .trust-logo,
 .trust-logos:focus-within .trust-logo {
     animation-play-state: paused;
 }
 
 .trust-tooltip {
     position: fixed;
     left: 0;
     top: 0;
     z-index: 1400;
     max-width: min(320px, calc(100vw - 32px));
     padding: 10px 12px;
     border-radius: 8px;
     background: #111827;
     color: #fff;
     font-size: 12px;
     font-weight: 500;
     line-height: 1.45;
     box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translate(-50%, calc(-100% - 6px));
     transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
  }
 
 .trust-tooltip.is-visible {
     opacity: 1;
     visibility: visible;
     transform: translate(-50%, calc(-100% - 12px));
  }
 
 .trust-tooltip.is-below {
     transform: translate(-50%, 6px);
  }
 
 .trust-tooltip.is-visible.is-below {
     transform: translate(-50%, 12px);
  }
 
 .trust-tooltip::after {
     content: '';
     position: absolute;
     left: 50%;
     bottom: -6px;
     width: 12px;
     height: 12px;
     background: #111827;
     transform: translateX(-50%) rotate(45deg);
  }
 
 .trust-tooltip.is-below::after {
     top: -6px;
     bottom: auto;
  }

 @keyframes trustMarquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-100vw);
     }
 }

 /* ========== FEATURES ========== */
 .features-bg {
     background: var(--bg);
 }

 .features-grid {
     margin-top: 56px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .feature-card {
     background: white;
     border-radius: 16px;
     padding: 32px;
     border: 1px solid rgba(0, 0, 0, 0.06);
     transition: all .25s;
     cursor: default;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
 }

 .feature-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 40px rgba(26, 86, 219, 0.10);
     border-color: rgba(26, 86, 219, 0.15);
 }

 .feature-icon {
     width: 52px;
     height: 52px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 24px;
 }

 .icon-blue {
     background: #eff6ff;
 }

 .icon-green {
     background: #ecfdf5;
 }

 .icon-orange {
     background: #fff7ed;
 }

 .icon-purple {
     background: #f5f3ff;
 }

 .icon-teal {
     background: #f0fdfa;
 }

 .icon-pink {
     background: #fdf2f8;
 }

 .feature-title {
     font-size: 18px;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 10px;
 }

 .feature-desc {
     font-size: 14px;
     color: var(--gray);
     line-height: 1.7;
 }

 /* ========== HOW IT WORKS ========== */
 .how-grid {
     margin-top: 60px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .how-steps {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .step {
     display: flex;
     gap: 20px;
     padding: 24px;
     border-radius: 14px;
     background: #f2f2f2;
     border: 1.5px solid transparent;
     transition: all .2s;
     cursor: default;
 }

 .step:hover {
     border-color: var(--blue);
     background: white;
     box-shadow: 0 8px 24px rgba(26, 86, 219, 0.08);
 }

 .step-num {
     width: 40px;
     height: 40px;
     min-width: 40px;
     background: var(--blue);
     color: white;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 16px;
 }

 .step h4 {
     font-size: 16px;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 6px;
 }

 .step p {
     font-size: 14px;
     color: var(--gray);
     line-height: 1.6;
 }

 .how-visual {
     /*background: linear-gradient(135deg, #eff6ff, #dbeafe);
     border-radius: 24px;
     padding: 40px;
     aspect-ratio: 1 / 1;
     */
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .how-stage {
     position: relative;
     width: 100%;
     max-width: 420px;
     min-height: 430px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .how-screen {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transform: translateY(16px) scale(.98);
     transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
     pointer-events: none;
 }

 .how-screen.is-active {
     opacity: 1;
     visibility: visible;
     transform: translateY(0) scale(1);
     pointer-events: auto;
 }

 .mockup-card {
     background: white;
     border-radius: 16px;
     padding: 24px;
     box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
     width: 100%;
     max-width: 450px;
 }

 .mockup-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
 }

 .mockup-avatar {
     width: 38px;
     height: 38px;
     background: var(--blue);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
 }

 .mockup-meta {}

 .mockup-name {
     font-size: 14px;
     font-weight: 700;
     color: var(--navy);
 }

 .mockup-role {
     font-size: 12px;
     color: var(--gray);
 }

 .mockup-doc {
     background: var(--bg);
     border-radius: 10px;
     padding: 16px;
     margin-bottom: 12px;
     border-left: 3px solid var(--blue);
 }

 .mockup-doc-title {
     font-size: 14px;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 4px;
 }
 
 .mockup-doc-title i {
     width: 16px;
     margin-right: 6px;
     color: var(--blue);
     text-align: center;
 }

 .mockup-doc-meta {
     font-size: 13px;
     color: var(--gray);
 }

 .mockup-actions {
     display: flex;
     gap: 8px;
     margin-top: 16px;
 }

 .mock-btn {
     padding: 8px 14px;
     border-radius: 7px;
     font-size: 12px;
     font-weight: 600;
     cursor: pointer;
     border: none;
 }
 
 .mock-btn i,
 .status-badge i {
     margin-right: 4px;
 }

 .mock-btn-green {
     background: #d1fae5;
     color: #065f46;
 }

 .mock-btn-red {
     background: #fee2e2;
     color: #991b1b;
 }

 .mock-btn-gray {
     background: var(--gray-light);
     color: var(--gray);
 }

 .status-badge {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 4px 10px;
     border-radius: 100px;
     font-size: 11px;
     font-weight: 600;
 }

 .badge-pending {
     background: #fef9c3;
     color: #713f12;
 }

 .badge-approved {
     background: #d1fae5;
     color: #065f46;
 }

 /* ========== MODULES ========== */
 .modules-bg {
     background: #1e2939;
 }

 .modules-bg .section-title {
     color: white;
 }

 .modules-bg .section-sub {
     color: rgba(255, 255, 255, 0.6);
 }

 .modules-bg .section-tag {
     background: rgba(255, 255, 255, 0.1);
     color: #93c5fd;
 }

 .modules-grid {
     margin-top: 56px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
 }

 .module-card {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 14px;
     padding: 28px 24px;
     transition: all .25s;
     cursor: default;
 }

 .module-card:hover {
     background: rgba(255, 255, 255, 0.12);
     transform: translateY(-3px);
 }

 .module-icon {
     font-size: 32px;
  
     color: #93c5fd;
 }

 .module-name {
     font-size: 16px;
     font-weight: 700;
     color: white;
     margin-bottom: 8px;
 }

 .module-desc {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.55);
     line-height: 1.6;
 }

 /* ========== PRICING ========== */
 .pricing-grid {
     margin-top: 56px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .plan {
     border-radius: 20px;
     padding: 36px;
     border: 1.5px solid rgba(0, 0, 0, 0.08);
     transition: all .25s;
     position: relative;
     overflow: hidden;
 }

 .plan-popular {
     background: var(--blue);
     border-color: var(--blue);
     box-shadow: 0 20px 60px rgba(26, 86, 219, 0.25);
 }

 .plan-tag {
     position: absolute;
     top: 20px;
     right: 20px;
     background: var(--accent);
     color: white;
     padding: 4px 12px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 700;
 }

 .plan-name {
     font-size: 14px;
     font-weight: 600;
     color: var(--gray);
     margin-bottom: 8px;
 }

 .plan-popular .plan-name {
     color: rgba(255, 255, 255);
 }

 .plan-price {
     font-size: 35px;
     font-weight: 800;
     color: var(--navy);
     letter-spacing: -1px;
 }

 .plan-popular .plan-price {
     color: white;
 }

 .plan-unit {
     font-size: 15px;
     font-weight: 500;
     color: var(--gray);
 }

 .plan-popular .plan-unit {
     color: rgba(255, 255, 255, 0.7);
 }

 .plan-divider {
     height: 1px;
     background: rgba(0, 0, 0, 0.08);
     margin: 24px 0;
 }

 .plan-popular .plan-divider {
     background: rgba(255, 255, 255, 0.15);
 }

 .plan-features {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .plan-features li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 14px;
     color: var(--text);
 }

 .plan-popular .plan-features li {
     color: rgba(255, 255, 255);
 }

 .check {
     color: var(--green);
     font-weight: 700;
     font-size: 16px;
     line-height: 1.4;
 }

 .plan-popular .check {
     color: #6ee7b7;
 }

 .plan-cta {
     display: block;
     text-align: center;
     margin-top: 32px;
     padding: 13px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 15px;
     text-decoration: none;
     transition: all .2s;
 }

 .plan-cta-outline {
     border: 1.5px solid var(--blue);
     color: var(--blue);
 }

 .plan-cta-outline:hover {
     background: var(--blue-light);
 }

 .plan-cta-white {
     background: white;
     color: var(--blue);
 }

 .plan-cta-white:hover {
     background: #f0f9ff;
     transform: translateY(-1px);
 }

 /* ========== TESTIMONIALS ========== */
 .testimonials-bg {
     background: var(--bg);
 }

 .testimonials-grid {
     margin-top: 56px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .testimonial {
     background: white;
     border-radius: 16px;
     padding: 32px;
     border: 1px solid rgba(0, 0, 0, 0.06);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .stars {
     color: #f59e0b;
     margin-bottom: 16px;
     font-size: 18px;
 }

 .testimonial-text {
     font-size: 15px;
     color: var(--text);
     line-height: 1.7;
     margin-bottom: 24px;
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .author-avatar {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 16px;
     color: white;
 }

 .author-name {
     font-weight: 700;
     font-size: 14px;
     color: var(--navy);
 }

 .author-role {
     font-size: 12px;
     color: var(--gray);
 }

 /* ========== CTA SECTION ========== */
 .cta-section {
     background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
     padding: 90px 80px;
     text-align: center;
 }

 .cta-section h2 {
     font-size: 44px;
     font-weight: 800;
     color: white;
     margin-bottom: 16px;
     letter-spacing: -1px;
 }

 .cta-section p {
     font-size: 18px;
     color: rgba(255, 255, 255, 0.75);
     margin-bottom: 40px;
 }

 .cta-actions {
     display: flex;
     gap: 16px;
     justify-content: center;
     flex-wrap: wrap;
 }

 /* ========== FOOTER ========== */
 footer {
     background: var(--black);
     padding: 60px 80px 32px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 48px;
     margin-bottom: 48px;
 }

 .footer-logo {
     font-size: 20px;
     font-weight: 800;
     color: white;
     margin-bottom: 14px;
 }

 .footer-desc {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.7;
 }

 .footer-col h5 {
     font-size: 13px;
     font-weight: 700;
     color: rgba(255, 255, 255, 0.5);
     text-transform: uppercase;
     letter-spacing: 0.8px;
     margin-bottom: 16px;
 }

 .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer-col a {
     text-decoration: none;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.65);
     transition: color .2s;
 }

 .footer-col a:hover {
     color: white;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 28px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-copy {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.4);
 }

 /* ========== ANIMATIONS ========== */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-content>* {
     animation: fadeUp 0.7s ease both;
 }

 .hero-badge {
     animation-delay: 0.1s;
 }

 .hero h1 {
     animation-delay: 0.2s;
 }

 .hero p {
     animation-delay: 0.3s;
 }

 .hero-actions {
     animation-delay: 0.4s;
 }

 .hero-stats {
     animation-delay: 0.5s;
 }

 @media (max-width: 1280px) {
     section {
         padding: 70px 40px;
     }
 
     .hero {
         padding: 70px 40px;
     }
 
     .features-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 
     .modules-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 
     /* --- Collapse desktop nav on tablet/mobile widths --- */
     .nav-links {
         display: none !important;
     }
 
     .nav-cta-desktop {
         display: none !important;
     }
 
     .nav-hamburger {
         display: flex !important;
     }
 }

 /* Hamburger — hidden on desktop, shown on ≤1100px */
 .nav-hamburger {
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 5px;
     width: 44px;
     height: 44px;
     background: none;
     border: 1.5px solid rgba(0, 0, 0, .12);
     border-radius: 10px;
     cursor: pointer;
     padding: 0;
     transition: background .18s;
     z-index: 1001;
     flex-shrink: 0;
 }

 .nav-hamburger:hover {
     background: var(--gray-light);
 }

 .nav-hamburger span {
     display: block;
     width: 22px;
     height: 2px;
     background: var(--navy);
     border-radius: 2px;
     transition: transform .25s, opacity .25s;
 }

 .nav-hamburger.is-open span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
 }

 .nav-hamburger.is-open span:nth-child(2) {
     opacity: 0;
 }

 .nav-hamburger.is-open span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
 }

 /* --- Overlay --- */
 .mobile-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .45);
     z-index: 1100;
     opacity: 0;
     visibility: hidden;
     transition: opacity .3s, visibility .3s;
 }

 .mobile-overlay.is-open {
     opacity: 1;
     visibility: visible;
 }

 /* --- Drawer --- */
 .mobile-drawer {
     position: fixed;
     top: 0;
     right: 0;
     bottom: 0;
     width: min(380px, 92vw);
     height: 100vh;
     height: 100dvh;
     max-height: 100vh;
     max-height: 100dvh;
     background: #fff;
     z-index: 1200;
     box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
     transform: translateX(100%);
     transition: transform .32s cubic-bezier(.4, 0, .2, 1);
     display: flex;
     flex-direction: column;
     overflow: hidden;
     -webkit-overflow-scrolling: touch;
 }

 .mobile-drawer.is-open {
     transform: translateX(0);
 }

 .mobile-drawer-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 20px;
     border-bottom: 1px solid rgba(0, 0, 0, .07);
     flex-shrink: 0;
 }

 .mobile-drawer-logo {
     font-size: 17px;
     font-weight: 800;
     color: var(--navy);
     letter-spacing: -0.5px;
 }

 .mobile-drawer-close {
     width: 34px;
     height: 34px;
     border-radius: 8px;
     border: 1.5px solid rgba(0, 0, 0, .1);
     background: none;
     font-size: 15px;
     cursor: pointer;
     color: var(--gray);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background .18s;
 }

 .mobile-drawer-close:hover {
     background: var(--gray-light);
 }

 /* --- Mobile nav links --- */
 .mobile-nav {
     position: static;
     inset: auto;
     z-index: auto;
     flex: 1 1 auto;
     min-height: 0;
     height: auto;
     width: 100%;
     overflow-y: auto;
     overflow-x: hidden;
     padding: 12px 16px calc(28px + env(safe-area-inset-bottom));
     display: flex;
     flex-direction: column;
     align-items: stretch;
     justify-content: flex-start;
     gap: 2px;
     background: transparent;
     backdrop-filter: none;
     border-bottom: 0;
     -webkit-overflow-scrolling: touch;
     overscroll-behavior: contain;
 }
 
 .mobile-nav > * {
     flex-shrink: 0;
 }

 .mobile-nav-link {
     display: block;
     padding: 13px 14px;
     font-size: 15px;
     font-weight: 600;
     color: var(--navy);
     text-decoration: none;
     border-radius: 10px;
     transition: background .18s;
 }

 .mobile-nav-link:hover {
     background: var(--gray-light);
     color: var(--blue);
 }

 /* --- Accordion --- */
 .mobile-accordion {
     border-radius: 10px;
     overflow: visible;
     flex: 0 0 auto;
 }

 .mobile-accordion-toggle {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 13px 14px;
     font-size: 15px;
     font-weight: 600;
     color: var(--navy);
     background: none;
     border: none;
     cursor: pointer;
     border-radius: 10px;
     transition: background .18s;
 }

 .mobile-accordion-toggle:hover {
     background: var(--gray-light);
 }

 .mobile-accordion-toggle svg {
     transition: transform .25s;
     flex-shrink: 0;
 }

 .mobile-accordion.is-open .mobile-accordion-toggle svg {
     transform: rotate(180deg);
 }

 .mobile-accordion-body {
     display: none;
     padding: 4px 6px 10px 6px;
     background: #f8f9fb;
     border-radius: 0 0 10px 10px;
     overflow: visible;
     max-height: none;
 }

 .mobile-accordion.is-open .mobile-accordion-body {
     display: block;
 }

 .mobile-group-label {
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .07em;
     color: #9ca3af;
     padding: 10px 10px 6px;
 }
 
 .mobile-group-label i {
     width: 14px;
     margin-right: 6px;
     color: var(--blue);
     text-align: center;
 }

 .mobile-sub-link {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 9px 12px;
     font-size: 14px;
     font-weight: 500;
     color: var(--navy);
     text-decoration: none;
     border-radius: 8px;
     transition: background .15s;
 }
 
 .mobile-sub-link i {
     width: 16px;
     color: var(--blue);
     text-align: center;
     flex: 0 0 16px;
 }

 .mobile-sub-link:hover {
     background: rgba(255, 81, 0, .07);
     color: var(--blue);
 }

 .mobile-drawer-cta {
     display: block;
     text-align: center;
     margin-top: 16px;
     padding: 13px;
     border-radius: 10px;
     font-size: 15px;
 }

 /* ===== iPad (768px – 1100px) ===== */
 @media (max-width: 1280px) and (min-width: 769px) {
     body > nav {
         padding: 0 24px;
     }
 
     .mobile-drawer {
         width: min(420px, 85vw);
     }
 }

 /* ===== Mobile ≤ 768px ===== */
 @media (max-width: 768px) {
     body > nav {
         padding: 0 16px;
         height: 60px;
     }

     section {
         padding: 60px 20px;
     }

     .hero {
         padding: 60px 20px;
     }

     .hero h1 {
         font-size: 36px;
     }

     .features-grid,
     .pricing-grid,
     .testimonials-grid,
     .modules-grid {
         grid-template-columns: 1fr;
     }

     .how-grid {
         grid-template-columns: 1fr;
     }

     .trust-bar {
         padding: 24px 20px;
     }

     footer {
         padding: 48px 20px 28px;
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }

     .cta-section {
         padding: 70px 20px;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 12px;
         text-align: center;
     }

     /* Drawer full/near-full width on small phones */
     .mobile-drawer {
         width: 100vw;
     }

     /* Larger tap targets in drawer on mobile */
     .mobile-nav-link,
     .mobile-accordion-toggle {
         padding: 15px 14px;
         font-size: 16px;
     }

     .mobile-sub-link {
         padding: 11px 14px;
         font-size: 15px;
     }
 }

 /* ===== Very small mobile ≤ 480px ===== */
 @media (max-width: 480px) {
     body > nav {
         padding: 0 14px;
     }

     .logo {
         font-size: 20px;
     }
 }

 .how-feature-list {
     display: grid;
     gap: 10px;
     margin-top: 8px;
 }

 .how-feature-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     background: var(--bg);
     border-radius: 10px;
     padding: 12px 14px;
     border-left: 3px solid var(--blue);
 }

 .how-feature-icon {
     width: 28px;
     height: 28px;
     min-width: 28px;
     border-radius: 8px;
     background: #e8f0fe;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
 }
 
 .how-feature-icon i {
     color: var(--blue);
     line-height: 1;
 }

 .how-feature-text strong {
     display: block;
     font-size: 13px;
     color: var(--navy);
     margin-bottom: 3px;
 }

 .how-feature-text span {
     font-size: 13px;
     color: var(--gray);
     line-height: 1.55;
 }
