:root {
  --night: #0E1A2B; --night-deep: #050B16; --night-700: #26344A; --night-600: #344A65; --night-400: #5C7494; --night-200: #B9C7D7;
  --saffron: #E89A2A; --saffron-light: #F3B654; --saffron-50: #FEF6E8; --saffron-700: #A06717;
  --ivory: #F4F1EA; --ivory-warm: #ECE6D6; --ivory-50: #FAFAF9;
  --mute: #6F6957; --line: rgba(14,26,43,.10); --line-strong: rgba(14,26,43,.18);
  --success: #2D9558; --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ivory);
  color: var(--night);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

main, nav, footer { position: relative; z-index: 2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* NAV */
nav {
  padding: 22px 0;
  position: sticky; top: 0;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit'; font-weight: 700; font-size: 22px;
  letter-spacing: -0.04em; color: var(--night); text-decoration: none;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
@media (max-width: 760px) { .nav-links { display: none; } }
.nav-link {
  color: var(--night-700);
  font-family: 'Outfit'; font-weight: 500; font-size: 15px;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--saffron); }
.nav-link.active { color: var(--saffron); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* BTN */
.btn {
  font-family: 'Outfit'; font-weight: 500; font-size: 15px;
  padding: 12px 22px; border-radius: 8px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.005em;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--night); color: var(--ivory); }
.btn-primary:hover { background: var(--night-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14,26,43,0.25); }
.btn-accent { background: var(--saffron); color: var(--night); }
.btn-accent:hover { background: var(--saffron-light); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(232,154,42,0.35); }
.btn-ghost { background: transparent; color: var(--night); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--night); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
@media (max-width: 600px) { .btn-sm-hide { display: none; } }

/* HERO */
.hero { padding: 100px 0 120px; position: relative; overflow: hidden; }
.hero-grain-curve { position: absolute; right: -100px; top: 40px; width: 700px; height: 700px; opacity: 0.06; pointer-events: none; }
.hero-grain-curve svg { width: 100%; height: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; position: relative; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ivory-warm); padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--night-700); letter-spacing: 0.04em;
  margin-bottom: 28px;
  border: 1px solid var(--line);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--saffron); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Outfit'; font-weight: 700;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.04em; line-height: 0.95;
  margin-bottom: 28px; color: var(--night);
}
.hero-title-dot {
  position: absolute; top: 0.12em; right: -0.32em;
  width: 0.18em; height: 0.18em;
  background: var(--saffron); border-radius: 50%;
}
.hero-subtitle {
  font-family: 'Outfit'; font-weight: 300;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.5;
  color: var(--night-700); max-width: 520px;
  margin-bottom: 40px; letter-spacing: -0.005em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-microcopy {
  font-size: 13px; color: var(--mute);
  display: flex; align-items: center; gap: 8px;
}
.hero-microcopy-check { color: var(--success); }

/* Hero visual cards */
.hero-visual { position: relative; height: 480px; }
@media (max-width: 960px) {
  .hero-visual { height: 380px; max-width: 480px; margin: 0 auto; }
}
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(14,26,43,0.06), 0 2px 8px rgba(14,26,43,0.04);
  transition: transform 0.3s ease;
  animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-1 { top: 0; left: 0; width: 240px; animation-delay: 0.3s; }
.hero-card-2 { top: 100px; right: 20px; width: 240px; animation-delay: 0.45s; }
.hero-card-3 { bottom: 30px; left: 60px; width: 250px; animation-delay: 0.6s; }
@media (max-width: 960px) {
  .hero-card-1 { top: 10px; left: 0; }
  .hero-card-2 { top: 110px; right: 0; }
  .hero-card-3 { bottom: 0; left: 40px; }
}
@keyframes floatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-card-icon { width: 36px; height: 36px; background: var(--saffron-50); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--night); }
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.hero-card-stat { font-family: 'Outfit'; font-weight: 700; font-size: 28px; letter-spacing: -0.025em; color: var(--night); margin-bottom: 2px; }
.hero-card-stat-label { font-size: 12px; color: var(--mute); }
.hero-card-progress { margin-top: 10px; height: 4px; background: var(--ivory-warm); border-radius: 100px; overflow: hidden; }
.hero-card-progress-bar { height: 100%; background: var(--saffron); border-radius: 100px; }

