/* =============================================================
   CONTACT PAGE — contact.css
   Premium contact page styles for GlizPharma
   Depends on: style.css (base design system)
============================================================= */

/* =============================================================
   BREADCRUMB (Light Variant)
============================================================= */
.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  font-family: var(--font-body);
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
}

.breadcrumb ol li::after {
  content: '/';
  color: var(--slate-light);
}

.breadcrumb ol li:last-child::after {
  display: none;
}

.breadcrumb ol li a {
  color: var(--slate);
  transition: color var(--dur-fast) var(--ease);
}

.breadcrumb ol li a:hover {
  color: var(--blue-600);
}

.breadcrumb ol li[aria-current="page"] {
  color: var(--navy-800);
  font-weight: 600;
}

.breadcrumb--light ol li,
.breadcrumb--light ol li a {
  color: rgba(255,255,255,0.65);
}

.breadcrumb--light ol li::after {
  color: rgba(255,255,255,0.35);
}

.breadcrumb--light ol li[aria-current="page"] {
  color: rgba(255,255,255,0.9);
}

/* =============================================================
   CONTACT HERO
============================================================= */
.ct-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--blue-600) 100%);
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ct-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, black 30%, transparent 80%);
}

.ct-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.ct-hero__glow--one {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(44, 166, 201, 0.22), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

.ct-hero__glow--two {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(27, 111, 184, 0.2), transparent 70%);
  animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.ct-hero__arc {
  position: absolute;
  top: -80px;
  right: 3%;
  width: 380px;
  height: 380px;
  opacity: 0.08;
}

.ct-hero__arc circle {
  fill: none;
  stroke: var(--white);
  stroke-width: 1px;
}

.ct-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.ct-hero__inner .eyebrow {
  color: var(--teal-400);
}

.ct-hero__inner .eyebrow__dot {
  background: var(--teal-400);
}

.ct-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 8px;
  margin-bottom: 20px;
}

.ct-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 55ch;
  margin-bottom: 36px;
}

/* Quick chips */
.ct-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  backdrop-filter: blur(8px);
}

.ct-chip svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ct-chip:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.ct-chip--loc {
  cursor: default;
}

.ct-chip--loc:hover {
  transform: none;
}

/* =============================================================
   CONTACT INFO CARDS
============================================================= */
.ct-cards-section {
  padding: 0 0 0;
  position: relative;
  z-index: 2;
  margin-top: -48px;
}

.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ct-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  position: relative;
  overflow: hidden;
}

.ct-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
  border-radius: 0 0 2px 2px;
}

.ct-card:hover::before {
  transform: scaleX(1);
}

.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 111, 184, 0.2);
}

.ct-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--dur-fast) var(--ease);
}

.ct-card:hover .ct-card__icon {
  transform: scale(1.08);
}

.ct-card__icon svg {
  width: 22px;
  height: 22px;
}

.ct-card__icon--blue {
  background: linear-gradient(135deg, rgba(27,111,184,0.12), rgba(44,134,214,0.12));
  color: var(--blue-600);
}

.ct-card__icon--teal {
  background: linear-gradient(135deg, rgba(44,166,201,0.12), rgba(79,192,222,0.12));
  color: var(--teal-500);
}

.ct-card__icon--navy {
  background: linear-gradient(135deg, rgba(11,32,56,0.1), rgba(14,42,71,0.1));
  color: var(--navy-700);
}

.ct-card__icon--green {
  background: linear-gradient(135deg, rgba(30,142,90,0.12), rgba(30,142,90,0.06));
  color: var(--success);
}

.ct-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ct-card__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ct-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue-600);
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease);
}

.ct-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease);
}

.ct-card__link:hover svg {
  transform: translate(2px, -2px);
}

.ct-card__badge {
  margin-top: 4px;
}

.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.ct-badge--open {
  background: rgba(30,142,90,0.1);
  color: var(--success);
  border: 1px solid rgba(30,142,90,0.2);
}

.ct-badge--open::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 2s ease-in-out infinite;
}

.ct-badge--closed {
  background: rgba(196,64,43,0.08);
  color: var(--error);
  border: 1px solid rgba(196,64,43,0.15);
}

.ct-badge--closed::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--error);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* =============================================================
   CONTACT MAIN GRID (Panel + Form)
============================================================= */
.ct-main-section {
  padding-top: 80px;
  background: var(--off-white);
}

.ct-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Left: Info Panel ─────────────────────────────────────── */
.ct-info-panel__inner {
  position: sticky;
  top: calc(var(--header-h-scrolled) + 24px);
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: white;
  overflow: hidden;
}

.ct-info-panel__inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(44,166,201,0.1);
  pointer-events: none;
}

.ct-info-panel__inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(27,111,184,0.08);
  pointer-events: none;
}

.ct-info-panel__inner .eyebrow {
  color: var(--teal-400);
  font-size: 11px;
}

.ct-info-panel__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 10px 0 16px;
}

.ct-info-panel__text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.ct-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ct-info-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-400);
}

.ct-info-item__icon svg {
  width: 17px;
  height: 17px;
}

.ct-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-info-item strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ct-info-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.ct-info-item a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-400);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.ct-info-item a:hover {
  color: white;
}

.ct-info-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.ct-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-info-social p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.ct-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.ct-social-btn svg {
  width: 17px;
  height: 17px;
}

.ct-social-btn:hover {
  background: var(--teal-500);
  transform: scale(1.1);
}

.ct-info-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.ct-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.ct-cert-badge svg {
  width: 13px;
  height: 13px;
  color: var(--teal-400);
}

