/* ══════════════════════════════════════════════════
   smarttweb · style.css
   Design tokens → Reset → Utilities → Components
   NOTE: .wa-fab is THE ONLY GREEN ELEMENT.
         All other WA buttons use --blue-btn.
══════════════════════════════════════════════════ */

/* ── Design tokens: Dark (default) ── */
:root {
  --bg:        #0b0f17;
  --bg-2:      #0d1320;
  --bg-card:   #121826;
  --bg-hover:  #16203a;
  --ink:       #eef1f7;
  --ink-2:     #9aa3b8;
  --ink-3:     #5e6878;
  --line:      rgba(255,255,255,.07);
  --line-hi:   rgba(255,255,255,.13);
  --blue:      #4f8be8;
  --blue-btn:  #244c8f;
  --blue-hi:   #2d5ca8;
  --blue-glow: rgba(79,139,232,.12);
  --wa-green:  #25d366;    /* ONLY .wa-fab uses this */
  --wa-dark:   #128c3e;    /* ONLY .wa-fab:hover */
  --radius:    13px;
  --max:       1060px;
  --fh:        "Sora", system-ui, sans-serif;
  --fb:        "Inter", system-ui, sans-serif;
  --hdr-bg:    rgba(11,15,23,.92);
}

/* ── Light mode ── */
[data-theme="light"] {
  --bg:        #f4f6fb;
  --bg-2:      #edf0f7;
  --bg-card:   #ffffff;
  --bg-hover:  #e8ecf5;
  --ink:       #0d1320;
  --ink-2:     #3d4963;
  --ink-3:     #7a849a;
  --line:      rgba(0,0,0,.09);
  --line-hi:   rgba(0,0,0,.18);
  --blue-glow: rgba(79,139,232,.07);
  --hdr-bg:    rgba(244,246,251,.94);
}
/* El telefono se mantiene OSCURO (grafito) en AMBOS temas, para que siempre se vea bien. */
[data-theme="light"] .phone {
  box-shadow: 0 0 0 8px #1c1f27, 0 26px 55px rgba(0,0,0,.28);
}

/* ── Reset ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility }
body { font-family:var(--fb); background:var(--bg); color:var(--ink); line-height:1.65; overflow-x:hidden; transition:background .25s,color .25s }
a { color:inherit; text-decoration:none }
img { max-width:100%; display:block }
h1,h2,h3,.logo-tx { font-family:var(--fh); font-weight:700; letter-spacing:-.4px }
button { font-family:var(--fb); cursor:pointer; border:none; background:none }
table { border-collapse:collapse; width:100% }
ul { list-style:none }

/* ── A11y ── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0 }
:focus-visible { outline:2px solid var(--blue); outline-offset:3px; border-radius:4px }
.skip { position:absolute; left:-9999px; top:8px; background:var(--blue); color:#fff; padding:8px 16px; border-radius:6px; font-weight:600; z-index:9999; font-size:14px }
.skip:focus { left:8px }

/* ── Utilities ── */
.wrap { max-width:var(--max); margin:0 auto; padding:0 6vw }
.eyebrow { font-size:11px; letter-spacing:4px; text-transform:uppercase; color:var(--ink-3); font-weight:600; font-family:var(--fb); margin-bottom:14px }
.sh   { font-size:clamp(26px,4vw,42px);  color:var(--ink); margin-bottom:16px; line-height:1.15 }
.sh-lg{ font-size:clamp(32px,5.5vw,54px);color:var(--ink); margin-bottom:20px; line-height:1.08 }
.lead { font-size:clamp(16px,2vw,18px); color:var(--ink-2); line-height:1.8; max-width:620px }
.rule { height:1px; background:var(--line) }
.sp   { padding:88px 6vw }
.sp-sm{ padding:64px 6vw }
.bg-alt { background:var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line) }

/* Scroll reveal — a prueba de fallos: visible por defecto.
   El estado oculto solo aplica cuando el JS confirma que puede revelar (html.js-reveal). */
.reveal { transition:opacity .65s ease,transform .65s ease }
html.js-reveal .reveal:not(.in) { opacity:0; transform:translateY(22px) }
.reveal.in { opacity:1; transform:none }

/* ═══════════════════════════════════════
   BUTTONS
   Only .wa-fab gets green.
   .btn-wa = blue (inline WA buttons).
═══════════════════════════════════════ */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--blue-btn); color:#fff;
  font-weight:600; font-size:15px;
  padding:13px 26px; border-radius:10px;
  transition:background .2s,transform .18s,box-shadow .2s;
  white-space:nowrap; border:none;
}
.btn-primary:hover { background:var(--blue-hi); transform:translateY(-2px); box-shadow:0 10px 28px rgba(36,76,143,.4) }
.btn-primary:active { transform:translateY(0) }
.btn-primary.lg { font-size:17px; padding:16px 32px; border-radius:12px }

.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; border:1.5px solid var(--line-hi);
  color:var(--ink-2); font-weight:500; font-size:15px;
  padding:13px 26px; border-radius:10px;
  transition:border-color .2s,color .2s;
}
.btn-ghost:hover { border-color:rgba(79,139,232,.5); color:var(--ink) }
.btn-ghost.lg { font-size:17px; padding:15px 30px; border-radius:12px }

/* WhatsApp buttons in-page = BLUE, not green */
.btn-wa {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--blue-btn); color:#fff;
  font-weight:600; font-size:15px;
  padding:13px 26px; border-radius:10px;
  transition:background .2s,transform .18s,box-shadow .2s;
  white-space:nowrap;
}
.btn-wa:hover { background:var(--blue-hi); transform:translateY(-2px); box-shadow:0 10px 28px rgba(36,76,143,.4) }
.btn-wa:active { transform:translateY(0) }
.btn-wa.lg { font-size:17px; padding:16px 32px; border-radius:12px }
.btn-wa.sm { font-size:13px; padding:9px 18px; border-radius:8px }
.btn-wa.full { width:100%; justify-content:center }

