/* style.css - fabioux.com
   Landing Page.html CSS (verbatim) + _shared.css service additions */

:root {
    --bg:          #09090F;
    --bg-section:  #141414;
    --bg-elev:     #0d0d14;
    --bg-card:     #111118;
    --bg-card-2:   #15151f;
    --border:      #1e1e2a;
    --border-soft: #15151e;
    --text:        #eaeaf0;
    --text-dim:    #8a8a98;
    --text-mute:   #55555f;
    --violet:      #a78bfa;
    --violet-2:    #7c6fd9;
    --violet-glow: rgba(167, 139, 250, 0.22);
    --blue:        #60a5fa;
    --blue-glow:   rgba(96, 165, 250, 0.2);
    --pink:        #f472b6;
    --teal:        #5eead4;
    --amber:       #fbbf24;
    --amber-a12:   rgba(251, 191, 36, 0.12);
    --amber-a30:   rgba(251, 191, 36, 0.30);
    --white-a01:   rgba(255, 255, 255, 0.01);
    --white-a04:   rgba(255, 255, 255, 0.04);
    --white-a18:   rgba(255, 255, 255, 0.18);
    --white-a22:   rgba(255, 255, 255, 0.22);
    --white-a35:   rgba(255, 255, 255, 0.35);
    --white-a15:   rgba(255, 255, 255, 0.15);
    --white-a08:   rgba(255, 255, 255, 0.08);
    --black-a60:   rgba(0, 0, 0, 0.60);
    --black-a82:   rgba(0, 0, 0, 0.82);
    --black-a35:   rgba(0, 0, 0, 0.35);
    --black-a75:   rgba(0, 0, 0, 0.75);
    --white-a02:   rgba(255, 255, 255, 0.02);
    --white-a65:   rgba(255, 255, 255, 0.65);
    --dark-glass:  rgba(10, 10, 16, 0.85);
    --card-glass:  rgba(15, 15, 23, 0.85);
    --green:       #4ade80;
    --red:         #f87171;
    --violet-light: #c4b5fd;
    --btn-light:   #f5f5f7;
    --text-inv:    #1a1a1a;
    --accent:      #C9A876;
    --accent-hover:#D4B685;
    --accent-dark: #A8895E;
    --accent-glow: rgba(201,168,118,0.15);
    --accent-rgb:  201,168,118;
    --accent-a10:  rgba(201, 168, 118, 0.10);
    --accent-a20:  rgba(201, 168, 118, 0.20);
    --whatsapp:    #25D366;
    --whatsapp-2:  #2ee072;
    --border-dark: #2a2a38;
    --surface:     rgba(255,255,255,0.04);
    --bg-base:     var(--bg);
    --bg-elevated: #0D0D14;
    --bg-surface:  #111118;
    --bg-trust:    #0E1520;
    --indigo-dark:      #34346d;
    --indigo-vivid:     #3838db;
    --indigo-dark-rgb:  52, 52, 109;
    --indigo-vivid-rgb: 56, 56, 219;
    --maxw:        1200px;

    /* ── Aliases semantic (usados pelo admin/editor) ── */
    --color-surface:      var(--bg-card);
    --color-surface-2:    var(--bg-card-2);
    --color-border:       var(--border);
    --color-text:         var(--text);
    --color-text-muted:   var(--text-dim);
    --color-text-subtle:  var(--text-mute);
    --color-accent:       var(--accent);
    --color-accent-fg:    var(--text-inv);
    --color-accent-hover: var(--accent-hover);
    --color-danger:       var(--red);
    --color-success:      var(--green);
    --color-warning:      var(--amber);

    /* ── Tipografia ── */
    --fs-xs:   0.75rem;
    --fs-sm:   0.875rem;
    --fs-base: 1rem;
    --fs-lg:   1.125rem;
    --fs-xl:   1.25rem;
    --fs-2xl:  1.5rem;
    --fs-3xl:  1.875rem;
    --fs-4xl:  2.25rem;
    --fw-medium:   500;
    --fw-semibold: 600;
    --tracking-tight: -0.025em;
    --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, monospace;

    /* ── Espaçamento (escala 4px) ── */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-16: 4rem;

    /* ── Raios ── */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-full: 9999px;

    /* ── Sombras ── */
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);

    /* ── Transições ── */
    --transition-base: 200ms ease;
    --transition-fast: 150ms ease;

    /* ── Layout ── */
    --container-pad: 1.75rem;

    /* ── Overlay ── */
    --color-overlay: rgba(0, 0, 0, 0.6);

    /* ── Z-index ── */
    --z-base:   1;
    --z-header: 100;
    --z-modal:  200;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--bg); color: var(--text); }
  body {
    font-family: var(--font-sans);
    font-size: 16px; line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .mono { font-family: var(--font-mono); }
  a { color: inherit; text-decoration: none; }
  button, input, textarea, select { font-family: inherit; }
  button { cursor: pointer; border: none; background: none; color: inherit; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  /* ===== NAV + MEGA ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background: rgba(5,5,8,0.72);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
  }
  nav.scrolled { border-bottom-color: var(--border-soft); }
  .nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 62px; }
  .brand { display: inline-flex; align-items: center; gap: 20px; font-weight: 600; letter-spacing: -0.02em; font-size: 16px; }
  .brand .dot { color: #a78bfa; margin: 0 2px; }
  .nav-links { display: flex; gap: 2px; font-size: 13.5px; color: var(--text-dim); }
  .nav-link { padding: 8px 14px; border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: color .15s, background .15s; }
  .nav-link:hover, .nav-link.open { color: var(--text); background: rgba(255,255,255,0.04); }
  .nav-link .chev { font-size: 10px; opacity: 0.7; transition: transform .2s; }
  .nav-link.open .chev { transform: rotate(180deg); }

  .mega-wrap { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px); width: min(940px, calc(100vw - 40px)); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
  .mega-wrap.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .mega { background: linear-gradient(180deg, #0e0e16 0%, #0a0a12 100%); border: 1px solid var(--border); border-radius: 16px; padding: 36px var(--sp-4-5); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); position: relative; overflow: hidden; }
  .mega::before { content: ""; position: absolute; inset: -60% 20% auto auto; width: 400px; height: 400px; background: radial-gradient(circle, var(--violet-glow), transparent 60%); filter: blur(50px); opacity: 0.5; pointer-events: none; }
  .mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 64px; position: relative; }
  .mega-item {
    display: grid; grid-template-columns: 44px 1fr; gap: 16px;
    padding: 14px; margin: -6px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background .25s ease, box-shadow .25s ease;
    --hover-rgb: 167, 139, 250;
  }
  .mega-item::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 12px;
    background: radial-gradient(ellipse at 15% 50%, rgba(var(--hover-rgb), 0.18), transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
  }
  .mega-item::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(var(--hover-rgb), 0);
    transition: box-shadow .3s ease;
    pointer-events: none;
  }
  .mega-item:hover {
    background: linear-gradient(180deg, rgba(var(--hover-rgb), 0.06), rgba(var(--hover-rgb), 0.02));
  }
  .mega-item:hover::before { opacity: 1; }
  .mega-item:hover::after { box-shadow: inset 0 0 0 1px rgba(var(--hover-rgb), 0.22); }
  .mega-item:hover .m-icon { transform: scale(1.05); box-shadow: inset 0 0 0 1px rgba(var(--hover-rgb), 0.45), 0 6px 22px -6px rgba(var(--hover-rgb), 0.5); }
  .mega-item:hover .mega-copy h4 { color: #fff; }

  .m-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .m-icon svg { width: 20px; height: 20px; stroke-width: 1.5; fill: none; stroke: currentColor; transition: transform .25s ease; }
  .m-icon.amber { background: rgba(251,191,36,0.1); color: var(--amber); box-shadow: inset 0 0 0 1px rgba(251,191,36,0.2); }
  .m-icon.pink  { background: rgba(244,114,182,0.1); color: var(--pink); box-shadow: inset 0 0 0 1px rgba(244,114,182,0.2); }
  .m-icon.violet{ background: rgba(167,139,250,0.1); color: var(--violet); box-shadow: inset 0 0 0 1px rgba(167,139,250,0.2); }
  .m-icon.teal  { background: rgba(94,234,212,0.1); color: var(--teal); box-shadow: inset 0 0 0 1px rgba(94,234,212,0.2); }
  .m-icon.green { background: rgba(74,222,128,0.1); color: var(--green); box-shadow: inset 0 0 0 1px rgba(74,222,128,0.2); }
  .m-icon.blue  { background: rgba(96,165,250,0.1); color: var(--blue); box-shadow: inset 0 0 0 1px rgba(96,165,250,0.2); }

  /* per-item accent color for hover glow */
  .mega-item.is-amber  { --hover-rgb: 251, 191, 36; }
  .mega-item.is-pink   { --hover-rgb: 244, 114, 182; }
  .mega-item.is-violet { --hover-rgb: 167, 139, 250; }
  .mega-item.is-teal   { --hover-rgb: 94, 234, 212; }
  .mega-item.is-green  { --hover-rgb: 74, 222, 128; }
  .mega-item.is-blue   { --hover-rgb: 96, 165, 250; }

  .mega-copy h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.01em; transition: color .2s ease; }
  .mega-copy p { font-size: 13px; color: var(--text-dim); line-height: 1.45; }

  /* ===== BUTTONS ===== */
  .btn-ui { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 500; transition: background .15s, transform .15s, box-shadow .2s; white-space: nowrap; }
  .btn-primary { background: var(--btn-light); color: var(--text-inv); }
  .btn-primary:hover { background: #fff; transform: translateY(-0.5px); }
  .btn-outline { border: 1px solid var(--border); color: var(--text); background: rgba(255,255,255,0.02); }
  .btn-outline:hover { border-color: var(--border-dark); background: var(--surface); }
  .btn-violet { background: linear-gradient(180deg, var(--violet), var(--violet-2)); color: var(--text-inv); box-shadow: 0 6px 20px -8px var(--violet-glow); }
  .btn-violet:hover { transform: translateY(-0.5px); box-shadow: 0 8px 26px -8px var(--violet-glow); }
  .btn-wa { background: var(--whatsapp); color: var(--text-inv); border-radius: 8px; box-shadow: 0 0 0 1px rgba(37,211,102,0.2), 0 0 60px 8px rgba(37,211,102,0.5), 0 16px 48px -4px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.35); }
  .btn-wa:hover { background: var(--whatsapp-2); transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(37,211,102,0.3), 0 0 80px 12px rgba(37,211,102,0.6), 0 20px 60px -4px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.35); }

  /* ===== HERO ===== */
  .hero { position: relative; padding: 110px 0 80px; overflow: hidden; }
  .hero-bg::before { content: ""; position: absolute; top: -30%; left: 50%; width: 700px; height: 350px; transform: translateX(-50%); background: radial-gradient(ellipse, var(--accent-glow), transparent 60%); filter: blur(40px); opacity: 0.25; animation: breathe 8s ease-in-out infinite; }
  .hero-bg::after { content: ""; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(ellipse, var(--blue-glow), transparent 60%); filter: blur(60px); opacity: 0.5; animation: breathe 10s ease-in-out infinite reverse; }
  @keyframes breathe { 0%, 100% { opacity: 0.4; transform: translate(var(--tx,-50%), 0) scale(1); } 50% { opacity: 0.7; transform: translate(var(--tx,-50%), 0) scale(1.08); } }
  .hero-bg::before { --tx: -50%; }
  .hero-bg::after { --tx: 0; }

  .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.017) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.017) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at 50% 30%, black 25%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 25%, transparent 75%); }
  .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }

  .eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 5px var(--sp-2-5) 5px 6px; border: 1px solid var(--border); border-radius: 999px; font-size: 12.5px; color: var(--text-dim); background: rgba(255,255,255,0.02); margin-bottom: 28px; }
  .eyebrow-tag { background: var(--accent); color: var(--text-inv); padding: 2px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.02em; }

  h1.hero-title { font-size: clamp(40px, 5.5vw, 72px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.0; margin-bottom: 24px; display: flex; align-items: center; }
  .hero-type-wrap { display: block; width: 100%; }
  h1.hero-title .dim { color: var(--text-dim); }
  h1.hero-title .accent { background: linear-gradient(90deg, var(--accent-hover), var(--accent) 50%, var(--accent-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero-sub { font-size: 17px; color: var(--text-dim); max-width: 520px; line-height: 1.6; margin-bottom: 32px; }
  .hero-ctas { display: flex; gap: var(--sp-2-5); flex-wrap: wrap; }

  /* Hero illustration: animated orbit of services */
  .orbit {
    position: relative;
    width: 100%; aspect-ratio: 1 / 1;
    max-width: 480px; margin: 0 auto;
  }
  @keyframes spin     { to { transform: rotate(360deg);  } }
  @keyframes spin-rev { to { transform: rotate(-360deg); } }

  .orbit-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none;
  }
  .orbit-svg--cw  { animation: spin     8s linear infinite; }
  .orbit-svg--ccw { animation: spin-rev 12s linear infinite; }

  .orbit-core {
    position: absolute; inset: 34%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1e1e30, #0a0a12 65%);
    box-shadow:
      0 0 0 1px rgba(167,139,250,0.55),
      0 0 0 3px rgba(167,139,250,0.07),
      0 0 50px rgba(167,139,250,0.18),
      inset 0 0 40px rgba(167,139,250,0.06),
      inset 0 1px 0 rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 17px; color: var(--text); letter-spacing: -0.02em;
    z-index: 2;
  }
  .orbit-core span { color: var(--violet); font-size: 22px; line-height: 0; margin-left: 1px; text-shadow: 0 0 12px var(--violet-glow); }

  .orbit-pill {
    position: absolute;
    top: 50%; left: 50%;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px var(--sp-2-5) 7px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--text);
    white-space: nowrap;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
    animation: orbit-counter 60s linear infinite;
    transform-origin: center;
  }
  .orbit-pill .pdot { width: 8px; height: 8px; border-radius: 50%; }
  @keyframes dotLight {
    0%   { transform: scale(1);   box-shadow: none; opacity: 1; }
    20%  { transform: scale(1.7); box-shadow: 0 0 0 3px var(--white-a35), 0 0 10px 4px var(--white-a18); opacity: 1; }
    100% { transform: scale(1);   box-shadow: none; opacity: 1; }
  }
  @keyframes dotDim {
    from { opacity: 1; }
    to   { opacity: 0.18; }
  }
  .orbit-pill.lit    .pdot { animation: dotLight 0.75s ease-out forwards; }
  .orbit-pill.dimmed .pdot { animation: dotDim 1.5s ease-out forwards; }
  .orbit-pill.lit { border-color: var(--white-a22); transition: border-color 0.1s; }
  .orbit-pill.p1 { --r: 50%; animation-name: orb1; }
  .orbit-pill.p2 { animation-name: orb2; }
  .orbit-pill.p3 { animation-name: orb3; }
  .orbit-pill.p4 { animation-name: orb4; }
  .orbit-pill.p5 { animation-name: orb5; }
  .orbit-pill.p6 { animation-name: orb6; }
  @keyframes orb1 { from { transform: translate(-50%, -50%) rotate(0deg) translateX(210px) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg) translateX(210px) rotate(-360deg); } }
  @keyframes orb2 { from { transform: translate(-50%, -50%) rotate(60deg) translateX(210px) rotate(-60deg); } to { transform: translate(-50%, -50%) rotate(420deg) translateX(210px) rotate(-420deg); } }
  @keyframes orb3 { from { transform: translate(-50%, -50%) rotate(120deg) translateX(210px) rotate(-120deg); } to { transform: translate(-50%, -50%) rotate(480deg) translateX(210px) rotate(-480deg); } }
  @keyframes orb4 { from { transform: translate(-50%, -50%) rotate(180deg) translateX(210px) rotate(-180deg); } to { transform: translate(-50%, -50%) rotate(540deg) translateX(210px) rotate(-540deg); } }
  @keyframes orb5 { from { transform: translate(-50%, -50%) rotate(240deg) translateX(210px) rotate(-240deg); } to { transform: translate(-50%, -50%) rotate(600deg) translateX(210px) rotate(-600deg); } }
  @keyframes orb6 { from { transform: translate(-50%, -50%) rotate(300deg) translateX(210px) rotate(-300deg); } to { transform: translate(-50%, -50%) rotate(660deg) translateX(210px) rotate(-660deg); } }

  /* ===== AMBIENT WASH ===== */
  /* isolation:isolate creates stacking context so ::before z-index:-1 is below children, not below body */
  .ambient-wash { position: relative; isolation: isolate; }
  .ambient-wash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse var(--wash-size, 100% 80%) at var(--wash-position, 30% 20%), var(--wash-color, rgba(201,168,118,0.08)) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
  }

  /* ===== STATS STRIP ===== */
  .stats-strip { padding: var(--sp-4-5) 0; border-top: 1px solid var(--border-soft); background: rgba(251,191,36,0.5); }
  .stats-strip::after { content: ""; display: block; max-width: var(--maxw); margin: 60px auto -60px; height: 1px; background: var(--border-soft); }
  .stats-strip + section.section { border-top: none; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4-5); align-items: center; text-align: center; }
  .stat-big { font-size: 42px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: #FFFFFF; }
  .stat-big .unit { color: var(--amber); }
  .stat-label { font-size: 13px; color: rgba(201,168,118,0.7); margin-top: 6px; }

  /* ===== SECTIONS ===== */
  section.section { padding: 140px 0; border-top: 1px solid var(--border-soft); position: relative; }

  /* Service bands — full-width alternating backgrounds inside the services section */
  .svc-band { width: 100%; }
  .svc-band + .svc-band { border-top: 1px solid var(--border-soft); }
  .svc-band--elev { background: var(--bg-elevated); }

  /* --- Elevated panel (Linear-style): slightly lighter + subtle gradient + soft spotlight --- */
  section.section--elev {
    background: var(--bg);
    border-top: 1px solid var(--border);
  }
  section.section--elev::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
    opacity: 0.8;
    pointer-events: none;
  }
  section.section--elev > .container { position: relative; z-index: 1; }

  /* --- Dark panel: depoimentos --- */
  section.section--dark {
    width: 100%;
    background: var(--indigo-dark);
    border-top: none; position: relative;
  }
  section.section--dark > .container { position: relative; z-index: 1; }

  /* --- Warm panel: benefits — bg-surface + wash dourado forte --- */
  section.section--warm {
    background: var(--bg-surface);
    border-top: none; position: relative; overflow: hidden;
  }
  section.section--warm::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(201,168,118,0.12) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
  }
  section.section--warm > * { position: relative; z-index: 1; }

  /* --- Action panel: CTA — preto + wash dourado no background (.cta::before é o blob) --- */
  .cta--action {
    width: 100%;
    background:
      radial-gradient(ellipse at 18% 50%, var(--white-a15) 0%, transparent 52%),
      radial-gradient(ellipse at 82% 25%, var(--white-a08) 0%, transparent 45%),
      radial-gradient(ellipse at 50% 105%, var(--white-a08) 0%, transparent 48%),
      var(--indigo-vivid);
    position: relative;
  }
  .cta--action > .container { position: relative; z-index: 1; }

  /* --- Seam (section boundary highlight line, like Linear uses between panels) --- */
  .seam {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    margin: 0;
  }
  .section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
  .section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
  .section-label::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent-glow); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 52px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; max-width: 600px; }
  h2.section-title .dim { color: var(--text-dim); }
  .section-desc { font-size: 16px; color: var(--text-dim); line-height: 1.6; max-width: 460px; padding-bottom: 8px; }
  .svc-scroll-hint { margin-top: 32px; color: var(--text-mute); animation: svc-hint-bob 2s ease-in-out infinite; }
  @keyframes svc-hint-bob { 0%,100% { transform: translateY(0); opacity:.4; } 50% { transform: translateY(5px); opacity:.8; } }

  /* ===== SERVICE BLOCKS (each has its own live mockup) ===== */
  .svc-block { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; padding: 110px 0; }
  .svc-block.reverse { grid-template-columns: 1.1fr 1fr; }
  .svc-block.reverse .svc-copy { order: 2; }
  .svc-block.reverse .svc-mock { order: 1; }

  .svc-copy .svc-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 18px; }
  .svc-copy h3 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px; max-width: 460px; }
  .svc-copy .svc-lede { font-size: 16px; color: var(--text); line-height: 1.55; max-width: 460px; margin-bottom: 14px; }
  .svc-copy .svc-desc { font-size: 15px; color: var(--text-dim); line-height: 1.6; max-width: 460px; margin-bottom: 24px; }
  .svc-bullets { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-bottom: 28px; }
  .svc-bullets li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
  .svc-bullets li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); margin-top: 7px; flex-shrink: 0; box-shadow: 0 0 8px var(--violet-glow); }

  /* Mockup shell */
  .mock-shell {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    min-height: 360px;
    box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
    isolation: isolate;
  }
  .mock-shell::before { content: ""; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%); pointer-events: none; z-index: 2; }
  .mock-shell::after { content: ""; position: absolute; inset: -25% -20%; z-index: -1; filter: blur(90px); opacity: 0.6; pointer-events: none; border-radius: 50%; animation: svc-breathe 9s ease-in-out infinite; }
  @keyframes svc-breathe { 0%,100% { opacity:.55; transform:scale(1) translate(0,0); } 50% { opacity:.75; transform:scale(1.04) translate(.5%,-1%); } }
  .g-mock-wrap .mock-shell::after { animation: svc-breathe-g 9s ease-in-out infinite; }
  @keyframes svc-breathe-g { 0%,100% { opacity:.50; transform:scale(1) translate(0,0); } 50% { opacity:.65; transform:scale(1.04) translate(.5%,-1%); } }
  .mock-shell.mock-glow-v::after { background: radial-gradient(ellipse at 28% 35%, rgba(167,139,250,0.85), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(96,165,250,0.60), transparent 60%); }
  .mock-shell.mock-glow-b::after { background: radial-gradient(ellipse at 28% 35%, rgba(96,165,250,0.85), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(167,139,250,0.60), transparent 60%); }
  .mock-shell.mock-glow-a::after { background: radial-gradient(ellipse at 28% 35%, rgba(251,191,36,0.75), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(167,139,250,0.55), transparent 60%); }
  .mock-shell.mock-glow-p::after { background: radial-gradient(ellipse at 28% 35%, rgba(244,114,182,0.28), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(167,139,250,0.23), transparent 60%); }
  .mock-shell.mock-glow-t::after { background: radial-gradient(ellipse at 28% 35%, rgba(94,234,212,0.25), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(96,165,250,0.20), transparent 60%); }
  .mock-shell.mock-glow-g::after { background: radial-gradient(ellipse at 28% 35%, rgba(74,222,128,0.10), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(94,234,212,0.08), transparent 60%); }

  /* ---- Mockup: Google Ads ---- */
  .m-google {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: var(--sp-2-5);
    height: 100%;
  }
  .m-google .searchbar {
    display: flex; align-items: center; gap: var(--sp-2-5);
    padding: var(--sp-2-5) 18px;
    background: #1a1a25;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
  }
  .m-google .searchbar .ico { color: var(--text-dim); font-size: 14px; }
  .m-google .searchbar .typed::after { content: "|"; color: var(--accent); margin-left: 2px; animation: blink 1s steps(2) infinite; }
  @keyframes blink { 50% { opacity: 0; } }
  .m-google .result {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    position: relative;
  }
  .m-google .result.ad { border-color: rgba(251,191,36,0.3); background: linear-gradient(180deg, rgba(251,191,36,0.04), transparent); }
  .m-google .result .tag-ad { position: absolute; top: 12px; right: 14px; font-family: var(--font-mono); font-size: 10px; color: var(--amber); background: var(--amber-a12); padding: 2px 7px; border-radius: 4px; letter-spacing: 0.04em; }
  .m-google .result .url { font-size: 11px; color: var(--text-mute); font-family: var(--font-mono); margin-bottom: 4px; }
  .m-google .result .title { font-size: 15px; color: var(--text); font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
  .m-google .result .title .hl { color: var(--accent); }
  .m-google .result .snippet { font-size: 12.5px; color: var(--text-dim); line-height: 1.45; }
  .m-google .result.highlight { animation: glow 4s ease-in-out infinite; }
  @keyframes glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); } 50% { box-shadow: 0 0 0 3px rgba(251,191,36,0.12); } }
  .m-google .first-label { position: absolute; left: -10px; top: -10px; font-family: var(--font-mono); font-size: 10px; color: var(--accent); background: var(--bg-card); padding: 3px 8px; border-radius: 999px; border: 1px solid var(--amber-a30); display: inline-flex; align-items: center; gap: 4px; }
  .m-google .first-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(251,191,36,0.5); }

  /* ---- Mockup: Instagram Ads ---- */
  .m-insta {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2-5);
  }
  .m-post {
    background: #0a0a12;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .m-post .mp-head { display: flex; align-items: center; gap: 8px; padding: 10px var(--sp-2-5); }
  .m-post .mp-av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #f472b6, #a78bfa, #f59e0b); padding: 1.5px; }
  .m-post .mp-av-inner { width: 100%; height: 100%; border-radius: 50%; background: #0a0a12; }
  .m-post .mp-handle { font-size: 11.5px; font-weight: 500; }
  .m-post .mp-sub { font-size: 10px; color: var(--text-mute); font-family: var(--font-mono); }
  .m-post .mp-img { flex: 1; min-height: 130px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .m-post .mp-img.grad1 { background: linear-gradient(135deg, #f472b6 0%, #a78bfa 60%, #60a5fa 100%); }
  .m-post .mp-img.grad2 { background: linear-gradient(135deg, #fbbf24 0%, #f472b6 60%, #a78bfa 100%); }
  .m-post .mp-img-txt { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; color: rgba(10,10,16,0.85); text-align: center; padding: 0 var(--sp-2-5); line-height: 1.15; }
  .m-post .mp-meta { padding: 10px var(--sp-2-5); display: flex; gap: 10px; font-size: 11.5px; color: var(--text-dim); align-items: center; }
  .m-post .mp-meta .heart::before { content: "♡"; color: var(--red); margin-right: 3px; }
  .m-post .mp-badge { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 9.5px; background: var(--dark-glass); backdrop-filter: blur(6px); color: var(--text); padding: 3px 7px; border-radius: 999px; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 4px; }
  .m-post .mp-badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6); animation: pulse 1.5s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }

  /* Floating notification */
  .m-notif {
    position: absolute;
    bottom: 16px; right: 16px;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(15,15,23,0.92);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 12px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
    animation: floatNotif 4s ease-in-out infinite;
    z-index: 2;
  }
  @keyframes floatNotif { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  .m-notif .dot-g { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(74,222,128,0.6); }

  /* ---- Mockup: Instagram management / calendar ---- */
  .m-cal {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 10px;
  }
  .m-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
  .m-cal-head .title { font-size: 13px; font-weight: 500; }
  .m-cal-head .month { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); }
  .m-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
  .m-cal-dow { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-mute); text-align: center; padding: 4px 0; letter-spacing: 0.06em; }
  .m-cal-day {
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    display: flex; align-items: flex-start; justify-content: flex-end;
    padding: 4px 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-mute);
    position: relative;
    overflow: hidden;
  }
  .m-cal-day.muted { opacity: 0.4; }
  .m-cal-day.post { background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(96,165,250,0.08)); border-color: rgba(167,139,250,0.25); }
  .m-cal-day.post::before { content: ""; position: absolute; left: 4px; bottom: 4px; width: 10px; height: 10px; border-radius: 2px; background: var(--accent); opacity: 0.9; }
  .m-cal-day.reel { background: linear-gradient(135deg, rgba(244,114,182,0.15), rgba(251,191,36,0.08)); border-color: rgba(244,114,182,0.25); }
  .m-cal-day.reel::before { content: "▶"; position: absolute; left: 5px; bottom: 3px; color: var(--pink); font-size: 9px; }
  .m-cal-day.carousel { background: linear-gradient(135deg, rgba(94,234,212,0.15), rgba(96,165,250,0.08)); border-color: rgba(94,234,212,0.25); }
  .m-cal-day.carousel::before { content: ""; position: absolute; left: 4px; bottom: 4px; width: 10px; height: 7px; border: 1.5px solid var(--teal); border-radius: 2px; }
  .m-cal-day.today { outline: 1.5px solid var(--accent); outline-offset: -1.5px; color: var(--text); }

  .m-cal-legend { display: flex; gap: 16px; font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); margin-top: 8px; padding-top: var(--sp-2-5); border-top: 1px solid var(--border-soft); }
  .m-cal-legend .item { display: inline-flex; align-items: center; gap: 6px; }
  .m-cal-legend .chip { width: 10px; height: 10px; border-radius: 2px; }

  /* ---- Mockup: Identity / Brand ---- */
  .m-brand { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
  .m-brand-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); }
  .m-brand-logo { aspect-ratio: 16 / 7; background: linear-gradient(135deg, #0f2a27, #0a0a12); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .m-brand-logo svg { width: 44%; max-width: 180px; }
  .m-brand-logo .spark { position: absolute; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; animation: float 5s ease-in-out infinite; }
  .m-brand-logo .spark:nth-child(2) { top: 20%; left: 15%; animation-delay: 0s; }
  .m-brand-logo .spark:nth-child(3) { top: 70%; left: 85%; animation-delay: 1.5s; }
  .m-brand-logo .spark:nth-child(4) { top: 30%; left: 80%; animation-delay: 3s; }
  @keyframes float { 0%, 100% { transform: translate(0, 0); opacity: 0.3; } 50% { transform: translate(4px, -6px); opacity: 0.9; } }
  .m-brand-palette { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .m-brand-swatch { aspect-ratio: 1; border-radius: 8px; position: relative; border: 1px solid var(--border); display: flex; align-items: flex-end; padding: 6px; font-family: var(--font-mono); font-size: 8.5px; color: var(--white-a65); }
  .m-brand-type { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; }
  .m-brand-type .row1 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
  .m-brand-type .row2 { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.02em; }

  /* ---- Mockup: Sites (browser) ---- */
  .m-site { position: relative; z-index: 1; background: #0a0a12; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .m-site-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border-soft); }
  .m-site-bar .dots { display: flex; gap: 5px; }
  .m-site-bar .dot-cl { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.15); }
  .m-site-bar .url { flex: 1; background: var(--bg-card-2); border-radius: 6px; padding: 4px 10px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); text-align: center; }
  .m-site-bar .url .lock { color: var(--accent); }
  .m-site-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
  .m-site-nav { display: flex; justify-content: space-between; align-items: center; padding-bottom: var(--sp-2-5); border-bottom: 1px solid var(--border-soft); }
  .m-site-nav .brand-mini { font-size: 14px; font-weight: 600; letter-spacing: -0.02em; }
  .m-site-nav .links-mini { display: flex; gap: var(--sp-2-5); font-size: 11px; color: var(--text-dim); }
  .m-site-hero { padding: var(--sp-2-5) 0 4px; }
  .m-site-hero h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 8px; }
  .m-site-hero h3 .hl { color: var(--accent); }
  .m-site-hero p { font-size: 12px; color: var(--text-dim); line-height: 1.5; max-width: 92%; }
  .m-site-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .m-site-card { aspect-ratio: 5 / 4; background: linear-gradient(135deg, rgba(134,239,172,0.08), rgba(255,255,255,0.02)); border: 1px solid var(--border-soft); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; justify-content: space-between; }
  .m-site-card .h { font-size: 10.5px; color: var(--text); font-weight: 500; }
  .m-site-card .c { font-family: var(--font-mono); font-size: 18px; color: var(--accent); font-weight: 500; }
  .m-site-perf { display: flex; justify-content: space-between; padding: 10px 14px; background: rgba(134,239,172,0.06); border: 1px solid rgba(134,239,172,0.2); border-radius: 10px; margin-top: 4px; }
  .m-site-perf .item { display: flex; flex-direction: column; }
  .m-site-perf .lbl { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-mute); letter-spacing: 0.04em; }
  .m-site-perf .val { font-family: var(--font-mono); font-size: 15px; color: var(--accent); font-weight: 500; }

  /* ---- Mockup: System dashboard ---- */
  .m-sys { position: relative; z-index: 1; background: #0a0a12; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
  .m-sys-top { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: var(--white-a02); border-bottom: 1px solid var(--border-soft); font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); }
  .m-sys-top .ttl { color: var(--text); font-weight: 500; font-family: var(--font-sans); font-size: 13px; letter-spacing: -0.01em; }
  .m-sys-top .ttl .hl { color: var(--accent); }
  .m-sys-top .pill { font-size: 10px; padding: 3px 8px; border-radius: 999px; background: rgba(96,165,250,0.12); color: var(--accent); letter-spacing: 0.04em; }
  .m-sys-body { display: grid; grid-template-columns: 120px 1fr; min-height: 260px; }
  .m-sys-side { padding: 14px var(--sp-2-5); border-right: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 4px; }
  .m-sys-side .item { padding: 7px 9px; font-size: 11px; color: var(--text-dim); border-radius: 6px; display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); letter-spacing: 0.02em; }
  .m-sys-side .item.active { background: rgba(96,165,250,0.12); color: var(--accent); }
  .m-sys-side .item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.4; }
  .m-sys-side .item.active::before { opacity: 1; }
  .m-sys-main { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
  .m-sys-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .m-sys-stat { background: rgba(255,255,255,0.02); border: 1px solid var(--border-soft); border-radius: 8px; padding: 10px 11px; }
  .m-sys-stat .lbl { font-family: var(--font-mono); font-size: 9px; color: var(--text-mute); letter-spacing: 0.06em; margin-bottom: 4px; }
  .m-sys-stat .val { font-family: var(--font-mono); font-size: 18px; color: var(--text); font-weight: 500; }
  .m-sys-stat .val .up { color: var(--green); font-size: 11px; margin-left: 4px; font-weight: 400; }
  .m-sys-table { background: rgba(255,255,255,0.02); border: 1px solid var(--border-soft); border-radius: 8px; overflow: hidden; flex: 1; }
  .m-sys-tr { display: grid; grid-template-columns: 1fr 80px 60px; gap: 8px; padding: 7px 11px; font-size: 11px; border-bottom: 1px solid var(--border-soft); align-items: center; }
  .m-sys-tr:last-child { border: 0; }
  .m-sys-tr.th { font-family: var(--font-mono); font-size: 9px; color: var(--text-mute); letter-spacing: 0.06em; background: var(--white-a01); }
  .m-sys-tr .name { font-weight: 500; }
  .m-sys-tr .val { font-family: var(--font-mono); color: var(--text-dim); }
  .m-sys-tr .st { font-family: var(--font-mono); font-size: 9.5px; padding: 2px 6px; border-radius: 4px; text-align: center; letter-spacing: 0.04em; }
  .m-sys-tr .st.ok { background: rgba(74,222,128,0.12); color: var(--green); }
  .m-sys-tr .st.pend { background: rgba(251,191,36,0.12); color: var(--amber); }

  /* ===== PORTFOLIO PLACEHOLDERS ===== */
  .port-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
  .port { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; position: relative; display: flex; flex-direction: column; min-height: 240px; transition: transform 0.25s, border-color 0.25s; }
  .port:hover { transform: translateY(-3px); border-color: #2a2a38; }
  .port-thumb { flex: 1; position: relative; background-image: repeating-linear-gradient(135deg, var(--white-a02), var(--white-a02) 2px, transparent 2px, transparent 12px); display: flex; align-items: center; justify-content: center; color: var(--text-mute); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
  .port.large { grid-column: span 1; grid-row: span 2; min-height: 500px; }
  .port-meta { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-soft); }
  .port-meta .mtitle { font-size: 14.5px; font-weight: 500; letter-spacing: -0.01em; }
  .port-meta .mtag { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.06em; }
  .port-cat { position: absolute; top: 14px; left: 14px; padding: 4px 10px; background: var(--card-glass); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 999px; font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; }

  .port-thumb.g1 { background: linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa); position: relative; }
  .port-thumb.g2 { background: linear-gradient(135deg, #60a5fa, #a78bfa); }
  .port-thumb.g3 { background: linear-gradient(135deg, #5eead4, #60a5fa); }
  .port-thumb.g4 { background: linear-gradient(135deg, #f472b6, #a78bfa); }
  .port-thumb.g5 { background: linear-gradient(135deg, #fbbf24, #f472b6); }
  .port-thumb .placeholder-txt { background: rgba(10,10,16,0.75); backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 999px; color: var(--text); font-size: 11px; letter-spacing: 0.06em; }

  /* ===== BENEFITS ===== */


  .benefits { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .ben { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; min-height: 220px; transition: border-color 0.2s, transform 0.2s; }
  .ben:hover { border-color: var(--border-dark); transform: translateY(-2px); }
  .ben-num { font-family: var(--font-mono); font-size: 11px; color: var(--violet); letter-spacing: 0.1em; margin-bottom: 28px; display: flex; align-items: center; gap: 8px; }
  .ben-num::before { content: ""; width: 6px; height: 6px; background: var(--violet); border-radius: 50%; }
  .ben h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.25; }
  .ben p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .test-slider { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); padding: 24px 0; margin: 0; }
  .test-track { display: flex; width: max-content; will-change: transform; }
  .test { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; width: 360px; flex-shrink: 0; margin-right: 20px; min-width: 0; }
  .test-quote { font-size: 15px; line-height: 1.55; letter-spacing: -0.005em; flex: 1; }
  .test-foot { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-soft); }
  .test-av { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: #1F1710; border: 1px solid rgba(201,168,118,0.35); flex-shrink: 0; position: relative; transition: border-color 0.3s ease; }
  .test:hover .test-av { border-color: rgba(201,168,118,0.55); }
  .test-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .test-av--fallback::before { content: ''; position: absolute; inset: 0; background-image: url('../img/clients/_placeholder.svg'); background-size: 60%; background-position: center; background-repeat: no-repeat; opacity: 0.5; }
  .test-name { font-size: 13.5px; font-weight: 500; }
  .test-role { font-size: 12px; color: var(--text-mute); }

  .logos { display: flex; flex-wrap: wrap; gap: 48px; justify-content: center; align-items: center; padding: var(--sp-4-5) 0 0; opacity: 0.55; margin-top: var(--sp-4-5); border-top: 1px solid var(--border-soft); }
  .logos .logo-item,
  .logos-marquee-track .logo-item { font-family: var(--font-mono); font-size: 14px; color: var(--text-dim); letter-spacing: 0.05em; }
  .logos .logo-item img,
  .logos-marquee-track .logo-item img { height: 22px; width: auto; object-fit: contain; opacity: 0.6; filter: grayscale(1); }

  /* ===== Marquee infinito (página /clientes — 4× itens, anima -25%) ===== */
  .logos-marquee-outer {
    position: relative; z-index: 2;
    overflow: hidden;
    opacity: 0.55;
    padding: 32px 0 0;
    margin-top: var(--sp-4-5);
    border-top: 1px solid var(--border-soft);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  }
  .logos-marquee-track {
    display: flex;
    width: max-content;
    gap: 48px;
    will-change: transform;
  }
  .logos-marquee-track .logo-item::after {
    content: '·';
    margin-left: 48px;
    opacity: 0.35;
  }

  /* ===== Prints de redes sociais ===== */
  .section--prints { border-top: 1px solid var(--border-soft); }
  .prints-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
  @media (max-width: 720px) { .prints-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .prints-grid { grid-template-columns: 1fr; } }
  .print-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    transition: border-color 200ms ease;
  }
  .print-card:hover { border-color: var(--border-dark); }
  .print-card__img-wrap { position: relative; }
  .print-card__img-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
  }
  .print-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--black-a60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-size: 11px;
    color: var(--text);
    pointer-events: none;
  }
  .print-caption {
    padding: var(--space-3) var(--space-4);
    font-size: var(--fs-sm);
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* ===== Página /clientes hero ===== */
  .c-hero {
    position: relative;
    margin-top: -62px;
    padding-top: calc(62px + 110px);
    padding-bottom: 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-soft);
  }
  .c-hero__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
  }
  .c-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, var(--black-a82) 40%, var(--black-a35) 100%);
  }
  .c-hero__content { position: relative; z-index: 2; }
  .c-hero__text { max-width: 580px; }
  .c-hero__title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: var(--sp-2-5) 0 18px;
  }
  .c-hero__lede { font-size: 18px; color: var(--text-dim); line-height: 1.6; max-width: 480px; }

  /* ===== FAQ ===== */
  .faq-panel { max-width: 860px; margin: 0 auto; }
  .faq-wrap { max-width: 100%; margin: 0; }
  .faq-item { background: var(--bg-elev); border: 1px solid var(--border-soft); border-radius: 14px; padding: 20px 24px; margin-bottom: 8px; cursor: pointer; transition: background .2s, border-color .2s; }
  .faq-item:last-child { margin-bottom: 0; border-bottom: 1px solid var(--border-soft); }
  .faq-item:hover { background: var(--bg-card); border-color: var(--border); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 17px; font-weight: 500; letter-spacing: -0.01em; gap: 24px; }
  .faq-q .plus { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
  .faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--text-dim); left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .faq-q .plus::before { width: 12px; height: 1.5px; }
  .faq-q .plus::after  { width: 1.5px; height: 12px; transition: transform 0.3s; }
  .faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s, padding 0.35s; color: var(--text-dim); font-size: 15px; line-height: 1.6; padding: 0; }
  .faq-item.open .faq-a { max-height: 220px; padding-top: 14px; }

  /* ===== CTA ===== */
  .cta { padding: 140px 0 120px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); }
  .cta::before { content: ""; position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, var(--accent-glow), transparent 60%); filter: blur(60px); opacity: 0.25; animation: breathe 10s ease-in-out infinite; }
  .cta-inner { position: relative; }
  .cta h2 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 500; letter-spacing: -0.035em; line-height: 1; margin-bottom: 28px; }
  .cta h2 .dim { color: var(--text); }
  .cta p { color: var(--text-dim); max-width: 480px; margin: 0 auto 36px; font-size: 17px; }

  /* ===== FOOTER ===== */
  footer { border-top: 1px solid var(--border-soft); padding: 140px 0 120px; color: var(--text-dim); font-size: 13px; position: relative; overflow: hidden; }
  footer::before { display: none; }
  footer::after  { display: none; }
  footer > * { position: relative; z-index: 1; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--sp-4-5); margin-bottom: 48px; }
  .footer-col h4 { font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 16px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a:hover { color: var(--text); }
  .footer-brand-col { position: relative; }
  .footer-brand-col::before { content: ""; position: absolute; top: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(ellipse, rgba(167,139,250,0.18), transparent 65%); filter: blur(50px); pointer-events: none; animation: breathe 9s ease-in-out infinite; }
  .footer-brand-col p { margin-top: var(--sp-2-5); max-width: 280px; line-height: 1.55; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-soft); font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute); letter-spacing: 0.04em; }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: var(--sp-4-5); }
    .orbit { max-width: 340px; }
    .section-head { grid-template-columns: 1fr; gap: 20px; }
    .svc-block, .svc-block.reverse { grid-template-columns: 1fr; gap: 32px; }
    .svc-block.reverse .svc-copy { order: 1; }
    .svc-block.reverse .svc-mock { order: 2; }
    .svc-bullets { grid-template-columns: 1fr; }
    .benefits, .testimonials, .stats-grid { grid-template-columns: 1fr 1fr; }
    .port-grid { grid-template-columns: 1fr; }
    .port.large { grid-column: span 1; grid-row: span 1; min-height: 260px; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

/* ==== btn-accent ==== */
.btn-accent { background: var(--accent, var(--violet)); color: var(--text-inv); box-shadow: 0 6px 20px -8px rgba(var(--accent-rgb, 167,139,250), 0.5); }
.btn-accent:hover { transform: translateY(-0.5px); box-shadow: 0 8px 26px -8px rgba(var(--accent-rgb, 167,139,250), 0.6); }

/* ==== Accent-aware overrides ==== */
.section-label { color: var(--accent, var(--violet)); }
.section-label::before { background: var(--accent, var(--violet)); }
h2.section-title .accent { color: var(--accent, var(--violet)); }
.mock-shell::after { background: radial-gradient(ellipse at 28% 35%, rgba(var(--accent-rgb, 167,139,250), 0.55), transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(96,165,250,0.40), transparent 60%); }

/* ==== SERVICE PAGES (_shared.css unique sections) ==== */
/* HERO (internal page) */
.page-hero { position: relative; padding: 80px 0 60px; overflow: hidden; }
.page-hero--fullbg { margin-top: -62px; padding-top: calc(62px + 80px); }
.page-hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.page-hero__bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, var(--black-a82) 40%, var(--black-a35) 100%); }
.page-hero--fullbg .page-hero-inner { position: relative; z-index: 2; }
.page-hero-bg::before { content: ""; position: absolute; top: -30%; left: 50%; width: 900px; height: 500px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(var(--accent-rgb, 167,139,250), 0.25), transparent 60%); filter: blur(40px); opacity: 0.7; }
.page-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at 50% 30%, black 25%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 25%, transparent 75%); }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { color: var(--text-mute); }
.breadcrumb .current { color: var(--accent, var(--violet)); }

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500; letter-spacing: -0.035em; line-height: 1.02;
  margin-bottom: 22px;
  max-width: 540px;
}
.page-hero h1 .accent { color: var(--accent, var(--violet)); }
.page-hero h1 .dim { color: var(--text-dim); }
.page-hero-sub { font-size: 17px; color: var(--text-dim); line-height: 1.6; max-width: 480px; margin-bottom: 28px; }
.page-hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero sem mockup lateral — texto largo e destaque máximo */
.page-hero--wide .page-hero-inner { grid-template-columns: 1fr; }
.page-hero--wide h1 { font-size: clamp(52px, 6vw, 72px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.12; max-width: 70%; }
.page-hero--wide .page-hero-sub { max-width: 55%; }

/* ── Ritmo visual em páginas de serviço ────────────────────────────── */
/* Bloco 2 — amber 50% */
.site-main--svc > .blocks-container > .block:nth-child(2) > .section,
.site-main--svc > .blocks-container > .block:nth-child(2) > .page-section,
.site-main--svc > .blocks-container > .block:nth-child(2) > .stats-strip {
  background: rgba(var(--accent-rgb), 0.5);
}
/* Texto da seção 2 em branco sobre fundo amber */
.site-main--svc > .blocks-container > .block:nth-child(2) .section-desc { color: #fff; font-size: 18px; line-height: 1.6; max-width: 680px; }
/* FAQ (bloco 4) — cinza elevado */
.site-main--svc > .blocks-container > .block:nth-child(4) > .section,
.site-main--svc > .blocks-container > .block:nth-child(4) > .page-section {
  background: #1a1a28;
}

.page-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  margin-bottom: 22px;
}
.page-hero-badge .badge-ico {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.page-hero-badge .badge-ico svg { width: 12px; height: 12px; stroke-width: 2; fill: none; stroke: currentColor; }

/* SECTIONS */
section.page-section { padding: 90px 0; border-top: 1px solid var(--border-soft); position: relative; }
.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--accent, var(--violet)); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.section-label::before { content: ""; width: 6px; height: 6px; background: var(--accent, var(--violet)); border-radius: 50%; box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.5); }
section.page-section h2.section-title { font-size: clamp(30px, 4vw, 46px); max-width: 560px; }
section.page-section h2.section-title .dim { color: var(--text-dim); }
section.page-section h2.section-title .accent { color: var(--accent); }
.section-desc { font-size: 16px; color: var(--text-dim); line-height: 1.6; max-width: 440px; padding-bottom: 8px; }

