*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #eef2f6;
  --surface:       #ffffff;
  --surface-2:     #f6f8fb;
  --border:        rgba(15,23,42,.10);
  --border-strong: rgba(15,23,42,.18);
  --text:          #101726;
  --muted:         #5f6977;
  --faint:         #8591a1;
  --accent:        #01696f;
  --accent-h:      #0c4e54;
  --accent-glow:   rgba(1,105,111,.15);
  --shadow:        0 8px 30px rgba(15,23,42,.07);
  --radius:        10px;
  --wrap:          900px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.ff-wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}

/* ─── Hero ─── */
.ct-hero {
  background: linear-gradient(160deg, #07101d 0%, #0c1e34 60%, #071a18 100%);
  color: #eaf0f6;
  padding: 20px 0 36px;
  position: relative;
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 450px 280px at 85% 120%, rgba(1,105,111,.20) 0%, transparent 70%);
  pointer-events: none;
}
.ct-hero-inner { position: relative; }

.ct-breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: rgba(234,240,246,.45);
  margin-bottom: 18px;
}
.ct-breadcrumb a:hover { color: rgba(234,240,246,.75); }

.ct-kicker {
  display: inline-block; margin-bottom: 14px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(78,201,208,.10);
  border: 1px solid rgba(78,201,208,.22);
  color: #8ee8ed;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
}

.ct-hero h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.75rem, 1.1rem + 2.2vw, 2.9rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 12px; color: #eaf0f6;
}
.ct-hero p {
  max-width: 60ch;
  color: rgba(234,240,246,.68);
  font-size: 1rem; line-height: 1.75;
}

/* ─── Body / Layout ─── */
.ct-body { padding: 36px 0 72px; }

.ct-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* ─── Card ─── */
.ct-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.ct-card-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); margin-bottom: 6px;
}
.ct-card-sub {
  font-size: .875rem; color: var(--muted); margin-bottom: 24px;
}

/* ─── Form ─── */
.ct-form { display: flex; flex-direction: column; gap: 16px; }

.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ct-field { display: flex; flex-direction: column; gap: 5px; }

.ct-label {
  font-size: .82rem; font-weight: 700;
  color: var(--text); letter-spacing: .02em;
}
.ct-label .req { color: var(--accent); margin-left: 2px; }

.ct-input, .ct-select, .ct-textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface-2); color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .93rem; outline: none; appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.ct-input:focus, .ct-select:focus, .ct-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: #fff;
}
.ct-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238591a1' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.ct-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.ct-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 28px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 6px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem; font-weight: 800;
  cursor: pointer;
  transition: background .15s, transform .1s;
  align-self: flex-start;
}
.ct-submit:hover { background: var(--accent-h); }
.ct-submit:active { transform: scale(.98); }

.ct-alert {
  padding: 12px 16px; border-radius: 6px;
  font-size: .89rem; line-height: 1.5; margin-bottom: 18px;
}
.ct-alert--error {
  background: rgba(220,38,38,.07);
  border: 1px solid rgba(220,38,38,.22);
  color: #991b1b;
}
.ct-alert--success {
  background: rgba(1,105,111,.07);
  border: 1px solid rgba(1,105,111,.22);
  color: var(--accent-h); font-weight: 600;
}
.ct-alert ul { padding-left: 18px; }
.ct-alert ul li { margin-top: 4px; }

/* ─── Sidebar ─── */
.ct-sidebar { display: flex; flex-direction: column; gap: 16px; }

.ct-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.ct-side-card--accent {
  background: linear-gradient(160deg, rgba(1,105,111,.07), rgba(1,105,111,.02));
  border-color: rgba(1,105,111,.20);
}
.ct-side-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 12px;
}

/* Contact method rows */
.ct-method {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.ct-method:last-child { border-bottom: none; padding-bottom: 0; }
.ct-method-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  background: rgba(1,105,111,.10);
  color: var(--accent);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 1rem;
}
.ct-method-label {
  font-size: .8rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; line-height: 1;
  margin-bottom: 3px;
}
.ct-method-value {
  font-size: .88rem; font-weight: 600; color: var(--text);
}
.ct-method-note {
  font-size: .77rem; color: var(--faint); margin-top: 1px;
}

.ct-topic-list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.ct-topic-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--muted);
  padding: 7px 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 5px;
}
.ct-topic-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

@media (max-width: 780px) {
  .ct-layout { grid-template-columns: 1fr; }
  .ct-sidebar { order: -1; }
}
@media (max-width: 520px) {
  .ct-row { grid-template-columns: 1fr; }
}