.ct-container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
@media (min-width: 760px) { .ct-container { width: min(1180px, calc(100% - 48px)); } }

/* Breadcrumb */
.ct-breadcrumb { padding: 12px 0; background: #f5f7fa; border-bottom: 1px solid rgba(111,129,151,.24); }
.ct-bc-list { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; list-style: none; margin: 0; padding: 0; font-size: 13px; }
.ct-bc-list li { display: flex; align-items: center; gap: 8px; }
.ct-bc-list li:not(:last-child)::after { content: "\203A"; color: #6f8197; }
.ct-bc-list a { color: #1c375b; text-decoration: none; }
.ct-bc-list a:hover { text-decoration: underline; }
.ct-bc-list [aria-current="page"] { color: #6f8197; }

/* Hero */
.ct-hero { background: #1c375b; padding: 52px 0 44px; border-bottom: 4px solid #6f8197; text-align: center; }
.ct-eyebrow { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #6f8197; }
.ct-hero h1 { margin: 0 0 14px; color: #fff; font-size: clamp(28px,5vw,46px); line-height: 1.1; letter-spacing: -.02em; }
.ct-hero-sub { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.75; }

/* Section & grid */
.ct-section { padding: 48px 0 64px; background: #fff; }
.ct-grid { display: grid; gap: 36px; align-items: start; }
@media (min-width: 920px) { .ct-grid { grid-template-columns: 1fr 340px; gap: 48px; } }
@media (min-width: 1080px) { .ct-grid { grid-template-columns: 1fr 360px; } }

/* Success */
.ct-success { display: flex; gap: 22px; align-items: flex-start; padding: 32px; background: #f5f7fa; border: 1px solid rgba(111,129,151,.28); border-left: 5px solid #1c375b; }
.ct-success-icon { flex-shrink: 0; width: 52px; height: 52px; }
.ct-success-icon svg { width: 52px; height: 52px; }
.ct-success h2 { margin: 0 0 10px; color: #1c375b; font-size: clamp(18px,2.5vw,22px); }
.ct-success p { margin: 0; color: #6f8197; font-size: 15px; line-height: 1.7; }
.ct-success a { color: #1c375b; font-weight: 700; }

/* Error banner */
.ct-error-banner { padding: 14px 18px; margin-bottom: 22px; background: #fdedec; border-left: 4px solid #c0392b; color: #922b21; font-size: 14px; line-height: 1.6; }
.ct-error-banner ul { margin: 8px 0 0; padding-left: 18px; }
.ct-error-banner li { margin-bottom: 4px; }

/* Form header */
.ct-form-header { margin-bottom: 26px; padding-bottom: 18px; border-bottom: 2px solid #1c375b; }
.ct-form-header h2 { margin: 0 0 6px; color: #1c375b; font-size: clamp(20px,2.5vw,26px); }
.ct-form-header p { margin: 0; color: #6f8197; font-size: 15px; }

/* Form */
.ct-form { display: grid; gap: 18px; }
.ct-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .ct-row { grid-template-columns: 1fr 1fr; } }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field label { font-size: 13px; font-weight: 700; color: #1c375b; display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.ct-required { color: #c0392b; font-size: 14px; line-height: 1; }
.ct-optional { font-size: 11px; font-weight: 500; color: #6f8197; }
.ct-char-hint { margin-left: auto; font-size: 11px; font-weight: 500; color: #6f8197; }

.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 11px 14px;
  border: 1px solid rgba(111,129,151,.45);
  font-size: 15px;
  font-family: inherit;
  color: #1c375b;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236f8197' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.ct-field textarea { resize: vertical; min-height: 160px; line-height: 1.65; }

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus { outline: none; border-color: #1c375b; box-shadow: 0 0 0 3px rgba(28,55,91,.12); }

/* Error state */
.ct-field-error input,
.ct-field-error select,
.ct-field-error textarea { border-color: #c0392b; background: #fef9f9; }
.ct-field-error input:focus,
.ct-field-error select:focus,
.ct-field-error textarea:focus { box-shadow: 0 0 0 3px rgba(192,57,43,.14); }

.ct-error-msg { margin: 0; font-size: 13px; color: #c0392b; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.ct-error-msg::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: #c0392b; color: #fff; font-size: 11px; font-weight: 900; border-radius: 50%; flex-shrink: 0; }

.ct-char-count { margin: 0; font-size: 12px; color: #6f8197; text-align: right; }
.ct-privacy-note { margin: 0; font-size: 13px; color: #6f8197; line-height: 1.6; }
.ct-privacy-note a { color: #1c375b; }

/* Submit */
.ct-submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 28px; min-height: 52px; background: #1c375b; color: #fff; border: none; font-size: 16px; font-weight: 800; cursor: pointer; font-family: inherit; letter-spacing: .01em; transition: background .15s, transform .12s; width: 100%; }
.ct-submit-btn:hover { background: #6f8197; }
.ct-submit-btn:active { transform: scale(0.99); }

.ct-btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: transparent; color: #1c375b; border: 1px solid #1c375b; font-size: 14px; font-weight: 700; text-decoration: none; font-family: inherit; transition: background .15s, color .15s; }
.ct-btn-secondary:hover { background: #1c375b; color: #fff; }

/* Sidebar */
.ct-sidebar { display: grid; gap: 20px; align-content: start; }
.ct-info-card { padding: 22px 24px; border: 1px solid rgba(111,129,151,.28); background: #fff; }
.ct-info-card h2 { margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid #1c375b; color: #1c375b; font-size: 16px; font-weight: 800; }

.ct-info-item { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(111,129,151,.18); }
.ct-info-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.ct-info-icon { flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #f5f7fa; border: 1px solid rgba(111,129,151,.22); color: #1c375b; }
.ct-info-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #6f8197; margin-bottom: 3px; }
.ct-info-value { display: block; font-size: 15px; font-weight: 700; color: #1c375b; text-decoration: none; line-height: 1.4; }
a.ct-info-value:hover { color: #6f8197; text-decoration: underline; }
.ct-address { font-style: normal; line-height: 1.65; }
.ct-info-sub { display: block; font-size: 12px; color: #6f8197; margin-top: 3px; }

/* Steps card */
.ct-steps-card { background: #f5f7fa; }
.ct-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.ct-steps li { display: flex; align-items: flex-start; gap: 14px; }
.ct-step-num { flex-shrink: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: #1c375b; color: #fff; font-size: 14px; font-weight: 900; border-radius: 50%; }
.ct-steps li strong { display: block; color: #1c375b; font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.ct-steps li p { margin: 0; color: #6f8197; font-size: 13px; line-height: 1.55; }

/* Quick links */
.ct-quick-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.ct-quick-links li a { display: flex; align-items: center; padding: 9px 12px; color: #1c375b; font-size: 14px; font-weight: 600; text-decoration: none; background: #f5f7fa; border-left: 3px solid transparent; transition: border-color .15s, background .15s; }
.ct-quick-links li a::after { content: "\2192"; margin-left: auto; font-size: 15px; color: #6f8197; }
.ct-quick-links li a:hover { background: rgba(28,55,91,.07); border-left-color: #1c375b; }