/* ==========================================
   IRONSIDE - Shared Styles
   Light + Navy + Gold Palette
   ========================================== */

:root {
  --color-bg: #FAFAF8;
  --color-bg-elevated: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-border: #E5E5E0;
  --color-border-light: #F0F0EB;
  --color-text: #1A2B4A;
  --color-text-muted: #5A6A7A;
  --color-accent: #1A2B4A;
  --color-gold: #C9A227;
  --color-gold-light: #F5EFD9;
  --color-success: #2E7D4A;
  --color-success-light: #E8F5ED;
  --font-display: 'Libre Baskerville', serif;
  --font-body: 'Source Sans 3', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ==========================================
   NAVIGATION
   ========================================== */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.7; text-decoration: none; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--color-text-muted); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-text); text-decoration: none; }
@media (max-width: 768px) { .nav-links a:not(.btn) { display: none; } }

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.15s ease; border: none; text-decoration: none;
  font-family: var(--font-body);
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--color-accent); color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(26, 43, 74, 0.15);
}
.btn-primary:hover { background: #0F1A2E; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26, 43, 74, 0.2); }
.btn-secondary { background: transparent; color: var(--color-text); border: 2px solid var(--color-border); }
.btn-secondary:hover { border-color: var(--color-accent); }
.btn-gold { background: var(--color-gold); color: #1A1A1A; box-shadow: 0 2px 8px rgba(201, 162, 39, 0.25); }
.btn-gold:hover { background: #D4AD2E; transform: translateY(-1px); }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 70%; height: 150%;
  background: radial-gradient(ellipse at center, var(--color-gold-light) 0%, transparent 70%);
  opacity: 0.5; pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; gap: 48px; } }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-gold-light); border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; color: #8B7355;
  margin-bottom: 24px; animation: fadeInUp 0.6s ease-out;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--color-gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px); font-weight: 700;
  line-height: 1.2; margin-bottom: 20px; color: var(--color-text); animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero h1 em { font-style: italic; color: var(--color-gold); }
.hero-sub { font-size: 18px; color: var(--color-text-muted); margin-bottom: 32px; line-height: 1.7; animation: fadeInUp 0.6s ease-out 0.2s both; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeInUp 0.6s ease-out 0.3s both; }
.hero-visual { position: relative; animation: fadeInUp 0.8s ease-out 0.4s both; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: 10px; padding: 24px; text-align: center; transition: all 0.15s ease;
}
.stat-card:hover { border-color: var(--color-gold); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.stat-value { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--color-text); line-height: 1; }
.stat-label { font-size: 13px; color: var(--color-text-muted); margin-top: 8px; }

/* ==========================================
   SOCIAL PROOF
   ========================================== */

.social-proof {
  padding: 48px 0; border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border); background: var(--color-bg-elevated);
}
.social-proof-content { text-align: center; }
.social-proof p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.logo-grid { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; opacity: 0.5; }
.logo-placeholder { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-text-muted); }

/* ==========================================
   SECTION STYLES
   ========================================== */