/* INCLUSO grid (numbered) */
.incluso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.incluso-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: border-color .2s, transform .2s; min-height: 200px; display: flex; flex-direction: column; }
.incluso-card:hover { border-color: rgba(var(--accent-rgb), 0.3); transform: translateY(-2px); }
.incluso-num { font-family: var(--font-mono); font-size: 34px; font-weight: 400; color: var(--text-mute); letter-spacing: -0.02em; line-height: 1; margin-bottom: 28px; transition: color .2s; }
.incluso-card:hover .incluso-num { color: var(--accent); }
.incluso-card h4 { font-size: 16px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.01em; }
.incluso-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

/* PROCESSO vertical steps */
.processo-list { max-width: 720px; margin: 0 auto; }
.processo-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--border-soft); position: relative; }
.processo-step:last-child { border-bottom: 1px solid var(--border-soft); }
.processo-num { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-a10); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; font-weight: 500; box-shadow: inset 0 0 0 1px var(--accent-a20); }
.processo-step h4 { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 8px; }
.processo-step p { font-size: 15px; color: var(--text-dim); line-height: 1.55; max-width: 520px; }

/* FAQ */
.faq-panel { max-width: 860px; margin: 0 auto; }
.faq-wrap { max-width: 100%; margin: 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 17px; font-weight: 500; letter-spacing: -0.01em; gap: 24px; }
.faq-q .plus { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--text-dim); left: 50%; top: 50%; transform: translate(-50%, -50%); }
.faq-q .plus::before { width: 12px; height: 1.5px; }
.faq-q .plus::after  { width: 1.5px; height: 12px; transition: transform 0.3s; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s, padding 0.35s; color: var(--text-dim); font-size: 15px; line-height: 1.6; padding: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* CTA */
.page-cta { padding: 120px 0 100px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); }
.page-cta::before { content: ""; position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%); width: 1000px; height: 700px; background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.25), transparent 60%); filter: blur(60px); opacity: 0.7; }
.page-cta-inner { position: relative; }
.page-cta h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin-bottom: 22px; }
.page-cta h2 .dim { color: var(--text-dim); }
.page-cta h2 .accent { color: var(--accent); }
.page-cta p { color: var(--text-dim); max-width: 460px; margin: 0 auto 32px; font-size: 16px; }

