@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #050608;
  --surface: #0c1016;
  --surface-alt: #111823;
  --steel: #1c2431;
  --accent: #ff6b1a;
  --accent-soft: rgba(255, 107, 26, 0.15);
  --text: #f5f7fb;
  --muted: #b3bfd4;
  --border: rgba(255, 255, 255, 0.08);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(255, 107, 26, 0.12), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.page-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}

p {
  margin: 0 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff944d);
  color: #050608;
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn--outline {
  border-style: dashed;
  border-color: var(--accent);
  color: var(--accent);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

header.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 60px clamp(20px, 4vw, 64px);
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 50%), var(--surface);
}

.hero__content > h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero__content .lede {
  color: var(--muted);
  max-width: 520px;
}

.hero__notice {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 16px 0;
}

.hero__notice span {
  color: var(--accent);
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  justify-content: center;
}

.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__badges li {
  background: var(--steel);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--border);
}

.hero__media {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__image {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=720&q=80') center/cover;
  border-radius: 28px;
  min-height: 320px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background-blend-mode: multiply;
}

.hero__image span {
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero__seal {
  background: var(--accent);
  color: #050608;
  padding: 16px 22px;
  border-radius: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  min-width: 220px;
}

main {
  padding: 32px clamp(20px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
}

.section__header {
  max-width: 720px;
  margin-bottom: 32px;
}

.features__grid,
.modules__grid,
.proof__grid,
.content__grid,
.serp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.features__grid article,
.modules__grid article,
.proof__grid article,
.content__grid article,
.serp__grid article {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.features__grid h3,
.modules__grid h3,
.proof__grid h3,
.content__grid h3,
.serp__grid h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  letter-spacing: normal;
}

.careers__grid,
.reach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.career-card,
.reach__card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.career-card__list,
.reach__list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.careers__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface-alt);
}

.careers__metrics div {
  flex: 1 1 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.careers__metrics strong {
  font-size: 1.5rem;
  color: var(--accent);
}

.ai-note,
.serp__signal,
.reach__note {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.serp__signal {
  border-color: rgba(255, 107, 26, 0.4);
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.schedule__card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: var(--surface-alt);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule__card header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.schedule__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 6px;
}

.schedule__card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.schedule__card .btn {
  margin-top: auto;
}

.schedule__note {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.assurance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.assurance__grid article {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.assurance__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.journey__list {
  counter-reset: journey;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.journey__list li {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface-alt);
}

.journey__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.serp__grid ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.modules__grid ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.module__tag,
.content__tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.proof__grid article {
  position: relative;
}

.proof__grid article::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
}

.faq__list {
  display: grid;
  gap: 16px;
}

details {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
}

details summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  margin-top: 12px;
}

.location {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.location__map {
  background: var(--steel);
  border-radius: 18px;
  min-height: 260px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  padding: 16px;
  overflow: hidden;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.final-cta {
  text-align: center;
}

.form-panel form {
  display: grid;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: var(--muted);
}

input {
  margin-top: 6px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--steel);
  color: var(--text);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
}

textarea {
  margin-top: 6px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--steel);
  color: var(--text);
  font-size: 1rem;
  resize: vertical;
}

button[type='submit'] {
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #ff944d);
  color: #050608;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button[type='submit']:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

button[type='submit']:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#status {
  min-height: 1.2em;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}

.privacy,
.redirect-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

.redirect-note a {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 32px 16px 48px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 8px 0;
}

.assistant__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.chatbot__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.chatbot__chips button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.chatbot__chips button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.assistant__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.chatbot__source {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.85;
}

.chatbot__response {
  min-height: 140px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface-alt);
  color: var(--text);
  line-height: 1.5;
}

.chatbot__history {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot__history[data-has-items='true'] {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.history__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  background: var(--surface-alt);
}

.history__question {
  font-weight: 600;
  margin: 0 0 6px;
}

.history__answer {
  margin: 0 0 8px;
  color: var(--muted);
}

.history__intent {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.assistant .btn,
.assistant button[type='submit'] {
  width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__image {
    min-height: 220px;
  }

  .section {
    padding: 24px;
  }
}
