/* ─── Contact Page ────────────────────────────────────────────── */
/* Palette: Navy #030b18 / #102033 | Blue #1557ff / #236cff | Red #ff334d | White #fff */

/* ─── Shared Reveal ──────────────────────────────────────────── */

.cc-reveal,
.cc-reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s cubic-bezier(.22, 1, .36, 1),
    transform 0.72s cubic-bezier(.22, 1, .36, 1);
}

.cc-reveal.is-visible,
.cc-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cc-reveal-item:nth-child(1) { transition-delay: 0.06s; }
.cc-reveal-item:nth-child(2) { transition-delay: 0.14s; }
.cc-reveal-item:nth-child(3) { transition-delay: 0.22s; }
.cc-reveal-item:nth-child(4) { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .cc-reveal,
  .cc-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Hero ───────────────────────────────────────────────────── */

.cc-contact-hero {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 60vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vh, 140px) clamp(20px, 5vw, 72px) clamp(72px, 9vh, 120px);
  background: linear-gradient(160deg, #040e20 0%, #030b18 46%, #061428 100%);
  overflow: hidden;
  text-align: center;
}

/* Background layer */

.cc-ch-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Grid pattern */

.cc-ch-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.6) 0%, transparent 72%);
  opacity: 0.55;
}

/* Watermark */

.cc-ch-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) rotate(-3deg);
  font-size: clamp(100px, 22vw, 260px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 87, 255, 0.07);
  white-space: nowrap;
  user-select: none;
  animation: ccWaterDrift 18s ease-in-out infinite alternate;
}

@keyframes ccWaterDrift {
  from { transform: translate(-50%, -52%) rotate(-3deg); }
  to   { transform: translate(-50%, -56%) rotate(-1.2deg); }
}

/* Animated blobs */

.cc-ch-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.cc-ch-blob--a {
  width: clamp(300px, 40vw, 560px);
  height: clamp(300px, 40vw, 560px);
  top: -14%;
  right: -8%;
  background: radial-gradient(circle, #1557ff 0%, #0d3aaa 60%, transparent 100%);
  animation: ccBlob1 22s ease-in-out infinite alternate;
}

.cc-ch-blob--b {
  width: clamp(240px, 34vw, 480px);
  height: clamp(240px, 34vw, 480px);
  bottom: -10%;
  left: -6%;
  background: radial-gradient(circle, #ff334d 0%, #a8001e 60%, transparent 100%);
  animation: ccBlob2 28s ease-in-out infinite alternate;
  opacity: 0.12;
}

@keyframes ccBlob1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-40px, 30px) scale(1.08); }
  66%  { transform: translate(20px, -20px) scale(0.96); }
  100% { transform: translate(-20px, 40px) scale(1.04); }
}

@keyframes ccBlob2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(40px, -20px) scale(1.06); }
}

/* Orbital rings */

.cc-ch-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(21, 87, 255, 0.12);
}

.cc-ch-ring--outer {
  width: clamp(600px, 90vw, 1100px);
  height: clamp(600px, 90vw, 1100px);
  transform: translate(-50%, -50%);
  animation: ccOrbit 40s linear infinite;
  border-color: rgba(21, 87, 255, 0.06);
}

.cc-ch-ring--inner {
  width: clamp(380px, 56vw, 720px);
  height: clamp(380px, 56vw, 720px);
  transform: translate(-50%, -50%);
  animation: ccOrbit 26s linear infinite reverse;
  border-style: dashed;
  border-color: rgba(255, 51, 77, 0.06);
}

@keyframes ccOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Content */

.cc-ch-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Badge */

.cc-ch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(21, 87, 255, 0.1);
  border: 1px solid rgba(21, 87, 255, 0.22);
  color: #7da8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ccHeroIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.1s both;
}

.cc-ch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3cffb4;
  box-shadow: 0 0 0 0 rgba(60, 255, 180, 0.6);
  animation: ccDotPing 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ccDotPing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(60, 255, 180, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(60, 255, 180, 0); }
}

/* Title */

.cc-ch-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.06em;
  animation: ccHeroIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.22s both;
}