/* ============================================================
   PORTFOLIO — OPÇÃO C: Cards grandes com métricas
   ============================================================ */
.c-section { padding: 60px 0 120px; }
.c-section-head { margin-bottom: 64px; }
.c-section-head h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 14px; }
.c-section-head h2 .dim { color: var(--text-dim); }
.c-section-head p { color: var(--text-dim); font-size: 15px; line-height: 1.6; max-width: 460px; }
.c-editor-hint { font-size: 13px; color: var(--text-mute); margin-bottom: 24px; font-family: var(--font-mono); }
.c-empty { color: var(--text-mute); font-size: 15px; padding: 60px 0; text-align: center; }

.c-list { display: flex; flex-direction: column; gap: 20px; }
.c-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--bg-card); transition: border-color .3s ease;
  text-decoration: none; color: inherit;
}
.c-card:hover { border-color: var(--violet); }
.c-card--reverse { grid-template-columns: 1fr 1.1fr; }
.c-card--reverse .c-visual { order: 2; }
.c-card--reverse .c-body { order: 1; }

.c-visual {
  aspect-ratio: 5 / 4; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 28px;
  background: var(--bg-card-2);
}
.c-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.c-card:hover .c-visual img { transform: scale(1.03); }
.c-visual__placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); }
.c-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.45));
  pointer-events: none; z-index: 1;
}
.c-year {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.6); letter-spacing: 0.08em;
}

