@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Space+Grotesk:wght@500;600;700&display=swap');

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

/* ── Visible keyboard focus ── */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-light, #a29bfe);
  outline-offset: 2px;
  border-radius: 3px;
}
.cf input:focus-visible, .cf select:focus-visible, .cf textarea:focus-visible,
.bf input:focus-visible, .bf select:focus-visible, .bf textarea:focus-visible {
  outline: 2px solid var(--accent-light, #a29bfe);
  outline-offset: 1px;
}

/* ── Hero stats strip ── */
.hero-stats { display:flex; align-items:center; gap:24px; margin-top:28px; padding-top:24px; border-top:1px solid rgba(108,92,231,0.15); }
.hstat { display:flex; flex-direction:column; gap:3px; }
.hstat-n { font-size:22px; font-weight:800; color:#fff; letter-spacing:-0.02em; }
.hstat-l { font-size:11px; color:rgba(255,255,255,0.65); letter-spacing:0.04em; text-transform:uppercase; }
.hstat-div { width:1px; height:36px; background:rgba(255,255,255,0.15); }

/* ── Footer social icons ── */
.footer-social { display:flex; gap:14px; margin-top:20px; }
.footer-social a { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; border:1px solid #333; color:#aaa; transition:border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color:var(--accent-light); color:var(--accent-light); }

/* ── Service page manifesto block ── */
.svc-manifesto { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:start; }
.svc-manifesto-body { font-size:16px; color:#aaa; line-height:1.8; margin-bottom:20px; }
.svc-manifesto-body:last-child { margin-bottom:0; }
@media(max-width:768px) { .svc-manifesto { grid-template-columns:1fr; gap:32px; } }

/* ── Form success message ── */
.form-success { background:rgba(108,92,231,0.12); border:1px solid rgba(108,92,231,0.3); border-radius:8px; padding:16px 20px; color:#fff; font-size:14px; line-height:1.6; margin-top:8px; }

/* ── Scroll reveal ── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.revealed { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition:none; opacity:1; transform:none; }
}

/* ── WhatsApp floating button ── */
.wa-float { position:fixed; bottom:28px; right:28px; z-index:999; width:54px; height:54px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; box-shadow:0 4px 20px rgba(37,211,102,0.4); transition:transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform:scale(1.08); box-shadow:0 6px 28px rgba(37,211,102,0.55); }
@media(max-width:768px) {
  .wa-float { width:48px; height:48px; bottom:16px; right:16px; }
}


body { font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: #111; background: #f5f5f3; }
:root {
  --accent: #6C5CE7; --accent-light: #a29bfe; --accent-dark: #4834d4; --accent-bg: #f0eeff;
  --font-display: 'Space Grotesk', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
h1, h2, h3, h4, h5, .logo-main, .press-logo, .svc-calc-result-price {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

nav { background: #000; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo-wrap { display: flex; flex-direction: column; line-height: 1; cursor: pointer; }
.logo-main { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.logo-sub { font-size: 8px; color: var(--accent-light); letter-spacing: 0.18em; font-weight: 400; margin-top: 2px; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a, .nav-links span { font-size: 13px; color: #aaa; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.nav-links a:hover, .nav-links span:hover { color: var(--accent-light); }
.has-drop { position: relative; }
.nav-drop { display: none; position: absolute; top: 100%; left: 0; background: #111; border: 1px solid #222; border-radius: 6px; min-width: 220px; padding: 8px 0; margin-top: 8px; z-index: 200; }
.has-drop:hover .nav-drop { display: block; }
.nav-drop a, .nav-drop span { display: block; padding: 10px 16px; font-size: 13px; color: #aaa; text-decoration:none; cursor: pointer; transition: background 0.15s, color 0.15s; }
.nav-drop a:hover, .nav-drop span:hover { background: #1a1a1a; color: var(--accent-light); }
.nav-drop a.active, .nav-links > li > a.active { color: var(--accent-light); font-weight: 700; }
.nav-cta { background: var(--accent) !important; color: #fff !important; font-size: 13px !important; padding: 9px 20px; border-radius: 100px; font-weight: 700; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.nav-drop-trigger { background:none; border:none; font:inherit; padding:0; margin:0; color:#aaa; font-size:13px; cursor:pointer; }
.nav-drop-trigger:hover { color:var(--accent-light); }
.has-drop.drop-open .nav-drop { display:block; }

/* ─── HAMBURGER ─── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #aaa; border-radius: 2px; transition: transform 0.3s, opacity 0.3s, background 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent-light); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent-light); }

.page { display: none; }
.page.active { display: block; }

.hero-wrap { background: #000; border-bottom: 1px solid #1a1a1a; position:relative; overflow:hidden; }
.hero-wrap::before { content:''; position:absolute; top:-160px; left:50%; transform:translateX(-50%); width:900px; height:520px; background:radial-gradient(ellipse, rgba(108,92,231,0.18) 0%, transparent 70%); pointer-events:none; z-index:0; }
.hero-wrap::after { content:''; position:absolute; bottom:-120px; right:2%; width:420px; height:320px; background:radial-gradient(ellipse, rgba(255,182,72,0.12) 0%, transparent 70%); pointer-events:none; z-index:0; }
.hero { max-width: 1100px; margin: 0 auto; padding: 90px 2rem 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position:relative; z-index:1; }
.hero-badge { display: inline-block; border: 1px solid #333; color: var(--accent-light); font-size: 11px; font-weight: 500; padding: 5px 14px; border-radius: 100px; margin-bottom: 28px; letter-spacing: 0.08em; background: rgba(108,92,231,0.08); }
.hero h1 { font-size: clamp(2.5rem, 4.6vw, 4rem); font-weight: 600; line-height: 1.05; color: #fff; margin-bottom: 20px; }
.hl { color: var(--accent-light); }
.hl-dark { color: var(--accent); }
.hero p { font-size: 16px; color: #999; max-width: 460px; line-height: 1.7; margin-bottom: 20px; }
.hero-manifiesto { font-size: 14px !important; color: var(--accent-light) !important; border-left: 2px solid var(--accent); padding-left: 14px; margin-bottom: 32px !important; font-style: normal; line-height: 1.6 !important; }
.hero-manifiesto em { font-style: italic; color: #fff; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── DIFERENCIAL ── */
.diff-wrap { background: #000; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 80px 0; position:relative; overflow:hidden; }
.diff-wrap::before { content:''; position:absolute; top:-140px; left:8%; width:600px; height:420px; background:radial-gradient(ellipse, rgba(108,92,231,0.14) 0%, transparent 70%); pointer-events:none; z-index:0; }
.diff-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position:relative; z-index:1; }
.diff-left .stit { color: #fff; margin-top: 12px; }
.diff-right { display: flex; flex-direction: column; gap: 0; }
.diff-body { font-size: 15px; color: #999; line-height: 1.8; margin-bottom: 18px; }
.diff-body strong { color: #fff; font-weight: 600; }
.diff-pills { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.diff-pill { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--accent-light); font-weight: 500; letter-spacing: 0.03em; }
.diff-pill span { color: var(--accent); font-size: 10px; }
@media(max-width:768px) {
  .diff-inner { grid-template-columns: 1fr; gap: 32px; }
}
.btn-p { background: var(--accent); color: #fff; padding: 14px 30px; border-radius: 100px; font-weight: 700; font-size: 14px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer; display: inline-block; border: none; font-family: inherit; }
.btn-p:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(108,92,231,0.35); }
.btn-s { background: transparent; color: #fff; padding: 14px 30px; border-radius: 100px; font-weight: 500; font-size: 14px; border: 1px solid #333; transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer; display: inline-block; }
.btn-s:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(108,92,231,0.2); }
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hcard { background: #111; border: 1px solid #222; border-radius: 8px; padding: 20px 22px; }
.hcard.acc { border-color: rgba(108,92,231,0.4); background: rgba(108,92,231,0.08); }
.hcard .cl { font-size: 11px; color: #555; letter-spacing: 0.1em; margin-bottom: 6px; }
.hcard .cv { font-size: 20px; font-weight: 700; color: #fff; }
.hcard.acc .cl { color: var(--accent-light); opacity: 0.7; }
.hcard.acc .cv { color: var(--accent-light); }
.hcrow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.sw { max-width: 1100px; margin: 0 auto; padding: 72px 2rem; }
.slbl { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.stit { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; line-height: 1.15; margin-bottom: 16px; }
.ssub { font-size: 16px; color: #666; max-width: 560px; line-height: 1.7; margin-bottom: 48px; }
.divider { border: none; border-top: 0.5px solid #e5e5e5; }

.sgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.scard { background: #fff; border: 0.5px solid #e5e5e5; border-radius: 8px; padding: 28px 24px; transition: border-color 0.2s, transform 0.2s; cursor: pointer; }
.scard:hover { border-color: var(--accent); transform: translateY(-2px); }
.snum { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 14px; }
.scard h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #111; }
.scard p { font-size: 14px; color: #666; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { background: var(--accent-bg); color: var(--accent-dark); font-size: 11px; padding: 4px 10px; border-radius: 100px; font-weight: 500; }
.scard.feat { background: #000; border: 1px solid rgba(108,92,231,0.35); grid-column: span 2; }
.scard.feat:hover { border-color: var(--accent); }
.scard.feat h3 { color: #fff; }
.scard.feat p { color: #aaa; }
.scard.feat .snum { color: var(--accent-light); }
.scard.feat .tag { background: rgba(108,92,231,0.15); color: var(--accent-light); }
.feat-in { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.slink { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 16px; display: inline-block; }

.wgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wlist { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.wi { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 24px; border-bottom: 0.5px solid #e5e5e5; }
.wi:last-child { border-bottom: none; }
.wn { font-size: 13px; font-weight: 700; color: var(--accent); min-width: 24px; }
.wi h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.wi p { font-size: 14px; color: #666; line-height: 1.6; }
.wvis { background: #000; border-radius: 8px; padding: 32px; }
.wvt { font-size: 11px; color: var(--accent-light); margin-bottom: 24px; letter-spacing: 0.1em; font-weight: 500; }
.mrow { display: flex; flex-direction: column; gap: 18px; }
.mitem label { font-size: 13px; color: #aaa; display: flex; justify-content: space-between; margin-bottom: 8px; }
.barbg { background: #222; border-radius: 100px; height: 6px; }
.barf { height: 6px; border-radius: 100px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.minig { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.minic { background: #111; border: 1px solid #222; border-radius: 8px; padding: 16px; text-align: center; }
.minic .val { font-size: 22px; font-weight: 700; color: var(--accent-light); }
.minic .lbl { font-size: 11px; color: #666; margin-top: 4px; }

/* ─── CLIENTS STRIP ─── */
.clients-strip { background:#fff; border-top:0.5px solid #eee; border-bottom:0.5px solid #eee; }
.clients-inner { max-width:1100px; margin:0 auto; padding:36px 2rem; }
.clients-label { font-size:11px; font-weight:600; color:#bbb; letter-spacing:0.12em; text-transform:uppercase; text-align:center; margin-bottom:28px; }
.clients-marquee-wrap { display:flex; justify-content:center; }
.clients-marquee { display:flex; gap:0; align-items:center; justify-content:center; flex-wrap:wrap; width:100%; }
.client-logo-item { display:flex; flex-direction:column; align-items:center; gap:10px; cursor:pointer; padding:8px 32px; border-right:0.5px solid #eee; }
.client-logo-item:last-child { border-right:none; }
.logo-circle { width:72px; height:72px; border-radius:50%; overflow:hidden; border:2px solid #f0eeff; transition:border-color 0.3s, transform 0.3s, box-shadow 0.3s; background:#f5f5f5; }
.logo-circle img { width:100%; height:100%; object-fit:cover; display:block; }
.client-logo-item:hover .logo-circle { border-color:var(--accent); transform:translateY(-5px); box-shadow:0 12px 32px rgba(108,92,231,0.18); }
.client-logo-item > span { font-size:11px; font-weight:600; color:#aaa; letter-spacing:0.03em; white-space:nowrap; transition:color 0.2s; }
.client-logo-item:hover > span { color:var(--accent); }

/* ─── CASE STUDY ─── */
.case-wrap { background:#f9f8ff; border-top:0.5px solid #e8e5ff; border-bottom:0.5px solid #e8e5ff; }
.case-wrap .sw { padding-top:72px; padding-bottom:72px; }
.case-grid { display:grid; grid-template-columns:1fr 360px; gap:28px; align-items:start; }
.case-main { background:#fff; border:0.5px solid #e5e5e5; border-radius:14px; padding:36px 32px; }
.case-tag { font-size:10px; font-weight:700; color:var(--accent); letter-spacing:0.12em; background:var(--accent-bg); padding:4px 12px; border-radius:100px; display:inline-block; margin-bottom:16px; }
.case-main h3 { font-size:24px; font-weight:700; color:#111; margin-bottom:14px; }
.case-main > p { font-size:15px; color:#555; line-height:1.75; margin-bottom:28px; }
.case-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:24px; }
.case-metric { text-align:center; padding:18px 12px; background:#f9f8ff; border-radius:10px; border:0.5px solid #e8e5ff; }
.case-num { font-size:30px; font-weight:800; color:var(--accent); line-height:1; margin-bottom:6px; }
.case-lbl { font-size:11px; color:#888; line-height:1.4; }
.case-services-used { display:flex; flex-wrap:wrap; gap:8px; }
.case-services-used span { background:var(--accent-bg); color:var(--accent-dark); font-size:11px; padding:4px 12px; border-radius:100px; font-weight:500; }
.case-side { display:flex; flex-direction:column; gap:14px; }
.case-mini { background:#fff; border:0.5px solid #e5e5e5; border-radius:12px; padding:20px; display:flex; gap:14px; align-items:flex-start; cursor:pointer; transition:border-color 0.2s, transform 0.2s; }
.case-mini:hover { border-color:var(--accent); transform:translateY(-2px); }
.case-mini-ico { font-size:22px; flex-shrink:0; margin-top:2px; }
.case-mini-logo { width:44px; height:44px; border-radius:50%; overflow:hidden; flex-shrink:0; border:1.5px solid #f0eeff; }
.case-mini-logo img { width:100%; height:100%; object-fit:cover; display:block; }
.case-mini-name { font-size:14px; font-weight:700; color:#111; margin-bottom:3px; }
.case-mini-sector { font-size:11px; color:var(--accent); font-weight:600; margin-bottom:6px; }
.case-mini-result { font-size:12px; color:#777; line-height:1.55; }

/* ─── FINAL CTA ─── */
.final-cta-wrap { background:#000; border-top:1px solid #111; position:relative; overflow:hidden; }
.final-cta-orb { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:400px; background:radial-gradient(ellipse, rgba(108,92,231,0.2) 0%, transparent 70%); pointer-events:none; }
.final-cta-inner { max-width:720px; margin:0 auto; padding:96px 2rem; text-align:center; position:relative; z-index:1; }
.final-cta-headline { font-size:clamp(2rem, 4.2vw, 3.4rem); font-weight:600; color:#fff; line-height:1.1; margin-bottom:20px; letter-spacing:-0.02em; }
.final-cta-sub { font-size:16px; color:#666; line-height:1.75; margin-bottom:40px; }
.final-cta-btns { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }
.final-cta-wa { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:#aaa; text-decoration:none; transition:color 0.2s, border-color 0.2s, transform 0.2s; padding:14px 22px; border:1px solid #222; border-radius:100px; }
.final-cta-wa:hover { color:#fff; border-color:#555; transform:translateY(-2px); }

/* ─── CM PRICE CALCULATOR ─── */
.svc-calc { max-width:640px; margin:0 auto; }
.svc-calc-card { background:#111; border:1px solid #222; border-radius:16px; padding:40px 36px; min-height:280px; }
.svc-calc-progress { height:4px; background:#222; border-radius:100px; margin-bottom:32px; overflow:hidden; }
.svc-calc-progress-fill { height:100%; background:linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius:100px; width:0%; transition:width 0.3s; }
.svc-calc-step { display:none; }
.svc-calc-step.active { display:block; animation:cmCalcFade 0.3s ease; }
@keyframes cmCalcFade { from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }
.svc-calc-step-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.svc-calc-step-top .svc-calc-back { margin-bottom:0; }
.svc-calc-step-lbl { font-size:11px; font-weight:700; color:#555; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; }
.svc-calc-step-top .svc-calc-step-lbl { margin-bottom:0; }
.svc-calc-q { font-size:20px; font-weight:700; color:#fff; margin-bottom:24px; line-height:1.35; }
.svc-calc-opts { display:flex; flex-direction:column; gap:12px; }
.svc-calc-opts-2 { flex-direction:row; }
.svc-calc-opt { background:#0d0d0d; border:1px solid #2a2a2a; border-radius:10px; padding:16px 20px; text-align:left; color:#ccc; font-size:14px; font-weight:600; cursor:pointer; transition:border-color 0.2s, background 0.2s; font-family:inherit; flex:1; }
.svc-calc-opt span { display:block; font-size:12px; font-weight:400; color:#777; margin-top:4px; }
.svc-calc-opt:hover { border-color:var(--accent); background:rgba(108,92,231,0.08); }
.svc-calc-opt.selected { border-color:var(--accent); background:rgba(108,92,231,0.15); color:#fff; }
.svc-calc-opts-2 .svc-calc-opt { text-align:center; }
.svc-calc-back { display:inline-block; font-size:12px; color:#666; cursor:pointer; margin-bottom:16px; }
.svc-calc-back:hover { color:var(--accent-light); }
.svc-calc-result-lbl { font-size:12px; color:var(--accent-light); text-transform:uppercase; letter-spacing:0.1em; font-weight:700; margin-bottom:8px; text-align:center; }
.svc-calc-result-price { font-size:44px; font-weight:800; color:#fff; text-align:center; margin-bottom:20px; }
.svc-calc-result-price span { font-size:16px; font-weight:400; color:#666; }
.svc-calc-anchor { font-size:12px; color:#777; text-align:center; margin:-8px 0 20px; line-height:1.6; }
.svc-calc-anchor a { color:var(--accent-light); text-decoration:underline; }
.svc-calc-breakdown { display:flex; flex-direction:column; gap:8px; border-top:1px solid #222; border-bottom:1px solid #222; padding:16px 0; margin-bottom:16px; }
.svc-calc-bd-item { display:flex; justify-content:space-between; font-size:13px; color:#999; }
.svc-calc-bd-item strong { color:var(--accent-light); font-weight:700; }
.svc-calc-includes-lbl { font-size:11px; font-weight:700; color:var(--accent-light); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:12px; text-align:center; }
.svc-calc-includes { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
.svc-calc-includes li { font-size:13px; color:#aaa; line-height:1.5; padding-left:18px; position:relative; }
.svc-calc-includes li::before { content:'✓'; position:absolute; left:0; color:var(--accent-light); font-weight:700; }
.svc-calc-note { font-size:12px; color:#666; text-align:center; margin-bottom:24px; line-height:1.6; }
.svc-calc-result-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
@media(max-width:600px) {
  .svc-calc-opts-2 { flex-direction:column; }
  .svc-calc-card { padding:28px 20px; }
  .svc-calc-result-price { font-size:36px; }
}

.platforms-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:0; }
.platform-card { background:#fff; border:0.5px solid #e5e5e5; border-radius:12px; padding:24px 20px; transition:border-color 0.2s, box-shadow 0.2s; }
.platform-card:hover { border-color:var(--accent); box-shadow:0 8px 28px rgba(108,92,231,0.1); }
.platform-header { display:flex; align-items:center; gap:8px; margin-bottom:18px; padding-bottom:14px; border-bottom:0.5px solid #f0f0f0; }
.platform-icon { width:28px; height:28px; flex-shrink:0; object-fit:contain; border-radius:4px; }
.platform-name { font-size:12px; font-weight:700; color:#111; letter-spacing:0.02em; }
.platform-metrics { display:flex; flex-direction:column; gap:9px; }
.pm-item { display:flex; align-items:center; gap:8px; font-size:12px; color:#555; line-height:1.4; }
.pm-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }

/* ─── PROCESS STEPS ─── */
.process-steps { display:flex; flex-direction:column; gap:0; margin-top:48px; }
.pstep { display:grid; grid-template-columns:64px 1fr; gap:0; }
.pstep-left { display:flex; flex-direction:column; align-items:center; padding-top:4px; }
.pstep-num { width:44px; height:44px; border-radius:50%; background:var(--accent); color:#fff; font-size:14px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; letter-spacing:0.02em; font-family:var(--font-display); }
.pstep-line { width:2px; background:linear-gradient(to bottom, var(--accent), #e8e5ff); flex:1; margin-top:12px; margin-bottom:0; min-height:40px; }
.pstep-body { padding:0 0 52px 24px; }
.pstep-last .pstep-body { padding-bottom:8px; }
.pstep-tag { display:inline-block; font-size:10px; font-weight:700; color:var(--accent); background:var(--accent-bg); padding:3px 10px; border-radius:100px; letter-spacing:0.08em; margin-bottom:12px; }
.pstep-body h3 { font-size:22px; font-weight:700; color:#111; margin-bottom:12px; line-height:1.2; }
.pstep-body > p { font-size:15px; color:#555; line-height:1.75; margin-bottom:24px; max-width:680px; }
.pstep-deliverables { background:#f9f8ff; border:0.5px solid #e8e5ff; border-radius:10px; padding:20px 22px; margin-bottom:16px; }
.pstep-dl-title { font-size:11px; font-weight:700; color:var(--accent); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:14px; }
.pstep-dl-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px 24px; }
.pstep-dl-item { font-size:13px; color:#444; display:flex; gap:8px; align-items:flex-start; line-height:1.5; }
.pstep-dl-item span { color:var(--accent); font-weight:700; flex-shrink:0; }
.pstep-output { display:flex; align-items:center; gap:10px; font-size:13px; color:#666; }
.pstep-out-label { background:#000; color:#fff; font-size:10px; font-weight:700; padding:3px 10px; border-radius:4px; letter-spacing:0.08em; flex-shrink:0; }

/* ─── WHY PILL ─── */
.why-pill-icon { width:42px; height:42px; background:var(--accent-bg); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }

.proc::before { content:''; position:absolute; top:20px; left:12%; right:12%; height:1px; background:#e5e5e5; }
.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.stepn { width:40px; height:40px; border-radius:50%; background:var(--accent); color:#fff; font-size:14px; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-family:var(--font-display); }
.step h4 { font-size:14px; font-weight:700; margin-bottom:8px; }
.step p { font-size:13px; color:#666; line-height:1.5; }

.related-services { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:8px; }
.related-card { flex:1; min-width:220px; display:flex; flex-direction:column; gap:6px; background:#fff; border:0.5px solid #e5e5e5; border-radius:10px; padding:18px 20px; text-decoration:none; transition:border-color 0.2s, transform 0.2s; }
.related-card:hover { border-color:var(--accent); transform:translateY(-2px); }
.related-card strong { font-size:14px; color:#111; }
.related-card span { font-size:12px; color:var(--accent); font-weight:600; }

/* ── FAQ dropdown (header) ── */
.nav-drop-faq { min-width:360px; max-width:400px; max-height:70vh; overflow-y:auto; padding:6px; }
.nav-drop-faq .faqitem { background:transparent; border-bottom:1px solid #222; }
.nav-drop-faq .faqitem:last-child { border-bottom:none; }
.nav-drop-faq .faqq { padding:14px 14px; font-size:13px; color:#eee; font-weight:600; }
.nav-drop-faq .faqa { padding:0 14px 14px; font-size:13px; color:#999; }
.nav-drop-faq .faqa-arr { color:var(--accent-light); font-size:16px; }
.nav-drop-faq .faqitem.open { border-left-color:var(--accent-light); }
@media(max-width:768px) {
  .faq-drop .nav-drop.nav-drop-faq { display:none; position:static; background:#0a0a0a; border:none; padding:4px 1rem 8px; margin:0; border-radius:0; min-width:unset; max-width:unset; max-height:none; }
  .faq-drop.drop-open .nav-drop.nav-drop-faq { display:block; }
}

.faqlist { border: 0.5px solid #e5e5e5; border-radius: 8px; overflow: hidden; }
.faqitem { background: #fff; border-bottom: 0.5px solid #e5e5e5; cursor: pointer; border-left: 3px solid transparent; transition: border-color 0.2s; }
.faqitem:last-child { border-bottom: none; }
.faqq { font-size:14px; font-weight:500; display:flex; justify-content:space-between; align-items:center; gap:12px; padding:20px 24px; }
.faqa-arr { color:var(--accent); font-size:20px; transition:transform 0.2s; }
.faqa { font-size:14px; color:#666; line-height:1.6; padding:0 24px 20px; display:none; }
.faqitem.open .faqa { display:block; }
.faqitem.open .faqa-arr { transform:rotate(45deg); }
.faqitem.open { border-left-color:var(--accent); }

.cwrap { background:#000; border-top:1px solid #1a1a1a; }
.cin { max-width:1100px; margin:0 auto; padding:72px 2rem; display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.cf { display:flex; flex-direction:column; gap:12px; }
.fr2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.cf input, .cf select, .cf textarea { width:100%; padding:13px 16px; border:1px solid #2a2a2a; border-radius:4px; font-size:14px; background:#0d0d0d; color:#fff; font-family:inherit; outline:none; transition:border-color 0.2s; }
.cf input::placeholder, .cf textarea::placeholder { color:#555; }
.cf select { color:#555; }
.cf input:focus, .cf select:focus, .cf textarea:focus { border-color:var(--accent); }
.cf textarea { height:110px; resize:vertical; }
.cf button { background:var(--accent); color:#fff; border:none; padding:15px; border-radius:100px; font-size:15px; font-weight:700; cursor:pointer; font-family:inherit; transition:background 0.2s, transform 0.2s, box-shadow 0.2s; }
.cf button:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 10px 26px rgba(108,92,231,0.3); }
.cll .slbl { color:var(--accent-light); }
.cll .stit { color:#fff; }
.cll > p { font-size:15px; color:#777; line-height:1.7; margin-bottom:40px; }
.cilist { display:flex; flex-direction:column; gap:20px; }
.ciitem { display:flex; gap:14px; align-items:flex-start; padding-bottom:20px; border-bottom:1px solid #1a1a1a; }
.ciitem:last-child { border-bottom:none; }
.ciico { width:38px; height:38px; background:rgba(108,92,231,0.12); border:1px solid rgba(108,92,231,0.25); border-radius:4px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; }
.cilbl { font-size:11px; color:var(--accent-light); margin-bottom:3px; letter-spacing:0.08em; opacity:0.7; }
.cival { font-size:14px; font-weight:500; color:#fff; }

footer { background:#000; border-top:1px solid #111; }
.fi { max-width:1100px; margin:0 auto; padding:48px 2rem 32px; display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; }
.fb > p { font-size:13px; color:#555; margin-top:16px; line-height:1.6; max-width:280px; }
.facc { width:32px; height:3px; background:var(--accent); border-radius:2px; margin-top:10px; }
.fc h5 { font-size:11px; font-weight:600; margin-bottom:16px; color:var(--accent-light); letter-spacing:0.1em; opacity:0.7; }
.fc ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.fc ul span, .fc ul a { font-size:14px; color:#666; text-decoration:none; cursor:pointer; transition:color 0.2s; }
.fc ul span:hover, .fc ul a:hover { color:var(--accent-light); }
.fbot { max-width:1100px; margin:0 auto; padding:20px 2rem; border-top:1px solid #111; display:flex; justify-content:space-between; align-items:center; }
.fbot p { font-size:12px; color:#888; }

/* ─── SERVICE PAGES ─── */
.sp-hero { background:#000; border-bottom:1px solid #1a1a1a; padding:64px 2rem 56px; position:relative; overflow:hidden; }
.sp-hero::before { content:''; position:absolute; top:-160px; left:50%; transform:translateX(-50%); width:800px; height:460px; background:radial-gradient(ellipse, rgba(108,92,231,0.16) 0%, transparent 70%); pointer-events:none; z-index:0; }
.sp-hero::after { content:''; position:absolute; bottom:-110px; right:4%; width:360px; height:280px; background:radial-gradient(ellipse, rgba(255,182,72,0.1) 0%, transparent 70%); pointer-events:none; z-index:0; }
.sp-hero-in { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.bc { font-size:12px; color:#555; margin-bottom:20px; display:flex; align-items:center; gap:8px; }
.bc a, .bc span { cursor:pointer; color:#777; text-decoration:none; transition:color 0.2s; }
.bc a:hover, .bc span:hover { color:var(--accent-light); }
.bc .sep { color:#333; }
.sp-hero h1 { font-size:clamp(2.1rem, 3.6vw, 3.2rem); font-weight:600; color:#fff; line-height:1.1; margin-bottom:16px; }
.sp-hero > div > p { font-size:16px; color:#999; max-width:580px; line-height:1.7; margin-bottom:32px; }
.sp-hero-btns { display:flex; gap:12px; flex-wrap:wrap; }
.sp-meta { display:flex; gap:24px; flex-wrap:wrap; margin-top:40px; border-top:1px solid #1a1a1a; padding-top:32px; }
.sm-item { display:flex; flex-direction:column; gap:4px; }
.sm-lbl { font-size:11px; color:#555; letter-spacing:0.08em; }
.sm-val { font-size:14px; font-weight:700; color:var(--accent-light); }
.sp-body { max-width:1100px; margin:0 auto; padding:64px 2rem; }
.sp2col { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; margin-bottom:64px; }
.spblock h2 { font-size:26px; font-weight:700; line-height:1.25; margin-bottom:16px; min-height:65px; }
.spblock p { font-size:15px; color:#555; line-height:1.7; margin-bottom:12px; }
.spblock ul { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:4px; }
.spblock ul li { font-size:14px; color:#555; display:flex; gap:10px; align-items:flex-start; line-height:1.5; }
.spblock ul li::before { content:''; width:6px; height:6px; background:var(--accent); border-radius:50%; flex-shrink:0; margin-top:6px; }
.proch { display:grid; grid-template-columns:repeat(auto-fit, minmax(190px, 1fr)); gap:18px; }
.proch-item { background:#fff; border:0.5px solid #e5e5e5; border-radius:12px; padding:24px 20px; transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.proch-item:hover { border-color:var(--accent); transform:translateY(-3px); box-shadow:0 12px 32px rgba(108,92,231,0.1); }
.proch-num { width:36px; height:36px; border-radius:50%; background:var(--accent); color:#fff; font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-family:var(--font-display); }
.proch-item h4 { font-size:15px; font-weight:700; color:#111; margin-bottom:8px; }
.proch-item p { font-size:13px; color:#666; line-height:1.6; }
.pricing-sec { background:#000; }
.pricing-in { max-width:1100px; margin:0 auto; padding:64px 2rem; }
.pricing-in .slbl { color:var(--accent-light); }
.pricing-in .stit { color:#fff; }
.pricing-in .ssub { color:#777; }
.spfoot { background:#000; padding:32px 2rem; text-align:center; border-top:1px solid #1a1a1a; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ─── BOOKING ─── */
.book-wrap { max-width:760px; margin:0 auto; padding:80px 2rem 64px; }
.book-card { background:#fff; border:0.5px solid #e5e5e5; border-radius:10px; padding:36px; }
.book-2col { display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-bottom:32px; }
.bf { display:flex; flex-direction:column; gap:12px; }
.bf2col { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.bf input, .bf select { width:100%; padding:12px 14px; border:1px solid #e5e5e5; border-radius:4px; font-size:14px; font-family:inherit; outline:none; color:#111; transition:border-color 0.2s; }
.bf input:focus, .bf select:focus { border-color:var(--accent); }
.bf input::placeholder { color:#aaa; }
.bf button { background:var(--accent); color:#fff; border:none; padding:14px; border-radius:100px; font-size:15px; font-weight:700; cursor:pointer; font-family:inherit; transition:background 0.2s, transform 0.2s, box-shadow 0.2s; }
.bf button:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 10px 26px rgba(108,92,231,0.3); }
.chk-item { font-size:14px; color:#555; display:flex; gap:10px; align-items:flex-start; }
.chk-icon { color:var(--accent); font-weight:700; flex-shrink:0; }
.meta-item { font-size:14px; color:#555; display:flex; gap:10px; align-items:center; }

/* ─── ENHANCED SERVICE PAGES ─── */
.quote-inline { background:#000; border-top:1px solid #151515; }
.quote-box { max-width:1100px; margin:0 auto; padding:44px 2rem 56px; display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start; }
.quote-box h3 { font-size:28px; color:#fff; margin-bottom:12px; }
.quote-box > div > p { font-size:15px; color:#8c8c8c; line-height:1.7; }
.quote-note { display:flex; flex-direction:column; gap:10px; margin-top:18px; }
.quote-inline .bf input, .quote-inline .bf select, .quote-inline .bf textarea { background:#0d0d0d; color:#fff; border:1px solid #2a2a2a; }
.quote-inline .bf textarea { min-height:96px; border-radius:4px; padding:12px 14px; font-family:inherit; resize:vertical; }
.quote-inline .bf button { background:var(--accent); color:#fff; border:none; padding:14px; border-radius:100px; font-weight:700; cursor:pointer; transition:background 0.2s, transform 0.2s, box-shadow 0.2s; }
.quote-inline .bf button:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 10px 26px rgba(108,92,231,0.3); }
.service-fields, .service-fields.full { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.service-fields.full { grid-template-columns:1fr; }
.sm-socials { display:flex; flex-wrap:wrap; gap:8px; }
.social-chip { display:inline-flex; align-items:center; gap:7px; background:rgba(108,92,231,0.10); border:1px solid rgba(108,92,231,0.22); color:#fff; padding:7px 10px; border-radius:999px; font-size:12px; }
.social-chip img { width:14px; height:14px; filter: invert(76%) sepia(25%) saturate(1548%) hue-rotate(210deg) brightness(104%) contrast(100%); }
.form-hint { font-size:12px; color:#666; margin-top:-2px; }

/* ─── HERO ORB ─── */
.hero-orb-wrap { display:flex; align-items:center; justify-content:center; }
.hero-orb-svg { width:100%; max-width:480px; height:auto; }

/* ─── SERVICE CARDS v2 ─── */
.sgrid2 { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:14px; align-items:stretch; }
.scard2 { background:#fff; border:0.5px solid #e5e5e5; border-radius:12px; padding:28px 22px 24px; cursor:pointer; transition:border-color 0.2s, transform 0.22s, box-shadow 0.22s; display:flex; flex-direction:column; height:100%; user-select:none; }
.scard2:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 16px 40px rgba(108,92,231,0.12); }
.scard2:hover .scard2-link { gap:8px; }
.scard2-ico { width:48px; height:48px; background:var(--accent-bg); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.scard2-num { font-size:11px; font-weight:700; color:var(--accent); letter-spacing:0.12em; margin-bottom:8px; }
.scard2 h3 { font-size:16px; font-weight:700; color:#111; margin-bottom:10px; line-height:1.3; }
.scard2 p { font-size:13px; color:#666; line-height:1.65; margin-bottom:16px; flex:1; min-height:0; }
.scard2-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.scard2-tags span { background:var(--accent-bg); color:var(--accent-dark); font-size:11px; padding:3px 9px; border-radius:100px; font-weight:500; }
.scard2-link { font-size:12px; font-weight:700; color:var(--accent); margin-top:auto; display:flex; align-items:center; gap:4px; transition:gap 0.2s; }

/* ─── CONSULTORÍA HERO ─── */
.cons-hero { background:#000; border:1px solid rgba(108,92,231,0.3); border-radius:14px; padding:48px 48px 44px; cursor:pointer; transition:border-color 0.2s, box-shadow 0.2s; display:grid; grid-template-columns:1fr 380px; gap:48px; align-items:center; }
.cons-hero:hover { border-color:var(--accent); box-shadow:0 20px 60px rgba(108,92,231,0.2); }
.cons-badge { display:inline-block; border:1px solid rgba(108,92,231,0.4); color:var(--accent-light); font-size:10px; font-weight:700; padding:5px 14px; border-radius:100px; margin-bottom:20px; letter-spacing:0.1em; background:rgba(108,92,231,0.1); }
.cons-hero h3 { font-size:28px; font-weight:700; color:#fff; margin-bottom:14px; line-height:1.2; }
.cons-hero > div > p { font-size:15px; color:#888; line-height:1.75; margin-bottom:28px; max-width:500px; }
.cons-pillars { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:32px; }
.cons-pill { font-size:13px; color:#aaa; display:flex; gap:8px; align-items:flex-start; }
.cons-pill span { color:var(--accent-light); font-weight:700; flex-shrink:0; }
.cons-cta { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.cons-hero-right { display:flex; align-items:center; justify-content:center; }

/* ─── WHY CHOOSE US ─── */
.why-pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:0; }
.why-pill { background:#fff; border:0.5px solid #e5e5e5; border-radius:12px; padding:28px 22px; transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.why-pill:hover { border-color:var(--accent); transform:translateY(-3px); box-shadow:0 12px 32px rgba(108,92,231,0.1); }
.why-pill-icon { font-size:26px; margin-bottom:14px; }
.why-pill h4 { font-size:15px; font-weight:700; margin-bottom:8px; color:#111; }
.why-pill p { font-size:13px; color:#666; line-height:1.6; }
.press-band { background:#f9f8ff; border-top:0.5px solid #e8e5ff; border-bottom:0.5px solid #e8e5ff; margin-top:48px; }
.press-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.press-card { background:#fff; border:0.5px solid #e5e5e5; border-radius:10px; padding:24px 22px; transition:border-color 0.2s, box-shadow 0.2s; }
.press-card:hover { border-color:var(--accent); box-shadow:0 8px 28px rgba(108,92,231,0.1); }
.press-card-accent { background:#000; border-color:rgba(108,92,231,0.3); }
.press-card-accent:hover { border-color:var(--accent-light); }
.press-source { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.press-logo { font-size:16px; font-weight:800; color:#111; letter-spacing:-0.02em; }
.press-card-accent .press-logo { color:#fff; }
.press-region { font-size:10px; font-weight:600; color:var(--accent); background:var(--accent-bg); padding:3px 8px; border-radius:100px; letter-spacing:0.06em; }
.press-card-accent .press-region { background:rgba(108,92,231,0.2); color:var(--accent-light); }
.press-quote { font-size:14px; color:#444; line-height:1.65; font-style:italic; margin:0 0 14px 0; border:none; padding:0; quotes:none; }
.press-card-accent .press-quote { color:#bbb; }
.press-meta { font-size:11px; color:#aaa; font-weight:500; letter-spacing:0.04em; }
.press-card-accent .press-meta { color:#666; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .sgrid2 { grid-template-columns:repeat(2,1fr); }
  .cons-hero { grid-template-columns:1fr; }
  .cons-hero-right { display:none; }
  .platforms-grid, .why-pillars { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px) {
  /* Nav hamburger */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    flex-direction: column;
    padding: 8px 0 12px;
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; border-bottom: 1px solid #111; }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links a, .nav-links span { display: block; padding: 12px 2rem; font-size: 14px; }
  .nav-links .nav-cta { margin: 8px 2rem 0; display: block; text-align: center; padding: 10px 2rem; border-radius: 100px; }
  .has-drop .nav-drop { position: static; display: block; background: transparent; border: none; padding: 0 0 4px 2rem; margin: 0; border-radius: 0; min-width: unset; box-shadow: none; }
  .has-drop .nav-drop a, .has-drop .nav-drop span { padding: 8px 0; font-size: 13px; color: #666; }
  .has-drop .nav-drop a:hover, .has-drop .nav-drop span:hover { background: transparent; }

  /* Layout */
  .platforms-grid { grid-template-columns:1fr 1fr; }
  .pstep { grid-template-columns:48px 1fr; }
  .pstep-dl-grid { grid-template-columns:1fr; }
  .why-pillars { grid-template-columns:1fr 1fr; }
  .press-grid { grid-template-columns:1fr; }
  .hv-top { grid-template-columns:1fr; gap:16px; padding:24px 20px 16px; }
  .hv-divider-v { display:none; }
  .hv-stat { text-align:left; padding:0; border-bottom:1px solid #222; padding-bottom:12px; }
  .hv-stat:last-child { border-bottom:none; padding-bottom:0; }
  .hero-stats { gap:16px; }
  .hstat-div { display:none; }
  .hv-stat-num { font-size:28px; }
  .sgrid2 { grid-template-columns:1fr 1fr; }
  .cons-hero { padding:32px 24px; }
  .cons-pillars { grid-template-columns:1fr; }
  .hero { grid-template-columns:1fr; gap:40px; padding:60px 1.5rem; }
  .hero h1 { font-size:34px; }
  .sgrid, .wgrid, .cin, .fi, .sp2col, .book-2col, .bf2col { grid-template-columns:1fr !important; }
  .scard.feat { grid-column:span 1; }
  .feat-in { grid-template-columns:1fr; gap:16px; }
  .proc { grid-template-columns:1fr 1fr; gap:28px; }
  .proc::before { display:none; }
  .fr2 { grid-template-columns:1fr; }
  .stit { font-size:26px; }
  .sp-hero h1 { font-size:30px; }
  .quote-box, .service-fields { grid-template-columns:1fr !important; }
  .fbot, .spfoot { padding-bottom:76px; }
}
