/* =============================
   DANCEASY — Global Styles
   ============================= */

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

:root {
  --clr-primary: #6B1F3A;
  --clr-primary-hover: #8A2B4C;
  --clr-accent: #D4875C;
  --clr-accent-light: #F5DDD0;
  --clr-bg: #FDFAF6;
  --clr-bg-alt: #F4EDE4;
  --clr-dark: #1A1412;
  --clr-dark-overlay: rgba(26, 20, 18, 0.62);
  --clr-muted: #6B5E58;
  --clr-border: #E0D5CC;
  --clr-white: #FFFFFF;
  --ff-serif: 'Georgia', 'Times New Roman', serif;
  --ff-sans: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 4px 20px rgba(107, 31, 58, 0.10);
  --shadow-card: 0 2px 12px rgba(26, 20, 18, 0.08);
  --transition: 0.26s ease;
  --max-width: 1080px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--clr-bg);
  color: var(--clr-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-primary-hover);
}

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

/* =============================
   FADE-IN ANIMATION
   ============================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   NAVIGATION
   ============================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: var(--clr-white);
  box-shadow: 0 1px 16px rgba(26, 20, 18, 0.10);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.site-nav.scrolled .nav-logo {
  color: var(--clr-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.site-nav.scrolled .nav-links a {
  color: var(--clr-muted);
}
.nav-links a:hover {
  color: var(--clr-white);
}
.site-nav.scrolled .nav-links a:hover {
  color: var(--clr-primary);
}
.nav-cta {
  background: var(--clr-primary);
  color: var(--clr-white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--clr-primary-hover) !important;
  transform: translateY(-1px);
}
.site-nav.scrolled .nav-cta {
  color: var(--clr-white) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.site-nav.scrolled .nav-hamburger span {
  background: var(--clr-dark);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 14, 20, 0.72) 0%,
    rgba(107, 31, 58, 0.52) 50%,
    rgba(26, 14, 20, 0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--clr-white);
  max-width: 640px;
  padding-top: 80px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-form {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  max-width: 440px;
}
.hero-form h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--clr-white);
}

/* =============================
   FORMS
   ============================= */
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.78);
}
.form-group-light label {
  color: var(--clr-muted);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  font-size: 0.95rem;
  font-family: var(--ff-sans);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder {
  color: rgba(255,255,255,0.48);
}
.form-group input:focus {
  border-color: var(--clr-accent);
  background: rgba(255,255,255,0.18);
}
.form-light input {
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-dark);
}
.form-light input::placeholder {
  color: #B0A8A4;
}
.form-light input:focus {
  border-color: var(--clr-primary);
  background: var(--clr-white);
}
.form-light label {
  color: var(--clr-muted);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
}
.form-check input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-accent);
}
.form-check a {
  color: var(--clr-accent);
}
.form-check-light {
  color: var(--clr-muted);
}
.form-check-light a {
  color: var(--clr-primary);
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--ff-sans);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 31, 58, 0.30);
}
.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn-accent:hover {
  background: #C4764A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 135, 92, 0.36);
}
.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
}
.btn-white:hover {
  background: var(--clr-bg-alt);
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
}

/* =============================
   SECTION BASE
   ============================= */
section {
  padding: 90px 0;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--clr-dark);
  margin-bottom: 14px;
}
.section-title-light {
  color: var(--clr-white);
}
.section-sub {
  font-size: 1.02rem;
  color: var(--clr-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-sub-light {
  color: rgba(255,255,255,0.70);
}
.section-header {
  margin-bottom: 52px;
}

/* =============================
   BENEFITS SECTION
   ============================= */
.benefits {
  background: var(--clr-bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--clr-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.benefit-card h3 {
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-dark);
  line-height: 1.3;
}
.benefit-card p {
  font-size: 0.90rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

/* =============================
   FOR WHOM SECTION
   ============================= */
.for-whom {
  background: var(--clr-primary);
}
.for-whom .section-title {
  color: var(--clr-white);
}
.for-whom .section-sub {
  color: rgba(255,255,255,0.70);
  max-width: 560px;
}
.for-whom .section-label {
  color: var(--clr-accent);
}
.whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.whom-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background var(--transition);
}
.whom-card:hover {
  background: rgba(255,255,255,0.14);
}
.whom-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--clr-white);
  font-weight: 700;
}
.whom-card h3 {
  font-size: 1.01rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.whom-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
}

/* =============================
   HOW IT WORKS SECTION
   ============================= */
.how-it-works {
  background: var(--clr-bg-alt);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(25% / 2 + 24px);
  right: calc(25% / 2 + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--clr-accent-light), var(--clr-accent), var(--clr-accent-light));
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin: 0 auto 22px;
  box-shadow: 0 4px 14px rgba(212, 135, 92, 0.20);
}
.step h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* =============================
   FAQ SECTION
   ============================= */