/* PROBLEM */
.problem { padding: 100px 0; background: var(--night); color: var(--ivory); position: relative; overflow: hidden; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; gap: 48px; } }
.problem-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); margin-bottom: 18px; }
.problem-title { font-family: 'Outfit'; font-weight: 700; font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 24px; }
.problem-body { font-family: 'Outfit'; font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--night-200); margin-bottom: 16px; }
.problem-body strong { color: var(--ivory); font-weight: 500; }
.chaos-stack { display: flex; flex-direction: column; gap: 12px; }
.chaos-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s;
}
.chaos-item:hover { transform: rotate(0); background: rgba(255,255,255,0.06); }
.chaos-item:nth-child(1) { --rot: -1deg; }
.chaos-item:nth-child(2) { --rot: 0.8deg; }
.chaos-item:nth-child(3) { --rot: -0.5deg; }
.chaos-item:nth-child(4) { --rot: 1deg; }
.chaos-item:nth-child(5) { --rot: -0.7deg; }
.chaos-tool { font-family: 'Outfit'; font-weight: 600; font-size: 14px; background: rgba(232,154,42,0.15); color: var(--saffron-light); padding: 4px 10px; border-radius: 5px; flex-shrink: 0; min-width: 90px; text-align: center; }
.chaos-desc { font-size: 14px; color: var(--night-200); }

/* MODULES */
.modules { padding: 120px 0; }
.section-head { text-align: center; margin-bottom: 72px; }
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); margin-bottom: 18px; }
.section-title { font-family: 'Outfit'; font-weight: 700; font-size: clamp(36px, 4.8vw, 60px); letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 20px; color: var(--night); }
.section-subtitle { font-family: 'Outfit'; font-weight: 300; font-size: 20px; line-height: 1.5; color: var(--night-700); max-width: 620px; margin: 0 auto; }

.module-category { margin-bottom: 56px; }
.category-label { font-family: 'Outfit'; font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--night-600); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.category-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.modules-grid.system { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
@media (max-width: 900px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid.system { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .modules-grid, .modules-grid.system { grid-template-columns: 1fr; }
}
.module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.25s ease;
  cursor: default;
  display: flex; flex-direction: column;
}
.module-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 32px rgba(14,26,43,0.07);
}
.module-card-icon { width: 48px; height: 48px; background: var(--saffron-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--night); margin-bottom: 18px; }
.module-card-icon svg { width: 26px; height: 26px; }
.module-card-name { font-family: 'Outfit'; font-weight: 600; font-size: 19px; letter-spacing: -0.015em; margin-bottom: 4px; color: var(--night); }
.module-card-tagline { font-size: 13px; color: var(--mute); margin-bottom: 18px; line-height: 1.55; }
.module-card-features { list-style: none; padding: 0; margin: 0; flex: 1; }
.module-card-features li {
  font-size: 13px; color: var(--night-700);
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.5;
}
.module-card-features li::before {
  content: '✓';
  color: var(--saffron); font-weight: 700; font-size: 14px;
  flex-shrink: 0; line-height: 1.4;
}

/* HOW IT WORKS */
.how { padding: 120px 0; background: var(--ivory-warm); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
@media (max-width: 800px) { .how-steps { grid-template-columns: 1fr; gap: 40px; } }
.step { position: relative; padding-top: 16px; }
.step-num { font-family: 'Outfit'; font-weight: 700; font-size: 80px; letter-spacing: -0.04em; line-height: 1; color: var(--saffron); margin-bottom: 24px; display: block; }
.step-title { font-family: 'Outfit'; font-weight: 600; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 12px; }
.step-desc { font-size: 15px; line-height: 1.65; color: var(--night-700); max-width: 320px; }

/* PERSONAS */
.personas { padding: 120px 0; }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 800px) { .persona-grid { grid-template-columns: 1fr; } }
.persona-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px; transition: all 0.25s ease; }
.persona-card:hover { border-color: var(--saffron); transform: translateY(-3px); }
.persona-role { font-family: 'Outfit'; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--night); }
.persona-pain {
  font-size: 14px; color: var(--mute);
  margin-bottom: 24px; line-height: 1.6;
  padding: 14px 16px;
  background: var(--ivory-50);
  border-radius: 8px;
  font-style: italic;
}
.persona-pain::before { content: '« '; color: var(--saffron); font-weight: 700; }
.persona-pain::after { content: ' »'; color: var(--saffron); font-weight: 700; }
.persona-benefit { font-family: 'Outfit'; font-weight: 400; font-size: 16px; line-height: 1.55; color: var(--night-700); }
.persona-benefit strong { font-weight: 600; color: var(--night); }

