/* =============================================
   NUVEX — CONTACT PAGE CSS
   ============================================= */

@import url('../style.css');

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

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% -5%, rgba(6,182,212,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(139,92,246,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 60%, rgba(236,72,153,0.05) 0%, transparent 50%),
    var(--bg);
}

#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 860px;
}

/* Tag */
.ct-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(6,182,212,0.07);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 100px;
  margin-bottom: 32px;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: tagPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(6,182,212,0.8);
}
@keyframes tagPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.tag-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Title */
.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25em;
}
.ct-hero-rotate-wrap {
  display: inline-flex;
  overflow: hidden;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
#rotatingWord {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
#rotatingWord.exit {
  transform: translateY(-100%) scale(0.8);
  opacity: 0;
}
#rotatingWord.enter {
  transform: translateY(100%) scale(0.8);
  opacity: 0;
}

/* Sub */
.ct-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges row */
.ct-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 10px 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.ct-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.ct-badge-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}
.ct-badge-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(6,182,212,0.12);
  color: var(--cyan);
  flex-shrink: 0;
}
.ct-badge-ico-globe {
  background: rgba(16,185,129,0.12);
  color: var(--green);
}
.ct-avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(16,185,129,0.8);
  animation: availPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes availPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 8px rgba(16,185,129,0.6); }
  50% { transform: scale(1.3); box-shadow: 0 0 16px rgba(16,185,129,0.9); }
}
.ct-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.ct-badge-text strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.ct-badge-text span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text3);
  text-transform: uppercase;
}

/* Scroll arrow */
.ct-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.ct-hero-scroll:hover { color: var(--cyan); gap: 14px; }
.ct-hero-scroll svg { width: 20px; height: 20px; animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── RADAR RINGS ── */
.ct-radar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.ct-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.15);
  animation: radarPulse 4s ease-out infinite;
}
.ct-radar-1 { width: 200px; height: 200px; animation-delay: 0s; }
.ct-radar-2 { width: 380px; height: 380px; animation-delay: 1s; }
.ct-radar-3 { width: 560px; height: 560px; animation-delay: 2s; }
.ct-radar-4 { width: 760px; height: 760px; animation-delay: 3s; }
@keyframes radarPulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  70%  { opacity: 0.15; }
  100% { transform: scale(1.05); opacity: 0; }
}
.ct-radar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.8), 0 0 40px rgba(6,182,212,0.3);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.5); box-shadow: 0 0 30px rgba(6,182,212,0.9), 0 0 60px rgba(6,182,212,0.4); }
}

/* Corner brackets */
.ct-corner {
  position: absolute;
  width: 32px; height: 32px;
  pointer-events: none;
  z-index: 1;
}
.ct-corner::before, .ct-corner::after {
  content: '';
  position: absolute;
  background: rgba(6,182,212,0.3);
}
.ct-corner::before { width: 100%; height: 1px; top: 0; }
.ct-corner::after  { width: 1px; height: 100%; top: 0; }
.ct-corner-tl { top: 24px; left: 24px; }
.ct-corner-tr { top: 24px; right: 24px; transform: scaleX(-1); }
.ct-corner-bl { bottom: 24px; left: 24px; transform: scaleY(-1); }
.ct-corner-br { bottom: 24px; right: 24px; transform: scale(-1); }

/* ═══════════════════════════════════════════
   CONTACT SECTION (2-col)
   ═══════════════════════════════════════════ */
.ct-section {
  padding: 120px 0 100px;
  position: relative;
}
.ct-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.2), transparent);
}
.ct-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── INFO PANEL ── */
.ct-info {
  position: sticky;
  top: 100px;
}
.ct-info-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 5px 14px;
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 100px;
  margin-bottom: 20px;
}
.ct-info-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.ct-info-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 40px;
}

/* Contact method cards */
.ct-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.ct-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.ct-method::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,0.04), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.ct-method-link:hover {
  border-color: rgba(6,182,212,0.35);
  transform: translateX(4px);
}
.ct-method-link:hover::before { opacity: 1; }
.ct-method-link:hover .ct-method-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.ct-method-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-mi-email {
  background: rgba(6,182,212,0.1);
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.2);
}
.ct-mi-wa {
  background: rgba(37,211,102,0.1);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.2);
}
.ct-mi-loc {
  background: rgba(139,92,246,0.1);
  color: var(--violet);
  border: 1px solid rgba(139,92,246,0.2);
}
.ct-method-icon svg { width: 20px; height: 20px; }