/* ── Right: Form Card ─────────────────────────────────────── */
.ct-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.ct-form-card__header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.ct-form-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ct-form-card__subtitle {
  font-size: 15px;
  color: var(--slate);
}

/* Form elements */
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ct-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.ct-form-group:last-child {
  margin-bottom: 0;
}

.ct-form-row .ct-form-group {
  margin-bottom: 0;
}

.ct-form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
  font-family: var(--font-display);
}

.ct-required {
  color: var(--error);
  margin-left: 2px;
}

.ct-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.ct-input-wrap > i:first-child {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--slate-light);
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
}

.ct-input-wrap input,
.ct-input-wrap select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.ct-input-wrap input::placeholder {
  color: var(--slate-light);
}

.ct-input-wrap input:focus,
.ct-input-wrap select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3.5px rgba(44, 134, 214, 0.14);
}

.ct-input-wrap input:focus + i,
.ct-input-wrap input:focus ~ i,
.ct-input-wrap:focus-within > i:first-child {
  color: var(--blue-500);
}

.ct-input-wrap--select {
  position: relative;
}

.ct-select-arrow {
  position: absolute;
  right: 14px;
  width: 15px;
  height: 15px;
  color: var(--slate-light);
  pointer-events: none;
}

.ct-input-wrap--select select {
  padding-right: 40px;
  cursor: pointer;
}

.ct-textarea-wrap {
  position: relative;
}

.ct-textarea-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
  min-height: 140px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none;
  line-height: 1.65;
}

.ct-textarea-wrap textarea::placeholder {
  color: var(--slate-light);
}

.ct-textarea-wrap textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3.5px rgba(44, 134, 214, 0.14);
}

.ct-error {
  display: none;
  font-size: 12.5px;
  color: var(--error);
  font-weight: 500;
  margin-top: 2px;
}

/* Submit button */
.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--blue-600) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  box-shadow: 0 8px 24px rgba(27,111,184,0.3);
}

.ct-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--teal-500) 100%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}

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

.ct-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27,111,184,0.35);
}

.ct-submit-btn:active {
  transform: translateY(-1px);
}

.ct-submit-btn__text,
.ct-submit-btn__icon {
  position: relative;
  z-index: 1;
}

.ct-submit-btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-fast) var(--ease);
}

.ct-submit-btn:hover .ct-submit-btn__icon {
  transform: translate(2px, -2px);
}

.ct-submit-btn__loader {
  display: none;
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.ct-submit-btn.is-loading .ct-submit-btn__text {
  opacity: 0.7;
}

.ct-submit-btn.is-loading .ct-submit-btn__icon {
  display: none;
}

.ct-submit-btn.is-loading .ct-submit-btn__loader {
  display: block;
}

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

/* Status messages */
.ct-form-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.ct-form-status[hidden] {
  display: none;
}

.ct-form-status svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ct-form-status div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-form-status strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.ct-form-status p {
  font-size: 14px;
  line-height: 1.55;
}

.ct-form-status--success {
  background: rgba(30,142,90,0.08);
  border: 1px solid rgba(30,142,90,0.2);
  color: #145e3c;
}

.ct-form-status--success svg {
  color: var(--success);
}

.ct-form-status--error {
  background: rgba(196,64,43,0.07);
  border: 1px solid rgba(196,64,43,0.18);
  color: #8b2318;
}

.ct-form-status--error svg {
  color: var(--error);
}

.ct-form-status--error a {
  color: var(--error);
  font-weight: 600;
  text-decoration: underline;
}

/* =============================================================
   GOOGLE MAP
============================================================= */
.ct-map-section {
  background: var(--white);
}

.ct-map-header {
  padding: 64px 0 40px;
  text-align: center;
}

.ct-map-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  margin: 8px 0;
}

.ct-map-subtitle {
  font-size: 15px;
  color: var(--slate);
  margin-top: 8px;
}

.ct-map-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.ct-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}

/* Floating pin card */
.ct-map-pin-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  z-index: 10;
}

.ct-map-pin-card__icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-600), var(--teal-500));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.ct-map-pin-card__icon svg {
  width: 19px;
  height: 19px;
}

.ct-map-pin-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-map-pin-card__info strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
}

.ct-map-pin-card__info span {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.4;
}

.ct-map-pin-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue-600);
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease);
}

.ct-map-pin-card__link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--dur-fast) var(--ease);
}

.ct-map-pin-card__link:hover svg {
  transform: translate(2px, -2px);
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1100px) {
  .ct-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-main-grid {
    grid-template-columns: 360px 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .ct-main-grid {
    grid-template-columns: 1fr;
  }

  .ct-info-panel__inner {
    position: static;
  }
}

@media (max-width: 767px) {
  .ct-hero {
    padding: 72px 0 52px;
  }

  .ct-hero__title {
    font-size: 36px;
  }

  .ct-cards-section {
    margin-top: -32px;
  }

  .ct-form-card {
    padding: 28px 22px;
  }

  .ct-map-wrap {
    height: 360px;
  }

  .ct-map-pin-card {
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .ct-map-header {
    padding: 48px 0 28px;
  }
}

@media (max-width: 639px) {
  .ct-cards-grid {
    grid-template-columns: 1fr;
  }

  .ct-form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .ct-form-row .ct-form-group {
    margin-bottom: 20px;
  }

  .ct-hero__chips {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 479px) {
  .ct-info-panel__inner {
    padding: 28px 22px;
  }

  .ct-info-certs {
    flex-direction: column;
  }
}