.c-body {
  padding: 36px var(--sp-4-5); display: flex; flex-direction: column;
  justify-content: space-between; gap: 24px; background: var(--bg-card);
}
.c-body__top { display: flex; flex-direction: column; }
.c-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.c-tag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(167,139,250,0.1); color: var(--violet); letter-spacing: 0.04em;
}
.c-title { font-size: 26px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: var(--sp-2-5); }
.c-summary { color: var(--text-dim); font-size: 14px; line-height: 1.6; max-width: 420px; }

.c-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 24px; border-top: 1px solid var(--border-soft);
}
.c-metric .val {
  font-family: var(--font-mono); font-size: 24px; font-weight: 500;
  color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.c-metric .lbl {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.06em; margin-top: 6px;
}

.c-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--violet); margin-top: 4px;
}
.c-cta .arr { transition: transform .2s; }
.c-card:hover .c-cta .arr { transform: translateX(4px); }

@media (max-width: 900px) {
  .c-card, .c-card--reverse { grid-template-columns: 1fr; }
  .c-card--reverse .c-visual { order: 1; }
  .c-card--reverse .c-body { order: 2; }
  .c-metric .val { font-size: 18px; }
  .c-body { padding: 28px 24px; }
}

/* ==== Editor inline — feedback visual ==== */
[data-editable].save-ok, [data-editable-item].save-ok {
  outline: 2px solid var(--green) !important;
  outline-offset: 3px;
  border-radius: 3px;
  transition: outline 300ms ease;
}
[data-editable].save-err, [data-editable-item].save-err {
  outline: 2px solid #f87171 !important;
  outline-offset: 3px;
  border-radius: 3px;
}