.section-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--color-gold); font-weight: 700; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--color-text-muted); line-height: 1.7; }

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem { padding: 100px 0; }
.problem-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .comparison { grid-template-columns: 1fr; } }
.comparison-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: 10px; padding: 36px; transition: all 0.15s ease;
}
.comparison-card.negative { opacity: 0.8; }
.comparison-card.negative:hover { opacity: 0.9; }
.comparison-card.positive { border-color: var(--color-gold); border-width: 2px; box-shadow: 0 4px 24px rgba(201, 162, 39, 0.1); }
.comparison-card.positive:hover { box-shadow: 0 8px 32px rgba(201, 162, 39, 0.15); transform: translateY(-2px); }
.comparison-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.comparison-card.negative h3 { color: var(--color-text-muted); }
.comparison-card h3 .icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.comparison-card.negative h3 .icon { background: #F5F5F5; color: #999; }
.comparison-card.positive h3 .icon { background: var(--color-gold-light); color: var(--color-gold); }
.comparison-card ul { list-style: none; }
.comparison-card li { padding: 10px 0; border-bottom: 1px solid var(--color-border-light); display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.comparison-card li:last-child { border-bottom: none; }
.comparison-card.negative li::before { content: '✕'; color: #CCC; font-weight: 600; font-size: 12px; margin-top: 2px; }
.comparison-card.positive li::before { content: '✓'; color: var(--color-gold); font-weight: 700; margin-top: 1px; }

/* ==========================================
   HOW IT WORKS
   ========================================== */

.how-it-works { padding: 100px 0; background: var(--color-bg-elevated); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.how-it-works-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 40px; left: 20%; right: 20%; height: 2px; background: var(--color-border); z-index: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }
.step { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 10px; padding: 32px; text-align: center; position: relative; z-index: 1; transition: all 0.15s ease; }
.step:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--color-accent); color: #FFF; border-radius: 50%; font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; }

/* ==========================================
   ROLES
   ========================================== */

.roles { padding: 100px 0; }
.roles-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .roles-grid { grid-template-columns: 1fr; } }
.role-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 6px; padding: 20px; transition: all 0.15s ease; cursor: default; }
.role-card:hover { border-color: var(--color-gold); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.role-card h4 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.role-card p { font-size: 13px; color: var(--color-text-muted); }

/* ==========================================
   PRICING
   ========================================== */

.pricing { padding: 100px 0; background: var(--color-accent); color: #FFFFFF; }
.pricing .section-label { color: var(--color-gold); }
.pricing .section-title, .pricing .section-sub { color: #FFFFFF; }
.pricing .section-sub { opacity: 0.8; }
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
@media (max-width: 768px) { .pricing-cards { grid-template-columns: 1fr; } }
.pricing-card { background: #FFFFFF; color: var(--color-text); border-radius: 10px; padding: 40px; transition: all 0.15s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
.pricing-card.featured { position: relative; box-shadow: 0 12px 40px rgba(0,0,0,0.15); transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.featured::before { content: 'Best Value'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-gold); color: #1A1A1A; font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .price { font-family: var(--font-display); font-size: 44px; font-weight: 700; margin: 20px 0; color: var(--color-accent); }
.pricing-card .price span { font-size: 16px; font-weight: 500; color: var(--color-text-muted); }
.pricing-card .desc { color: var(--color-text-muted); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card li { padding: 8px 0; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-card li::before { content: '✓'; color: var(--color-gold); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* ==========================================
   TALENT CTA
   ========================================== */

.talent-cta { padding: 100px 0; background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-gold-light) 100%); }
.talent-cta-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .talent-cta-content { grid-template-columns: 1fr; gap: 40px; } }
.talent-cta-text h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.talent-cta-text h2 em { font-style: italic; color: var(--color-gold); }
.talent-cta-text p { font-size: 17px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 24px; }
.requirements { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 10px; padding: 32px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.requirements h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.requirements h3::before { content: ''; width: 4px; height: 20px; background: var(--color-gold); border-radius: 2px; }
.requirements ul { list-style: none; }
.requirements li { padding: 10px 0; border-bottom: 1px solid var(--color-border-light); display: flex; align-items: center; gap: 10px; font-size: 15px; }
.requirements li:last-child { border-bottom: none; }
.requirements li::before { content: '→'; color: var(--color-gold); font-weight: 600; }

/* ==========================================
   FAQ
   ========================================== */

.faq { padding: 100px 0; background: var(--color-bg-elevated); border-top: 1px solid var(--color-border); }
.faq-header { text-align: center; max-width: 500px; margin: 0 auto 48px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 6px; padding: 24px; transition: all 0.15s ease; }
.faq-item:hover { border-color: var(--color-gold); }
.faq-item h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* ==========================================
   FINAL CTA
   ========================================== */

.final-cta { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150%; height: 150%; background: radial-gradient(ellipse at center, var(--color-gold-light) 0%, transparent 60%); opacity: 0.4; pointer-events: none; }
.final-cta-content { position: relative; max-width: 600px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: var(--color-text-muted); margin-bottom: 32px; }
.final-cta .hero-ctas { justify-content: center; }

/* ==========================================
   FOOTER
   ========================================== */

footer { padding: 40px 0; border-top: 1px solid var(--color-border); background: var(--color-bg-elevated); }
footer .container { display: flex; justify-content: space-between; align-items: center; }
@media (max-width: 600px) { footer .container { flex-direction: column; gap: 20px; } }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--color-text-muted); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--color-text); }
.copyright { color: var(--color-text-muted); font-size: 14px; }

/* ==========================================
   FORM PAGES
   ========================================== */

.form-page { padding: 120px 0 80px; min-height: 100vh; }
.form-header { text-align: center; margin-bottom: 48px; }
.form-header h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; }
.form-header h1 em { font-style: italic; color: var(--color-gold); }
.form-header p { font-size: 17px; color: var(--color-text-muted); }

.progress-bar { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.progress-step { width: 40px; height: 4px; background: var(--color-border); border-radius: 2px; transition: all 0.25s ease; }
.progress-step.active { background: var(--color-gold); }
.progress-step.completed { background: var(--color-accent); }

.form-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 14px; padding: 48px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
@media (max-width: 600px) { .form-card { padding: 32px 24px; } }

.form-section { margin-bottom: 40px; }
.form-section:last-of-type { margin-bottom: 32px; }
.form-section-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--color-border); display: flex; align-items: center; gap: 10px; }
.form-section-title::before { content: ''; width: 4px; height: 18px; background: var(--color-gold); border-radius: 2px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--color-text); }
.form-group label span { color: var(--color-text-muted); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--color-border); border-radius: 6px;
  font-size: 16px; font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); transition: all 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px var(--color-gold-light); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0A0A0; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235A6A7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 44px;
}

