*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: #0f172a; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

  .header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(14px); border-bottom: 1px solid #e2e8f0; }
  .header-container { max-width: 1400px; margin: 0 auto; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; }
  .logo-img { height: 55px; transition: all 0.3s ease; }
  .nav-buttons { display: flex; align-items: center; gap: 32px; }
  .nav-button { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; color: #475569; text-decoration: none; position: relative; padding: 8px 0; transition: color 0.3s ease; }
  .nav-button::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #007cb5; transition: width 0.3s ease; }
  .nav-button:hover { color: #007cb5; }
  .nav-button:hover::after { width: 100%; }
  .nav-button.active { color: #007cb5; }
  .nav-button.active::after { width: 100%; }
  .burger-menu { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: transparent; border: none; z-index: 101; }
  .burger-menu span { width: 28px; height: 3px; background: #007cb5; border-radius: 2px; transition: all 0.3s ease; }
  .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
  .burger-menu.active span:nth-child(2) { opacity: 0; }
  .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
  .mobile-menu { position: fixed; inset: 0; z-index: 99; background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .4s cubic-bezier(.76,0,.24,1); overflow-y: auto; }
  .mobile-menu.active { transform: translateX(0); }
  .mobile-menu-content { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; flex: 1; padding: 40px; }
  .mobile-menu .nav-button { font-size: 24px; font-weight: 700; padding: 14px 32px; border-radius: 12px; width: 100%; text-align: center; }
  .mobile-menu .nav-button:hover { color: #007cb5; background: #f0f9ff; }
  @media (max-width: 768px) { .burger-menu { display: flex; } .nav-buttons { display: none; } .logo-img { height: 40px; } .header-container { padding: 12px 20px; } }

  .hero { padding: 80px 32px 0; background: #fff; text-align: center; }
  .hero-inner { max-width: 1140px; margin: 0 auto; }
  .hero-tag { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #007cb5; background: rgba(0,124,181,0.08); border: 1px solid rgba(0,124,181,0.2); padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; animation: fadeUp 0.9s 0.1s ease both; }
  .hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5.5vw, 64px); font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; color: #0f172a; max-width: 800px; margin: 0 auto 20px; animation: fadeUp 0.9s 0.25s ease both; }
  .hero-title em { font-style: italic; color: #007cb5; }
  .hero-sub { font-size: 18px; color: #475569; text-align: left; max-width: 720px; margin: 0 auto 48px; line-height: 1.75; animation: fadeUp 0.9s 0.4s ease both; }
  .hero-trust { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp 0.9s 0.55s ease both; }
  .hero-trust-item { display: flex; align-items: center; gap: 7px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500; color: #64748b; }
  .hero-trust-item svg { width: 15px; height: 15px; stroke: #007cb5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .hero-trust-sep { width: 1px; height: 14px; background: #e2e8f0; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .hero-product-preview { max-width: 720px; margin: 0 auto 40px; animation: fadeUp 0.9s 0.6s ease both; }
  .hero-product-preview-inner { display: flex; gap: 16px; align-items: stretch; }
  .hero-preview-img-wrap { flex: 1; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
  .hero-preview-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; }
  .hero-preview-caption { flex: 1; background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 14px; padding: 24px 20px; text-align: left; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
  .hero-preview-caption strong { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #0f172a; display: block; }
  .hero-preview-caption p { font-size: 13px; color: #475569; line-height: 1.65; }
  .hero-preview-scan { display: inline-flex; align-items: center; gap: 6px; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; color: #007cb5; margin-top: 4px; }
  .hero-preview-scan svg { width: 14px; height: 14px; stroke: #007cb5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  @media (max-width: 600px) { .hero-product-preview-inner { flex-direction: column; } .hero-preview-img-wrap img { height: 180px; } }

  .mini-cta { background: linear-gradient(135deg, #005f8a 0%, #007cb5 60%, #0096d6 100%); border-radius: 16px; padding: 36px 40px; max-width: 720px; margin: 0 auto 56px; text-align: center; animation: fadeUp 0.9s 0.65s ease both; }
  .mini-cta h3 { font-family: 'Outfit', sans-serif; font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
  .mini-cta p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 20px; line-height: 1.6; }
  .mini-cta-btn { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: #007cb5; background: #fff; padding: 11px 28px; border-radius: 10px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s; }
  .mini-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
  @media (max-width: 768px) { .mini-cta { padding: 28px 24px; margin: 0 0 48px; } }

  #slider-wrapper { position: relative; width: 100%; max-width: 1100px; margin: 0 auto; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 20px 40px -8px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05); }
  #slides { display: flex; transition: transform .65s cubic-bezier(.76,0,.24,1); width: 100%; }
  .slide { min-width: 100%; height: clamp(300px, 56vw, 580px); display: flex; align-items: center; justify-content: center; position: relative; font-size: 1rem; color: #0f172a; }
  .slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
  .slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 40px 28px; background: linear-gradient(to top, rgba(9,20,38,.85) 0%, transparent 100%); color: #fff; text-align: left; }
  .slide-overlay .slide-title { font-family: 'Outfit', sans-serif; font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; margin-bottom: 6px; display: block; }
  .slide-overlay p { font-size: 15px; opacity: .8; }

  /* FIX 3: 44px → 48px for minimum tap target compliance */
  #prevBtn, #nextBtn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.92); border: none; cursor: pointer; font-size: 16px; color: #334155; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: background .2s, transform .2s, box-shadow .2s; user-select: none; z-index: 10; }
  #prevBtn:hover, #nextBtn:hover { background: #fff; transform: translateY(-50%) scale(1.08); box-shadow: 0 4px 16px rgba(0,0,0,.18); }
  #prevBtn { left: 16px; }
  #nextBtn { right: 16px; }
  #dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
  /* FIX 4: padding 10px → 20px = 48px tap target */
  .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; border: none; padding: 20px; background-clip: content-box; }
  .dot.active { width: 24px; border-radius: 4px; background: #fff; background-clip: content-box; }
  @media (max-width: 768px) { .hero { padding: 60px 20px 0; } .slide { height: clamp(240px, 65vw, 400px); } .slide-overlay { padding: 40px 20px 18px; } #prevBtn, #nextBtn { width: 48px; height: 48px; font-size: 14px; } #prevBtn { left: 10px; } #nextBtn { right: 10px; } }

  .trust-section-hero { background: #f8fafc; padding: 64px 32px; }
  .trust-badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
  .trust-badge { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px 24px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
  .trust-badge:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: #bae6fd; }
  .trust-icon { width: 52px; height: 52px; border-radius: 50%; background: #f0f9ff; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .trust-icon svg { width: 24px; height: 24px; stroke: #007cb5; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
  .trust-badge p.badge-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
  .trust-badge p { font-size: 13px; color: #64748b; line-height: 1.65; }

  .why-section { background: #f8fafc; padding: 96px 32px; }
  .why-section .section-inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .why-section h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 300; letter-spacing: -0.01em; color: #007cb5; margin-bottom: 20px; }
  .why-section p { font-size: 17px; color: #475569; line-height: 1.85; }
  .founder-note { margin-top: 32px !important; font-size: 16px !important; font-style: italic; color: #334155 !important; border-left: 3px solid #007cb5; padding-left: 20px; text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
  .founder-signature { display: block; font-family: 'Dancing Script', cursive; font-size: 26px; font-weight: 600; color: #007cb5; margin-top: 18px; font-style: normal; }

  section { padding: 96px 32px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-inner > h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 300; letter-spacing: -0.01em; color: #007cb5; text-align: center; margin-bottom: 12px; }
  .use-cases-intro { font-size: 16px; color: #475569; line-height: 1.8; text-align: center; max-width: 640px; margin: 0 auto 48px; }

  .use-cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
  .use-case-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
  .use-case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #007cb5, #00a8f0); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.22,1,.36,1); }
  .use-case-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04); border-color: #bae6fd; }
  .use-case-card:hover::before { transform: scaleX(1); }
  .icon-wrapper { width: 48px; height: 48px; border-radius: 12px; background: #f0f9ff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background .25s; }
  .use-case-card:hover .icon-wrapper { background: #e0f2fe; }
  .use-case-card svg { width: 24px; height: 24px; stroke: #007cb5; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
  .use-case-card h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; transition: color .2s; }
  .use-case-card:hover h3 { color: #007cb5; }
  .use-case-card p { font-size: 14px; color: #475569; line-height: 1.7; }

  .moments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
  .moment-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 36px 28px 28px; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
  .moment-card::before { content: '\201C'; position: absolute; top: 16px; left: 24px; font-family: 'Outfit', sans-serif; font-size: 64px; font-weight: 800; color: rgba(0,124,181,0.12); line-height: 1; }
  .moment-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.08); border-color: #bae6fd; }
  .moment-card p.moment-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: #a5a5a5; margin-bottom: 12px; line-height: 1.35; }
  .moment-card p { font-size: 14px; color: #475569; line-height: 1.75; }

  .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
  .gallery-card { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 10px 20px -4px rgba(0,0,0,.1); background: #fff; transition: transform .25s, box-shadow .25s; }
  .gallery-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
  .gallery-card img { width: 100%; height: 220px; object-fit: cover; display: block; cursor: zoom-in; transition: transform .3s; }
  .gallery-card:hover img { transform: scale(1.03); }
  .gallery-card .gallery-info { padding: 18px 20px; }
  .gallery-card .gallery-info strong { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #0f172a; display: block; margin-bottom: 4px; }
  .gallery-card .gallery-info p { font-size: 13px; color: #64748b; line-height: 1.6; }

  /* FIX 5: CSS hover replaces inline onmouseover/onmouseout (eliminates forced reflow) */
  .gallery-cta-btn { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: #fff; background: #007cb5; padding: 12px 28px; border-radius: 10px; text-decoration: none; box-shadow: 0 4px 14px rgba(0,124,181,.3); transition: transform .2s, box-shadow .2s; }
  .gallery-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,124,181,.4); }

  .modal-backdrop { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.88); align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
  .modal-backdrop.open { display: flex; }
  .modal-backdrop img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,0.6); cursor: default; animation: zoomIn .2s ease; }
  .modal-close-btn { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 28px; line-height: 1; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 1001; }
  .modal-close-btn:hover { background: rgba(255,255,255,0.3); }
  @keyframes zoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

  .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
  .step-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 32px 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
  .step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: #bae6fd; }
  .step-number { width: 44px; height: 44px; border-radius: 12px; background: #007cb5; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0,124,181,.3); }
  .step-card h3 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 10px; transition: color .2s; }
  .step-card:hover h3 { color: #007cb5; }
  .step-card p { font-size: 15px; color: #475569; line-height: 1.75; }

  .cta { background: linear-gradient(135deg, #005f8a 0%, #007cb5 60%, #0096d6 100%); color: #fff; text-align: center; padding: 112px 32px; }
  .cta h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4.5vw, 48px); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-bottom: 16px; }
  .cta p { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.75; }
  .cta-button { display: inline-block; margin-top: 40px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #007cb5; background: #fff; padding: 15px 36px; border-radius: 12px; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s; }
  .cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
  .cta-faq-link { display: block; margin-top: 20px; font-family: 'Outfit', sans-serif; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s; }
  .cta-faq-link:hover { color: #fff; }

  .footer { padding: 52px 32px 36px; border-top: 1px solid #e2e8f0; background: #fff; }
  .footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
  .footer-links { display: flex; gap: 8px 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
  .footer-link { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; color: #66636d; text-decoration: none; transition: color .2s; }
  .footer-link:hover { color: #007cb5; }
  .footer p { font-size: 13px; color: #94a3b8; }

  @media (max-width: 768px) { section { padding: 64px 20px; } .why-section { padding: 64px 20px; } .trust-section-hero { padding: 48px 20px; } .use-cases-grid { grid-template-columns: 1fr; } .moments-grid { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr 1fr; } .steps-grid { grid-template-columns: 1fr; margin-top: 36px; } .trust-badges-grid { grid-template-columns: 1fr 1fr; } .cta { padding: 80px 20px; } .footer { padding: 40px 20px 28px; } .hero-trust { gap: 16px; } .hero-trust-sep { display: none; } }
  @media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } .trust-badges-grid { grid-template-columns: 1fr; } }

  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-children > * { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
  .reveal-children.visible > *:nth-child(1)  { opacity:1;transform:none;transition-delay:.05s }
  .reveal-children.visible > *:nth-child(2)  { opacity:1;transform:none;transition-delay:.10s }
  .reveal-children.visible > *:nth-child(3)  { opacity:1;transform:none;transition-delay:.15s }
  .reveal-children.visible > *:nth-child(4)  { opacity:1;transform:none;transition-delay:.20s }
  .reveal-children.visible > *:nth-child(5)  { opacity:1;transform:none;transition-delay:.25s }
  .reveal-children.visible > *:nth-child(6)  { opacity:1;transform:none;transition-delay:.30s }
  .reveal-children.visible > *:nth-child(7)  { opacity:1;transform:none;transition-delay:.35s }
  .reveal-children.visible > *:nth-child(8)  { opacity:1;transform:none;transition-delay:.40s }
  .reveal-children.visible > *:nth-child(9)  { opacity:1;transform:none;transition-delay:.45s }
  .reveal-children.visible > *:nth-child(10) { opacity:1;transform:none;transition-delay:.50s }
  .reveal-children.visible > *:nth-child(11) { opacity:1;transform:none;transition-delay:.55s }
  .reveal-children.visible > *:nth-child(12) { opacity:1;transform:none;transition-delay:.60s }
  .reveal-children.visible > *:nth-child(n+13){ opacity:1;transform:none;transition-delay:.65s }

/* Extracted from inline style attributes - CSP unsafe-inline removal */
.section-inner--centered { text-align: center; }
.section-bg-alt { background: #f8fafc; }
.mt-36 { margin-top: 36px; }