/* ═══════════════════════════════════════
   FLOATING WA FAB — THE ONLY GREEN
═══════════════════════════════════════ */
.wa-fab {
  position:fixed; bottom:26px; right:26px; z-index:500;
  width:56px; height:56px; border-radius:50%;
  background:var(--wa-green); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,.42);
  transition:background .2s,transform .2s,box-shadow .2s;
}
.wa-fab:hover { background:var(--wa-dark); transform:scale(1.09); box-shadow:0 10px 32px rgba(37,211,102,.46) }
.wa-fab svg { width:27px; height:27px }
.wa-fab::before {
  content:attr(data-tip);
  position:absolute; right:calc(100% + 11px);
  background:var(--bg-card); color:var(--ink);
  font-size:13px; font-weight:500; font-family:var(--fb);
  padding:6px 12px; border-radius:6px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .2s;
  border:1px solid var(--line);
}
.wa-fab:hover::before { opacity:1 }
@media(max-width:500px) { .wa-fab { bottom:18px; right:18px; width:50px; height:50px } .wa-fab svg { width:24px;height:24px } }

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
header {
  position:sticky; top:0; z-index:200;
  background:var(--hdr-bg); backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line); transition:background .25s;
}
.nav-row { display:flex; align-items:center; justify-content:space-between; padding:15px 6vw; gap:14px }
.logo-tx { font-size:20px; font-weight:700; color:var(--ink); font-family:var(--fh); letter-spacing:-.5px; flex-shrink:0 }
.logo-tx .acc { color:var(--blue) }
.nav-links { display:flex; align-items:center; gap:2px; list-style:none; flex:1; justify-content:center }
.nav-links a { font-size:13.5px; font-weight:500; color:var(--ink-2); padding:7px 12px; border-radius:7px; transition:color .2s,background .2s }
.nav-links a:hover { color:var(--ink); background:rgba(79,139,232,.08) }
.nav-links a[aria-current="page"] { color:var(--blue); background:rgba(79,139,232,.1) }
.nav-right { display:flex; align-items:center; gap:8px; flex-shrink:0 }
.theme-btn { background:transparent; border:1.5px solid var(--line); border-radius:8px; padding:7px 10px; font-size:15px; line-height:1; color:var(--ink-2); transition:border-color .2s,color .2s }
.theme-btn:hover { border-color:var(--line-hi); color:var(--ink) }
.lang-btn { background:transparent; border:1.5px solid var(--line); border-radius:7px; padding:7px 13px; font-size:13px; font-weight:600; color:var(--ink-2); transition:border-color .2s,color .2s }
.lang-btn:hover { border-color:var(--line-hi); color:var(--ink) }
/* Nav WA = blue */
.nav-wa { display:inline-flex; align-items:center; gap:7px; background:var(--blue-btn); color:#fff; font-weight:600; font-size:13px; padding:8px 16px; border-radius:8px; transition:background .2s }
.nav-wa:hover { background:var(--blue-hi) }
.ham { display:none; flex-direction:column; gap:5px; width:36px; height:36px; padding:6px }
.ham span { display:block; height:1.5px; background:var(--ink); border-radius:2px; transition:transform .25s,opacity .25s }
@media(max-width:860px) {
  .nav-links,.nav-right .nav-wa { display:none }
  .nav-row { padding-top:8px; padding-bottom:8px }
  /* Áreas táctiles mínimas de 44×44 (las barras del icono conservan su tamaño) */
  .ham { display:flex; width:44px; height:44px; padding:0 10px; justify-content:center }
  .theme-btn,.lang-btn { min-width:44px; min-height:44px }
}

/* Mobile menu */
.mob-menu { display:none; position:fixed; inset:0; top:60px; background:var(--hdr-bg); backdrop-filter:blur(20px); z-index:190; flex-direction:column; align-items:center; justify-content:center; gap:6px }
.mob-menu.open { display:flex }
.mob-menu a { font-size:20px; font-weight:600; color:var(--ink-2); padding:12px 28px; border-radius:10px; font-family:var(--fh); transition:color .2s }
.mob-menu a:hover,.mob-menu a[aria-current="page"] { color:var(--ink) }
.mob-menu .mob-wa { margin-top:24px; background:var(--blue-btn); color:#fff; font-weight:600; font-size:17px; padding:14px 32px; border-radius:12px; display:inline-flex; align-items:center; gap:9px; transition:background .2s }
.mob-menu .mob-wa:hover { background:var(--blue-hi) }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { border-top:1px solid var(--line); padding:32px 6vw; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center }
.ft-logo { font-size:18px; font-weight:700; font-family:var(--fh); color:var(--ink) }
.ft-logo .acc { color:var(--blue) }
.ft-nav { display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:center; font-size:14px; color:var(--ink-3) }
.ft-nav a { color:var(--ink-2); transition:color .2s }
.ft-nav a:hover { color:var(--ink) }
.ft-copy { font-size:13px; color:var(--ink-3) }
.ft-legal { font-size:12px; color:var(--ink-3); display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:center }
.ft-legal a { color:var(--ink-3); transition:color .2s }
.ft-legal a:hover { color:var(--ink-2) }

/* ── Cookie consent banner ── */
.cookie-banner { position:fixed; bottom:0; left:0; right:0; z-index:9999; background:var(--bg-card); border-top:1px solid var(--line); padding:16px 6vw; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; box-shadow:0 -4px 24px rgba(0,0,0,.15) }
.cookie-banner p { margin:0; flex:1; min-width:200px; font-size:13px; color:var(--ink-2); line-height:1.6 }
.cookie-banner a { color:var(--blue); text-decoration:underline }
.cookie-banner-btns { display:flex; gap:8px; flex-shrink:0 }
.cookie-accept { background:var(--blue-btn); color:#fff; border:none; padding:8px 18px; border-radius:8px; font-size:13px; font-weight:600; cursor:pointer; transition:background .2s }
.cookie-accept:hover { background:var(--blue-btn-hi) }
.cookie-decline { background:transparent; color:var(--ink-3); border:1px solid var(--line); padding:8px 18px; border-radius:8px; font-size:13px; font-weight:600; cursor:pointer; transition:color .2s }
.cookie-decline:hover { color:var(--ink) }

/* ── Legal pages prose ── */
.legal-prose { max-width:740px; margin:0 auto }
.legal-prose h2 { font-family:var(--fh); font-size:clamp(18px,2.5vw,22px); color:var(--ink); margin:40px 0 12px; padding-bottom:8px; border-bottom:1px solid var(--line) }
.legal-prose h3 { font-family:var(--fh); font-size:16px; color:var(--ink); margin:24px 0 8px }
.legal-prose p { font-size:15px; color:var(--ink-2); line-height:1.85; margin-bottom:14px }
.legal-prose ul { padding-left:20px; margin:10px 0 14px }
.legal-prose li { font-size:15px; color:var(--ink-2); line-height:1.75; margin-bottom:6px }
.legal-prose a { color:var(--blue) }
.legal-prose strong { color:var(--ink); font-weight:600 }
.legal-updated { display:inline-block; font-size:12px; color:var(--ink-3); background:var(--bg-card); border:1px solid var(--line); border-radius:6px; padding:4px 12px; margin-bottom:32px }
.cookie-revoke-btn { display:inline-flex; align-items:center; gap:8px; background:var(--bg-card); border:1px solid var(--line); color:var(--ink-2); font-size:14px; font-weight:600; padding:10px 20px; border-radius:8px; cursor:pointer; transition:border-color .2s,color .2s; margin-top:8px }
.cookie-revoke-btn:hover { border-color:var(--blue); color:var(--ink) }

/* ═══════════════════════════════════════
   PAGE HERO (generic — used on inner pages)
═══════════════════════════════════════ */
.page-hero { padding:72px 6vw 64px; border-bottom:1px solid var(--line) }
.page-hero-in { max-width:var(--max); margin:0 auto }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--ink-3); margin-bottom:24px }
.breadcrumb a { color:var(--ink-3); transition:color .2s }
.breadcrumb a:hover { color:var(--blue) }
.breadcrumb span { color:var(--ink-3) }
.page-hero h1 { font-size:clamp(36px,6vw,64px); line-height:1.05; letter-spacing:-2px; color:var(--ink); margin-bottom:16px }
.page-hero .lead { margin-bottom:32px }
.hero-actions { display:flex; align-items:center; gap:14px; flex-wrap:wrap }
@media(max-width:500px) { .hero-actions { flex-direction:column; align-items:flex-start } }

/* ═══════════════════════════════════════
   HOME HERO (animated)
═══════════════════════════════════════ */
.hero { position:relative; overflow:hidden; padding:72px 6vw 84px; min-height:88vh; display:flex; align-items:center }
.cursor-glow { position:absolute; inset:0; z-index:0; pointer-events:none; background:radial-gradient(700px circle at 50% 40%,var(--blue-glow),transparent 65%); transition:background .1s ease }
.hero-grid { position:relative; z-index:1; max-width:var(--max); margin:0 auto; width:100%; display:grid; grid-template-columns:1.1fr .9fr; gap:52px; align-items:center }
@media(max-width:860px) { .hero-grid { grid-template-columns:1fr } }

/* Hero entrance */
/* Fail-safe: el estado oculto vive en el keyframe (fill backwards), no en la base.
   Si la animación no corre, el contenido queda visible. */
.fi  { animation:fi .85s ease .25s backwards }
.fi2 { animation:fi .85s ease .5s  backwards }
.fi3 { animation:fi .85s ease .75s backwards }
@keyframes fi { from { opacity:0 } to { opacity:1 } }
.hero-copy .eyebrow { margin-bottom:20px }
.hero h1 { font-size:clamp(40px,7.5vw,80px); line-height:1.03; letter-spacing:-2.5px; color:var(--ink) }
.h1-tw { display:block; color:var(--blue); min-height:1.1em }
.tw-cur { display:inline-block; border-right:2.5px solid var(--blue); padding-right:2px; margin-left:1px; animation:blink .8s step-end infinite }
@keyframes blink { 50% { border-color:transparent } }
.hero-sub { font-size:clamp(16px,2.2vw,19px); color:var(--ink-2); max-width:480px; margin:26px 0 38px; line-height:1.78 }

/* Phone mockup */
.hero-phone { display:flex; justify-content:center; align-items:center }
.phone { width:228px; height:466px; border-radius:40px; background:#15171d; border:1px solid rgba(255,255,255,.2); box-shadow:0 0 0 8px #1c1f27,0 30px 65px rgba(0,0,0,.6),inset 0 1px 0 rgba(255,255,255,.06); padding:9px; position:relative; transform:perspective(1100px) rotateY(-14deg) rotateX(4deg); animation:floaty 5.5s ease-in-out infinite; flex-shrink:0 }
@keyframes floaty { 0%,100% { transform:perspective(1100px) rotateY(-14deg) rotateX(4deg) translateY(0) } 50% { transform:perspective(1100px) rotateY(-14deg) rotateX(4deg) translateY(-18px) } }
.phone-notch { position:absolute; top:14px; left:50%; transform:translateX(-50%); width:90px; height:28px; background:#000; border-radius:20px; z-index:4 }
.phone-notch::after { content:''; position:absolute; right:9px; top:50%; transform:translateY(-50%); width:10px; height:10px; background:#1a1a1a; border-radius:50%; border:1px solid #2a2a2a }
.phone-screen { width:100%; height:100%; border-radius:32px; overflow:hidden; background:#0d1320; display:flex; flex-direction:column; padding:48px 14px 18px }
.ph-bar { position:absolute; top:16px; left:20px; right:20px; display:flex; justify-content:space-between; align-items:center; font-size:9px; font-weight:600; color:rgba(255,255,255,.4); z-index:3; pointer-events:none }
.ph-inner { flex:1; display:flex; flex-direction:column; justify-content:center; padding:8px 4px 0 }
.ph-logo { font-family:var(--fh); font-size:13px; font-weight:700; color:#eef1f7; letter-spacing:-.3px; margin-bottom:14px }
.ph-logo span { color:var(--blue) }
.ph-tag { font-size:8px; letter-spacing:2.5px; text-transform:uppercase; color:#5e6878; margin-bottom:8px }
.ph-h { font-family:var(--fh); font-size:11.5px; font-weight:700; color:#eef1f7; line-height:1.2; letter-spacing:-.3px; margin-bottom:4px }
.ph-tw-wrap { font-family:var(--fh); font-size:11.5px; font-weight:700; color:var(--blue); line-height:1.2; min-height:1.3em; margin-bottom:14px }
.ph-cur { display:inline-block; border-right:1.5px solid var(--blue); padding-right:1px; animation:blink .8s step-end infinite }
.ph-sub { font-size:9px; color:#5e6878; line-height:1.5; margin-bottom:18px }
.ph-btn { display:inline-flex; align-items:center; justify-content:center; gap:6px; background:var(--blue-btn); color:#fff; font-weight:700; font-size:10px; padding:9px 0; border-radius:8px; width:100% }
.ph-dots { display:flex; justify-content:center; gap:5px; padding-top:10px }
.ph-dots span { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.2) }
.ph-dots span:first-child { background:rgba(255,255,255,.55); width:14px; border-radius:3px }
@media(max-width:860px) { .hero-phone { padding-top:32px } }
@media(max-width:480px) { .hero-phone { display:none } }

/* ═══════════════════════════════════════
   HOME: Services grid
═══════════════════════════════════════ */
.serv-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-top:48px }
.serv-card { background:var(--bg-card); padding:36px 30px; transition:background .18s; display:flex; flex-direction:column }
.serv-card:hover { background:var(--bg-hover) }
.serv-n { font-size:11px; font-weight:700; letter-spacing:3px; color:var(--ink-3); margin-bottom:18px }
.serv-card h3 { font-size:19px; color:var(--ink); margin-bottom:10px }
.serv-card p { font-size:14px; color:var(--ink-2); line-height:1.7; margin-bottom:18px; flex:1 }
.serv-link { font-size:13px; color:var(--blue); font-weight:500; display:inline-flex; align-items:center; gap:5px; transition:gap .2s }
.serv-link:hover { gap:9px }
.serv-card .serv-price { flex:none; font-size:13px; font-weight:600; color:var(--blue); margin-bottom:16px; letter-spacing:.2px }
@media(max-width:580px) { .serv-grid { grid-template-columns:1fr } }

/* ═══════════════════════════════════════
   HOME / PORTFOLIO: card layout
═══════════════════════════════════════ */
.port-card { display:grid; grid-template-columns:1.15fr 1fr; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg-card); transition:border-color .3s }
.port-card:hover { border-color:rgba(79,139,232,.3) }
.port-img { position:relative; min-height:280px; background:#070d18; overflow:hidden }
.port-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s; filter:grayscale(15%) }
.port-card:hover .port-img img { transform:scale(1.04); filter:grayscale(0%) }
.port-body { padding:36px 32px; display:flex; flex-direction:column; justify-content:center }
.port-tag { display:inline-block; border:1px solid var(--line-hi); color:var(--ink-2); font-size:11px; font-weight:600; padding:5px 12px; border-radius:999px; margin-bottom:18px; letter-spacing:1px; text-transform:uppercase; align-self:flex-start }
.port-body h3 { font-size:clamp(20px,2.5vw,28px); color:var(--ink); margin-bottom:12px }
.port-body p { font-size:15px; color:var(--ink-2); margin-bottom:26px; line-height:1.75 }
.port-link { color:var(--blue); font-weight:600; font-size:14px; display:inline-flex; align-items:center; gap:6px; border-bottom:1px solid rgba(79,139,232,.3); padding-bottom:2px; align-self:flex-start; transition:color .2s,border-color .2s }
.port-link:hover { color:#9cc0ef; border-color:rgba(156,192,239,.5) }
@media(max-width:760px) { .port-card { grid-template-columns:1fr } .port-img { min-height:220px } .port-body { padding:26px } }

/* ═══════════════════════════════════════
   HOME: "¿Qué hace una web?" three-up
═══════════════════════════════════════ */
.ww-text { font-size:clamp(16px,2.1vw,19px); color:var(--ink-2); max-width:680px; line-height:1.85; margin-bottom:44px }
.ww-three { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:700px }
.ww-item { background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius); padding:22px 20px; display:flex; align-items:flex-start; gap:12px; transition:border-color .2s }
.ww-item:hover { border-color:rgba(79,139,232,.3) }
.ww-arrow { font-size:16px; color:var(--blue); flex-shrink:0; margin-top:1px }
.ww-item strong { font-size:15px; font-weight:600; color:var(--ink); display:block; margin-bottom:4px }
.ww-item p { font-size:13px; color:var(--ink-2); line-height:1.6 }
@media(max-width:560px) { .ww-three { grid-template-columns:1fr } }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.mq { overflow:hidden; -webkit-mask:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent); mask:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent) }
.mq-track { display:flex; gap:12px; width:max-content; animation:marq 28s linear infinite }
.mq:hover .mq-track { animation-play-state:paused }
@keyframes marq { to { transform:translateX(-50%) } }
.chip { border:1px solid var(--line-hi); color:var(--ink-2); font-size:13px; font-weight:500; padding:8px 18px; border-radius:999px; white-space:nowrap; transition:border-color .2s,color .2s; flex-shrink:0 }
.chip:hover { border-color:rgba(79,139,232,.4); color:var(--ink) }

/* ═══════════════════════════════════════
   CTA BLOCK (shared across pages)
═══════════════════════════════════════ */
.cta-block { text-align:center; padding:72px 6vw }
.cta-block h2 { font-size:clamp(26px,5vw,48px); color:var(--ink); margin-bottom:14px }
.cta-block .lead { margin:0 auto 32px }
.cta-actions { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap }

/* ═══════════════════════════════════════
   DISENO-WEB: Strategic cards (4-up)
═══════════════════════════════════════ */
.strat-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:48px }
.strat-card { background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius); padding:28px 26px; transition:border-color .2s,transform .2s }
.strat-card:hover { border-color:rgba(79,139,232,.3); transform:translateY(-3px) }
.strat-card h3 { font-size:17px; font-family:var(--fh); color:var(--ink); margin-bottom:8px }
.strat-card p { font-size:14px; color:var(--ink-2); line-height:1.7 }
@media(max-width:580px) { .strat-grid { grid-template-columns:1fr } }

/* ═══════════════════════════════════════
   DISENO-WEB: Comparison table
═══════════════════════════════════════ */
.cmp-wrap { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-top:36px; overflow-x:auto }
.cmp-table { min-width:540px }
.cmp-table th,.cmp-table td { padding:14px 18px; text-align:left; font-size:14px }
.cmp-table thead th { background:var(--bg-card); font-size:13px; font-weight:600; letter-spacing:.3px; border-bottom:1px solid var(--line); font-family:var(--fh) }
.cmp-table thead th:first-child { width:26%; color:var(--ink-3) }
.cmp-table thead th:nth-child(2) { color:var(--ink-2) }
.cmp-table thead th:nth-child(3) { color:var(--blue) }
.cmp-table tbody tr { border-bottom:1px solid var(--line) }
.cmp-table tbody tr:last-child { border-bottom:none }
.cmp-table tbody tr:nth-child(even) { background:rgba(255,255,255,.02) }
[data-theme="light"] .cmp-table tbody tr:nth-child(even) { background:rgba(0,0,0,.02) }
.cmp-table td:first-child { color:var(--ink-3); font-weight:500; font-size:13px }
.cmp-table td:nth-child(2) { color:var(--ink-2) }
.cmp-table td:nth-child(3) { color:var(--ink); font-weight:500 }
.cmp-yes { color:var(--blue); font-weight:700; margin-right:4px }

/* ═══════════════════════════════════════
   DISENO-WEB: Stats 4-up
═══════════════════════════════════════ */
.stats-intro { font-size:clamp(15px,2vw,17px); color:var(--ink-2); line-height:1.8; max-width:600px; margin-bottom:36px }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:36px }
.stat-card { background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius); padding:26px 20px; transition:border-color .2s }
.stat-card:hover { border-color:rgba(79,139,232,.3) }
.stat-n { display:block; font-family:var(--fh); font-size:clamp(28px,3.5vw,42px); font-weight:700; color:var(--blue); line-height:1; margin-bottom:12px }
.stat-card p { font-size:13px; color:var(--ink-2); line-height:1.6 }
.stat-card strong { color:var(--ink) }
.stat-cite { display:block; font-size:11px; color:var(--ink-3); margin-top:8px; letter-spacing:.5px }
.stats-close { font-size:clamp(15px,2vw,17px); color:var(--ink-2); max-width:600px; line-height:1.8 }
@media(max-width:680px) { .stats-grid { grid-template-columns:repeat(2,1fr) } }
@media(max-width:400px) { .stats-grid { grid-template-columns:1fr } }

/* ═══════════════════════════════════════
   DISENO-WEB: Process steps
═══════════════════════════════════════ */
.process-steps { display:flex; flex-direction:column; margin-top:40px }
.process-step { display:grid; grid-template-columns:48px 1fr; gap:16px; padding-bottom:28px }
.process-step:last-child { padding-bottom:0 }
.step-num { display:flex; flex-direction:column; align-items:center }
.step-circle { width:40px; height:40px; border-radius:50%; background:var(--bg-card); border:1.5px solid var(--blue); display:flex; align-items:center; justify-content:center; font-family:var(--fh); font-size:14px; font-weight:700; color:var(--blue); flex-shrink:0 }
.step-line { flex:1; width:1px; background:var(--line); margin:6px auto }
.process-step:last-child .step-line { display:none }
.step-body { padding-top:6px }
.step-body h3 { font-size:16px; font-family:var(--fh); color:var(--ink); margin-bottom:6px }
.step-body p { font-size:14px; color:var(--ink-2); line-height:1.7 }

/* ═══════════════════════════════════════
   SHARED: Why us grid
═══════════════════════════════════════ */
.whyus-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px }
.wu-item { background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px; transition:border-color .2s,transform .2s }
.wu-item:hover { border-color:rgba(79,139,232,.3); transform:translateY(-3px) }
.wu-item h3 { font-size:16px; font-family:var(--fh); color:var(--ink); margin-bottom:8px }
.wu-item p { font-size:14px; color:var(--ink-2); line-height:1.7 }
@media(max-width:720px) { .whyus-grid { grid-template-columns:1fr 1fr } }
@media(max-width:480px) { .whyus-grid { grid-template-columns:1fr } }

