/* ============================================================
   VQZ PUBLICIDAD — contact.css v1
   SEÑAL ROJA — Página de Contacto
   ============================================================ */

/* ══ HERO CONTACTO ══════════════════════════════════════════ */
#ct-hero {
  position: relative;
  background: var(--bg);
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}

/* Grid overlay */
.ct-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(227,0,0,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,0,0,.022) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Diagonal accent */
#ct-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 480px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(227,0,0,.035) 40%);
  pointer-events: none;
  z-index: 0;
}

/* ── DATA BAR ──────────────────────────────────────────── */
.ct-data-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--g1);
  background: var(--bg1);
  display: flex;
  align-items: center;
  font-family: var(--f-code);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  overflow: hidden;
  animation: ct-bar-in .6s .2s var(--ease) both;
}
@keyframes ct-bar-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.ct-data-bar-item {
  padding: 10px 20px;
  border-right: 1px solid var(--g1);
  color: var(--ink3);
  white-space: nowrap;
  flex-shrink: 0;
}
.ct-data-bar-item.active { color: var(--R); }
.ct-data-bar-item.active span { color: var(--ink3); }
.ct-data-bar-item b { color: var(--ink); font-weight: 600; }

/* ── HERO INNER ────────────────────────────────────────── */
.ct-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 56px) 80px;
  gap: 64px;
  align-items: center;
}

/* Left: heading */
.ct-hero-title {
  font-family: var(--f-head);
  font-size: clamp(58px, 9vw, 136px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 24px;
  animation: ct-fade-up .8s .45s var(--ease) both;
}
.ct-hero-title .row1 { display: block; color: var(--ink); }
.ct-hero-title .row2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--R);
}
.ct-hero-title .row3 { display: block; color: var(--R); }

.ct-hero-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  max-width: 480px;
  animation: ct-fade-up .8s .6s var(--ease) both;
}
.ct-hero-desc strong { color: var(--ink); }

/* ── QUICK CONTACT CHIPS ───────────────────────────────── */
.ct-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  animation: ct-fade-up .8s .75s var(--ease) both;
}

.ct-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg1);
  border: 1px solid var(--g1);
  border-left: 3px solid transparent;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.ct-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--R2);
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
}
.ct-chip:hover {
  border-left-color: var(--R);
  border-color: var(--R3);
  background: var(--bg2);
  transform: translateX(4px);
}
.ct-chip:hover::before { transform: translateX(0); }

.ct-chip--wa {
  border-left-color: #25D366;
  background: rgba(37, 211, 102, .04);
}
.ct-chip--wa:hover {
  border-left-color: #25D366;
  border-color: rgba(37, 211, 102, .3);
  background: rgba(37, 211, 102, .08);
}
.ct-chip--wa .ct-chip-label { color: #25D366; }

.ct-chip svg { flex-shrink: 0; color: var(--ink2); position: relative; z-index: 1; }
.ct-chip--wa svg { color: #25D366; }

.ct-chip-label {
  display: block;
  font-family: var(--f-code);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--R);
  position: relative;
  z-index: 1;
}
.ct-chip-val {
  display: block;
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.ct-chip-arr {
  margin-left: auto;
  font-size: 18px;
  color: var(--ink3);
  transition: transform .25s var(--ease), color .25s;
  position: relative;
  z-index: 1;
}
.ct-chip:hover .ct-chip-arr { transform: translateX(4px); color: var(--R); }

/* ── TRUST PANEL ───────────────────────────────────────── */
.ct-trust-panel {
  border: 1px solid var(--g1);
  background: var(--bg1);
  overflow: hidden;
  animation: ct-fade-right .9s .5s var(--ease) both;
}
.ct-trust-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--g1);
  background: var(--bg2);
}
.ct-trust-list { display: flex; flex-direction: column; }
.ct-trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  border-bottom: 1px solid var(--g1);
  transition: background .2s;
}
.ct-trust-item:last-of-type { border-bottom: none; }
.ct-trust-item:hover { background: var(--bg2); }
.ct-trust-n {
  padding: 18px 16px;
  border-right: 1px solid var(--g1);
  font-family: var(--f-code);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  transition: color .2s, background .2s;
}
.ct-trust-item:hover .ct-trust-n { color: var(--R); background: var(--R2); }
.ct-trust-body { padding: 18px 20px; }
.ct-trust-body h4 {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.ct-trust-body p { font-size: 12px; color: var(--ink2); line-height: 1.6; }

/* Counter inside trust panel */
.ct-trust-counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--g1);
  background: var(--bg);
}
.ct-tc-item {
  padding: 16px 12px;
  border-right: 1px solid var(--g1);
  text-align: center;
}
.ct-tc-item:last-child { border-right: none; }
.ct-tc-n {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.ct-tc-n span:last-child { color: var(--R); }
.ct-tc-l {
  font-family: var(--f-code);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin-top: 4px;
}

/* ══ URGENCY BAR ════════════════════════════════════════════ */
#ct-urgency {
  background: var(--R);
  padding: 14px clamp(20px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
#ct-urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 1px,
    transparent 1px,
    transparent 60px
  );
}
.ct-urgency-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.ct-urgency-pulse {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ct-pulse 1.5s ease-in-out infinite;
}
@keyframes ct-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  50%       { opacity: .7; box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.ct-urgency-txt {
  font-family: var(--f-code);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  flex: 1;
}
.ct-urgency-txt strong { color: #fff; }
#ct-urgency .btn {
  flex-shrink: 0;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 10px 24px;
}
#ct-urgency .btn:hover { background: rgba(0,0,0,.45); }

/* ══ MAIN CONTACT GRID ══════════════════════════════════════ */
#ct-main {
  padding: var(--sec) 0;
  background: var(--bg1);
}
.ct-main-w {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

/* ── FORM ────────────────────────────────────────────────── */
.ct-form-head { margin-bottom: 48px; }

.ct-form { display: flex; flex-direction: column; gap: 28px; }

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field { display: flex; flex-direction: column; gap: 8px; }

.ct-label {
  font-family: var(--f-code);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink3);
}
.ct-label span { color: var(--R); }