.faq {
  background: var(--clr-bg);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-card);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--clr-dark);
  font-family: var(--ff-sans);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--clr-primary);
}
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--clr-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-primary);
  transition: transform var(--transition), background var(--transition);
  font-weight: 700;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-primary);
  color: var(--clr-white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding var(--transition);
  padding: 0 26px;
  font-size: 0.94rem;
  color: var(--clr-muted);
  line-height: 1.72;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 26px 22px;
}

/* =============================
   LEAD FORM SECTION
   ============================= */
.lead-form-section {
  background: linear-gradient(135deg, #4A1428 0%, #6B1F3A 60%, #8A2B4C 100%);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 135, 92, 0.12);
  pointer-events: none;
}
.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lead-form-copy .section-label {
  color: var(--clr-accent);
}
.lead-form-copy .section-title {
  color: var(--clr-white);
}
.lead-form-copy .section-sub {
  color: rgba(255,255,255,0.70);
}
.lead-reassurance {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.lead-reassurance-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 135, 92, 0.22);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
}
.lead-form-box {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 38px 36px;
  box-shadow: 0 24px 64px rgba(26, 14, 20, 0.28);
}
.lead-form-box h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 6px;
}
.lead-form-box p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-light .form-group label {
  color: var(--clr-muted);
}
.form-light .form-group input {
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-dark);
}
.form-light .form-group input::placeholder {
  color: #C0B8B4;
}
.form-light .form-group input:focus {
  border-color: var(--clr-primary);
  background: var(--clr-white);
}
.form-check-light {
  color: #9A9090;
  font-size: 0.76rem;
}
.form-check-light a {
  color: var(--clr-primary);
  text-decoration: underline;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.55);
  padding: 52px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 320px;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-white);
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.68;
}
.footer-legal-block {
  margin-top: 18px;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.36);
}
.footer-col h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--clr-white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.80rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.36);
}

/* =============================
   COOKIE BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.24);
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.34, 1.16, 0.64, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  line-height: 1.55;
}
.cookie-banner a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  padding: 9px 22px;
  border-radius: var(--radius-lg);
  background: var(--clr-accent);
  color: var(--clr-white);
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ff-sans);
  transition: background var(--transition), transform var(--transition);
}
.cookie-accept:hover {
  background: #C4764A;
  transform: translateY(-1px);
}
.cookie-decline {
  padding: 9px 18px;
  border-radius: var(--radius-lg);
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--ff-sans);
  transition: color var(--transition), border-color var(--transition);
}
.cookie-decline:hover {
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.50);
}

/* =============================
   SUCCESS PAGE
   ============================= */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--clr-bg);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes successPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-page h1 {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: 14px;
}
.success-page p {
  font-size: 1.02rem;
  color: var(--clr-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.success-page .btn {
  margin-top: 8px;
}

/* =============================
   LEGAL PAGES
   ============================= */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.legal-content h1 {
  font-family: var(--ff-serif);
  font-size: 2.0rem;
  color: var(--clr-primary);
  margin-bottom: 10px;
}
.legal-date {
  font-size: 0.84rem;
  color: var(--clr-muted);
  margin-bottom: 36px;
  display: block;
}
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 30px 0 10px;
}
.legal-content p {
  font-size: 0.94rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content li {
  font-size: 0.94rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* =============================
   SIMPLE NAV FOR INNER PAGES
   ============================= */
.nav-inner-page {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}
.nav-inner-page .nav-logo {
  color: var(--clr-primary);
}
.nav-inner-page .nav-links a {
  color: var(--clr-muted);
}
.nav-inner-page .nav-links a:hover {
  color: var(--clr-primary);
}
.nav-inner-page .nav-hamburger span {
  background: var(--clr-dark);
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .steps-grid::before {
    display: none;
  }
  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  section {
    padding: 64px 0;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--clr-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 8px 24px rgba(26, 20, 18, 0.10);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: var(--clr-muted) !important;
    font-size: 1.0rem;
  }
  .nav-links a:hover {
    color: var(--clr-primary) !important;
  }
  .nav-hamburger {
    display: flex;
  }
  .whom-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-form {
    max-width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .lead-form-box {
    padding: 28px 22px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}