/* PRICING */
.pricing { padding: 120px 0; background: var(--ivory-warm); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; max-width: 1200px; margin-left: auto; margin-right: auto; }
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px; display: flex; flex-direction: column; transition: all 0.25s ease; position: relative; }
.price-card.featured { background: var(--night); color: var(--ivory); border-color: var(--night); transform: scale(1.02); }
@media (max-width: 1000px) { .price-card.featured { transform: none; } }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured:hover { transform: translateY(-4px) scale(1.02); }
.price-badge { position: absolute; top: -12px; right: 24px; background: var(--saffron); color: var(--night); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; padding: 6px 12px; border-radius: 100px; }
.price-name { font-family: 'Outfit'; font-weight: 600; font-size: 20px; letter-spacing: -0.015em; margin-bottom: 8px; }
.price-target { font-size: 13px; color: var(--mute); margin-bottom: 28px; min-height: 40px; }
.price-card.featured .price-target { color: var(--night-200); }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.price-num { font-family: 'Outfit'; font-weight: 700; font-size: 48px; letter-spacing: -0.035em; line-height: 1; }
.price-unit { font-size: 13px; color: var(--mute); font-weight: 500; }
.price-card.featured .price-unit { color: var(--night-200); }
.price-feat-list { list-style: none; margin: 0 0 32px 0; padding: 0; flex: 1; }
.price-feat { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 14px; line-height: 1.5; border-bottom: 1px solid var(--line); }
.price-card.featured .price-feat { border-color: rgba(255,255,255,0.08); }
.price-feat:last-child { border: none; }
.price-feat-check { color: var(--saffron); flex-shrink: 0; margin-top: 2px; }
.price-cta { width: 100%; justify-content: center; }

/* FAQ */
.faq { padding: 120px 0; }
.faq-list { max-width: 720px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 24px 0; cursor: pointer;
  font-family: 'Outfit'; font-weight: 500; font-size: 18px;
  letter-spacing: -0.01em; color: var(--night);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; transition: color 0.15s;
}
.faq-item summary:hover { color: var(--saffron); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; font-weight: 300;
  color: var(--mute); transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 0 24px; font-size: 15px; line-height: 1.7; color: var(--night-700); max-width: 640px; }
.faq-answer strong { font-weight: 600; color: var(--night); }