.cc-ch-title em {
  font-style: normal;
  background: linear-gradient(135deg, #6aa3ff, #1557ff 48%, #4d88ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */

.cc-ch-subtitle {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(210, 225, 245, 0.68);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  animation: ccHeroIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.34s both;
}

@keyframes ccHeroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Floating chips */

.cc-ch-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
  animation: ccHeroIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.48s both;
}

.cc-ch-chip {
  display: grid;
  gap: 3px;
  padding: 13px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
  transition:
    transform 0.32s cubic-bezier(.22, 1, .36, 1),
    border-color 0.32s ease,
    background 0.32s ease;
}

.cc-ch-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 87, 255, 0.3);
  background: rgba(21, 87, 255, 0.1);
}

.cc-ch-chip strong {
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cc-ch-chip span {
  display: block;
  color: rgba(210, 225, 245, 0.54);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Contact Hero ───────────────────────────────────────────── */

#contact-hero {
  background: #ffffff;
  color: #122435;
  padding: 128px 24px 96px;
  font-family: inherit;
}

#contact-hero * {
  box-sizing: border-box;
}

#contact-hero .contact-hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: center;
}

#contact-hero .contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

#contact-hero .contact-hero__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #cc361e;
}

#contact-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #122435;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 750;
  letter-spacing: 0;
}

#contact-hero .contact-hero__copy {
  max-width: 720px;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

#contact-hero .contact-hero__copy p {
  margin: 0;
  color: rgba(18, 36, 53, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

#contact-hero .contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

#contact-hero .contact-hero__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 36, 53, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(18, 36, 53, 0.06);
}

#contact-hero .contact-hero__badge svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #2563eb;
}

#contact-hero .contact-hero__badge strong,
#contact-hero .contact-hero__badge span {
  display: block;
}

#contact-hero .contact-hero__badge strong {
  color: #122435;
  font-size: 14px;
  line-height: 1.25;
}

#contact-hero .contact-hero__badge span {
  margin-top: 3px;
  color: rgba(18, 36, 53, 0.58);
  font-size: 13px;
  line-height: 1.25;
}

#contact-hero .contact-hero__visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 32px;
  border-radius: 8px;
  background-image: radial-gradient(rgba(18, 36, 53, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  overflow: hidden;
}

#contact-hero .contact-hero__calendar {
  width: min(390px, 100%);
  padding: 22px;
  border: 1px solid rgba(18, 36, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(18, 36, 53, 0.14);
}

#contact-hero .contact-hero__calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

#contact-hero .contact-hero__calendar-head p {
  margin: 4px 0 0;
  color: rgba(18, 36, 53, 0.58);
  font-size: 13px;
}

#contact-hero .contact-hero__calendar-head strong {
  display: block;
  color: #122435;
  font-size: 16px;
}

#contact-hero .contact-hero__month {
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
}

#contact-hero .contact-hero__days,
#contact-hero .contact-hero__dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

#contact-hero .contact-hero__days {
  margin-bottom: 8px;
  color: rgba(18, 36, 53, 0.48);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

#contact-hero .contact-hero__dates span {
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: rgba(18, 36, 53, 0.72);
  font-size: 13px;
  font-weight: 600;
}

#contact-hero .contact-hero__dates .is-muted {
  color: rgba(18, 36, 53, 0.28);
}

#contact-hero .contact-hero__dates .is-selected {
  background: #2563eb;
  color: #ffffff;
}

#contact-hero .contact-hero__slots {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

#contact-hero .contact-hero__slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 700;
}

#contact-hero .contact-hero__slot span {
  color: rgba(18, 36, 53, 0.58);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  #contact-hero {
    padding: 112px 20px 72px;
  }

  #contact-hero .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #contact-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  #contact-hero .contact-hero__copy p {
    font-size: 16px;
  }

  #contact-hero .contact-hero__badges {
    flex-direction: column;
  }

  #contact-hero .contact-hero__visual {
    min-height: auto;
    padding: 20px;
  }
}

/* ─── Three Doors ────────────────────────────────────────────── */

#three-doors {
  --bg-alt: #f9fafb;
  --navy: #122435;
  --muted: rgba(18, 36, 53, 0.68);
  --light: rgba(18, 36, 53, 0.1);
  --blue: #2563eb;
  background: var(--bg-alt);
  color: var(--navy);
  padding: 96px 24px;
  font-family: inherit;
}

#three-doors * {
  box-sizing: border-box;
}

