/* Contact — Benefiteo */
body.is-contact {
  --ct-ink: #06122f;
  --ct-soft: #4a5672;
  --ct-muted: #8a95ab;
  --ct-blue: #2448c6;
  --ct-blue-2: #3d5fd9;
  --ct-line: rgba(6, 18, 47, 0.1);
  --ct-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-contact .ct-page {
  padding: 0 0 4.5rem;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(36, 72, 198, 0.08), transparent 55%),
    radial-gradient(700px 380px at 100% 20%, rgba(252, 42, 0, 0.04), transparent 50%),
    #f7f8fc;
}

/* Hero */
body.is-contact .ct-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin: 0 0 2rem;
}
body.is-contact .ct-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 90% at 0% 0%, rgba(61, 95, 217, 0.55), transparent 55%),
    radial-gradient(60% 70% at 100% 100%, rgba(252, 42, 0, 0.18), transparent 50%),
    linear-gradient(145deg, #06122f 0%, #12308a 48%, #2448c6 100%);
}
body.is-contact .ct-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 70%);
  opacity: 0.5;
}
body.is-contact .ct-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.75rem 1.35rem 2.5rem;
}
@media (min-width: 768px) {
  body.is-contact .ct-hero-inner { padding: 3.5rem 1.75rem 3rem; }
}
body.is-contact .ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5d2ff;
  backdrop-filter: blur(10px);
  animation: ct-rise 0.7s var(--ct-ease) both;
}
body.is-contact .ct-eyebrow .shop-icon { width: 14px; height: 14px; }
body.is-contact .ct-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 12ch;
  animation: ct-rise 0.7s var(--ct-ease) 0.06s both;
}
body.is-contact .ct-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #fff, #a8b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.is-contact .ct-lead {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  animation: ct-rise 0.7s var(--ct-ease) 0.12s both;
}
body.is-contact .ct-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Flash / success */
body.is-contact .ct-flash {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  margin: 0 0 1.25rem;
}
body.is-contact .ct-flash.is-err {
  background: #fef2f2;
  border: 1px solid rgba(180, 35, 24, 0.2);
  color: #b42318;
}
body.is-contact .ct-flash strong { display: block; margin: 0 0 0.2rem; }
body.is-contact .ct-flash p { margin: 0; font-size: 0.9rem; }

body.is-contact .ct-success {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--ct-line);
  box-shadow: 0 24px 60px rgba(6, 18, 47, 0.08);
  animation: ct-rise 0.6s var(--ct-ease) both;
}
body.is-contact .ct-success-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(36, 72, 198, 0.18), transparent 70%);
  pointer-events: none;
}
body.is-contact .ct-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: #0a7a4a;
  box-shadow: 0 12px 28px rgba(10, 122, 74, 0.15);
}
body.is-contact .ct-success-icon .shop-icon { width: 28px; height: 28px; }
body.is-contact .ct-success h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--ct-ink);
}
body.is-contact .ct-success p {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
  color: var(--ct-soft);
  line-height: 1.5;
}
body.is-contact .ct-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Layout */
body.is-contact .ct-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
  gap: 1.15rem;
  align-items: start;
}
@media (max-width: 960px) {
  body.is-contact .ct-layout { grid-template-columns: 1fr; }
}
body.is-contact .ct-main {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

body.is-contact .ct-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ct-line);
  border-radius: 24px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow:
    0 18px 44px rgba(6, 18, 47, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  animation: ct-rise 0.65s var(--ct-ease) both;
}
body.is-contact .ct-fields { animation-delay: 0.08s; }
body.is-contact .ct-panel-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 0 0 1.15rem;
}
body.is-contact .ct-step {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--ct-blue), #12308a);
  box-shadow: 0 10px 22px rgba(36, 72, 198, 0.25);
}
body.is-contact .ct-panel-head h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--ct-ink);
}
body.is-contact .ct-panel-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ct-soft);
  line-height: 1.4;
}
body.is-contact .ct-panel-head em {
  font-style: normal;
  font-weight: 700;
  color: var(--ct-blue);
}

/* Department cards */
body.is-contact .ct-dept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (max-width: 560px) {
  body.is-contact .ct-dept-grid { grid-template-columns: 1fr; }
}
body.is-contact .ct-dept {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  padding: 1rem 0.95rem;
  border-radius: 18px;
  border: 1.5px solid var(--ct-line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.2s var(--ct-ease), border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
body.is-contact .ct-dept:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 72, 198, 0.28);
  box-shadow: 0 14px 28px rgba(36, 72, 198, 0.08);
}
body.is-contact .ct-dept.is-on {
  border-color: var(--ct-blue);
  background: linear-gradient(160deg, #eef2ff, #fff 55%);
  box-shadow: 0 0 0 3px rgba(36, 72, 198, 0.12), 0 16px 32px rgba(36, 72, 198, 0.1);
}
body.is-contact .ct-dept-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--blue-mist, #eef1fb);
  color: var(--ct-blue);
}
body.is-contact .ct-dept.is-on .ct-dept-ico {
  background: var(--ct-blue);
  color: #fff;
}
body.is-contact .ct-dept-ico .shop-icon { width: 18px; height: 18px; }
body.is-contact .ct-dept-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-right: 1.2rem;
}
body.is-contact .ct-dept-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ct-ink);
  line-height: 1.2;
}
body.is-contact .ct-dept-copy small {
  font-size: 0.75rem;
  color: var(--ct-muted);
  line-height: 1.35;
  font-weight: 500;
}
body.is-contact .ct-dept-check {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef2ff;
  color: var(--ct-blue);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s, transform 0.2s var(--ct-ease);
}
body.is-contact .ct-dept.is-on .ct-dept-check {
  opacity: 1;
  transform: scale(1);
  background: var(--ct-blue);
  color: #fff;
}
body.is-contact .ct-dept-check .shop-icon { width: 12px; height: 12px; }