.form-hint { font-size: 13px; color: var(--color-text-muted); margin-top: 6px; }

.checkbox-group { display: flex; flex-direction: column; gap: 12px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 20px; height: 20px; margin: 0; cursor: pointer; accent-color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.checkbox-item span { font-size: 15px; line-height: 1.4; }

.radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-item { flex: 1; min-width: 140px; }
.radio-item input[type="radio"] { display: none; }
.radio-item label { display: block; padding: 14px 20px; border: 2px solid var(--color-border); border-radius: 6px; text-align: center; cursor: pointer; transition: all 0.15s ease; font-weight: 500; }
.radio-item input[type="radio"]:checked + label { border-color: var(--color-gold); background: var(--color-gold-light); }
.radio-item label:hover { border-color: var(--color-gold); }

.form-actions { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--color-border); }

.success-message { text-align: center; padding: 48px 24px; }
.success-icon { width: 80px; height: 80px; background: var(--color-success-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--color-success); font-size: 36px; }
.success-message h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-message p { font-size: 17px; color: var(--color-text-muted); margin-bottom: 32px; }

/* ==========================================
   COMPANY INTAKE SPECIFIC
   ========================================== */

.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media (max-width: 500px) { .plan-cards { grid-template-columns: 1fr; } }
.plan-card { border: 2px solid var(--color-border); border-radius: 10px; padding: 24px; cursor: pointer; transition: all 0.15s ease; position: relative; }
.plan-card:hover { border-color: var(--color-gold); }
.plan-card.selected { border-color: var(--color-gold); background: var(--color-gold-light); }
.plan-card.recommended::before { content: 'Best Value'; position: absolute; top: -10px; right: 16px; background: var(--color-gold); color: #1A1A1A; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-card input[type="radio"] { display: none; }
.plan-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.plan-card .plan-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--color-accent); margin: 12px 0; }
.plan-card .plan-price span { font-size: 14px; font-weight: 400; color: var(--color-text-muted); }
.plan-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }

.urgency-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 600px) { .urgency-options { grid-template-columns: 1fr; } }
.urgency-option { border: 2px solid var(--color-border); border-radius: 6px; padding: 16px; cursor: pointer; transition: all 0.15s ease; text-align: center; }
.urgency-option:hover { border-color: var(--color-gold); }
.urgency-option.selected { border-color: var(--color-gold); background: var(--color-gold-light); }
.urgency-option input[type="radio"] { display: none; }
.urgency-option .urgency-icon { font-size: 24px; margin-bottom: 8px; }
.urgency-option h5 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.urgency-option p { font-size: 12px; color: var(--color-text-muted); }

.budget-range { display: flex; align-items: center; gap: 12px; }
.budget-range input { flex: 1; }
.budget-range span { color: var(--color-text-muted); }

.skills-input { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; border: 1px solid var(--color-border); border-radius: 6px; background: var(--color-bg); min-height: 52px; cursor: text; }
.skills-input:focus-within { border-color: var(--color-gold); box-shadow: 0 0 0 3px var(--color-gold-light); }
.skill-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--color-accent); color: #FFF; padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 500; }
.skill-tag button { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; padding: 0; font-size: 16px; line-height: 1; }
.skill-tag button:hover { color: #FFF; }
.skills-input input { flex: 1; min-width: 120px; border: none; background: none; padding: 6px 0; font-size: 15px; outline: none; }

.order-summary { background: var(--color-gold-light); border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 10px; padding: 24px; margin-top: 24px; }
.order-summary h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.order-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.order-line.total { border-top: 2px solid rgba(201, 162, 39, 0.3); margin-top: 8px; padding-top: 16px; font-weight: 700; font-size: 18px; }