.ct-input-wrap { position: relative; }

.ct-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--g1);
  border-bottom: 2px solid var(--g1);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
}
.ct-input::placeholder { color: var(--ink3); }
.ct-input:focus {
  background: var(--bg3);
  border-color: var(--R3);
  border-bottom-color: var(--R);
}
.ct-input.error {
  border-color: var(--R);
  border-bottom-color: var(--R);
  background: var(--R4);
}
.ct-input.ok { border-bottom-color: #00E57A; }

/* Animated bottom line */
.ct-input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--R);
  transition: width .35s var(--ease);
  pointer-events: none;
}
.ct-input:focus ~ .ct-input-line { width: 100%; }
.ct-input.ok ~ .ct-input-line { background: #00E57A; width: 100%; }

/* Textarea */
.ct-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Char count */
.ct-char-count {
  font-family: var(--f-code);
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--ink3);
  text-align: right;
  margin-top: 4px;
}
.ct-char-count.warn { color: var(--R); }

/* Select */
.ct-select-wrap { position: relative; }
.ct-select {
  padding-right: 40px;
  cursor: pointer;
}
.ct-select option { background: var(--bg2); color: var(--ink); }
.ct-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink3);
  pointer-events: none;
  font-size: 12px;
  transition: transform .25s;
}
.ct-select:focus + .ct-select-arrow { transform: translateY(-50%) rotate(180deg); color: var(--R); }

/* Service grid */
.ct-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.ct-srv-opt { cursor: pointer; }
.ct-srv-opt input { display: none; }
.ct-srv-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--bg2);
  border: 1px solid var(--g1);
  border-bottom: 2px solid transparent;
  transition: border-color .22s, background .22s;
  text-align: center;
}
.ct-srv-opt:hover .ct-srv-box {
  border-color: var(--R3);
  background: var(--bg3);
}
.ct-srv-opt input:checked + .ct-srv-box {
  border-color: var(--R3);
  border-bottom-color: var(--R);
  background: var(--R4);
}
.ct-srv-ico { font-size: 20px; line-height: 1; }
.ct-srv-txt {
  font-family: var(--f-code);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink2);
  transition: color .22s;
}
.ct-srv-opt input:checked + .ct-srv-box .ct-srv-txt { color: var(--R); }

/* Error messages */
.ct-err {
  font-family: var(--f-code);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--R);
  min-height: 14px;
  display: block;
}