#three-doors .three-doors__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

#three-doors .three-doors__header {
  max-width: 760px;
  margin-bottom: 40px;
}

#three-doors h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

#three-doors .three-doors__subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

#three-doors .three-doors__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

#three-doors .door-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--light);
  border-radius: 12px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#three-doors .door-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(7, 20, 51, 0.1);
}

#three-doors .door-card--featured {
  border-top: 3px solid var(--blue);
  transform: scale(1.02);
}

#three-doors .door-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

#three-doors .door-card__pill {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

#three-doors .door-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}

#three-doors .door-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

#three-doors h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: 0;
}

#three-doors .door-card__duration {
  width: fit-content;
  margin: 14px 0 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f3f4f6;
  color: rgba(18, 36, 53, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

#three-doors .door-card__description {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

#three-doors .door-card__list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

#three-doors .door-card__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(18, 36, 53, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

#three-doors .door-card__list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

#three-doors .door-card__footer {
  margin-top: auto;
}

#three-doors .door-card__button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

#three-doors .door-card__button:hover {
  transform: translateY(-1px);
}

#three-doors .door-card__button--primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #ffffff;
}

#three-doors .door-card__button--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

#three-doors .door-card__button--secondary {
  border: 1px solid rgba(18, 36, 53, 0.18);
  background: #ffffff;
  color: var(--navy);
}

#three-doors .door-card__button--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

#three-doors .door-card__quote {
  margin: 18px 0 0;
  color: rgba(18, 36, 53, 0.62);
  font-size: 13px;
  line-height: 1.45;
  font-style: italic;
}

#three-doors .door-card__quote cite {
  display: block;
  margin-top: 8px;
  color: rgba(18, 36, 53, 0.72);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 768px) {
  #three-doors {
    padding: 72px 20px;
  }

  #three-doors .three-doors__header {
    margin-bottom: 28px;
  }

  #three-doors .three-doors__subtitle {
    font-size: 16px;
  }

  #three-doors .three-doors__grid {
    grid-template-columns: 1fr;
  }

  #three-doors .door-card,
  #three-doors .door-card--featured,
  #three-doors .door-card--featured:hover {
    transform: none;
  }

  #three-doors .door-card:hover {
    transform: translateY(-4px);
  }
}

/* ─── Main Section ───────────────────────────────────────────── */

.cc-contact-main {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 64px);
  background: #f4f7fc;
  position: relative;
  overflow: hidden;
}

.cc-contact-main::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(21, 87, 255, 0.3), rgba(255, 51, 77, 0.18), transparent);
}

.cc-cm-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ─── Left Info Panel ────────────────────────────────────────── */

.cc-cm-panel {
  position: sticky;
  top: 24px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0c1e30 0%, #030b18 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 3.2vw, 42px);
  overflow: hidden;
}

.cc-cm-panel-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 87, 255, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: ccBlob1 24s ease-in-out infinite alternate;
}

.cc-cm-eyebrow {
  margin: 0 0 10px;
  color: #3f78ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cc-cm-panel-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.cc-cm-panel-text {
  margin: 14px 0 0;
  color: rgba(210, 225, 245, 0.56);
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 500;
}

/* Info cards */

.cc-cm-info-cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-cm-info-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(.22, 1, .36, 1),
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.cc-cm-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.cc-cm-info-card:not(.cc-cm-info-card--static):hover::before {
  transform: translateX(110%);
}