.ct-method-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-method-body strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ct-method-body span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text2);
}
.ct-method-arrow {
  width: 16px; height: 16px;
  color: var(--cyan);
  opacity: 0.4;
  transition: transform 0.25s, opacity 0.25s;
  flex-shrink: 0;
}
.ct-method-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25d366;
  flex-shrink: 0;
}
.ct-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37,211,102,0.8);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Availability strip */
.ct-avail-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 12px;
  margin-bottom: 32px;
}
.ct-avail-pulse-wrap {
  position: relative;
  width: 12px; height: 12px;
  flex-shrink: 0;
}
.ct-avail-pulse {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(16,185,129,0.6);
}
.ct-avail-pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.4);
  animation: availRing 2s ease-out infinite;
}
@keyframes availRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.ct-avail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-avail-text span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}
.ct-avail-hours {
  font-family: var(--font-mono);
  font-size: 11px !important;
  color: var(--text3) !important;
  letter-spacing: 0.06em;
  font-weight: 400 !important;
}

/* Socials row */
.ct-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ct-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.ct-social:hover {
  color: var(--cyan);
  border-color: rgba(6,182,212,0.35);
  background: rgba(6,182,212,0.06);
  transform: translateY(-2px);
}

/* ── FORM CARD ── */
.ct-form-wrap { position: relative; }

.ct-form-border {
  padding: 1.5px;
  border-radius: 22px;
  background: linear-gradient(var(--border-spin, 135deg), #06b6d4, #8b5cf6, #ec4899, #06b6d4);
  position: relative;
}
.ct-form-card {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
[data-theme="light"] .ct-form-card {
  background: #f8f9fc;
}

/* Chrome header */
.ct-form-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ct-form-chrome::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.6), transparent);
  animation: chromeScan 3s ease-in-out infinite;
}
@keyframes chromeScan {
  0% { left: -60%; }
  100% { left: 140%; }
}

.ct-form-dots {
  display: flex;
  gap: 6px;
}
.ct-form-dots i {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--td, rgba(255,255,255,0.1));
}
.ct-form-chrome-label {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
}

/* Signal bars */
.ct-signal {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}
.ct-signal-bar {
  width: 5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  transition: background 0.4s, height 0.4s;
}
.ct-signal-bar:nth-child(1) { height: 5px; }
.ct-signal-bar:nth-child(2) { height: 8px; }
.ct-signal-bar:nth-child(3) { height: 11px; }
.ct-signal-bar:nth-child(4) { height: 16px; }
.ct-signal-bar.active { background: var(--cyan); box-shadow: 0 0 6px rgba(6,182,212,0.5); }

/* Form body */
.ct-form {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Field */
.ct-field {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ct-field-icon {
  width: 36px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  flex-shrink: 0;
  transition: color 0.25s;
  padding-top: 2px;
}
.ct-field:focus-within .ct-field-icon { color: var(--cyan); }
.ct-field-icon svg { width: 18px; height: 18px; }

.ct-field-body {
  flex: 1;
  position: relative;
}

/* Floating label input */
.ct-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 18px 0 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  resize: none;
  transition: border-color 0.25s;
  display: block;
}
.ct-input::placeholder { color: transparent; }
.ct-input:focus { border-color: transparent; }

.ct-label {
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text3);
  pointer-events: none;
  transform-origin: left center;
  transition: top 0.25s, font-size 0.25s, color 0.25s, transform 0.25s, letter-spacing 0.25s;
}
.ct-input:focus ~ .ct-label,
.ct-input:not(:placeholder-shown) ~ .ct-label {
  top: 0;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Animated underline */
.ct-input-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-hero);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 8px rgba(6,182,212,0.4);
}
.ct-input:focus ~ .ct-label ~ .ct-input-line,
.ct-field:focus-within .ct-input-line { width: 100%; }

/* Textarea adjustments */
.ct-textarea {
  padding-top: 20px;
  min-height: 120px;
  line-height: 1.6;
}
.ct-field-msg .ct-field-icon { padding-top: 18px; }
.ct-field-msg .ct-label { top: 20px; }
.ct-textarea:focus ~ .ct-label,
.ct-textarea:not(:placeholder-shown) ~ .ct-label {
  top: 0;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Character count */
.ct-char-count {
  display: block;
  text-align: right;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.06em;
  transition: color 0.25s;
}
.ct-char-count.warn { color: var(--pink); }

/* Submit button */
.ct-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--grad-hero);
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  margin-top: 4px;
  box-shadow: 0 4px 24px rgba(6,182,212,0.25);
}
.ct-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.ct-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(6,182,212,0.4); }
.ct-submit:hover::before { opacity: 1; }
.ct-submit:active:not(:disabled) { transform: translateY(0); }