.editor-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans, inherit);
  backdrop-filter: blur(12px);
  pointer-events: none;
  animation: toastIn 220ms ease;
}
.editor-toast--ok   { background: rgba(74,222,128,0.14); border: 1px solid rgba(74,222,128,0.4); color: #4ade80; }
.editor-toast--err  { background: rgba(248,113,113,0.14); border: 1px solid rgba(248,113,113,0.4); color: #f87171; }
.editor-toast--warn { background: rgba(251,191,36,0.14); border: 1px solid rgba(251,191,36,0.4); color: var(--amber); }
.editor-toast[hidden] { display: none; }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* FOOTER */
footer { border-top: 1px solid var(--border-soft); padding: 140px 0 120px; color: var(--text-dim); font-size: 13px; position: relative; overflow: hidden; }
footer::before { display: none; }
footer::after  { display: none; }
footer > * { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--sp-4-5); margin-bottom: 48px; }
.footer-col h4 { font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 16px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-brand-col { position: relative; }
.footer-brand-col::before { content: ""; position: absolute; top: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(ellipse, rgba(167,139,250,0.18), transparent 65%); filter: blur(50px); pointer-events: none; animation: breathe 9s ease-in-out infinite; }
.footer-brand-col p { margin-top: var(--sp-2-5); max-width: 280px; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-soft); font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute); letter-spacing: 0.04em; }