.cc-cm-info-card:not(.cc-cm-info-card--static):hover {
  transform: translateX(6px);
  background: rgba(21, 87, 255, 0.1);
  border-color: rgba(21, 87, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cc-cm-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(21, 87, 255, 0.12);
  border: 1px solid rgba(21, 87, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6aa3ff;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cc-cm-info-card:hover .cc-cm-info-icon {
  background: rgba(21, 87, 255, 0.2);
  border-color: rgba(21, 87, 255, 0.32);
}

.cc-cm-info-text {
  flex: 1;
  min-width: 0;
}

.cc-cm-info-label {
  display: block;
  color: rgba(210, 225, 245, 0.48);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cc-cm-info-value {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-cm-info-arrow {
  color: rgba(107, 163, 255, 0.5);
  font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.cc-cm-info-card:not(.cc-cm-info-card--static):hover .cc-cm-info-arrow {
  transform: translateX(4px);
  color: #6aa3ff;
}

/* Live badge */

.cc-cm-info-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(60, 255, 180, 0.08);
  border: 1px solid rgba(60, 255, 180, 0.16);
  color: #3cffb4;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.cc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3cffb4;
  animation: ccDotPing 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* Social links */

.cc-cm-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cc-cm-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(210, 225, 245, 0.5);
  text-decoration: none;
  transition:
    transform 0.3s cubic-bezier(.22, 1, .36, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.cc-cm-social:hover {
  transform: translateY(-4px);
  background: rgba(21, 87, 255, 0.14);
  border-color: rgba(21, 87, 255, 0.26);
  color: #6aa3ff;
}

/* ─── Form Area ──────────────────────────────────────────────── */

.cc-cm-form-area {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(18, 36, 53, 0.09);
  box-shadow:
    0 24px 72px rgba(18, 36, 53, 0.07),
    0 4px 16px rgba(18, 36, 53, 0.04);
  padding: clamp(28px, 3.6vw, 52px);
  position: relative;
  overflow: hidden;
}

.cc-cm-form-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1557ff 0%, #236cff 48%, #ff334d 100%);
  border-radius: 28px 28px 0 0;
}

.cc-cm-form-header {
  margin-bottom: 36px;
}

.cc-cm-form-title {
  margin: 0;
  color: #102033;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cc-cm-form-sub {
  margin: 8px 0 0;
  color: rgba(18, 36, 53, 0.48);
  font-size: 13.5px;
  font-weight: 500;
}

/* ─── Field Row ──────────────────────────────────────────────── */

.cc-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* ─── Floating Label Fields ──────────────────────────────────── */

.cc-field {
  position: relative;
  margin-bottom: 16px;
}

.cc-field input,
.cc-field select,
.cc-field textarea {
  width: 100%;
  display: block;
  padding: 22px 16px 10px;
  border-radius: 14px;
  border: 1.5px solid rgba(18, 36, 53, 0.13);
  background: #f8fafd;
  color: #102033;
  font-family: var(--font-sans, "Satoshi", system-ui, sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
  -webkit-appearance: none;
  appearance: none;
}

.cc-field select {
  cursor: pointer;
  padding-right: 44px;
}

.cc-field textarea {
  resize: vertical;
  min-height: 140px;
  padding-top: 28px;
}

.cc-field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(18, 36, 53, 0.5);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  transition:
    top 0.26s cubic-bezier(.22, 1, .36, 1),
    font-size 0.26s cubic-bezier(.22, 1, .36, 1),
    color 0.26s ease,
    transform 0.26s cubic-bezier(.22, 1, .36, 1);
  white-space: nowrap;
}

.cc-field--textarea label {
  top: 26px;
  transform: none;
}

.cc-field--select label {
  top: 50%;
}

/* Label floated state */

.cc-field input:focus ~ label,
.cc-field input:not(:placeholder-shown) ~ label,
.cc-field textarea:focus ~ label,
.cc-field textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1557ff;
}

.cc-field--textarea input:focus ~ label,
.cc-field--textarea textarea:focus ~ label,
.cc-field--textarea textarea:not(:placeholder-shown) ~ label {
  top: 10px;
}

.cc-field--select.cc-has-value label,
.cc-field--select select:focus ~ label {
  top: 8px;
  transform: none;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1557ff;
}

/* Focus state */

.cc-field input:focus,
.cc-field select:focus,
.cc-field textarea:focus {
  border-color: #1557ff;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(21, 87, 255, 0.1),
    0 2px 8px rgba(21, 87, 255, 0.08);
}

/* Animated bar under field */

.cc-field-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #1557ff, #236cff);
  border-radius: 0 0 0 14px;
  transition: width 0.36s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.cc-field input:focus ~ .cc-field-bar,
.cc-field select:focus ~ .cc-field-bar,
.cc-field textarea:focus ~ .cc-field-bar {
  width: 100%;
}

/* Select chevron */

.cc-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(18, 36, 53, 0.42);
  transition: transform 0.28s ease, color 0.28s ease;
}

.cc-field--select select:focus ~ .cc-select-chevron {
  color: #1557ff;
  transform: translateY(-50%) rotate(180deg);
}

/* ─── Consent ────────────────────────────────────────────────── */

.cc-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 28px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(21, 87, 255, 0.03);
  border: 1px solid rgba(21, 87, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cc-consent:hover {
  background: rgba(21, 87, 255, 0.06);
  border-color: rgba(21, 87, 255, 0.14);
}

.cc-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-consent-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(18, 36, 53, 0.22);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.cc-consent-box svg {
  opacity: 0;
  transform: scale(0.5);
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(.22, 1, .36, 1);
}

.cc-consent input[type="checkbox"]:checked ~ .cc-consent-box {
  background: #1557ff;
  border-color: #1557ff;
  box-shadow: 0 4px 12px rgba(21, 87, 255, 0.3);
}

.cc-consent input[type="checkbox"]:checked ~ .cc-consent-box svg {
  opacity: 1;
  transform: scale(1);
}

.cc-consent-text {
  color: rgba(18, 36, 53, 0.64);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

/* Honeypot */

.cc-hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ─── Submit Button ──────────────────────────────────────────── */

.cc-submit-btn {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 0 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1557ff 0%, #236cff 100%);
  color: #ffffff;
  font-family: var(--font-sans, "Satoshi", system-ui, sans-serif);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.28s ease;
  box-shadow:
    0 16px 40px rgba(21, 87, 255, 0.28),
    0 4px 12px rgba(21, 87, 255, 0.18);
}

.cc-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #236cff 0%, #1557ff 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cc-submit-btn:hover::before { opacity: 1; }

.cc-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(21, 87, 255, 0.36),
    0 6px 18px rgba(21, 87, 255, 0.24);
}

.cc-submit-btn:active {
  transform: translateY(0);
  box-shadow:
    0 8px 20px rgba(21, 87, 255, 0.22);
}

/* Pulsing ring on idle */

.cc-submit-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border: 2px solid rgba(21, 87, 255, 0.5);
  animation: ccSubmitPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ccSubmitPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.02); }
}

.cc-submit-btn:hover .cc-submit-pulse,
.cc-submit-btn:active .cc-submit-pulse {
  animation-play-state: paused;
  opacity: 0;
}

/* Ripple on click */

.cc-submit-btn .cc-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ccRipple 0.6s linear forwards;
  pointer-events: none;
}

@keyframes ccRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button text + icon */

.cc-submit-label,
.cc-submit-icon {
  position: relative;
  z-index: 1;
}

.cc-submit-icon {
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(.22, 1, .36, 1);
}

.cc-submit-btn:hover .cc-submit-icon {
  transform: translateX(4px);
}

/* Loading state */

.cc-submit-btn.is-loading .cc-submit-label::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  animation: ccSpin 0.7s linear infinite;
}

