/* Geist Font Family */
@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('../r/stnof/Geist-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161e;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --accent: #51b6d5;
  --accent-purple: #3576C5;
  --accent-glow: rgba(100, 220, 255, 0.15);
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION (matches main site)
   ============================================ */
.site-header {
  position: fixed;
  top: clamp(12px, 2vh, 20px);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.navbar {
  width: min(1200px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: auto;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  transition: transform 0.3s ease;
}

.nav-brand img {
  height: 5rem;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.8s ease;
}

.nav-toggle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  border-radius: .3rem;
  padding: .1rem .3rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  border-radius: .3rem .3rem 0 0;
}

.toggle-indicator {
  position: absolute;
  height: calc(100% - 12px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: .2rem;
  z-index: 1;
  transition: left 0.15s ease-out, width 0.15s ease-out;
}

.toggle-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(53, 118, 197, 0.4) 30%,
    rgba(53, 118, 197, 0.6) 50%,
    rgba(53, 118, 197, 0.4) 70%,
    transparent 100%
  );
  border-radius: .4rem .4rem 0 0;
}

.toggle-item {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
  font-family: inherit;
}

.toggle-item svg {
  stroke: currentColor;
}

.toggle-item:hover {
  color: var(--text-primary);
}

.toggle-item.active {
  color: #000;
  opacity: .8;
}

.toggle-item.toggle-user {
  margin-left: auto;
  width: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-secondary);
}

.toggle-item.toggle-user:hover {
  color: var(--text-primary);
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.ct-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ct-grid-bg {
  position: absolute;
  inset: 0;
}

.ct-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.ct-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(53, 118, 197, 0.15) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.ct-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(81, 182, 213, 0.1) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
}

.ct-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(53, 118, 197, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 40%;
}

.ct-circuit-left,
.ct-circuit-right {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  opacity: 0.6;
}

.ct-circuit-left {
  left: 0;
}

.ct-circuit-right {
  right: 0;
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.ct-main {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(120px, 15vh, 160px) 0 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto auto 1fr;
  gap: 0 48px;
}

.ct-header {
  grid-column: 1 / 2;
  margin-bottom: 32px;
}

.ct-progress {
  grid-column: 1 / 2;
  margin-bottom: 40px;
}

.ct-form {
  grid-column: 1 / 2;
}

.ct-aside {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================
   HEADER
   ============================================ */
.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 118, 197, 0.1);
  border: 1px solid rgba(53, 118, 197, 0.25);
  color: var(--accent);
  margin-bottom: 20px;
}

.ct-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ct-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d7d7ef 45%, #9adcfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.ct-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.ct-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.ct-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(81, 182, 213, 0.4);
}

.ct-progress-steps {
  display: flex;
  gap: 8px;
}

.ct-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.ct-progress-step:hover {
  color: var(--text-primary);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ct-progress-step.active .step-num {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 12px rgba(53, 118, 197, 0.4);
}

.ct-progress-step.completed .step-num {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.ct-progress-step.active {
  color: var(--text-primary);
}

.ct-progress-step.completed {
  color: var(--text-secondary);
}

.step-label {
  font-weight: 500;
}

/* ============================================
   FORM STEPS
   ============================================ */
.ct-step {
  display: none;
  animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ct-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.ct-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ============================================
   STEP 1: SERVICE CARDS
   ============================================ */
.ct-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.ct-service-card {
  cursor: pointer;
  position: relative;
}

.ct-service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ct-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ct-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
}

.ct-service-card:hover .ct-card-inner {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.ct-service-card input:checked ~ .ct-card-inner {
  background: rgba(53, 118, 197, 0.08);
  border-color: rgba(53, 118, 197, 0.4);
  box-shadow: 0 0 20px rgba(53, 118, 197, 0.08);
}

.ct-service-card input:checked ~ .ct-card-inner::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(53, 118, 197, 0.4) 30%,
    rgba(53, 118, 197, 0.6) 50%,
    rgba(53, 118, 197, 0.4) 70%,
    transparent 100%
  );
}

.ct-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(53, 118, 197, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ct-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.ct-service-card input:checked ~ .ct-card-inner .ct-card-icon {
  background: rgba(53, 118, 197, 0.2);
}

.ct-card-text {
  flex: 1;
  min-width: 0;
}

.ct-card-text h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.ct-card-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ct-card-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  margin-top: 2px;
}

.ct-card-check svg {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s ease;
}

.ct-service-card input:checked ~ .ct-card-inner .ct-card-check {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px rgba(53, 118, 197, 0.3);
}

.ct-service-card input:checked ~ .ct-card-inner .ct-card-check svg {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   STEP 2: FIELDS
   ============================================ */
.ct-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.ct-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field-full {
  grid-column: 1 / -1;
}

.ct-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.ct-required {
  color: #ef4444;
}

.ct-optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

/* Budget / Timeline pills */
.ct-budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-budget-pill {
  cursor: pointer;
  position: relative;
}

.ct-budget-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ct-budget-pill span {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.ct-budget-pill:hover span {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.ct-budget-pill input:checked ~ span {
  background: rgba(53, 118, 197, 0.15);
  border-color: rgba(53, 118, 197, 0.5);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(53, 118, 197, 0.1);
}

/* Textarea */
.ct-textarea-wrap {
  position: relative;
}

.ct-textarea-wrap textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.6;
  resize: vertical;
  transition: all 0.25s ease;
}

.ct-textarea-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.ct-textarea-wrap textarea:focus {
  outline: none;
  border-color: rgba(53, 118, 197, 0.5);
  background: rgba(53, 118, 197, 0.04);
  box-shadow: 0 0 0 3px rgba(53, 118, 197, 0.08);
}

.ct-textarea-count {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
}

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

.ct-input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  transition: color 0.25s ease;
}

.ct-input-wrap input,
.ct-input-wrap select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ct-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.ct-input-wrap input:focus,
.ct-input-wrap select:focus {
  outline: none;
  border-color: rgba(53, 118, 197, 0.5);
  background: rgba(53, 118, 197, 0.04);
  box-shadow: 0 0 0 3px rgba(53, 118, 197, 0.08);
}

.ct-input-wrap:focus-within .ct-input-icon {
  color: var(--accent);
}

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

.ct-select-arrow {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.ct-input-wrap select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Field validation */
.ct-input-wrap input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.ct-field-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
}

/* ============================================
   STEP 4: REVIEW
   ============================================ */
.ct-review {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 32px;
}

.ct-review::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(53, 118, 197, 0.3) 50%,
    transparent 100%
  );
  margin-bottom: 24px;
  margin-top: -24px;
  border-radius: 14px 14px 0 0;
}