.ct-submit-text { transition: opacity 0.2s; }
.ct-submit-plane { width: 18px; height: 18px; transition: opacity 0.2s, transform 0.3s; }
.ct-submit-spinner {
  width: 20px; height: 20px;
  position: absolute;
  opacity: 0;
  animation: spin 1s linear infinite;
  transition: opacity 0.2s;
}
.ct-submit-check {
  width: 20px; height: 20px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ct-submit.loading .ct-submit-text,
.ct-submit.loading .ct-submit-plane { opacity: 0; }
.ct-submit.loading .ct-submit-spinner { opacity: 1; }
.ct-submit.loading { pointer-events: none; }

.ct-submit.done { background: linear-gradient(135deg, var(--green), #059669); box-shadow: 0 4px 24px rgba(16,185,129,0.35); }
.ct-submit.done .ct-submit-text,
.ct-submit.done .ct-submit-plane,
.ct-submit.done .ct-submit-spinner { opacity: 0; }
.ct-submit.done .ct-submit-check { opacity: 1; }

.ct-submit.err { background: linear-gradient(135deg, #ef4444, #dc2626); }

/* Feedback */
.ct-feedback {
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  min-height: 18px;
  color: var(--text2);
  transition: color 0.25s;
}
.ct-feedback.ok  { color: var(--green); }
.ct-feedback.bad { color: #ef4444; }

/* ═══════════════════════════════════════════
   PROMISE STRIP
   ═══════════════════════════════════════════ */
.ct-promises {
  padding: 80px 0 100px;
  position: relative;
}
.ct-promises::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.ct-promises-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ct-promise {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.ct-promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ct-promise:hover { transform: translateY(-4px); border-color: rgba(6,182,212,0.25); }
.ct-promise:hover::before { opacity: 1; }

.ct-promise-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(var(--pi-r, 6), var(--pi-g, 182), var(--pi-b, 212), 0.1);
  color: var(--pi, var(--cyan));
  border: 1px solid rgba(var(--pi-r, 6), var(--pi-g, 182), var(--pi-b, 212), 0.2);
  transition: transform 0.3s;
}
.ct-promise:hover .ct-promise-icon { transform: scale(1.08) rotate(-3deg); }
.ct-promise-icon[style*="#06b6d4"] { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.2); color: #06b6d4; }
.ct-promise-icon[style*="#ec4899"] { background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.2); color: #ec4899; }
.ct-promise-icon[style*="#10b981"] { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); color: #10b981; }
.ct-promise-icon svg { width: 24px; height: 24px; }

.ct-promise h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ct-promise p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CTA STRIP (reused from services)
   ═══════════════════════════════════════════ */
.svc-cta-strip {
  margin: 0 40px 100px;
  padding: 64px 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-glow {
  position: absolute;
  width: 400px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(6,182,212,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}
.cta-strip-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 32px;
  position: relative;
}
.cta-strip-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--grad-hero);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(6,182,212,0.25);
}
.cta-strip-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,182,212,0.4); }
.cta-strip-btn-primary svg { width: 16px; height: 16px; }
.cta-strip-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text2);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.cta-strip-btn-ghost:hover { border-color: rgba(6,182,212,0.4); color: var(--cyan); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .ct-section-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 24px;
  }
  .ct-info { position: static; }
  .ct-promises-inner { grid-template-columns: 1fr; gap: 16px; }
  .ct-hero-badges { flex-wrap: wrap; border-radius: 16px; padding: 12px 16px; gap: 4px; }
  .ct-badge-sep { width: 100%; height: 1px; }
  .ct-badge { padding: 6px 0; }
}
@media (max-width: 600px) {
  .ct-hero-title { font-size: clamp(38px, 10vw, 56px); gap: 0.15em; }
  .ct-form { padding: 24px 18px 20px; }
  .ct-promises-inner { padding: 0 20px; }
  .ct-section { padding: 80px 0 70px; }
  .svc-cta-strip { margin: 0 20px 80px; padding: 40px 24px; }
  .ct-corner { display: none; }
}

/* ── RTL ── */
[dir="rtl"] .ct-info { direction: rtl; }
[dir="rtl"] .ct-method-link:hover { transform: translateX(-4px); }
[dir="rtl"] .ct-label { left: auto; right: 0; transform-origin: right center; }
[dir="rtl"] .ct-input-line { left: auto; right: 0; }
[dir="rtl"] .ct-field-body { direction: rtl; }