/* BACK TO TOP */
#back-to-top { position: fixed; bottom: 32px; right: 32px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s, color 0.2s, border-color 0.2s; pointer-events: none; box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5); }
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--bg-card-2); color: var(--text); border-color: var(--border-hover, var(--border)); }

/* MOCKUP SHELL */
.mock-shell { position: relative; background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2)); border: 1px solid var(--border); border-radius: 20px; padding: 24px; min-height: 360px; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7); }
.mock-shell::before { content: ""; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%); pointer-events: none; z-index: 2; }
.mock-shell::after { content: ""; position: absolute; inset: -25% -20%; z-index: -1; filter: blur(90px); opacity: 0.6; pointer-events: none; border-radius: 50%; animation: svc-breathe 9s ease-in-out infinite; }

.m-notif { position: absolute; bottom: 16px; right: 16px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(15,15,23,0.92); border: 1px solid var(--border); border-radius: 12px; backdrop-filter: blur(10px); font-size: 12px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6); z-index: 2; animation: floatNotif 4s ease-in-out infinite; }
@keyframes floatNotif { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.m-notif .dot-g { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(74,222,128,0.6); }

/* RELATED SERVICES */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 22px; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; gap: 14px; }
.related-card:hover { transform: translateY(-2px); border-color: #2a2a38; }
.related-card .rmeta { display: flex; align-items: center; gap: var(--sp-2-5); }
.related-card h4 { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.related-card p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.related-card .rarrow { margin-top: auto; font-size: 18px; color: var(--text-mute); transition: color .2s, transform .2s; }
.related-card:hover .rarrow { color: var(--text); transform: translateX(3px); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .incluso-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* ==== ADMIN ==== */
.site-main { position: relative; }
.block__placeholder { color: var(--text-mute); font-size: 13px; padding: 16px 0; }

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .incluso-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .incluso-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .c-hero__overlay { background: linear-gradient(to bottom, var(--black-a75) 0%, var(--black-a60) 100%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