/* ═══════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════ */
.pr-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:start; margin-top:48px }
.pr-card { background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius); padding:32px 26px; display:flex; flex-direction:column; position:relative; transition:border-color .25s,transform .25s,box-shadow .25s }
.pr-card:hover { border-color:rgba(79,139,232,.3); transform:translateY(-4px); box-shadow:0 18px 48px rgba(0,0,0,.18) }
.pr-card.featured,.pr-card.pr-featured { border-color:rgba(79,139,232,.5); background:linear-gradient(160deg,var(--bg-card) 0%,rgba(79,139,232,.06) 100%) }
.pr-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--blue); color:#fff; font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:5px 14px; border-radius:999px; white-space:nowrap }
.pr-name { font-family:var(--fh); font-size:17px; font-weight:700; color:var(--ink); margin-bottom:6px }
.pr-tagline { font-size:13px; color:var(--ink-3); margin-bottom:24px }
.pr-price { margin-bottom:24px }
.pr-price .amount { font-family:var(--fh); font-size:clamp(36px,4vw,46px); font-weight:700; color:var(--ink); line-height:1 }
.pr-price .currency { font-size:16px; color:var(--ink-2); font-weight:500; margin-left:4px }
.pr-list { margin-bottom:28px; display:flex; flex-direction:column; gap:9px }
.pr-list li { font-size:14px; color:var(--ink-2); display:flex; align-items:flex-start; gap:9px; line-height:1.55 }
/* check duplicado eliminado: el icono SVG .pr-ck ya muestra el check */
.pr-card .btn-wa { width:100%; justify-content:center; margin-top:auto; font-size:14px; padding:12px }
.pr-note { margin-top:32px; font-size:13px; color:var(--ink-3); max-width:700px; line-height:1.7; border-top:1px solid var(--line); padding-top:20px }
.pr-note a { color:var(--blue) }
.pr-bridge { max-width:640px; margin:0 auto 44px; padding:18px 24px; background:var(--bg-card); border:1px solid var(--line); border-left:3px solid var(--blue); border-radius:var(--radius); font-size:15px; color:var(--ink-2); line-height:1.75 }
.pr-hl { color:var(--blue); font-weight:600 }
@media(max-width:780px) { .pr-grid { grid-template-columns:1fr } .pr-card.featured,.pr-card.pr-featured { margin-top:12px } }