/* Form footer */
.ct-form-foot { display: flex; flex-direction: column; gap: 14px; }
.ct-submit { width: 100%; justify-content: center; }
.ct-form-note {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.65;
  text-align: center;
}
.ct-form-note strong { color: var(--ink2); }

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  border: 1px solid var(--R3);
  background: var(--R4);
  min-height: 300px;
}
.ct-success.show { display: flex; }
.ct-success-icon {
  font-size: 48px;
  animation: ct-pop .5s var(--ease);
}
@keyframes ct-pop {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.ct-success h3 {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}
.ct-success p { font-size: 14px; color: var(--ink2); max-width: 320px; line-height: 1.7; }

/* ── INFO COLUMN ─────────────────────────────────────────── */
.ct-info-col { display: flex; flex-direction: column; gap: 2px; }

.ct-info-block {
  border: 1px solid var(--g1);
  margin-bottom: 2px;
  overflow: hidden;
}
.ct-info-block-label {
  display: block;
  font-family: var(--f-code);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 12px 20px;
  background: var(--bg2);
  border-bottom: 1px solid var(--g1);
}

/* Channel items */
.ct-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--g1);
  border-left: 3px solid transparent;
  transition: border-color .25s, background .25s, transform .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.ct-channel:last-child { border-bottom: none; }
.ct-channel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--R2);
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
}
.ct-channel:hover {
  border-left-color: var(--R);
  border-color: var(--R3);
  background: var(--bg2);
}
.ct-channel:hover::before { transform: translateX(0); }

.ct-channel--primary {
  background: rgba(37,211,102,.03);
  border-left-color: #25D366;
}
.ct-channel--primary:hover {
  border-left-color: #25D366;
  border-color: rgba(37,211,102,.3);
  background: rgba(37,211,102,.07);
}
.ct-channel--primary::before { background: rgba(37,211,102,.06); }

.ct-channel-icon {
  width: 40px;
  height: 40px;
  background: var(--bg3);
  border: 1px solid var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink2);
  position: relative;
  z-index: 1;
  transition: background .25s, border-color .25s;
}
.ct-channel--primary .ct-channel-icon { color: #25D366; }
.ct-channel:hover .ct-channel-icon {
  background: var(--R2);
  border-color: var(--R3);
  color: var(--R);
}
.ct-channel--primary:hover .ct-channel-icon {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.3);
  color: #25D366;
}

.ct-channel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.ct-channel-name {
  font-family: var(--f-code);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--R);
}
.ct-channel--primary .ct-channel-name { color: #25D366; }
.ct-channel-val {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.ct-channel-note {
  font-size: 11px;
  color: var(--ink3);
}
.ct-channel-arr {
  font-size: 18px;
  color: var(--ink3);
  transition: transform .25s var(--ease), color .25s;
  position: relative;
  z-index: 1;
}
.ct-channel:hover .ct-channel-arr { transform: translateX(4px); color: var(--R); }

/* Hours */
.ct-hours { padding: 4px 0; }
.ct-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--g1);
}
.ct-hours-row:last-of-type { border-bottom: none; }
.ct-hours-row--off .ct-hours-time { color: var(--ink3); }
.ct-hours-day {
  font-family: var(--f-code);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink2);
}
.ct-hours-time {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.ct-hours-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-top: 1px solid var(--g1);
  background: var(--bg2);
  font-family: var(--f-code);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink3);
}
.ct-hours-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink3);
  flex-shrink: 0;
}
.ct-hours-status.open .ct-hours-dot { background: #00E57A; animation: ct-hours-pulse 2s ease-in-out infinite; }
.ct-hours-status.open #ct-hours-txt { color: #00E57A; }
.ct-hours-status.closed .ct-hours-dot { background: var(--R); }
.ct-hours-status.closed #ct-hours-txt { color: var(--R); }
@keyframes ct-hours-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,122,.4); }
  50%       { box-shadow: 0 0 0 5px rgba(0,229,122,0); }
}

/* Location */
.ct-location {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  transition: background .2s;
}
.ct-location:hover { background: var(--bg2); }
.ct-location svg { color: var(--R); flex-shrink: 0; }
.ct-location-city {
  display: block;
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.ct-location-note {
  display: block;
  font-family: var(--f-code);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--R);
  margin-top: 2px;
}

/* ══ MAPA ════════════════════════════════════════════════════ */
#ct-map {
  padding: var(--sec) 0;
  background: var(--bg);
}

.ct-map-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: 48px;
}

