    :root {
      --blue: #0c459d;
      --blue-dark: #083380;
      --blue-light: #1a5bc4;
      --blue-pale: #e8f0fb;
      --blue-mid: #4a7fd4;
      --accent: #f0a500;
      --accent-light: #f5bc40;
      --dark: #0a0f1e;
      --darker: #060a14;
      --text: #2d3748;
      --text-light: #64748b;
      --white: #ffffff;
      --off-white: #f7f9fc;
      --border: #e2e8f0;
      --card-bg: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      width: 100%;
    }
    html {
      overflow-x: hidden;
      width: 100%;
    }

    /* ─── PRELOADER ─── */
    #preloader {
      position: fixed; inset: 0; background: var(--dark);
      z-index: 9999; display: flex; align-items: center; justify-content: center;
      transition: opacity .8s ease, visibility .8s ease;
    }
    #preloader.fade-out { opacity: 0; visibility: hidden; }
    .preloader-inner { text-align: center; }
    .preloader-logo {
      font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800;
      color: white; letter-spacing: -1px; margin-bottom: 16px;
    }
    .preloader-logo span { color: var(--accent); }
    .preloader-bar {
      width: 200px; height: 2px; background: rgba(255,255,255,.1);
      margin: 0 auto; border-radius: 2px; overflow: hidden;
    }
    .preloader-bar::after {
      content: ''; display: block; height: 100%;
      background: var(--accent); animation: preload 1.5s ease forwards;
    }
    @keyframes preload { from { width: 0 } to { width: 100% } }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border); transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 30px rgba(12,69,157,.1); }
    .nav-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 32px; height: 72px;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo img { height: 44px; display: block; }
    .logo-text { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--blue); letter-spacing: -0.5px; }
    .logo-text span { color: var(--accent); }

    .nav-links { display: flex; list-style: none; gap: 2px; }
    .nav-links a {
      display: block; padding: 8px 14px; font-size: 12px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase; color: var(--dark);
      text-decoration: none; transition: color .2s; position: relative;
    }
    .nav-links a:hover { color: var(--blue); }

    .nav-dropdown { position: relative; }
    .nav-dropdown .dropdown {
      display: none; position: absolute; top: 100%; left: 0; background: white;
      border: 1px solid var(--border); border-top: 3px solid var(--blue);
      min-width: 230px; box-shadow: 0 20px 60px rgba(12,69,157,.12); padding: 8px 0;
      border-radius: 0 0 8px 8px;
    }
    .nav-dropdown:hover .dropdown { display: block; animation: fadeDown .2s ease; }
    .dropdown a {
      padding: 11px 20px; font-size: 12px; display: flex !important;
      justify-content: space-between !important; align-items: center !important;
      width: 100% !important; letter-spacing: .6px; border-bottom: 1px solid #f0f4fa;
      color: var(--dark); text-decoration: none; transition: background .2s, color .2s;
    }
    .dropdown a:last-child { border-bottom: none; }
    .dropdown a:hover { background: var(--blue-pale); color: var(--blue); padding-left: 26px; }
    .dropdown .prod-tag {
      font-size: 10px; padding: 2px 8px; background: var(--blue-pale);
      color: var(--blue); border-radius: 20px; font-weight: 700;
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .nav-cta {
      background: var(--blue); color: white !important;
      padding: 9px 22px !important; border-radius: 6px;
      font-weight: 700 !important; transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--blue-dark) !important; color: white !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 6px; cursor: pointer;
      z-index: 1001; padding: 10px; margin-right: -10px;
    }
    .hamburger span {
      width: 24px; height: 2px; background: var(--dark); display: block;
      transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ─── HERO SLIDER ─── */
    .hero {
      margin-top: 72px; position: relative;
      height: calc(100vh - 72px); min-height: 560px; overflow: hidden;
    }
    .slides { height: 100%; position: relative; }
    .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: flex-end; }
    .slide.active { opacity: 1; }
    .slide-bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      transform: scale(1.04); transition: transform 6s ease;
    }
    .slide.active .slide-bg { transform: scale(1); }
    .slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(6,10,20,.9) 0%, rgba(12,69,157,.6) 50%, rgba(0,0,0,.3) 100%);
    }
    .slide-content {
      position: relative; z-index: 2; padding: 60px 80px; color: white;
      transform: translateY(20px); opacity: 0; transition: all .8s .4s ease;
      max-width: 700px;
    }
    .slide.active .slide-content { transform: translateY(0); opacity: 1; }
    .slide-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent); color: white; font-size: 10px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px;
      margin-bottom: 18px; border-radius: 4px;
    }
    .slide-title {
      font-family: 'Sora', sans-serif; font-size: clamp(34px, 5vw, 62px);
      font-weight: 800; line-height: 1.1; margin-bottom: 14px; letter-spacing: -1px;
    }
    .slide-sub { font-size: 15px; letter-spacing: .5px; opacity: .8; font-weight: 400; line-height: 1.6; margin-bottom: 28px; max-width: 500px; }
    .slide-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--accent); color: white; text-decoration: none;
      font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 14px 30px; border-radius: 6px; transition: .25s;
    }
    .slide-btn:hover { background: var(--accent-light); transform: translateY(-2px); }
    .slider-dots {
      position: absolute; bottom: 36px; right: 80px; z-index: 10;
      display: flex; gap: 10px; align-items: center;
    }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.35); cursor: pointer; transition: .3s;
    }
    .dot.active { background: var(--accent); width: 28px; border-radius: 4px; }
    .slider-arrow {
      position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
      width: 52px; height: 52px; border: 2px solid rgba(255,255,255,.3);
      background: rgba(255,255,255,.08); backdrop-filter: blur(4px); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 20px; transition: .2s; border-radius: 4px;
    }
    .slider-arrow:hover { background: var(--blue); border-color: var(--blue); }
    .slider-arrow.prev { left: 40px; }
    .slider-arrow.next { right: 40px; }

    /* ─── SECTION COMMONS ─── */
    .section { padding: 90px 0; }
    .section-alt { background: var(--off-white); }
    .section-dark { background: var(--darker); color: white; }
    .section-blue { background: var(--blue); color: white; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
    .section-label {
      font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
      color: var(--blue); display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
    }
    .section-label::after { content: ''; flex: 1; max-width: 50px; height: 2px; background: var(--blue); }
    .section-dark .section-label, .section-blue .section-label { color: var(--accent); }
    .section-dark .section-label::after, .section-blue .section-label::after { background: var(--accent); }
    .section-title {
      font-family: 'Sora', sans-serif; font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 48px; letter-spacing: -0.5px;
    }
    .section-dark .section-title, .section-blue .section-title { color: white; }
    .section-title span { color: var(--blue); }
    .section-dark .section-title span { color: var(--accent); }
    .section-blue .section-title span { color: var(--accent); }

    /* ─── STATS BAR ─── */
    .stats-bar { background: var(--blue); padding: 44px 0; border-top: 4px solid var(--accent); }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
    .stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,.15); color: white; }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: var(--accent); line-height: 1; }
    .stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; opacity: .7; }

    /* ─── PRODUCTS GRID ─── */
    .products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .product-card {
      position: relative; overflow: hidden; border-radius: 12px;
      background: white; border: 1px solid var(--border);
      transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
      padding: 40px; display: flex; flex-direction: column; gap: 16px;
    }
    .product-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--blue); transform: scaleX(0); transition: transform .4s; transform-origin: left;
    }
    .product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(12,69,157,.12); border-color: transparent; }
    .product-card:hover::before { transform: scaleX(1); }
    .product-icon {
      width: 64px; height: 64px; background: var(--blue-pale); border-radius: 14px;
      display: flex; align-items: center; justify-content: center; font-size: 28px;
      transition: .4s; flex-shrink: 0;
    }
    .product-card:hover .product-icon { background: var(--blue); transform: scale(1.1); }
    .product-name { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); }
    .product-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--blue); text-transform: uppercase; }
    .product-desc { font-size: 14px; line-height: 1.7; color: var(--text-light); }
    .product-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .product-features li {
      font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 10px;
    }
    .product-features li::before {
      content: '✓'; width: 20px; height: 20px; background: var(--blue-pale);
      color: var(--blue); border-radius: 50%; display: flex; align-items: center;
      justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0;
    }
    .product-link {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none;
      margin-top: auto; padding-top: 8px; transition: gap .2s;
    }
    .product-link:hover { gap: 14px; }

    /* ─── WHY US GRID ─── */
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .why-card {
      background: white; padding: 40px 32px; border-radius: 12px;
      border: 1px solid var(--border); text-align: center;
      transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative; overflow: hidden;
    }
    .why-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--blue); transform: scaleX(0); transition: transform .4s; transform-origin: left;
    }
    .why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(12,69,157,.1); border-color: transparent; }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 72px; height: 72px; margin: 0 auto 20px;
      background: var(--blue-pale); border-radius: 50%; display: flex;
      align-items: center; justify-content: center; font-size: 28px; transition: .4s;
    }
    .why-card:hover .why-icon { background: var(--blue); transform: rotateY(360deg); }
    .why-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
    .why-desc { font-size: 13px; line-height: 1.7; color: var(--text-light); }

    /* ─── SERVICES LIST ─── */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card {
      padding: 32px; border-radius: 10px; border: 1px solid var(--border);
      background: white; transition: .3s; position: relative; overflow: hidden;
    }
    .service-card:hover { box-shadow: 0 12px 40px rgba(12,69,157,.1); border-color: var(--blue-pale); }
    .service-num {
      font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800;
      color: var(--blue-pale); line-height: 1; margin-bottom: 12px;
    }
    .service-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .service-desc { font-size: 13px; line-height: 1.7; color: var(--text-light); }

    /* ─── PROCESS ─── */
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before {
      content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
      background: linear-gradient(to right, var(--blue), var(--blue-mid)); z-index: 0;
    }
    .process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
    .step-num {
      width: 72px; height: 72px; background: var(--blue); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
      font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800;
      color: white; border: 4px solid white; box-shadow: 0 0 0 3px var(--blue);
    }
    .step-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .step-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

    /* ─── TESTIMONIALS ─── */
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    }
    .testimonial-card {
      background: white;
      border: 1px solid var(--border); padding: 36px; position: relative;
      border-top: 4px solid transparent; transition: .3s; border-radius: 10px;
    }
    .testimonial-card:hover { border-top-color: var(--blue); box-shadow: 0 12px 48px rgba(12,69,157,.08); }
    .testimonial-quote { font-size: 56px; line-height: .8; color: var(--blue); opacity: .15; font-family: 'Sora', sans-serif; margin-bottom: 16px; }
    .testimonial-text { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 24px; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar {
      width: 48px; height: 48px; border-radius: 50%; background: var(--blue);
      display: flex; align-items: center; justify-content: center; color: white;
      font-weight: 800; font-size: 18px; font-family: 'Sora', sans-serif; flex-shrink: 0;
    }
    .testimonial-name { font-weight: 700; font-size: 15px; color: var(--dark); }
    .testimonial-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }
    .star-row { color: var(--accent); font-size: 13px; margin-top: 3px; letter-spacing: 2px; }

    /* ─── CTA ─── */
    .cta-section {
      background: var(--dark); padding: 90px 0; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(12,69,157,.25) 0%, transparent 70%);
    }
    .cta-section::after {
      content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: rgba(240,165,0,.04); top: -200px; right: -200px;
    }
    .cta-section .section-label { justify-content: center; color: var(--accent); }
    .cta-section .section-label::after { display: none; }
    .cta-title {
      font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 50px);
      font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -1px;
    }
    .cta-sub { color: rgba(255,255,255,.55); font-size: 15px; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .btn {
      display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px;
      font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
      text-decoration: none; transition: .25s; cursor: pointer; border: none;
      font-family: 'Plus Jakarta Sans', sans-serif; border-radius: 6px;
    }
    .btn-blue { background: var(--blue); color: white; }
    .btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,69,157,.3); }
    .btn-accent { background: var(--accent); color: white; }
    .btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
    .btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.3); }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    /* ─── FOOTER ─── */
    footer { background: var(--darker); padding-top: 80px; border-top: 4px solid var(--blue); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
    .footer-brand { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: white; margin-bottom: 16px; }
    .footer-brand span { color: var(--accent); }
    .footer-tagline { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.8; margin-bottom: 28px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-link {
      width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.45); text-decoration: none; font-size: 15px;
      transition: .2s; border-radius: 6px;
    }
    .social-link:hover { background: var(--blue); border-color: var(--blue); color: white; }
    .footer-heading {
      font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--accent); margin-bottom: 20px; padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: .2s;
      display: flex; align-items: center; gap: 8px;
    }
    .footer-links a::before { content: '›'; color: var(--blue); font-size: 16px; }
    .footer-links a:hover { color: white; padding-left: 4px; }
    .footer-contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
    .contact-icon { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
    .contact-text { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; }
    .contact-text a { color: rgba(255,255,255,.55); text-decoration: none; }
    .contact-text a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07); padding: 24px 0;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: .2s; }
    .footer-bottom a:hover { color: var(--accent); }

    /* ─── MOBILE NAV ─── */
    .mobile-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000;
      opacity: 0; visibility: hidden; transition: all .4s ease; backdrop-filter: blur(4px);
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; }
    .mobile-menu {
      position: fixed; top: 0; right: -320px; width: 320px; height: 100vh;
      background: white; z-index: 1001; padding: 40px;
      transition: transform .4s cubic-bezier(0.77,0,.175,1);
      box-shadow: -10px 0 30px rgba(0,0,0,.05);
      display: flex; flex-direction: column;
    }
    .mobile-menu-logo {
      display: flex; align-items: center; gap: 12px; text-decoration: none;
      margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #f0f4fa;
    }
    .mobile-menu-logo img { height: 40px; }
    .mobile-menu-logo .logo-text { font-size: 18px; }
    .mobile-menu.open { transform: translateX(-320px); }
    .mobile-menu a, .mobile-nav-toggle {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 0; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--dark); text-decoration: none;
      border-bottom: 1px solid #f0f4fa; opacity: 0; transform: translateX(20px);
      transition: all .4s ease; cursor: pointer;
    }
    .mobile-menu.open a, .mobile-menu.open .mobile-nav-toggle { opacity: 1; transform: translateX(0); }
    .mobile-menu-close {
      position: absolute; top: 24px; right: 24px; font-size: 22px; color: var(--dark);
      cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center;
      justify-content: center; background: var(--off-white); border-radius: 50%; z-index: 10;
    }
    .mobile-nav-toggle .toggle-icon { font-size: 14px; transition: transform .3s; }
    .mobile-nav-toggle.active .toggle-icon { transform: rotate(180deg); }
    .mobile-sub-menu {
      max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(0,1,0,1);
      background: #fafcff; margin: 0 -40px; padding: 0 40px;
    }
    .mobile-sub-menu.active { max-height: 1000px; transition: max-height .4s cubic-bezier(1,0,1,0); }
    .mobile-sub-menu a { padding: 12px 0 12px 20px; font-size: 12px; font-weight: 600; border-bottom: 1px solid #eef2f8; }
    .mobile-menu a:nth-child(1) { transition-delay: .1s; }
    .mobile-menu a:nth-child(2) { transition-delay: .15s; }
    .mobile-menu a:nth-child(3) { transition-delay: .2s; }
    .mobile-menu a:nth-child(4) { transition-delay: .25s; }
    .mobile-menu a:nth-child(5) { transition-delay: .3s; }
    .mobile-menu a:hover { color: var(--blue); padding-left: 6px; }

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

    /* ─── POPUP ─── */
    .popup-overlay {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7);
      z-index: 9999; align-items: center; justify-content: center;
    }
    .popup-overlay.open { display: flex; }
    .popup {
      background: white; width: 100%; max-width: 540px; margin: 20px;
      border-radius: 14px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.3);
      animation: popIn .3s ease;
    }
    @keyframes popIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .popup-header {
      background: var(--blue); padding: 28px 32px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .popup-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: white; }
    .popup-close { color: rgba(255,255,255,.7); font-size: 22px; cursor: pointer; transition: .2s; }
    .popup-close:hover { color: white; transform: scale(1.2); }
    .popup-body { padding: 28px 32px; }
    .popup-sub { font-size: 13px; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full-width { grid-column: 1/-1; }
    .form-group label { font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--dark); }
    .form-group input, .form-group select, .form-group textarea {
      border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px;
      font-size: 13px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text);
      transition: border-color .2s; outline: none; background: white;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
    .popup-footer { padding: 0 32px 28px; }
    .btn-submit {
      width: 100%; background: var(--blue); color: white; border: none;
      padding: 16px; border-radius: 8px; font-size: 13px; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif; transition: .25s;
    }
    .btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

    /* ─── FLOAT BTN ─── */
    .float-btn {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      width: 54px; height: 54px; background: var(--accent);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: white; font-size: 22px; text-decoration: none; box-shadow: 0 8px 24px rgba(240,165,0,.4);
      transition: .3s; animation: pulse 2.5s infinite;
    }
    .float-btn:hover { background: var(--accent-light); transform: scale(1.1); }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 8px 24px rgba(240,165,0,.4); }
      50% { box-shadow: 0 8px 40px rgba(240,165,0,.6); }
    }

    /* ─── ABOUT SPLIT ─── */
    .about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-visual {
      position: relative; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .about-pattern {
      position: absolute; inset: 0; opacity: .08;
      background-image: repeating-linear-gradient(0deg, white 0px, white 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, white 0px, white 1px, transparent 1px, transparent 40px);
    }
    .about-stats-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 100%; height: 100%; }
    .about-stat-box {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 32px; background: rgba(255,255,255,.07); transition: .3s;
    }
    .about-stat-box:hover { background: rgba(255,255,255,.15); }
    .about-stat-num { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--accent); }
    .about-stat-label { font-size: 12px; color: rgba(255,255,255,.7); text-align: center; margin-top: 6px; line-height: 1.4; }
    .about-text .section-label { margin-bottom: 12px; }
    .about-title { font-family: 'Sora', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
    .about-title span { color: var(--blue); }
    .about-desc { font-size: 15px; line-height: 1.8; color: var(--text-light); margin-bottom: 32px; }
    .about-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .about-checks li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--dark); }
    .about-checks li::before {
      content: '✓'; width: 24px; height: 24px; background: var(--blue); color: white;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800; flex-shrink: 0;
    }

    /* ─── DEMO STRIP ─── */
    .demo-strip {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      padding: 60px 0; position: relative; overflow: hidden;
    }
    .demo-strip::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 30px);
    }
    .demo-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px; flex-wrap: wrap; position: relative; z-index: 1;
    }
    .demo-text h3 { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
    .demo-text p { color: rgba(255,255,255,.7); font-size: 14px; }
    .demo-links { display: flex; gap: 14px; flex-wrap: wrap; }
    .demo-btn {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
      color: white; text-decoration: none; font-size: 12px; font-weight: 700;
      letter-spacing: 1px; border-radius: 6px; transition: .25s;
    }
    .demo-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
    .demo-btn.primary { background: var(--accent); border-color: var(--accent); }
    .demo-btn.primary:hover { background: var(--accent-light); }

    /* ─── RESPONSIVE ─── */

    /* ─── TRUST BADGES ─── */
    .trust-section { padding: 48px 0; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 56px; }
    .trust-item { display: flex; align-items: center; gap: 14px; opacity: .85; transition: opacity .25s; }
    .trust-item:hover { opacity: 1; }
    .trust-icon {
      width: 48px; height: 48px; border-radius: 10px; background: white; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; font-size: 22px;
      box-shadow: 0 4px 14px rgba(12,69,157,.06);
    }
    .trust-text strong { display: block; font-family: 'Sora', sans-serif; font-size: 14px; color: var(--dark); }
    .trust-text span { font-size: 12px; color: var(--text-light); }

    /* ─── HERO CTA ROW ─── */
    .hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; align-items: center; }
    .slide-btn.secondary {
      background: transparent; border: 2px solid rgba(255,255,255,.45); color: white;
    }
    .slide-btn.secondary:hover { background: rgba(255,255,255,.12); border-color: white; }

    /* ─── SINGLE HERO (HOME) ─── */
    .hero.hero-single { height: auto; min-height: unset; padding: 110px 0 72px; }
    .hero-single-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1600&q=80');
      background-size: cover; background-position: center;
      transform: scale(1.02);
    }
    .hero-single-overlay {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 20% 20%, rgba(240,165,0,.20) 0%, transparent 55%),
        linear-gradient(135deg, rgba(6,10,20,.92) 0%, rgba(12,69,157,.65) 55%, rgba(0,0,0,.35) 100%);
    }
    .hero-single-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.9);
      font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
      padding: 8px 14px; border-radius: 999px; margin-bottom: 16px;
      backdrop-filter: blur(8px);
    }
    .hero-single-title { font-family: 'Sora', sans-serif; font-size: clamp(38px, 5.2vw, 64px); font-weight: 800; line-height: 1.06; letter-spacing: -1px; color: #fff; margin-bottom: 14px; }
    .hero-single-sub { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.72); max-width: 560px; }
    .hero-single-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
    .hero-single-cta .btn-outline { border-color: rgba(255,255,255,.38); color: #fff; }
    .hero-single-cta .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    .proof-card {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      padding: 26px;
      backdrop-filter: blur(10px);
      box-shadow: 0 30px 80px rgba(0,0,0,.25);
    }
    .proof-title { font-family: 'Sora', sans-serif; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin-bottom: 12px; font-size: 18px; }
    .proof-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
    .proof-list li { color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; }
    .proof-list li::before {
      content: '✓'; width: 20px; height: 20px; border-radius: 999px;
      background: rgba(240,165,0,.18); color: #fff; font-weight: 900; font-size: 11px;
      display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
      border: 1px solid rgba(240,165,0,.25);
    }
    .proof-links { display: flex; gap: 14px; flex-wrap: wrap; }
    .proof-link { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; text-decoration: none; letter-spacing: .3px; }
    .proof-link:hover { color: var(--accent); }

    /* ─── INNER PAGE HERO ─── */
    .page-hero {
      margin-top: 72px; padding: 100px 0 72px;
      background: linear-gradient(145deg, var(--darker) 0%, #0f1a32 45%, var(--blue-dark) 100%);
      color: white; position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 50% at 70% 0%, rgba(12,69,157,.35) 0%, transparent 55%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .breadcrumb { font-size: 12px; font-weight: 600; letter-spacing: .5px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
    .breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: var(--accent); }
    .page-hero h1 {
      font-family: 'Sora', sans-serif; font-size: clamp(30px, 4vw, 48px); font-weight: 800;
      line-height: 1.12; letter-spacing: -1px; margin-bottom: 16px; max-width: 720px;
    }
    .page-hero h1 span { color: var(--accent); }
    .page-hero-lead { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 560px; margin-bottom: 28px; }
    .page-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

    /* ─── STORY (PROBLEM / SOLUTION) ─── */
    .story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .story-block.reverse { direction: rtl; }
    .story-block.reverse > * { direction: ltr; }
    .story-label { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
    .story-label.warn { color: #c2410c; }
    .story-label.ok { color: #15803d; }
    .story-title { font-family: 'Sora', sans-serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
    .story-body { font-size: 15px; line-height: 1.8; color: var(--text-light); }
    .story-visual {
      border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
      background: var(--off-white); aspect-ratio: 4/3;
      box-shadow: 0 24px 60px rgba(12,69,157,.1);
    }
    .story-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ─── FEATURE ICON GRID ─── */
    .features-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .feature-icon-card {
      padding: 28px 24px; border-radius: 12px; border: 1px solid var(--border); background: white;
      transition: all .35s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .feature-icon-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(12,69,157,.1); border-color: transparent; }
    .feature-icon-card .fi { font-size: 32px; margin-bottom: 14px; display: block; }
    .feature-icon-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .feature-icon-card p { font-size: 13px; line-height: 1.65; color: var(--text-light); }

    /* ─── MOCK / SCREENSHOT ─── */
    .screens-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
    .mock-frame {
      border-radius: 14px; border: 1px solid var(--border); overflow: hidden;
      background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
      box-shadow: 0 20px 50px rgba(15,23,42,.08);
    }
    .mock-chrome {
      height: 36px; background: #e2e8f0; display: flex; align-items: center; gap: 6px; padding: 0 12px;
      border-bottom: 1px solid var(--border);
    }
    .mock-dot { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
    .mock-body { padding: 24px; min-height: 220px; background: white; }
    .mock-body.placeholder {
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 600; color: var(--text-light); text-align: center; padding: 48px 24px;
    }

    /* ─── BENEFIT PILLARS ─── */
    .benefit-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .benefit-card {
      padding: 32px; border-radius: 12px; background: var(--blue); color: white;
      position: relative; overflow: hidden;
    }
    .benefit-card:nth-child(2) { background: var(--dark); }
    .benefit-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
    .benefit-card p { font-size: 14px; line-height: 1.7; opacity: .85; }

    /* ─── PRICING ─── */
    .pricing-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
    .price-card {
      padding: 36px 28px; border-radius: 14px; border: 1px solid var(--border); background: white;
      text-align: center; transition: .35s; position: relative;
    }
    .price-card.featured { border-color: var(--blue); box-shadow: 0 20px 50px rgba(12,69,157,.12); transform: scale(1.02); }
    .price-card.featured::before {
      content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--accent); color: white; font-size: 10px; font-weight: 800; letter-spacing: 1px;
      padding: 4px 14px; border-radius: 20px; text-transform: uppercase;
    }
    .price-name { font-weight: 700; font-size: 14px; color: var(--text-light); margin-bottom: 8px; }
    .price-amt { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--dark); }
    .price-amt small { font-size: 14px; font-weight: 600; color: var(--text-light); }
    .price-note { font-size: 12px; color: var(--text-light); margin: 16px 0 20px; line-height: 1.5; }
    .price-card ul { list-style: none; text-align: left; font-size: 13px; color: var(--text-light); line-height: 1.9; }

    /* ─── PORTFOLIO / CASE ─── */
    .case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .case-card {
      border-radius: 14px; border: 1px solid var(--border); overflow: hidden; background: white;
      transition: .35s;
    }
    .case-card:hover { box-shadow: 0 20px 50px rgba(12,69,157,.1); transform: translateY(-4px); }
    .case-img { height: 200px; background-size: cover; background-position: center; }
    .case-img.product-mock {
      display: flex; align-items: center; justify-content: center;
      border-bottom: 1px solid var(--border);
      background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(135deg, #0b1020 0%, #0c459d 60%, #083380 100%);
    }
    .case-img.product-mock .mock-badge {
      font-family: 'Sora', sans-serif;
      font-size: 18px; font-weight: 900;
      color: rgba(255,255,255,.95);
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
      box-shadow: 0 18px 46px rgba(0,0,0,.25);
    }
    .case-img.product-mock.mock-drivenex { background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 55%), linear-gradient(135deg, #0b1020 0%, #0f1a32 45%, #0c459d 100%); }
    .case-img.product-mock.mock-stocknex { background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 55%), linear-gradient(135deg, #0b1020 0%, #0c459d 45%, #0a0f1e 100%); }
    .case-img.product-mock.mock-tablenex { background: radial-gradient(ellipse at 30% 30%, rgba(240,165,0,.25) 0%, rgba(255,255,255,0) 55%), linear-gradient(135deg, #0b1020 0%, #0c459d 55%, #083380 100%); }
    .case-body { padding: 28px; }
    .case-tag { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
    .case-body h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
    .case-body p { font-size: 14px; line-height: 1.7; color: var(--text-light); margin-bottom: 16px; }
    .before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
    .ba-box { padding: 16px; border-radius: 8px; font-size: 12px; line-height: 1.6; }
    .ba-before { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
    .ba-after { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
    .ba-label { font-weight: 800; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; opacity: .8; }

    /* ─── CONTACT PAGE ─── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
    .contact-card {
      padding: 36px; border-radius: 14px; background: var(--off-white); border: 1px solid var(--border);
    }
    .contact-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
    .contact-list { list-style: none; }
    .contact-list li { display: flex; gap: 14px; margin-bottom: 18px; font-size: 14px; color: var(--text-light); line-height: 1.6; }
    .contact-list a { color: var(--blue); font-weight: 600; text-decoration: none; }
    .contact-list a:hover { text-decoration: underline; }
    .contact-form-wrap { padding: 36px; border-radius: 14px; border: 1px solid var(--border); background: white; }
    .contact-form-wrap .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .contact-form-wrap .form-group { display: flex; flex-direction: column; gap: 6px; }
    .contact-form-wrap .form-group.full-width { grid-column: 1/-1; }
    .contact-form-wrap label { font-size: 12px; font-weight: 700; color: var(--dark); }
    .contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea {
      border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .contact-form-wrap input:focus, .contact-form-wrap textarea:focus, .contact-form-wrap select:focus {
      outline: none; border-color: var(--blue);
    }

    /* ─── FLOAT WHATSAPP ─── */
    .float-wa {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      width: 56px; height: 56px; background: #25d366;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: white; text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.45);
      transition: .3s; font-size: 28px;
    }
    .float-wa:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
    .float-demo {
      position: fixed; bottom: 100px; right: 32px; z-index: 998;
      padding: 12px 18px; background: var(--blue); color: white; text-decoration: none;
      font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
      border-radius: 8px; box-shadow: 0 8px 24px rgba(12,69,157,.35); transition: .25s;
    }
    .float-demo:hover { background: var(--blue-dark); transform: translateY(-2px); }

    /* ─── FLOAT ICON CTA ─── */
    .float-cta {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 58px; height: 58px; border-radius: 999px;
      background: var(--accent); color: white; text-decoration: none;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      box-shadow: 0 14px 44px rgba(240,165,0,.45);
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
      animation: floatPulse 2.6s ease-in-out infinite;
    }
    .float-cta:hover { transform: translateY(-2px) scale(1.06); background: var(--accent-light); box-shadow: 0 18px 54px rgba(240,165,0,.55); }
    @keyframes floatPulse {
      0%, 100% { box-shadow: 0 14px 44px rgba(240,165,0,.40); }
      50% { box-shadow: 0 18px 62px rgba(240,165,0,.62); }
    }

    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .about-split { grid-template-columns: 1fr; gap: 40px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .features-icon-grid { grid-template-columns: repeat(2, 1fr); }
      .screens-row, .story-block, .benefit-row, .case-grid, .contact-grid, .pricing-wrap { grid-template-columns: 1fr; }
      .price-card.featured { transform: none; }
      .story-block.reverse { direction: ltr; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .why-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .slide-content { padding: 36px 24px; }
      .slider-arrow.prev { left: 12px; }
      .slider-arrow.next { right: 12px; }
      .slider-dots { right: 24px; bottom: 20px; }
      .process-steps { grid-template-columns: 1fr; }
      .demo-inner { flex-direction: column; text-align: center; }
      .demo-links { flex-direction: column; width: 100%; }
      .demo-btn { width: 100%; justify-content: center; }
      
      /* Hero Single Fixes */
      .hero-single-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero.hero-single { padding: 100px 0 60px; }
      .hero-single-title { font-size: 36px; line-height: 1.1; }
      .hero-single-sub { font-size: 14px; opacity: 0.8; }
      .hero-single-cta { flex-direction: column; }
      .hero-single-cta .btn { width: 100%; justify-content: center; }
      
      .proof-card { padding: 20px; }
      .proof-title { font-size: 16px; }
      .proof-links { flex-direction: column; gap: 10px; }
      
      /* Trust Section */
      .trust-inner { gap: 24px 32px; }
      
      /* Services & Grid Improvements */
      .services-grid { gap: 16px; }
      .service-card { padding: 24px; }
      
      .features-icon-grid { grid-template-columns: 1fr; }
      .page-hero { padding: 88px 0 56px; }

      /* Portfolio Improvements */
      .case-img { height: 160px; }
      .case-body { padding: 20px; }
      .before-after { grid-template-columns: 1fr; }
      
      /* Contact Improvements */
      .contact-card, .contact-form-wrap { padding: 24px; }
      .contact-card .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .contact-list li { flex-direction: column; gap: 2px; }
      .contact-list li strong { color: var(--dark); font-size: 13px; }
      .form-grid, .contact-form-wrap .form-grid { grid-template-columns: 1fr; }

      /* About Stat Boxes Square */
      .about-visual { aspect-ratio: 1/1; }
      .about-stat-box { aspect-ratio: 1/1; padding: 16px; justify-content: center; }
      .about-stat-num { font-size: 32px; }
      .about-stat-label { font-size: 11px; }
      
      /* Popup Improvements */
      .popup { margin: 16px; max-height: 95vh; overflow-y: auto; }
      .popup-header { padding: 20px 24px; }
      .popup-title { font-size: 18px; }
      .popup-body { padding: 24px; }
      .popup-footer { padding: 0 24px 24px; margin-top: 12px; }
      .popup-sub { font-size: 12px; margin-bottom: 20px; }
      .popup-footer .btn-submit { margin-bottom: 16px; }
      
      /* Floating Buttons Bounds */
      .float-demo { bottom: 96px; right: 20px; font-size: 10px; padding: 10px 14px; }
      .float-wa { right: 20px; bottom: 24px; }
      .float-cta { right: 18px; bottom: 18px; width: 56px; height: 56px; }

      /* Portfolio Improvements */
      .case-img { height: 160px; }
      .case-body { padding: 20px; }
      
      /* Contact Improvements */
      .contact-card, .contact-form-wrap { padding: 24px; }
    }

    @media (max-width: 480px) {
      .section { padding: 60px 0; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .products-grid { grid-template-columns: 1fr; }
      .hero-single-title { font-size: 32px; }
      
      .section-title { font-size: 24px; }
      .section-label { font-size: 10px; }
      
      .container { padding: 0 20px; }
    }