/* ═══════════════════════════════════════
   PORTFOLIO PAGE: grid of cards
═══════════════════════════════════════ */
.port-grid { display:flex; flex-direction:column; gap:24px; margin-top:36px }
.port-coming { background:var(--bg-card); border:1px dashed var(--line-hi); border-radius:var(--radius); padding:44px; text-align:center }
.port-coming p { font-size:15px; color:var(--ink-3); line-height:1.7 }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-max { max-width:700px; margin:0 auto }
.faq-list { margin-top:40px }
.faq-item { border-bottom:1px solid var(--line) }
.faq-item:first-child { border-top:1px solid var(--line) }
.faq-btn { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 0; background:none; border:none; color:var(--ink); font-size:15px; font-weight:600; text-align:left; font-family:var(--fb); transition:color .2s }
.faq-btn:hover { color:var(--blue) }
.faq-btn[aria-expanded="true"] { color:var(--blue) }
.fq-ico { flex-shrink:0; width:20px; height:20px; border:1.5px solid var(--line-hi); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--ink-3); font-style:normal; transition:transform .25s,border-color .2s }
.faq-btn[aria-expanded="true"] .fq-ico { transform:rotate(45deg); border-color:var(--blue); color:var(--blue) }
.faq-ans { display:none; padding-bottom:20px; padding-right:36px; font-size:15px; color:var(--ink-2); line-height:1.75 }
.faq-ans.open { display:block }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:52px; align-items:start; margin-top:48px }
.c-info h2 { margin-bottom:12px }
.c-info p { font-size:15px; color:var(--ink-2); margin-bottom:14px; line-height:1.75 }
.c-info a { color:var(--blue); border-bottom:1px solid rgba(79,139,232,.3); transition:border-color .2s }
.c-info a:hover { border-color:var(--blue) }
.sw-form { display:flex; flex-direction:column; gap:12px }
.sw-form input,.sw-form select,.sw-form textarea { padding:13px 15px; background:var(--bg-card); border:1.5px solid var(--line); border-radius:8px; font-size:15px; font-family:var(--fb); color:var(--ink); width:100%; transition:border-color .2s; -webkit-appearance:none; appearance:none }
.sw-form select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e6878' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:38px }
.sw-form input:focus,.sw-form select:focus,.sw-form textarea:focus { outline:none; border-color:var(--blue) }
.sw-form textarea { resize:vertical; min-height:120px }
.sw-form .hp { display:none }
.sw-form option { background:var(--bg-card); color:var(--ink) }
.btn-send { background:var(--blue-btn); color:#fff; border:none; border-radius:8px; padding:13px 22px; font-size:15px; font-weight:600; font-family:var(--fb); cursor:pointer; transition:background .2s,transform .2s }
.btn-send:hover { background:var(--blue-hi); transform:translateY(-1px) }
.form-ok { display:none; background:rgba(79,139,232,.08); border:1px solid rgba(79,139,232,.25); color:var(--ink-2); padding:14px 18px; border-radius:8px; font-size:15px; font-weight:500 }
@media(max-width:760px) { .contact-grid { grid-template-columns:1fr; gap:40px } }

/* ═══════════════════════════════════════
   VS COMPARISON (two-column + circle)
═══════════════════════════════════════ */
.vs-wrap {
  display:grid; grid-template-columns:1fr 60px 1fr;
  align-items:stretch; border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden; margin-top:40px;
}
.vs-col { padding:32px 28px; background:var(--bg-card) }
.vs-col-bad { border-right:1px solid var(--line) }
.vs-center {
  display:flex; align-items:center; justify-content:center;
  background:var(--bg); border-right:1px solid var(--line); padding:16px 0;
}
.vs-circle {
  width:44px; height:44px; border-radius:50%;
  background:var(--blue-btn); color:#fff;
  font-family:var(--fh); font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.vs-label {
  font-size:10px; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--ink-3); font-weight:600; margin-bottom:10px; font-family:var(--fb);
}
.vs-title {
  font-family:var(--fh); font-size:clamp(16px,2vw,20px);
  color:var(--ink); margin-bottom:22px;
}
.vs-list { display:flex; flex-direction:column; gap:12px }
.vs-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--ink-2); line-height:1.5;
}
.vs-ico {
  flex-shrink:0; width:22px; height:22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-top:1px;
}
.vs-ico-bad  { background:rgba(239,68,68,.09);  color:#ef4444 }
.vs-ico-good { background:rgba(79,139,232,.12); color:var(--blue) }
.vs-ico svg  { width:12px; height:12px }
@media(max-width:680px) {
  .vs-wrap { grid-template-columns:1fr }
  .vs-col-bad { border-right:none; border-bottom:1px solid var(--line) }
  .vs-center { border-right:none; border-bottom:1px solid var(--line); flex-direction:row; gap:12px; padding:14px 28px; justify-content:flex-start }
}

/* ═══════════════════════════════════════
   ICON CIRCLES (for strat-card, wu-item)
═══════════════════════════════════════ */
.ic-circle {
  width:44px; height:44px; border-radius:12px;
  background:rgba(79,139,232,.1); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; flex-shrink:0;
}
.ic-circle svg { width:22px; height:22px }

/* ═══════════════════════════════════════
   DEVICE MOCKUP (portafolio)
═══════════════════════════════════════ */
.dev-scene {
  position:relative; max-width:680px; margin:48px auto 0;
  padding-bottom:60px; /* room for phone overlap */
}
/* Laptop */
.dev-laptop { position:relative; z-index:1 }
.dev-laptop-lid {
  background:#141924; border-radius:14px 14px 0 0;
  border:2px solid #252d40; padding:10px;
  box-shadow:0 0 0 1px rgba(255,255,255,.04), 0 20px 60px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
}
.dev-laptop-screen {
  background:#060c16; border-radius:6px; overflow:hidden; aspect-ratio:16/10;
  position:relative;
}
.dev-laptop-screen img {
  width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
}
.dev-laptop-screen-fb {
  position:absolute; inset:0; background:linear-gradient(145deg,#0d1320 0%,#121826 100%);
  display:flex; align-items:center; justify-content:center;
}
.dev-laptop-screen-fb span { font-family:var(--fh); font-size:22px; font-weight:700; color:rgba(79,139,232,.3) }
.dev-laptop-base {
  background:#101621; height:16px; border-radius:0 0 2px 2px;
  border:2px solid #252d40; border-top:none; position:relative;
}
.dev-laptop-base::after {
  content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:56px; height:4px; background:#252d40; border-radius:4px 4px 0 0;
}
.dev-laptop-stand {
  width:100%; height:6px; background:#1a2133; border-radius:0 0 8px 8px;
  margin-top:0; border:1px solid #252d40; border-top:none;
}
/* Phone */
.dev-phone {
  position:absolute; bottom:0; right:-16px; z-index:2; width:120px;
}
.dev-phone-frame {
  background:#0c1118; border-radius:22px;
  border:2px solid #252d40; padding:8px 6px;
  box-shadow:0 8px 36px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.04);
}
.dev-phone-notch {
  width:36px; height:9px; background:#000; border-radius:0 0 8px 8px;
  margin:0 auto 5px;
}
.dev-phone-screen {
  background:#060c16; border-radius:15px; overflow:hidden;
  aspect-ratio:9/19.5; position:relative;
}
.dev-phone-screen img {
  width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
}
.dev-phone-home { width:28px; height:4px; background:#252d40; border-radius:4px; margin:5px auto 0 }
/* Pantalla estilizada del teléfono — preview de CoverGlass ajustado al marco, sin recortes */
.dev-phone-ui { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:0 8px; text-align:center; background:radial-gradient(120% 80% at 50% 0%,#11272b 0%,#0a1016 72%) }
.dev-phone-brand { font-family:var(--fh); font-weight:700; font-size:8px; letter-spacing:1px; color:#dfeeec }
.dev-phone-brand span { color:#6fd0c5 }
.dev-phone-head { font-family:var(--fh); font-weight:700; font-size:11px; line-height:1.2; color:#f3faf8; letter-spacing:.2px }
.dev-phone-pill { font-family:var(--fb); font-size:7px; font-weight:600; color:#06281f; background:#6fd0c5; padding:3px 9px; border-radius:999px }
@media(max-width:600px) { .dev-phone-head { font-size:9px } .dev-phone-brand { font-size:7px } }
/* Port info block */
.port-info { max-width:680px; margin:32px auto 0 }
.port-info-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px }
.port-info-tag { border:1px solid var(--line-hi); color:var(--ink-3); font-size:11px; font-weight:600; padding:4px 12px; border-radius:999px; letter-spacing:.5px; text-transform:uppercase }
.port-info-title { font-family:var(--fh); font-size:clamp(22px,3vw,30px); color:var(--ink); margin-bottom:10px }
.port-info-desc { font-size:15px; color:var(--ink-2); line-height:1.75; margin-bottom:16px; max-width:580px }
.port-info-link { color:var(--blue); font-weight:600; font-size:14px; display:inline-flex; align-items:center; gap:6px; border-bottom:1px solid rgba(79,139,232,.3); padding-bottom:2px; transition:color .2s,border-color .2s }
.port-info-link:hover { color:#9cc0ef; border-color:rgba(156,192,239,.5) }
/* Coming soon (portafolio) */
.port-soon-card {
  border:1px dashed var(--line-hi); border-radius:var(--radius);
  padding:52px 40px; text-align:center; display:flex;
  flex-direction:column; align-items:center; gap:10px; margin-top:24px;
}
.port-soon-card p { font-size:14px; color:var(--ink-3) }
@media(max-width:600px) { .dev-phone { right:4px; width:96px } }
@media(max-width:480px) { .dev-phone { display:none } .dev-scene { padding-bottom:0 } }

/* ═══════════════════════════════════════
   PRICING CARDS (new markup)
═══════════════════════════════════════ */
.pr-head { margin-bottom:24px }
.pr-price { font-family:var(--fh); font-size:clamp(38px,4.5vw,52px); font-weight:700; color:var(--ink); line-height:1; margin:10px 0 12px }
.pr-currency { font-size:20px; font-weight:500; color:var(--ink-2); vertical-align:super; font-family:var(--fb) }
.pr-desc { font-size:13px; color:var(--ink-3); line-height:1.6 }
.pr-feats { display:flex; flex-direction:column; gap:9px; margin-bottom:28px; flex:1 }
.pr-feats li { font-size:14px; color:var(--ink-2); display:flex; align-items:flex-start; gap:9px; line-height:1.55 }
.pr-ck { color:var(--blue); flex-shrink:0; margin-top:2px; width:15px; height:15px }
.pr-ck svg { width:15px; height:15px; display:block }
.pr-btn { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:12px; border-radius:9px; background:var(--bg-hover); border:1.5px solid var(--line-hi); color:var(--ink-2); font-weight:600; font-size:14px; font-family:var(--fb); transition:border-color .2s,color .2s,background .2s; margin-top:auto }
.pr-btn:hover { border-color:rgba(79,139,232,.4); color:var(--ink); background:var(--bg-card) }
.pr-btn.featured-btn { background:var(--blue-btn); border-color:var(--blue-btn); color:#fff }
.pr-btn.featured-btn:hover { background:var(--blue-hi); border-color:var(--blue-hi) }

/* ═══════════════════════════════════════
   PORTFOLIO PAGE (new markup)
═══════════════════════════════════════ */
.port-img-wrap { position:relative; min-height:280px; background:#070d18; overflow:hidden; flex-shrink:0 }
.port-img-placeholder { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#0d1320 0%,#121826 100%) }
.port-img-icon { font-size:64px; opacity:.35 }
.port-overlay { position:absolute; inset:0; background:rgba(11,15,23,.7); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s }
.port-card:hover .port-overlay { opacity:1 }
.port-link-btn { background:var(--blue-btn); color:#fff; font-weight:600; font-size:15px; padding:12px 24px; border-radius:9px; transition:background .2s }
.port-link-btn:hover { background:var(--blue-hi) }
.port-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px }
.port-tag { border:1px solid var(--line-hi); color:var(--ink-3); font-size:11px; font-weight:600; padding:4px 11px; border-radius:999px; letter-spacing:.5px; text-transform:uppercase }
.port-title { font-size:clamp(20px,2.5vw,28px); color:var(--ink); margin-bottom:12px }
.port-desc { font-size:14px; color:var(--ink-2); margin-bottom:20px; line-height:1.75 }
.port-ext { color:var(--blue); font-weight:600; font-size:14px; display:inline-flex; align-items:center; border-bottom:1px solid rgba(79,139,232,.3); padding-bottom:2px; transition:color .2s,border-color .2s }
.port-ext:hover { color:#9cc0ef; border-color:rgba(156,192,239,.5) }
/* Tarjeta de cierre: borde punteado en color de acento, centrada */
.port-closing { grid-template-columns:1fr; border:1.5px dashed rgba(79,139,232,.55); background:transparent }
.port-closing:hover { border-color:rgba(79,139,232,.8) }
.port-closing-inner { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:14px; padding:48px 32px }
.port-closing-icon { color:var(--blue); line-height:0 }
.port-closing h3 { font-family:var(--fh); font-size:clamp(20px,2.5vw,26px); color:var(--ink) }
.port-closing p { font-size:15px; color:var(--ink-2); line-height:1.7; max-width:440px }
.port-closing .btn-wa { margin-top:6px }
/* "Coming soon" card */
.port-soon { border:1px dashed var(--line-hi) !important; display:flex !important; align-items:stretch }
.port-soon-inner { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:60px 40px; text-align:center; flex:1 }
.port-soon-icon { font-size:28px; color:var(--ink-3); opacity:.5 }
.port-soon-txt { font-family:var(--fh); font-size:18px; color:var(--ink-2); font-weight:600 }
.port-soon-sub { font-size:14px; color:var(--ink-3); margin-bottom:4px }
@media(max-width:760px) { .port-img-wrap { min-height:200px } .port-body { padding:26px } }

/* ═══════════════════════════════════════
   CONTACT PAGE (new markup)
═══════════════════════════════════════ */
.ct-layout { display:grid; grid-template-columns:1fr 1.15fr; gap:64px; align-items:start }
.ct-info { display:flex; flex-direction:column; gap:22px }
.ct-info .sh { margin-bottom:0 }
.ct-info p { font-size:15px; color:var(--ink-2); line-height:1.75 }
.ct-details { display:flex; flex-direction:column; gap:18px; margin-top:8px; border-top:1px solid var(--line); padding-top:28px }
.ct-row { display:flex; align-items:flex-start; gap:14px }
.ct-ico { width:36px; height:36px; flex-shrink:0; background:rgba(79,139,232,.1); color:var(--blue); border-radius:9px; display:flex; align-items:center; justify-content:center }
.ct-ico svg { width:18px; height:18px }
.ct-lbl { display:block; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--ink-3); font-weight:600; margin-bottom:3px }
.ct-row a,.ct-row span { font-size:15px; color:var(--ink-2) }
.ct-row a { transition:color .2s }
.ct-row a:hover { color:var(--blue) }
.ct-form-wrap { display:flex; flex-direction:column; gap:20px }
.ct-form-wrap .sh { margin-bottom:0 }
.form-group { display:flex; flex-direction:column; gap:6px }
.form-group label { font-size:13px; font-weight:600; color:var(--ink-2); letter-spacing:.2px }
.form-group input,
.form-group select,
.form-group textarea { padding:12px 15px; background:var(--bg-card); border:1.5px solid var(--line); border-radius:9px; font-size:15px; font-family:var(--fb); color:var(--ink); width:100%; transition:border-color .2s; -webkit-appearance:none; appearance:none }
.form-group select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e6878' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:38px }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline:none; border-color:var(--blue) }
.form-group textarea { resize:vertical; min-height:130px }
.form-group option { background:var(--bg-card); color:var(--ink) }
.form-submit { background:var(--blue-btn); color:#fff; border:none; border-radius:9px; padding:14px 22px; font-size:15px; font-weight:600; font-family:var(--fb); cursor:pointer; transition:background .2s,transform .2s; align-self:flex-start }
.form-submit:hover { background:var(--blue-hi); transform:translateY(-1px) }
.form-ok { background:rgba(79,139,232,.08); border:1px solid rgba(79,139,232,.25); border-radius:9px; padding:20px; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center }
.form-ok-ico { font-size:32px; color:var(--blue) }
.form-ok p { font-size:16px; color:var(--ink-2); font-weight:500 }
/* Extra-large WA button */
.btn-wa.xl { font-size:18px; padding:18px 36px; border-radius:13px }
@media(max-width:820px) { .ct-layout { grid-template-columns:1fr; gap:48px } }

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media(prefers-reduced-motion:reduce) {
  .fi,.fi2,.fi3 { animation:none; opacity:1 }
  .tw-cur,.ph-cur { animation:none; border-right-color:var(--blue) }
  .phone { animation:none; transform:perspective(1100px) rotateY(-14deg) rotateX(4deg) }
  .mq-track { animation:none }
  .reveal,html.js-reveal .reveal:not(.in) { opacity:1; transform:none; transition:none }
  html { scroll-behavior:auto }
  * { transition:none !important }
}
