:root {
  --bg-body: #fff7ed;
  --bg-elevated: #fff1e0;
  --bg-elevated-soft: #fff7ed;
  --bg-light: #fffaf5;
  --bg-cta: #fff0da;

  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-strong: #ea580c;
  --accent-alt: #facc15;

  --text-main: #1f2933;
  --text-muted: #6b7280;
  --text-strong: #111827;
  --text-dark-muted: #4b5563;

  --border-subtle: rgba(248, 191, 108, 0.5);
  --shadow-soft: 0 18px 45px rgba(248, 181, 71, 0.18);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1100px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top left, #ffedd5 0, #fff7ed 45%, #fefce8 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  line-height: 1.7;
  font-size: 0.98rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(1.9rem, 3vw + 1.2rem, 2.7rem);
}

h2 {
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2.1rem);
}

h3 {
  font-size: 1.1rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.07) 0, transparent 70%), var(--bg-light);
  color: var(--text-strong);
}

.section-dark {
  background: linear-gradient(135deg, #1c1917 0, #292524 100%);
  color: #fafaf9;
}

.section-dark h2,
.section-dark h3 {
  color: #fefce8;
}

.section-dark p,
.section-dark li {
  color: #d6d3d1;
}

.section-dark .highlight {
  color: var(--accent);
}

.section-dark .section-intro {
  color: #a8a29e;
}

.section-dark .card {
  background: linear-gradient(145deg, #292524, #1c1917);
  border-color: rgba(248, 191, 108, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-dark .card-meta {
  color: #a8a29e;
}

#transformation .card {
  background: linear-gradient(145deg, #ffffff, #fff7ed);
  border-color: rgba(248, 191, 108, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

#transformation .card p {
  color: var(--text-dark-muted);
}

#transformation .card .card-meta {
  color: var(--text-muted);
}

.section-dark .section-sidecard {
  background: linear-gradient(135deg, #292524 0, #1c1917 100%);
  border-color: rgba(248, 191, 108, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  color: #fafaf9;
}

.section-dark .section-sidecard li {
  color: #d6d3d1;
}

.section h2 {
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 40rem;
  color: var(--text-muted);
}

.section-light .section-intro {
  color: var(--text-dark-muted);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 2.75rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section-copy > p {
  margin-bottom: 0.85rem;
}

.highlight {
  margin-top: 0.6rem;
  font-weight: 600;
  color: var(--accent-alt);
}

.section-light .highlight {
  color: var(--accent-strong);
}

.section-sidecard {
  background: linear-gradient(135deg, #fff7ed 0, #fffbeb 60%, #ffffff 100%);
  color: var(--text-strong);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(248, 181, 71, 0.22);
}

.section-light .section-sidecard {
  background: #ffffff;
  color: var(--text-strong);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 191, 108, 0.5);
  box-shadow: 0 18px 35px rgba(248, 181, 71, 0.16);
}

.section-sidecard ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.section-sidecard li {
  position: relative;
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
}

.section-sidecard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  margin: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(to bottom right, var(--accent), var(--accent-alt));
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(28, 25, 23, 0.95);
  border-bottom: 1px solid rgba(248, 191, 108, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.brand-text {
  color: #fefce8;
}

.site-nav a {
  color: #d6d3d1;
}

.site-nav a:hover {
  color: var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #fef3c7 0, var(--accent) 40%, #fed7aa 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: #7c2d12;
  box-shadow: 0 0 0 1px rgba(248, 191, 108, 0.6), 0 10px 28px rgba(248, 181, 71, 0.55);
}

.brand-text {
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.site-nav a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0, var(--accent-strong) 65%, #c2410c 100%);
  color: #fff7ed !important;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(248, 191, 108, 0.7);
  background: rgba(255, 247, 237, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #7c2d12;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    inset: 58px 1.4rem auto;
    padding: 0.8rem 0.8rem;
    background: #292524;
    border-radius: 14px;
    border: 1px solid rgba(248, 191, 108, 0.15);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Hero */

.hero {
  padding-top: 5.5rem;
  background: linear-gradient(135deg, #1c1917 0, #292524 50%, #1c1917 100%);
  color: #fafaf9;
}

.hero h1 {
  color: #fefce8;
}

.hero .eyebrow {
  color: var(--accent-alt);
}

.hero .hero-subtitle {
  color: #d6d3d1;
}

.hero .hero-note {
  color: #a8a29e;
}

.hero .hero-screen {
  background: radial-gradient(circle at top, #292524 0, #1c1917 100%);
  border-color: rgba(248, 191, 108, 0.2);
}

.hero .hero-metric {
  background: linear-gradient(135deg, #292524, #1c1917);
  border-color: rgba(248, 191, 108, 0.2);
}

.hero .metric-label {
  color: #a8a29e;
}

.hero .metric-value {
  color: var(--accent-alt);
}

.hero .hero-chart {
  background-color: #292524;
  border-color: rgba(248, 191, 108, 0.2);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3.3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-alt), transparent);
}

.hero-subtitle {
  margin-top: 1rem;
  color: var(--text-dark-muted);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-note {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-visual {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-screen {
  background: radial-gradient(circle at top, #292524 0, #1c1917 100%);
  border-radius: 22px;
  padding: 1rem 1rem 1.2rem;
  border: 1px solid rgba(248, 191, 108, 0.2);
  box-shadow: none;
}

.hero-screen-header {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.hero-screen-header span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef4444;
}

.hero-screen-header span:nth-child(2) {
  background: #f59e0b;
}

.hero-screen-header span:nth-child(3) {
  background: #22c55e;
}

.hero-screen-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.hero-metric {
  background: linear-gradient(135deg, #292524, #1c1917);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(248, 191, 108, 0.2);
}

.metric-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #a8a29e;
  margin-bottom: 0.2rem;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 600;
}

.hero-chart {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  height: 120px;
  border-radius: 14px;
  background-image: linear-gradient(to top, rgba(249, 115, 22, 0.12), transparent), linear-gradient(120deg, rgba(249, 115, 22, 0.1), rgba(250, 204, 21, 0.05), transparent);
  background-color: #292524;
  border: 1px solid rgba(248, 191, 108, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-chart::before,
.hero-chart::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  background-image: linear-gradient(to right, rgba(248, 191, 108, 0.1) 1px, transparent 1px), linear-gradient(to top, rgba(248, 191, 108, 0.12) 1px, transparent 1px);
  background-size: 18px 100%, 100% 16px;
  opacity: 0.7;
}

.hero-chart::after {
  inset: 25px 20px 18px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.6), rgba(250, 204, 21, 0.4), rgba(249, 115, 22, 0));
  clip-path: polygon(0 80%, 16% 65%, 32% 70%, 48% 40%, 64% 35%, 82% 15%, 100% 20%, 100% 100%, 0 100%);
  opacity: 0.85;
}

.hero-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 18rem;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-screen-body {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0, var(--accent-strong) 100%);
  color: #ffffff;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-outline {
  border: 1px solid rgba(248, 191, 108, 0.5);
  background: #ffffff;
  color: var(--text-strong);
}

.btn-outline:hover {
  background: #fffbeb;
  box-shadow: none;
}

.btn-fullwidth {
  width: 100%;
  justify-content: center;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: linear-gradient(145deg, #ffffff, #fff7ed);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(248, 191, 108, 0.25);
  box-shadow: 0 20px 40px rgba(248, 181, 71, 0.1);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
}

.card-meta {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-dark-muted);
}

.visionary-copy {
  max-width: 48rem;
}

.built-for {
  margin-top: 1.8rem;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.built-for-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.built-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0;
}

.built-for-list li {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  padding: 0 1rem 0 0;
  position: relative;
}

.built-for-list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 0.35rem;
  color: rgba(248, 181, 71, 0.5);
}

.sidecard-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.sidecard-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidecard-checklist li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  font-size: 0.93rem;
  color: var(--text-dark-muted);
  border-bottom: 1px solid rgba(248, 191, 108, 0.15);
}

.sidecard-checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidecard-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-dark .sidecard-checklist li {
  color: #d6d3d1;
  border-bottom-color: rgba(248, 191, 108, 0.1);
}

.process-num {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent-soft);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.process-duration {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.7rem;
}

.section-dark .process-duration {
  color: var(--accent-alt);
}

/* Hub */

.hub-content {
  max-width: 44rem;
}

.hub-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
}

.hub-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 0 1.1rem 1rem;
  border-bottom: 1px solid rgba(248, 191, 108, 0.2);
  position: relative;
}

.hub-list li:last-child {
  border-bottom: none;
}

.hub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hub-list strong {
  font-size: 1rem;
  color: var(--text-strong);
}

.hub-list span {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.65;
}

/* Results list */

.section ul {
  margin: 0.6rem 0 0;
  padding-left: 1.3rem;
}

.section-light ul {
  color: var(--text-dark-muted);
}

.section ul li {
  margin-bottom: 0.35rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-card, .pricing-card-popular {
  background: linear-gradient(145deg, #ffffff, #fffaf5);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.5rem;
  border: 1px solid rgba(248, 191, 108, 0.3);
  box-shadow: 0 20px 45px rgba(248, 181, 71, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover, .pricing-card-popular:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(248, 181, 71, 0.2);
}

.pricing-card:not(.pricing-card-popular) {
  padding-top: calc(1.8rem + 1.25rem);
}

.pricing-cta-wrap {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(248, 191, 108, 0.2);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 650;
  margin-top: 0.3rem;
  margin-bottom: 0.2rem;
}

.pricing-note {
  font-size: 0.93rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.8rem;
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item p {
  margin: 0.3rem 0 0;
}

.section-dark .faq-item h3 {
  color: #fefce8;
}

.section-dark .faq-item p {
  color: #d6d3d1;
}

/* Final CTA & Form */

.final-cta {
  background: var(--bg-light);
  color: var(--text-strong);
}

.final-cta h2 {
  color: var(--text-strong);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 2.3rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.final-cta-copy p {
  color: var(--text-dark-muted);
}

.final-cta-note {
  margin-top: 0.7rem;
  font-size: 0.7rem;
}

.final-cta-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 22px 45px rgba(248, 181, 71, 0.15);
  border: 1px solid rgba(248, 191, 108, 0.35);
}

.final-cta-form h3 {
  margin-bottom: 0.9rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

input,
textarea,
select {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: #f9fafb;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
  background: #ffffff;
}

.form-footnote {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

/* About photo */

.about-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(248, 191, 108, 0.5);
  box-shadow: 0 4px 18px rgba(248, 181, 71, 0.25);
  margin-bottom: 1.1rem;
  display: block;
}

/* Consent checkbox */

.consent-label {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-muted);
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.18rem;
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-label span {
  font-size: 0.82rem;
  line-height: 1.55;
}

.consent-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* Form feedback messages */

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.form-message.success {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #9a3412;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #991b1b;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(248, 191, 108, 0.1);
  padding: 1.4rem 0 1.7rem;
  background: #1c1917;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: #a8a29e;
}

.footer-legal a {
  color: #a8a29e;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Global responsive tweaks */

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1.3rem;
  }

  .container {
    padding-inline: 1.3rem;
  }

  .section {
    padding: 3.8rem 0;
  }
}