.ct-review-section {
  display: flex;
  gap: 16px;
  padding: 12px 0;
}

.ct-review-section + .ct-review-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ct-review-label {
  width: 80px;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding-top: 2px;
}

.ct-review-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.ct-review-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-height: 80px;
  overflow-y: auto;
}

.ct-review-divider {
  height: 1px;
  background: rgba(53, 118, 197, 0.15);
  margin: 8px 0;
}

/* ============================================
   SUCCESS STATE
   ============================================ */
.ct-success {
  text-align: center;
  padding: 40px 0;
}

.ct-success .ct-step-title {
  font-size: 1.8rem;
}

.ct-success .ct-step-desc {
  max-width: 480px;
  margin: 0 auto 32px;
}

.ct-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ct-success-icon svg {
  width: 36px;
  height: 36px;
  color: #22c55e;
}

@keyframes successPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ct-success-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
  margin: 0 auto;
}

.ct-success-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.ct-success-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */
.ct-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

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

.ct-btn-next,
.ct-btn-submit {
  background: linear-gradient(135deg, var(--accent-purple), rgba(53, 118, 197, 0.8));
  color: #fff;
  box-shadow: 0 4px 16px rgba(53, 118, 197, 0.25);
}

.ct-btn-next:hover,
.ct-btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(53, 118, 197, 0.35);
}

.ct-btn-back {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-btn-back:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Submit loading */
.ct-btn-submit {
  position: relative;
  min-width: 140px;
  justify-content: center;
}

.ct-btn-loading {
  display: none;
}

.ct-btn-submit.loading .ct-btn-text,
.ct-btn-submit.loading .ct-btn-arrow {
  opacity: 0;
}

.ct-btn-submit.loading .ct-btn-loading {
  display: flex;
}

.ct-spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

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

/* ============================================
   ASIDE PANEL
   ============================================ */
.ct-aside-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.ct-aside-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(53, 118, 197, 0.3) 50%,
    transparent 100%
  );
}

.ct-aside-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ct-aside-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 10px rgba(53, 118, 197, 0.5);
}

.ct-aside-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-aside-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ct-aside-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(53, 118, 197, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-aside-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.ct-aside-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-aside-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ct-aside-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Quick contact */
.ct-aside-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
}

.ct-quick-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.ct-quick-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ct-quick-link:hover {
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ct-main {
    grid-template-columns: 1fr;
  }

  .ct-aside {
    grid-column: 1;
    grid-row: auto;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .ct-aside-quick {
    justify-content: center;
  }
}

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

  .ct-fields-grid {
    grid-template-columns: 1fr;
  }

  .ct-aside {
    grid-template-columns: 1fr;
  }

  .ct-circuit-left,
  .ct-circuit-right {
    display: none;
  }

  .nav-brand img {
    height: 3rem;
  }
}

@media (max-width: 500px) {
  .ct-progress-steps {
    gap: 4px;
  }

  .step-label {
    display: none;
  }

  .ct-budget-options {
    gap: 6px;
  }

  .ct-budget-pill span {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .ct-btn {
    padding: 11px 18px;
    font-size: 0.85rem;
  }
}

/* Submit error message */
.ct-submit-error {
  width: 100%;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #ef4444;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 12px;
}