.ct-map-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.ct-map-frame {
  border: 1px solid var(--g1);
  overflow: hidden;
  height: 480px;
  position: relative;
}
.ct-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(.9);
  transition: filter .5s;
}
.ct-map-frame:hover iframe { filter: grayscale(0%) contrast(1) brightness(1); }

/* Map overlay controls */
.ct-map-overlay {
  position: absolute;
  top: 20px;
  left: calc(clamp(20px, 4vw, 56px) + 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.ct-map-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,6,8,.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--R3);
  padding: 8px 14px;
  font-family: var(--f-code);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink2);
}
.ct-map-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--R);
  border-radius: 50%;
  animation: ct-pulse 1.8s ease-in-out infinite;
}
.ct-map-actions { display: flex; flex-direction: column; gap: 6px; }
.ct-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,6,8,.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--g1);
  padding: 10px 16px;
  font-family: var(--f-code);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink2);
  transition: border-color .2s, color .2s, background .2s;
}
.ct-map-btn:hover { border-color: var(--R3); color: var(--ink); background: rgba(6,6,8,.95); }

/* ══ FAQ ═════════════════════════════════════════════════════ */
#ct-faq {
  padding: var(--sec) 0;
  background: var(--bg1);
}
.ct-faq-w {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.ct-faq-head { position: sticky; top: 96px; }

.ct-faq-list { display: flex; flex-direction: column; }

.ct-faq-item {
  border-bottom: 1px solid var(--g1);
  overflow: hidden;
}
.ct-faq-item:first-child { border-top: 1px solid var(--g1); }

.ct-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  list-style: none;
  transition: color .2s;
  user-select: none;
}
.ct-faq-q::-webkit-details-marker { display: none; }
.ct-faq-q:hover { color: var(--R); }

.ct-faq-icon {
  font-size: 20px;
  color: var(--ink3);
  flex-shrink: 0;
  transition: transform .3s var(--ease), color .2s;
  line-height: 1;
}
.ct-faq-item[open] .ct-faq-icon {
  transform: rotate(45deg);
  color: var(--R);
}
.ct-faq-item[open] .ct-faq-q { color: var(--R); }

.ct-faq-a {
  padding: 0 0 22px;
  animation: ct-faq-open .3s var(--ease);
}
@keyframes ct-faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.ct-faq-a p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.78;
  max-width: 560px;
}

/* ══ CTA FINAL ══════════════════════════════════════════════ */
#ct-cta {
  padding: var(--sec) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.ct-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(227,0,0,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,0,0,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
#ct-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(227,0,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

.ct-cta-w {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  position: relative;
  z-index: 2;
  text-align: center;
}

.ct-cta-content { display: flex; flex-direction: column; align-items: center; }

.ct-cta-title {
  font-family: var(--f-head);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 20px;
}
.ct-cta-title em { font-style: normal; color: var(--R); }

.ct-cta-sub {
  font-size: 16px;
  color: var(--ink2);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.ct-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-cta-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--g1);
  width: 100%;
}
.ct-cta-trust span {
  font-family: var(--f-code);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ct-cta-trust span::before {
  content: '✓';
  color: var(--R);
  font-size: 12px;
}

/* ══ KEYFRAMES ══════════════════════════════════════════════ */
@keyframes ct-fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ct-fade-right {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: none; }
}

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media(max-width: 1100px) {
  .ct-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-main-w     { grid-template-columns: 1fr; gap: 56px; }
  .ct-faq-w      { grid-template-columns: 1fr; gap: 48px; }
  .ct-faq-head   { position: static; }
  #ct-hero::after { display: none; }
}

@media(max-width: 768px) {
  .ct-data-bar       { overflow-x: auto; }
  .hide-sm           { display: none; }
  .ct-hero-title     { font-size: clamp(44px, 12vw, 80px); }
  .ct-form-row       { grid-template-columns: 1fr; }
  .ct-service-grid   { grid-template-columns: repeat(4, 1fr); }
  .ct-urgency-inner  { flex-direction: column; text-align: center; gap: 12px; }
  .ct-cta-btns       { flex-direction: column; width: 100%; }
  .ct-cta-btns .btn  { width: 100%; justify-content: center; }
  .ct-trust-counter  { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 480px) {
  .ct-service-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-quick        { gap: 6px; }
  .ct-cta-trust    { gap: 14px; }
}
