    /* =============================================================
       NovaStudio — Embedded CSS
       Clean startup/agency style. Blue trust palette.
       In production, this lives in style.css (separate file).
    ============================================================= */

    /* ─── CSS CUSTOM PROPERTIES ────────────────────────────────── */
    :root {
      --blue-50:   #eff6ff;
      --blue-100:  #dbeafe;
      --blue-200:  #bfdbfe;
      --blue-400:  #60a5fa;
      --blue-500:  #3b82f6;
      --blue-600:  #2563eb;
      --blue-700:  #1d4ed8;
      --blue-800:  #1e40af;
      --blue-900:  #1e3a8a;
      --indigo-500:#6366f1;
      --indigo-600:#4f46e5;
      --slate-50:  #f8fafc;
      --slate-100: #f1f5f9;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-400: #94a3b8;
      --slate-500: #64748b;
      --slate-600: #475569;
      --slate-700: #334155;
      --slate-800: #1e293b;
      --slate-900: #0f172a;
      --white:     #ffffff;

      --color-primary:       var(--blue-600);
      --color-primary-dark:  var(--blue-700);
      --color-text:          var(--slate-800);
      --color-text-muted:    var(--slate-500);
      --color-bg:            var(--white);
      --color-bg-alt:        var(--slate-50);
      --color-border:        var(--slate-200);

      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --section-py: 7rem;
      --container-max: 1180px;

      --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
      --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
      --shadow-lg:   0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
      --shadow-xl:   0 24px 64px rgba(37,99,235,.18);
      --shadow-blue: 0 8px 32px rgba(37,99,235,.22);

      --radius-sm:   8px;
      --radius-md:   14px;
      --radius-lg:   22px;
      --radius-xl:   32px;
      --radius-full: 9999px;
      --ease: cubic-bezier(.4,0,.2,1);
      --transition: 220ms var(--ease);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--font-sans); background: var(--color-bg); color: var(--color-text); line-height: 1.65; overflow-x: hidden; }
    img  { max-width: 100%; display: block; }
    a    { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
    ul   { list-style: none; }

    /* ─── UTILITIES ─────────────────────────────────────────────── */
    .container { max-width: var(--container-max); margin-inline: auto; padding-inline: 1.5rem; }
    .hidden    { display: none !important; }

    /* ─── SKELETON LOADERS ──────────────────────────────────────── */
    @keyframes shimmer {
      0%   { background-position: -600px 0; }
      100% { background-position:  600px 0; }
    }
    .skeleton {
      display: inline-block;
      background: linear-gradient(90deg, var(--slate-100) 25%, var(--slate-200) 50%, var(--slate-100) 75%);
      background-size: 600px 100%;
      animation: shimmer 1.6s infinite linear;
      border-radius: var(--radius-full);
    }
    .skeleton-line         { height: 1rem; margin-bottom: .5rem; }
    .skeleton-line.full    { width: 100%; }
    .skeleton-line.wide    { width: 85%; }
    .skeleton-line.medium  { width: 60%; }
    .skeleton-line.three-quarter { width: 75%; }
    .skeleton-line.half    { width: 45%; }
    .skeleton-line.short   { width: 35%; }
    .skeleton-line.centered{ display: block; margin-inline: auto; }
    .skeleton-inline       { width: 120px; height: .9rem; }
    .skeleton-icon         { width: 56px; height: 56px; border-radius: var(--radius-md); display: block; margin: 0 auto; }
    .skeleton-card         { pointer-events: none; }

    /* ─── NAVBAR ─────────────────────────────────────────────────── */
    .navbar {
      position: fixed; top: 0; inset-inline: 0; z-index: 100;
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .navbar.scrolled { border-color: var(--color-border); box-shadow: var(--shadow-sm); }
    .nav-inner  { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .brand      { display: flex; align-items: center; gap: .5rem; font-size: 1.25rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.03em; }
    .brand:hover{ color: var(--color-primary); }
    .brand-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); border-radius: var(--radius-sm); color: var(--white); font-size: .85rem; flex-shrink: 0; }
    .nav-links  { display: flex; align-items: center; gap: 2rem; }
    .nav-links a{ font-size: .9rem; font-weight: 500; color: var(--slate-600); padding: .25rem 0; position: relative; }
    .nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--color-primary); border-radius: var(--radius-full); transition: width var(--transition); }
    .nav-links a:hover  { color: var(--color-primary); }
    .nav-links a:hover::after { width: 100%; }
    .nav-toggle { display: none; background: none; border: none; font-size: 1.25rem; color: var(--slate-700); cursor: pointer; padding: .5rem; border-radius: var(--radius-sm); }
    .nav-toggle:hover { background: var(--slate-100); }

    /* ─── BUTTONS ─────────────────────────────────────────────────── */
    .btn { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.6rem; font-family: var(--font-sans); font-size: .9rem; font-weight: 600; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-align: center; white-space: nowrap; }
    .btn-primary { background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); color: var(--white); box-shadow: var(--shadow-blue); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,99,235,.35); color: var(--white); }
    .btn-ghost  { background: transparent; color: var(--slate-600); border-color: var(--color-border); }
    .btn-ghost:hover  { background: var(--slate-50); color: var(--slate-800); border-color: var(--slate-300); }
    .btn-white  { background: var(--white); color: var(--blue-700); box-shadow: var(--shadow-md); }
    .btn-white:hover  { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--blue-800); }
    .btn-outline-white { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
    .btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.6); }

    /* ─── PAGE LOADER ─────────────────────────────────────────────── */
    .page-loader { position: fixed; inset: 0; z-index: 200; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; transition: opacity .4s var(--ease), visibility .4s; }
    .page-loader.fade-out { opacity: 0; pointer-events: none; }
    .loader-spinner { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; }
    .page-loader p  { color: var(--slate-400); font-size: .9rem; font-weight: 500; }

    /* ─── HERO SECTION ────────────────────────────────────────────── */
    .hero-section {
      position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
      background: linear-gradient(160deg, #f0f7ff 0%, #e8f0ff 40%, #ede9fe 100%);
      overflow: hidden; padding-top: 68px;
    }
    .hero-section::before, .hero-section::after { content: ''; position: absolute; border-radius: var(--radius-full); pointer-events: none; z-index: 0; }
    .hero-section::before { width: 700px; height: 700px; background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%); top: -200px; right: -200px; }
    .hero-section::after  { width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.10) 0%, transparent 70%); bottom: -100px; left: -150px; }
    .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-block: 6rem 4rem; }
    .hero-badge { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem 1rem; background: rgba(255,255,255,.8); border: 1px solid var(--blue-200); border-radius: var(--radius-full); font-size: .78rem; font-weight: 600; color: var(--blue-700); margin-bottom: 1.5rem; backdrop-filter: blur(8px); }
    .hero-badge i { color: var(--indigo-500); }
    .hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -.04em; color: var(--slate-900); margin-bottom: 1.25rem; }
    .hero-title .highlight { background: linear-gradient(135deg, var(--blue-600), var(--indigo-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-desc  { font-size: 1.1rem; color: var(--slate-500); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
    .hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
    .hero-social-proof { display: flex; align-items: center; gap: .75rem; }
    .proof-avatars { display: flex; align-items: center; }
    .proof-avatar { width: 32px; height: 32px; border-radius: var(--radius-full); border: 2px solid var(--white); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--white); margin-left: -8px; }
    .proof-avatar:first-child { margin-left: 0; }
    .hero-social-proof p { font-size: .82rem; color: var(--slate-500); }
    .hero-social-proof strong { color: var(--slate-800); }
    .hero-image-wrap { position: relative; }
    .hero-image-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--blue-100), var(--indigo-500)); aspect-ratio: 4/3; box-shadow: var(--shadow-xl); }
    .hero-img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s var(--ease); }
    .hero-img-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; color: rgba(255,255,255,.75); background: linear-gradient(135deg, #3b82f6, #6366f1); }
    .hero-img-placeholder i    { font-size: 3rem; }
    .hero-img-placeholder span { font-size: .85rem; font-weight: 500; }
    .hero-img-placeholder .cms-tag { font-size: .72rem; background: rgba(255,255,255,.2); padding: .25rem .75rem; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,.3); margin-top: .25rem; }
    .float-badge { position: absolute; display: flex; align-items: center; gap: .45rem; padding: .55rem 1rem; background: var(--white); border-radius: var(--radius-full); box-shadow: var(--shadow-md); font-size: .78rem; font-weight: 600; color: var(--slate-700); white-space: nowrap; }
    .float-badge i { color: var(--color-primary); }
    .float-badge-1 { bottom: -1.2rem; left: -1.5rem; }
    .float-badge-2 { top: -1rem; right: -1rem; }
    .wave-separator { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }
    .wave-separator svg { display: block; width: 100%; height: 60px; }

    /* ─── ABOUT SECTION ───────────────────────────────────────────── */
    .about-section { background: var(--slate-50); padding-block: var(--section-py); }
    .section-header { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 4rem; }
    .section-badge  { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem 1rem; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius-full); font-size: .78rem; font-weight: 600; color: var(--blue-700); margin-bottom: 1rem; }
    .section-title  { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.035em; color: var(--slate-900); line-height: 1.2; margin-bottom: .75rem; }
    .section-desc   { font-size: 1rem; color: var(--slate-500); line-height: 1.7; }
    .features-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 4rem; }
    .feature-card   { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2.25rem 2rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); position: relative; overflow: hidden; }
    .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-500), var(--indigo-500)); opacity: 0; transition: opacity var(--transition); }
    .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon-wrap { width: 64px; height: 64px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--blue-50), var(--blue-100)); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 1.25rem; font-size: 1.5rem; color: var(--blue-600); transition: background var(--transition), color var(--transition); }
    .feature-card:hover .feature-icon-wrap { background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); color: var(--white); }
    .feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-900); margin-bottom: .6rem; letter-spacing: -.02em; }
    .feature-card p  { font-size: .9rem; color: var(--slate-500); line-height: 1.65; }
    .stats-strip { display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-sm); }
    .stat-item   { flex: 1; text-align: center; }
    .stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--blue-600); letter-spacing: -.04em; line-height: 1; margin-bottom: .3rem; }
    .stat-label  { font-size: .8rem; font-weight: 500; color: var(--slate-400); text-transform: uppercase; letter-spacing: .06em; }
    .stat-divider{ width: 1px; height: 3rem; background: var(--color-border); flex-shrink: 0; }

    /* ─── CTA SECTION ─────────────────────────────────────────────── */
    .cta-section { position: relative; padding-block: var(--section-py); background: linear-gradient(160deg, var(--blue-800) 0%, var(--indigo-600) 60%, var(--blue-900) 100%); overflow: hidden; }
    .cta-glow    { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; border-radius: var(--radius-full); background: radial-gradient(circle, rgba(99,102,241,.35) 0%, transparent 60%); pointer-events: none; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
    .cta-card    { position: relative; z-index: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 4rem 3rem; max-width: 760px; margin-inline: auto; }
    .cta-inner   { text-align: center; }
    .cta-icon-ring { width: 72px; height: 72px; border-radius: var(--radius-full); background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 1.75rem; font-size: 1.6rem; color: var(--white); }
    .cta-title   { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: -.04em; line-height: 1.15; margin-bottom: 1rem; }
    .cta-desc    { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 2.5rem; max-width: 560px; margin-inline: auto; }
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
    .trust-badges{ display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
    .trust-badges span { display: flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.6); }
    .trust-badges i    { color: rgba(255,255,255,.8); }

    /* ─── FOOTER ──────────────────────────────────────────────────── */
    .site-footer { background: var(--slate-900); padding-block: 2.5rem; }
    .footer-inner{ display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .footer-brand{ display: flex; align-items: center; gap: .5rem; font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; }
    .footer-brand .brand-icon { background: linear-gradient(135deg, var(--blue-500), var(--indigo-500)); }
    .footer-copy { font-size: .82rem; color: var(--slate-500); }
    .footer-copy a { color: var(--slate-400); }
    .footer-copy a:hover { color: var(--white); }
    .footer-socials { display: flex; align-items: center; gap: .75rem; }
    .footer-socials a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--slate-800); display: flex; align-items: center; justify-content: center; color: var(--slate-400); font-size: .85rem; transition: all var(--transition); }
    .footer-socials a:hover { background: var(--blue-600); color: var(--white); }

    /* ─── CMS INDICATOR BADGES ────────────────────────────────────── */
    /* Subtle "from CMS" labels — learning aid, can be removed in prod */
    .cms-indicator {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      background: rgba(37,99,235,.08); color: var(--blue-600);
      border: 1px solid rgba(37,99,235,.2); border-radius: var(--radius-full);
      padding: .2rem .65rem; margin-bottom: .75rem; vertical-align: middle;
    }
    .cms-indicator i { font-size: .7rem; }

    /* ─── DEBUG PANEL ─────────────────────────────────────────────── */
    .debug-panel { position: fixed; bottom: 0; right: 0; width: 520px; max-width: 100vw; max-height: 0; overflow: hidden; background: var(--slate-900); border-top: 2px solid var(--blue-500); border-left: 2px solid var(--blue-500); border-radius: var(--radius-md) 0 0 0; z-index: 300; transition: max-height .35s var(--ease); font-family: 'Courier New', monospace; }
    .debug-panel.open { max-height: 460px; }
    .debug-header { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1rem; background: var(--slate-800); border-bottom: 1px solid var(--slate-700); font-size: .8rem; font-weight: 600; color: var(--blue-400); }
    .debug-controls { display: flex; align-items: center; gap: .75rem; }
    .debug-tip { font-size: .7rem; color: var(--slate-500); font-weight: 400; }
    .debug-header button { background: none; border: none; color: var(--slate-400); cursor: pointer; font-size: .9rem; padding: .15rem .3rem; border-radius: var(--radius-sm); transition: all var(--transition); }
    .debug-header button:hover { background: var(--slate-700); color: var(--white); }
    #debugOutput { padding: 1rem; font-size: .72rem; color: #7dd3fc; white-space: pre-wrap; overflow-y: auto; max-height: 390px; line-height: 1.55; }
    .debug-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 250; display: flex; align-items: center; gap: .5rem; padding: .6rem 1rem; background: var(--slate-800); color: var(--blue-400); border: 1px solid var(--slate-700); border-radius: var(--radius-full); font-family: var(--font-sans); font-size: .78rem; font-weight: 600; cursor: pointer; box-shadow: var(--shadow-md); transition: all var(--transition); }
    .debug-fab:hover { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); transform: translateY(-2px); }

    /* ─── ERROR BANNER ────────────────────────────────────────────── */
    .error-banner { position: fixed; top: 80px; left: 50%; transform: translateX(-50%) translateY(-20px); z-index: 150; max-width: 680px; width: calc(100% - 3rem); opacity: 0; pointer-events: none; transition: all .4s var(--ease); }
    .error-banner.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .error-inner { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem 1.25rem; background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius-md); box-shadow: var(--shadow-md); color: #9a3412; font-size: .85rem; }
    .error-inner i { font-size: 1.1rem; flex-shrink: 0; padding-top: .1rem; }
    .error-inner div { flex: 1; }
    .error-inner strong { display: block; margin-bottom: .25rem; font-weight: 700; }
    .error-inner code { background: rgba(154,52,18,.1); padding: .1rem .35rem; border-radius: 4px; font-size: .8rem; font-family: monospace; }
    .error-inner button { background: none; border: none; color: #9a3412; cursor: pointer; font-size: 1rem; padding: .1rem; flex-shrink: 0; opacity: .7; transition: opacity var(--transition); }
    .error-inner button:hover { opacity: 1; }

    /* ─── ANIMATIONS ──────────────────────────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate-in { animation: fadeInUp .6s var(--ease) both; }
    .animate-in-delay-1 { animation-delay: .1s; }
    .animate-in-delay-2 { animation-delay: .2s; }
    .animate-in-delay-3 { animation-delay: .3s; }
    .animate-in-delay-4 { animation-delay: .4s; }
    .animate-in-delay-5 { animation-delay: .5s; }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ─── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { gap: 2.5rem; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      :root { --section-py: 5rem; }
      .nav-links { display: none; position: absolute; top: 68px; inset-inline: 0; background: var(--white); border-bottom: 1px solid var(--color-border); flex-direction: column; align-items: flex-start; gap: 0; padding: 1rem 1.5rem; box-shadow: var(--shadow-md); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: .75rem 0; font-size: 1rem; width: 100%; }
      .nav-toggle { display: block; }
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding-block: 4rem 2rem; }
      .hero-badge, .hero-desc, .hero-actions, .hero-social-proof { margin-inline: auto; justify-content: center; }
      .hero-image-wrap { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
      .float-badge-1 { bottom: -.8rem; left: 0; }
      .float-badge-2 { top: -.8rem; right: 0; }
      .features-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; margin-bottom: 3rem; }
      .stats-strip   { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; }
      .stat-divider  { display: none; }
      .stat-item     { flex: 0 0 40%; }
      .cta-card      { padding: 3rem 1.75rem; }
      .trust-badges  { gap: 1rem; }
      .footer-inner  { flex-direction: column; text-align: center; gap: 1.25rem; }
      .debug-panel   { width: 100%; border-left: none; border-radius: 0; }
      .debug-fab     { bottom: 1rem; right: 1rem; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 2rem; }
      .btn { padding: .65rem 1.3rem; font-size: .85rem; }
      .cta-title { font-size: 1.75rem; }
      .float-badge { font-size: .72rem; padding: .4rem .75rem; }
    }

    /* ─── PAGE LOADER ─────────────────────────────────────────────── */
    .page-loader { position: fixed; inset: 0; z-index: 200; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; transition: opacity .5s var(--ease); }
    .page-loader.fade-out { opacity: 0; pointer-events: none; }
    .loader-pulse { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; animation: loaderPulse 1s ease-in-out infinite alternate; }
    @keyframes loaderPulse { from { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,99,235,.4); } to { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(37,99,235,0); } }
    .loader-dots { display: flex; gap: .4rem; margin-top: .25rem; }
    .loader-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-300); animation: dotBounce 1.2s ease-in-out infinite; }
    .loader-dot:nth-child(2) { animation-delay: .2s; }
    .loader-dot:nth-child(3) { animation-delay: .4s; }
    @keyframes dotBounce { 0%,80%,100% { transform: scale(.8); opacity: .5; } 40% { transform: scale(1.2); opacity: 1; } }

    /* =============================================================
       PROJECTS PAGE STYLES
       ============================================================= */

    /* Projects Section */
    .projects-section { padding: var(--section-py) 0; }
    .section-header { text-align: center; margin-bottom: 3rem; }
    .section-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: .75rem; }
    .section-desc { color: var(--color-text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

    /* Project Filters */
    .project-filters { display: flex; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .filter-btn { padding: .6rem 1.25rem; border: 1px solid var(--color-border); background: var(--white); border-radius: var(--radius-full); cursor: pointer; font-size: .9rem; transition: all .2s; }
    .filter-btn:hover { background: var(--blue-50); border-color: var(--blue-200); }
    .filter-btn.active { background: var(--color-primary); color: var(--white); border-color: var(--color-primary); }

    /* Projects Grid */
    .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }

    /* Project Card */
    .project-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; border: 1px solid var(--color-border); }
    .project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .project-link { text-decoration: none; color: inherit; display: block; }
    .project-image { aspect-ratio: 16/10; background: var(--slate-100); overflow: hidden; position: relative; }
    .project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .project-card:hover .project-image img { transform: scale(1.05); }
    .no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--slate-400); font-size: 2rem; }
    .project-info { padding: 1.5rem; }
    .project-categories { display: flex; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }
    .project-tag { background: var(--blue-50); color: var(--color-primary); padding: .25rem .75rem; border-radius: var(--radius-full); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
    .project-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; color: var(--color-text); line-height: 1.3; }
    .project-excerpt { color: var(--color-text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .project-meta { display: flex; gap: 1.25rem; font-size: .85rem; color: var(--slate-500); }
    .project-meta i { margin-right: .35rem; }

    /* Empty State */
    .empty-state { text-align: center; padding: 4rem; color: var(--slate-500); grid-column: 1 / -1; }
    .loading { text-align: center; padding: 3rem; color: var(--slate-500); }

    /* =============================================================
       PROJECT DETAIL PAGE STYLES
       ============================================================= */

    .project-detail-page { padding: 2rem 0 var(--section-py); }

    /* Project Header */
    .project-header { padding: 2rem 0; border-bottom: 1px solid var(--color-border); margin-bottom: 2rem; }
    .project-header .container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
    .project-header .project-categories { margin-bottom: 1rem; }
    .project-header .project-title { font-size: 2.75rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; }
    .project-meta-bar { display: flex; gap: 2.5rem; flex-wrap: wrap; }
    .meta-item { display: flex; align-items: center; gap: .75rem; }
    .meta-item i { width: 40px; height: 40px; background: var(--blue-50); color: var(--color-primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
    .meta-label { display: block; font-size: .75rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: .05em; }
    .meta-value { display: block; font-weight: 600; color: var(--color-text); font-size: 1rem; }

    /* Hero Image */
    .project-hero-image { max-width: 1200px; margin: 0 auto 3rem; padding: 0 1.5rem; }
    .project-hero-image img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

    /* Project Content */
    .project-content-section { padding: 2rem 0; }
    .project-content-section .container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
    .project-description { font-size: 1.125rem; line-height: 1.8; color: var(--slate-700); margin-bottom: 3rem; }
    .project-description p { margin-bottom: 1.25rem; }

    /* Gallery - Bento/Masonry Style with Flexbox */
    .project-gallery-section { margin-bottom: 3rem; }
    .project-gallery-section h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
    
    /* Flexbox Bento Layout */
    .project-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    /* Base image styles */
    .project-gallery img {
      object-fit: cover;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: transform .3s, box-shadow .3s;
      height: 200px;
      flex: 1 1 calc(25% - 1rem);
      min-width: 200px;
    }
    
    .project-gallery img:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
    }
    
    /* Bento item sizing patterns based on nth-child */
    /* First image - Large (50% width, 400px height) */
    .project-gallery img:nth-child(6n+1) {
      flex: 1 1 calc(50% - 1rem);
      height: 400px;
    }
    
    /* Second image - Wide (50% width) */
    .project-gallery img:nth-child(6n+2) {
      flex: 1 1 calc(50% - 1rem);
    }
    
    /* Third image - Tall (25% width, 400px height) */
    .project-gallery img:nth-child(6n+3) {
      flex: 1 1 calc(25% - 1rem);
      height: 400px;
    }
    
    /* Fourth image - Standard (25% width) */
    .project-gallery img:nth-child(6n+4) {
      flex: 1 1 calc(25% - 1rem);
    }
    
    /* Fifth image - Wide (50% width) */
    .project-gallery img:nth-child(6n+5) {
      flex: 1 1 calc(50% - 1rem);
    }
    
    /* Sixth image - Standard (25% width) */
    .project-gallery img:nth-child(6n+6) {
      flex: 1 1 calc(25% - 1rem);
    }

    /* Project Actions */
    .project-actions { display: flex; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--color-border); flex-wrap: wrap; }
    .project-actions .btn-primary,
    .project-actions .btn-secondary { padding: .875rem 1.75rem; font-size: .95rem; }

    /* Not Found */
    .not-found { text-align: center; padding: 6rem 1.5rem; }
    .not-found i { font-size: 4rem; color: var(--slate-300); margin-bottom: 1.5rem; }
    .not-found h1 { font-size: 2rem; margin-bottom: .75rem; }
    .not-found p { color: var(--slate-500); margin-bottom: 2rem; }

    /* Navigation Active State */
    .nav-links a.active { color: var(--color-primary); }

    /* Responsive */
    @media (max-width: 1024px) {
      /* Tablet: 3 columns base */
      .project-gallery img {
        flex: 1 1 calc(33.333% - 1rem);
        height: 180px;
      }
      
      .project-gallery img:nth-child(6n+1),
      .project-gallery img:nth-child(6n+2),
      .project-gallery img:nth-child(6n+5) {
        flex: 1 1 calc(66.666% - 1rem);
        height: 360px;
      }
    }
    
    @media (max-width: 768px) {
      .projects-grid { grid-template-columns: 1fr; }
      .project-header .project-title { font-size: 1.75rem; }
      .project-meta-bar { gap: 1.5rem; }
      
      /* Mobile: 2 columns */
      .project-gallery img {
        flex: 1 1 calc(50% - 0.75rem);
        height: 150px;
        min-width: 140px;
      }
      
      .project-gallery img:nth-child(6n+1),
      .project-gallery img:nth-child(6n+2),
      .project-gallery img:nth-child(6n+5) {
        flex: 1 1 100%;
        height: 200px;
      }
      
      .project-gallery img:nth-child(6n+3),
      .project-gallery img:nth-child(6n+4),
      .project-gallery img:nth-child(6n+6) {
        flex: 1 1 calc(50% - 0.75rem);
        height: 150px;
      }
      
      .section-header h1 { font-size: 1.75rem; }
    }
    
    @media (max-width: 480px) {
      /* Mobile small: All full width, same height */
      .project-gallery img,
      .project-gallery img:nth-child(n) {
        flex: 1 1 100%;
        height: 200px;
        min-width: auto;
      }
    }