.cc-submit-btn.is-loading .cc-submit-icon {
  display: none;
}

@keyframes ccSpin {
  to { transform: rotate(360deg); }
}

/* ─── Status message ─────────────────────────────────────────── */

.cc-form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  min-height: 20px;
  transition: opacity 0.3s ease;
  color: rgba(18, 36, 53, 0.64);
}

.cc-form-status.is-success {
  color: #0b9e63;
}

.cc-form-status.is-error {
  color: #cc1a1a;
}

/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .cc-cm-wrap {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .cc-cm-panel {
    position: static;
  }

  .cc-ch-watermark {
    font-size: clamp(80px, 16vw, 160px);
  }
}

@media (max-width: 680px) {
  .cc-contact-hero {
    min-height: 480px;
    padding-bottom: 72px;
  }

  .cc-ch-title {
    font-size: clamp(38px, 11vw, 58px);
  }

  .cc-ch-subtitle {
    font-size: 15.5px;
  }

  .cc-ch-chips {
    gap: 8px;
    margin-top: 32px;
  }

  .cc-ch-chip {
    padding: 10px 16px;
  }

  .cc-ch-ring { display: none; }

  .cc-contact-main {
    padding: 48px 16px 64px;
  }

  .cc-cm-form-area {
    padding: 24px 20px 30px;
  }

  .cc-fields-row {
    grid-template-columns: 1fr;
  }

  .cc-cm-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 420px) {
  .cc-ch-watermark {
    display: none;
  }

  .cc-ch-chips {
    flex-direction: column;
    align-items: stretch;
  }
}
