@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ── Page scroll fix ── */
.main {
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
}
.menu {
  position: fixed !important;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── HERO ── */
.ct-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(37,99,235,0.2), transparent 56%),
    linear-gradient(140deg, #0a0f1e 0%, #111827 62%, #172554 100%);
}
.ct-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 140px 0 60px;
}
.ct-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #2563EB;
  display: inline-block;
}
.ct-heading {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  color: #f5f5f5;
  margin-bottom: 16px;
}
.ct-heading em { font-style: normal; color: #2563EB; }
.ct-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,245,245,0.6);
  max-width: 480px;
}

/* ── MAIN LAYOUT ── */
.ct-main {
  padding: 80px 32px 100px;
  background: #ffffff;
}
.ct-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── LEFT INFO ── */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 120px;
}
.ct-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-label {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #2563EB;
  display: block;
  margin-bottom: 4px;
}
.ct-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17,24,39,0.06);
}
.ct-contact-item:last-child { border-bottom: none; }
.ct-contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-contact-icon svg {
  width: 15px; height: 15px;
  stroke: #2563EB; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ct-contact-label {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 3px;
}
.ct-contact-val {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: color .2s;
}
.ct-contact-val:hover { color: #2563EB; }

.ct-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.2);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2563EB;
}
.ct-response-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563EB;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.ct-info-note {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #6B7280;
}
.ct-quick-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── FORM ── */
.ct-form-wrap {
  position: relative;
}
.ct-form-header {
  margin-bottom: 32px;
}
.ct-form-header h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ct-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-field-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6B7280;
}
.ct-optional {
  font-size: 10px;
  color: #9CA3AF;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* Topic toggles */
.ct-toggle-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ct-toggle {
  font-family: 'Roboto', sans-serif;
  padding: 8px 16px;
  border: 1.5px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  transition: all .15s;
  user-select: none;
}
.ct-toggle:hover {
  border-color: #2563EB;
  color: #2563EB;
}
.ct-toggle.active {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
}

/* Inputs */
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-form input,
.ct-form textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #111827;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: none;
  appearance: none;
}
.ct-form input:focus,
.ct-form textarea:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: #fff;
}
.ct-form input.error,
.ct-form textarea.error {
  border-color: #ef4444;
}

/* Submit button */
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  background: #2563EB;
  color: #fff;
  font-family: 'Google Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, opacity .2s;
  width: 100%;
}
.ct-submit svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none; stroke-width: 2;
  transition: transform .2s;
}
.ct-submit:hover:not(:disabled) { background: #1d4ed8; transform: translateY(-1px); }
.ct-submit:hover:not(:disabled) svg { transform: translateX(4px); }
.ct-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.ct-submit.loading { opacity: 0.7; pointer-events: none; }

.ct-form-note {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
}

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(37,99,235,0.15);
  background: #f0f5ff;
}
.ct-success.visible { display: flex; }
.ct-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 2px solid #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2563EB;
  margin-bottom: 20px;
}
.ct-success h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 24px;
  color: #111827;
  margin-bottom: 8px;
}
.ct-success p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #6B7280;
  max-width: 320px;
  margin-bottom: 8px;
}
.ct-success-ref {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #2563EB;
  letter-spacing: .06em;
  margin-bottom: 24px;
}

/* Buttons */
.ct-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  background: #2563EB;
  color: #fff !important;
  font-family: 'Google Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s;
  border: none;
  text-decoration: none;
}
.ct-btn-primary:hover { background: #1d4ed8; }
.ct-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  background: none;
  border: 1px solid rgba(17,24,39,0.15);
  color: #374151 !important;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.ct-btn-outline:hover { border-color: #2563EB; color: #2563EB !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ct-main-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ct-info { position: static; }
}
@media (max-width: 600px) {
  .ct-hero-inner {
    width: calc(100% - 40px);
    padding: 130px 0 48px;
  }
  .ct-main { padding: 56px 20px 72px; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-toggle-group { gap: 4px; }
  .ct-toggle { font-size: 12px; padding: 7px 12px; }
}
