    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #080c14;
      --bg2: #0d1220;
      --bg3: #111828;
      --surface: #141d2e;
      --surface2: #1a2540;
      --border: rgba(255,255,255,0.07);
      --border2: rgba(255,255,255,0.12);
      --gold: #e8b55a;
      --gold-dim: rgba(232,181,90,0.15);
      --teal: #3dd6c8;
      --teal-dim: rgba(61,214,200,0.12);
      --violet: #a78bfa;
      --violet-dim: rgba(167,139,250,0.12);
      --text: #e8eaf0;
      --text-muted: #8892a4;
      --text-dim: #5a6478;
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius: 12px;
      --radius-lg: 20px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── LAYOUT ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

    /* ── NAV ── */
    nav.site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 28px;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
      background: rgba(8,12,20,0.72);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
    }
    nav.site-nav.scrolled { background: rgba(8,12,20,0.92); }
    .nav-brand {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text);
      letter-spacing: -0.02em;
    }
    .nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
    .nav-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
    .nav-brand-tag  { font-size: 0.62rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); line-height: 1; }
    .nav-logo { width: 38px; height: 46px; flex-shrink: 0; }
    .nav-links-desktop { display: flex; gap: 6px; align-items: center; }
    .nav-links-desktop a {
      color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500;
      padding: 6px 14px; border-radius: 8px; transition: all 0.2s; letter-spacing: 0.01em;
    }
    .nav-links-desktop a:hover, .nav-links-desktop a.active { color: var(--text); background: var(--surface); }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .btn { 
      display: inline-flex; align-items: center; gap: 8px;
      padding: 9px 20px; border-radius: 9px; font-weight: 500; font-size: 0.88rem;
      cursor: pointer; border: none; text-decoration: none; transition: all 0.22s; font-family: var(--font-body);
      letter-spacing: 0.01em; white-space: nowrap;
    }
    .btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border2); }
    .btn-ghost:hover { color: var(--text); border-color: var(--border2); background: var(--surface); }
    .btn-primary { background: var(--gold); color: #080c14; font-weight: 600; }
    .btn-primary:hover { background: #f0c46a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,181,90,0.3); }
    .btn-teal { background: var(--teal); color: #080c14; font-weight: 600; }
    .btn-teal:hover { background: #5ee0d2; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(61,214,200,0.3); }
    .btn-lg { padding: 13px 28px; font-size: 0.96rem; border-radius: 11px; }

    /* mobile nav */
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .nav-hamburger span { width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s; }
    .mobile-menu {
      display: none; position: fixed; top: 68px; left: 0; right: 0;
      background: rgba(8,12,20,0.97); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border); padding: 20px 28px 28px; z-index: 99;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a { display: block; color: var(--text-muted); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
    .mobile-menu a:hover { color: var(--text); }
    .mobile-menu .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

    @media (max-width: 840px) {
      .nav-links-desktop, .nav-actions { display: none; }
      .nav-hamburger { display: flex; }
    }

    /* ── HERO ── */
    .hero-section {
      min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
      padding: 120px 0 80px; position: relative; overflow: hidden;
    }
    .hero-glow {
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 600px; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(232,181,90,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute; bottom: 0; right: -200px;
      width: 700px; height: 500px; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(61,214,200,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold-dim); border: 1px solid rgba(232,181,90,0.25);
      color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 100px; margin-bottom: 28px;
    }
    .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    h1 {
      font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
      margin-bottom: 22px; color: var(--text);
    }
    h1 .accent { color: var(--gold); }
    .hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; line-height: 1.75; }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
    .hero-stats { display: flex; gap: 32px; }
    .hero-stat { }
    .hero-stat .val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
    .hero-stat .val span { color: var(--gold); }
    .hero-stat .lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.02em; }

    /* Dashboard Mock */
    .dashboard-mock {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    .dash-header {
      background: var(--bg2); padding: 14px 20px;
      display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border);
    }
    .dash-dots { display: flex; gap: 6px; }
    .dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .dash-dots span:nth-child(1) { background: #ff5f57; }
    .dash-dots span:nth-child(2) { background: #febc2e; }
    .dash-dots span:nth-child(3) { background: #28c840; }
    .dash-title { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
    .dash-body { padding: 20px; }
    .dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
    .dash-kpi {
      background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
      padding: 14px 16px;
    }
    .dash-kpi .k-label { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
    .dash-kpi .k-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
    .dash-kpi .k-trend { font-size: 0.7rem; margin-top: 4px; display: flex; align-items: center; gap: 4px; }
    .up { color: var(--teal); } .warn { color: var(--gold); }
    .dash-table { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
    .dash-table-head { display: grid; grid-template-columns: 2fr 1fr 1fr 90px; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--border); }
    .dash-table-head span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); font-weight: 600; }
    .dash-row { display: grid; grid-template-columns: 2fr 1fr 1fr 90px; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--border); align-items: center; transition: background 0.2s; }
    .dash-row:last-child { border-bottom: none; }
    .dash-row:hover { background: rgba(255,255,255,0.02); }
    .dash-row .model-name { font-size: 0.8rem; font-weight: 500; }
    .dash-row .vendor { font-size: 0.75rem; color: var(--text-dim); }
    .badge { 
      display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    }
    .badge-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(232,181,90,0.2); }
    .badge-teal { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(61,214,200,0.2); }
    .badge-violet { background: var(--violet-dim); color: var(--violet); border: 1px solid rgba(167,139,250,0.2); }
    .score-bar { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
    .score-bar-fill { height: 100%; border-radius: 2px; background: var(--teal); }

    /* ── SECTIONS ── */
    section { padding: 100px 0; position: relative; z-index: 1; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--teal); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 18px;
    }
    h2 {
      font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--text);
    }
    h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--text); margin-bottom: 10px; }
    p { color: var(--text-muted); }

    .section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 60px; }
    .section-header p { font-size: 1rem; line-height: 1.75; }

    /* ── DIVIDER ── */
    .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border2), transparent); margin: 0; }

    /* ── CARDS ── */
    .cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: all 0.3s;
      position: relative; overflow: hidden;
    }
    .card::before {
      content: ''; position: absolute; inset: 0; opacity: 0;
      background: linear-gradient(135deg, rgba(232,181,90,0.05), transparent);
      transition: opacity 0.3s;
    }
    .card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .card:hover::before { opacity: 1; }
    .card-icon {
      width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; font-size: 1.3rem;
    }
    .icon-gold { background: var(--gold-dim); border: 1px solid rgba(232,181,90,0.2); }
    .icon-teal { background: var(--teal-dim); border: 1px solid rgba(61,214,200,0.2); }
    .icon-violet { background: var(--violet-dim); border: 1px solid rgba(167,139,250,0.2); }
    .icon-surface { background: var(--surface2); border: 1px solid var(--border2); }
    .card p { font-size: 0.9rem; line-height: 1.7; margin-top: 8px; }
    .card-tag { display: inline-block; margin-top: 16px; font-size: 0.75rem; color: var(--text-dim); background: var(--surface2); border-radius: 6px; padding: 4px 10px; }

    /* ── FEATURE ROW ── */
    .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .feature-row.flip { direction: rtl; }
    .feature-row.flip > * { direction: ltr; }
    .feature-content h2 { margin-bottom: 20px; }
    .feature-content p { margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }
    .feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .feature-list li {
      display: flex; gap: 12px; font-size: 0.92rem; color: var(--text-muted);
    }
    .feature-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 4px; }
    .feature-visual {
      background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius-lg);
      padding: 28px; box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }

    /* ── TIMELINE ── */
    .timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
    .timeline::before {
      content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, var(--gold), var(--teal), var(--violet));
    }
    .timeline-item { display: flex; gap: 28px; padding: 28px 0; position: relative; }
    .timeline-num {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      background: var(--surface); border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--gold);
      position: relative; z-index: 1;
    }
    .timeline-item:nth-child(2) .timeline-num { border-color: var(--teal); color: var(--teal); }
    .timeline-item:nth-child(3) .timeline-num { border-color: var(--violet); color: var(--violet); }
    .timeline-text h3 { margin-bottom: 8px; }
    .timeline-text p { font-size: 0.92rem; }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: var(--radius-lg); padding: 52px 56px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 300px; height: 300px; border-radius: 50%;
      background: radial-gradient(circle, rgba(232,181,90,0.1), transparent 70%);
    }
    .cta-band h2 { font-size: 2rem; margin-bottom: 12px; }
    .cta-band p { font-size: 0.95rem; max-width: 480px; }
    .cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; }

    /* ── BUYERS ── */
    .buyer-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px;
      display: flex; align-items: flex-start; gap: 16px;
    }
    .buyer-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
    .buyer-card h3 { font-size: 1rem; margin-bottom: 6px; }
    .buyer-card p { font-size: 0.86rem; }

    /* ── CONTACT ── */
    .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-form-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 40px; }
    .contact-form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
    .contact-form-card p { font-size: 0.9rem; margin-bottom: 28px; }
    .field { margin-bottom: 18px; }
    .field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
    .field input, .field textarea, .field select {
      width: 100%; background: var(--bg2); border: 1px solid var(--border2);
      border-radius: 8px; padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 0.92rem;
      transition: border-color 0.2s; outline: none;
    }
    .field input:focus, .field textarea:focus { border-color: var(--gold); }
    .field textarea { resize: vertical; min-height: 110px; }
    .contact-info { display: flex; flex-direction: column; gap: 20px; }
    .contact-point { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
    .contact-point h4 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 8px; }
    .contact-point p { font-size: 0.88rem; }
    .contact-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
    .contact-features li { font-size: 0.86rem; color: var(--text-muted); display: flex; gap: 10px; }
    .contact-features li::before { content: '→'; color: var(--teal); }
    .form-success { display: none; background: var(--teal-dim); border: 1px solid rgba(61,214,200,0.3); border-radius: 10px; padding: 16px 20px; color: var(--teal); font-size: 0.9rem; margin-bottom: 20px; }

    /* ── FOOTER ── */
    footer {
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 60px 0 36px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-desc { font-size: 0.87rem; color: var(--text-dim); margin-top: 12px; max-width: 260px; line-height: 1.7; }
    .footer-group-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }
    .footer-links span { color: var(--text-dim); font-size: 0.87rem; }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.8rem; color: var(--text-dim);
    }
    .footer-bottom a { color: var(--text-dim); text-decoration: none; }
    .footer-bottom a:hover { color: var(--text-muted); }


    /* ── ABOUT PAGE ── */
    .about-intro { max-width: 680px; margin-bottom: 60px; }
    .about-intro h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
    .about-intro p { font-size: 1.05rem; line-height: 1.8; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
    .value-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 32px 28px; position: relative; overflow: hidden;
    }
    .value-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    }
    .value-card:nth-child(1)::after { background: var(--gold); }
    .value-card:nth-child(2)::after { background: var(--teal); }
    .value-card:nth-child(3)::after { background: var(--violet); }
    .value-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--border2); line-height: 1; margin-bottom: 16px; }

    /* ── SERVICES PAGE ── */
    .services-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
    .service-block {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 36px; margin-bottom: 20px;
      display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start;
      transition: all 0.3s;
    }
    .service-block:hover { border-color: var(--border2); }
    .service-block-head .service-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
    .service-block h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .service-block p { font-size: 0.92rem; line-height: 1.75; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .service-tag { background: var(--surface2); border: 1px solid var(--border); border-radius: 100px; padding: 4px 12px; font-size: 0.75rem; color: var(--text-muted); }
    .service-block-meta { border-left: 1px solid var(--border); padding-left: 32px; }
    .service-meta-item { margin-bottom: 20px; }
    .service-meta-item .meta-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 6px; }
    .service-meta-item ul { list-style: none; }
    .service-meta-item ul li { font-size: 0.86rem; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
    .service-meta-item ul li::before { content: '─'; color: var(--text-dim); font-size: 0.7rem; margin-top: 2px; }

    /* ── PAGE HERO ── */
    .page-hero-wrap { padding: 140px 0 60px; border-bottom: 1px solid var(--border); margin-bottom: 60px; }
    .page-hero-wrap .eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: all 0.65s cubic-bezier(0.16,1,0.3,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1000px) {
      .hero-grid { grid-template-columns: 1fr; }
      .dashboard-mock { max-width: 520px; }
      .section-header { grid-template-columns: 1fr; }
      .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
      .feature-row { grid-template-columns: 1fr; }
      .feature-row.flip { direction: ltr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .service-block { grid-template-columns: 1fr; }
      .service-block-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }
      .contact-wrap { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      section { padding: 70px 0; }
      .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
      .cta-band { flex-direction: column; padding: 36px 28px; }
      .cta-band-actions { flex-direction: column; width: 100%; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .footer-grid { grid-template-columns: 1fr; }
      .dash-kpis { grid-template-columns: 1fr 1fr; }
      .dash-table-head, .dash-row { grid-template-columns: 2fr 1fr 70px; }
      .dash-table-head span:nth-child(3), .dash-row > *:nth-child(3) { display: none; }
    }