/* CTA FINAL */
.cta-final { padding: 120px 0; background: var(--night); color: var(--ivory); text-align: center; position: relative; overflow: hidden; }
.cta-curve { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.04; pointer-events: none; }
.cta-curve svg { width: 80%; max-width: 800px; height: auto; }
.cta-final-title { font-family: 'Outfit'; font-weight: 700; font-size: clamp(36px, 5.5vw, 64px); letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 24px; position: relative; }
.cta-final-sub { font-family: 'Outfit'; font-weight: 300; font-size: 20px; color: var(--night-200); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.cta-final-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
footer { padding: 80px 0 40px; background: var(--night-deep); color: var(--night-200); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Outfit'; font-weight: 700; font-size: 24px; letter-spacing: -0.04em; color: var(--ivory); margin-bottom: 18px; }
.footer-tagline { font-family: 'Outfit'; font-weight: 300; font-size: 16px; color: var(--night-200); max-width: 320px; line-height: 1.5; }
.footer-col-title { font-family: 'Outfit'; font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; }
.footer-link { display: block; padding: 6px 0; font-size: 14px; color: var(--night-200); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--saffron); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--night-400); flex-wrap: wrap; gap: 16px; }

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* INNER PAGES — used by all pages except index.html */
.page-shell { padding: 80px 0 100px; }
.page-shell .container { max-width: 760px; }
.page-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); margin-bottom: 18px; display: inline-block; }
.page-title { font-family: 'Outfit'; font-weight: 700; font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.035em; line-height: 1.05; color: var(--night); margin-bottom: 28px; }
.page-lead { font-family: 'Outfit'; font-weight: 300; font-size: 20px; line-height: 1.5; color: var(--night-700); margin-bottom: 48px; max-width: 560px; }
.page-content h2 { font-family: 'Outfit'; font-weight: 600; font-size: 24px; letter-spacing: -0.02em; color: var(--night); margin: 48px 0 16px; }
.page-content h3 { font-family: 'Outfit'; font-weight: 600; font-size: 18px; letter-spacing: -0.015em; color: var(--night); margin: 32px 0 12px; }
.page-content p { color: var(--night-700); line-height: 1.7; margin-bottom: 16px; }
.page-content ul { margin: 0 0 20px 24px; }
.page-content li { color: var(--night-700); line-height: 1.7; margin-bottom: 6px; }
.page-content a { color: var(--saffron-700); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.page-content a:hover { color: var(--night); }
.page-content strong { font-weight: 600; color: var(--night); }
.page-content .updated { font-size: 13px; color: var(--mute); margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line); }
.empty-state { text-align: center; padding: 64px 0; }
.empty-state-icon { font-size: 48px; margin-bottom: 24px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 32px; margin-bottom: 16px; }
.contact-card h3 { font-family: 'Outfit'; font-weight: 600; font-size: 18px; color: var(--night); margin-bottom: 8px; margin-top: 0; }
.contact-card a { color: var(--saffron-700); font-weight: 500; }
.contact-card p { margin-bottom: 0; }

/* CONTACT FORM (contact.html) */
.kw-form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; max-width: 560px; }
.kw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .kw-row { grid-template-columns: 1fr; } }
.kw-field { display: flex; flex-direction: column; gap: 6px; }
.kw-field label { font-family: 'Outfit'; font-weight: 500; font-size: 14px; color: var(--night-700); letter-spacing: -0.005em; }
.kw-field input, .kw-field textarea, .kw-field select {
  font-family: 'Ubuntu', sans-serif; font-size: 15px; color: var(--night);
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 12px 14px; line-height: 1.4;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.kw-field input:focus, .kw-field textarea:focus, .kw-field select:focus {
  outline: none; border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,154,42,0.15);
}
.kw-field textarea { resize: vertical; min-height: 96px; }
.kw-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236F6957' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.kw-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.kw-submit { margin-top: 8px; align-self: flex-start; min-width: 140px; justify-content: center; text-decoration: none; }
.kw-submit[disabled] { opacity: 0.6; pointer-events: none; }
.kw-form-error {
  font-size: 14px; color: #B83B25;
  background: #FEEFE9; border: 1px solid #F6BCA8;
  padding: 10px 14px; border-radius: 8px; margin: 0;
}
.kw-form-success {
  text-align: center; padding: 56px 24px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; margin-top: 32px;
  color: var(--night);
}
.kw-form-success div:first-child { color: var(--success); font-family: 'Outfit'; font-weight: 700; }
.kw-form-success h2 { font-family: 'Outfit'; font-weight: 700; font-size: 28px; letter-spacing: -0.025em; }

/* Form refinements (replaces inline styles in contact.html) */
.kw-form-heading { margin-top: 56px; }
.kw-field-optional { color: var(--mute); font-weight: 400; }
.kw-form-consent { margin-top: 16px; font-size: 13px; color: var(--mute); }
.kw-form-consent a { color: var(--saffron-700); }
.kw-form-success-icon { font-size: 48px; margin-bottom: 16px; color: var(--success); font-family: 'Outfit'; font-weight: 700; }
.kw-form-success-title { margin: 0 0 12px; font-family: 'Outfit'; font-weight: 700; font-size: 28px; letter-spacing: -0.025em; }
.kw-form-success-body { max-width: 480px; margin: 0 auto; }
.contact-card-meta { color: var(--mute); font-size: 14px; }

/* Button modifier for use on dark backgrounds (e.g. CTA-final section) */
.btn-on-dark { color: var(--ivory); border-color: rgba(255,255,255,0.3); }
.btn-on-dark:hover { color: var(--ivory); border-color: var(--ivory); }
.footer-sparkle { color: var(--saffron); }