/* Fields */
body.is-contact .ct-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.9rem;
}
@media (max-width: 640px) {
  body.is-contact .ct-field-grid { grid-template-columns: 1fr; }
}
body.is-contact .ct-field-full { grid-column: 1 / -1; }
body.is-contact .ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ct-soft);
}
body.is-contact .ct-field i,
body.is-contact .ct-msg-label em {
  font-style: normal;
  font-weight: 500;
  color: var(--ct-muted);
}
body.is-contact .ct-msg-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
body.is-contact .ct-field input,
body.is-contact .ct-field textarea {
  height: 48px;
  border-radius: 14px;
  border: 1.5px solid var(--ct-line);
  padding: 0 1rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ct-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
body.is-contact .ct-field textarea {
  height: auto;
  min-height: 160px;
  padding: 0.9rem 1rem;
  resize: vertical;
  line-height: 1.5;
}
body.is-contact .ct-field input:focus,
body.is-contact .ct-field textarea:focus {
  outline: none;
  border-color: var(--ct-blue);
  box-shadow: 0 0 0 4px rgba(36, 72, 198, 0.12);
}
body.is-contact .ct-field input::placeholder,
body.is-contact .ct-field textarea::placeholder {
  color: #a8b0c0;
  font-weight: 500;
}

body.is-contact .ct-submit-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ct-line);
}
body.is-contact .ct-privacy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ct-muted);
  max-width: 32ch;
  line-height: 1.4;
}
body.is-contact .ct-privacy a {
  color: var(--ct-blue);
  font-weight: 700;
}
body.is-contact .ct-submit {
  min-height: 48px;
  padding-inline: 1.4rem;
  box-shadow: 0 12px 28px rgba(36, 72, 198, 0.22);
}

/* Aside */
body.is-contact .ct-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: sticky;
  top: 1rem;
  animation: ct-rise 0.65s var(--ct-ease) 0.14s both;
}
@media (max-width: 960px) {
  body.is-contact .ct-aside { position: static; }
}
body.is-contact .ct-aside-card {
  background: #fff;
  border: 1px solid var(--ct-line);
  border-radius: 22px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 14px 36px rgba(6, 18, 47, 0.05);
}
body.is-contact .ct-aside-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ct-blue);
}
body.is-contact .ct-aside-kicker .shop-icon { width: 13px; height: 13px; }
body.is-contact .ct-aside-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ct-ink);
}
body.is-contact .ct-mail {
  display: block;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ct-ink);
  text-decoration: none;
  word-break: break-all;
}
body.is-contact .ct-mail:hover { color: var(--ct-blue); }
body.is-contact .ct-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
body.is-contact .ct-links a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ct-soft);
  text-decoration: none;
  background: #f7f9fd;
  transition: background 0.15s, color 0.15s;
}
body.is-contact .ct-links a:hover {
  background: #eef2ff;
  color: var(--ct-blue);
}
body.is-contact .ct-links .shop-icon { width: 15px; height: 15px; flex-shrink: 0; }

body.is-contact .ct-aside-company strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ct-ink);
  margin-bottom: 0.35rem;
}
body.is-contact .ct-aside-company span {
  display: block;
  font-size: 0.8rem;
  color: var(--ct-muted);
  line-height: 1.4;
}

body.is-contact .ct-aside-b2b {
  background: linear-gradient(155deg, #06122f 0%, #12308a 55%, #2448c6 100%);
  color: #fff;
  border: none;
}
body.is-contact .ct-aside-b2b .ct-aside-kicker { color: #c5d2ff; }
body.is-contact .ct-aside-b2b h3 { color: #fff; }
body.is-contact .ct-aside-b2b p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}
body.is-contact .ct-aside-b2b em { font-style: normal; font-weight: 700; color: #fff; }
body.is-contact .ct-b2b-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 42px;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ct-ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s var(--ct-ease);
}
body.is-contact .ct-b2b-btn:hover { transform: translateY(-1px); }
body.is-contact .ct-b2b-btn .shop-icon { width: 16px; height: 16px; }

body.is-contact .ct-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

@keyframes ct-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  body.is-contact .ct-eyebrow,
  body.is-contact .ct-hero h1,
  body.is-contact .ct-lead,
  body.is-contact .ct-panel,
  body.is-contact .ct-aside,
  body.is-contact .ct-success {
    animation: none;
  }
}
