/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FFF8F0;
  --bg-alt: #F5EDE3;
  --primary: #E8783A;
  --primary-hover: #d4682e;
  --secondary: #5B9A6F;
  --fonds: #C9952B;
  --fonds-bg: #FDF6E3;
  --text: #2D2419;
  --text-muted: #6B5D4F;
  --white: #fff;
  --dark: #1E1810;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(45, 36, 25, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 36, 25, 0.12);
  --nav-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

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

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

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Eyebrow Labels ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow--fonds {
  color: var(--fonds);
}

/* ===== Dividers ===== */
.divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.divider--light {
  background: rgba(255, 255, 255, 0.3);
}

.divider--white {
  background: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.divider--fonds {
  background: var(--fonds);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  min-height: 48px;
  min-width: 48px;
  white-space: nowrap;
}

.btn:hover {
  background: var(--primary-hover);
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  min-height: 44px;
}

.btn--white {
  background: var(--white);
  color: var(--primary);
}

.btn--white:hover {
  background: #f5f0eb;
}

.btn--disabled {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
}

.btn--disabled:hover {
  background: #ccc;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: box-shadow 0.3s var(--ease);
  height: var(--nav-height);
}

.nav--scrolled {
  box-shadow: var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__menu a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__menu a:not(.btn):hover {
  color: var(--text);
}

.nav__menu a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger,
.nav__hamburger::before,
.nav__hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__hamburger {
  position: relative;
}

.nav__hamburger::before,
.nav__hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav__hamburger::before {
  top: -7px;
}

.nav__hamburger::after {
  top: 7px;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 24px 24px;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 240, 0.88) 0%,
    rgba(255, 248, 240, 0.92) 50%,
    rgba(255, 248, 240, 0.96) 100%
  );
  border-radius: 0 0 24px 24px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero .divider {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__form {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-row .btn {
  padding: 0.875rem 1.75rem;
  flex-shrink: 0;
}

.form-row input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0d6ca;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  min-height: 48px;
  transition: border-color 0.2s var(--ease);
}

.form-row input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
}

.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.5em;
}

.form-feedback--success {
  color: var(--secondary);
}

.form-feedback--error {
  color: #c0392b;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__proof strong {
  color: var(--secondary);
  font-weight: 700;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}

.section--dark h2 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.grid--2col {
  grid-template-columns: 1fr 1fr;
}

/* ===== Check List ===== */
.check-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list svg {
  flex-shrink: 0;
}

/* ===== Section Image ===== */
.section-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(232, 120, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-card__price {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.service-card__price small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.service-card__tier {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.services-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

/* ===== Steps ===== */
.steps {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 2px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
}

.step__number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
}

.step__content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Phone Mockup ===== */
.phone-mockup {
  width: 270px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px #e0d6ca;
  position: relative;
}

.phone-mockup__notch {
  width: 100px;
  height: 22px;
  background: var(--bg-alt);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
}

.phone-mockup__screen {
  padding: 14px;
}

.app-header {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0e8dd;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.app-greeting {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.app-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.app-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}

.app-service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border: 1px solid #e0d6ca;
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 0.6rem;
  font-family: inherit;
  color: var(--text);
  cursor: default;
}

.app-appointment__label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.app-appointment__card {
  background: rgba(91, 154, 111, 0.1);
  border-radius: var(--radius);
  padding: 10px;
  border-left: 3px solid var(--secondary);
}

.app-appointment__card strong {
  display: block;
  font-size: 0.8rem;
}

.app-appointment__card span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== Impact Stats ===== */
.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.impact-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-stat__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
  transition: width 1s var(--ease);
}

.impact-stat--visible .impact-stat__bar {
  width: 100%;
}

.impact-stat__number {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.03em;
}

.impact-stat__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SDG Tags ===== */
.sdg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.sdg-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(91, 154, 111, 0.15);
  color: var(--secondary);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== Solidariteitsfonds ===== */
.section--fonds {
  background: var(--fonds-bg);
}

.fonds-flow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.fonds-flow__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.fonds-flow__arrow {
  color: var(--fonds);
  font-size: 1.15rem;
}

.fonds-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(201, 149, 43, 0.15);
}

.fonds-card h3 {
  color: var(--fonds);
}

.fonds-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.fonds-amounts {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.fonds-btn {
  padding: 0.5rem 1.15rem;
  border: 2px solid rgba(201, 149, 43, 0.25);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fonds);
  cursor: not-allowed;
  min-height: 44px;
  opacity: 0.6;
  transition: border-color 0.2s var(--ease);
}

.fonds-btn--active {
  border-color: var(--fonds);
  background: rgba(201, 149, 43, 0.06);
  opacity: 1;
}

.fonds-card__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ===== CTA Section ===== */
.section--cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.section--cta h2 {
  color: var(--white);
}

.section--cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.cta-form__fields {
  display: flex;
  gap: 0.75rem;
  max-width: 580px;
  margin: 0 auto;
  align-items: stretch;
}

.cta-form__input-group {
  flex: 1;
}

.cta-form input[type="email"],
.cta-form select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  min-height: 48px;
  transition: border-color 0.2s var(--ease);
}

.cta-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.cta-form input[type="email"]:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--white);
}

.cta-form select {
  appearance: none;
  cursor: pointer;
}

.cta-form select option {
  color: var(--text);
  background: var(--white);
}

.cta-form .form-feedback--success {
  color: var(--white);
}

.cta-form .form-feedback--error {
  color: #ffd5d5;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer a {
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

/* ===== Stagger Animations ===== */
.stagger-in .ani {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-in--visible .ani {
  opacity: 1;
  transform: translateY(0);
}

.stagger-in--visible .ani:nth-child(1) { transition-delay: 0ms; }
.stagger-in--visible .ani:nth-child(2) { transition-delay: 60ms; }
.stagger-in--visible .ani:nth-child(3) { transition-delay: 120ms; }
.stagger-in--visible .ani:nth-child(4) { transition-delay: 180ms; }
.stagger-in--visible .ani:nth-child(5) { transition-delay: 240ms; }
.stagger-in--visible .ani:nth-child(6) { transition-delay: 300ms; }
.stagger-in--visible .ani:nth-child(7) { transition-delay: 360ms; }

/* Stat bar stagger */
.stagger-in--visible .impact-stat:nth-child(1) .impact-stat__bar { transition-delay: 0.1s; }
.stagger-in--visible .impact-stat:nth-child(2) .impact-stat__bar { transition-delay: 0.2s; }
.stagger-in--visible .impact-stat:nth-child(3) .impact-stat__bar { transition-delay: 0.3s; }
.stagger-in--visible .impact-stat:nth-child(4) .impact-stat__bar { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stagger-in .ani {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card {
    transition: none;
  }

  .impact-stat__bar {
    transition: none;
    width: 100% !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .section {
    padding: 4rem 0;
  }

  /* Nav mobile */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    width: 260px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    z-index: 99;
  }

  .nav__menu--open {
    transform: translateX(0);
  }

  .nav__menu .btn--small {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Grids */
  .grid--2col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid__visual {
    order: -1;
  }

  /* Form row stacked */
  .form-row {
    flex-direction: column;
  }

  /* CTA form stacked */
  .cta-form__fields {
    flex-direction: column;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Fonds flow */
  .fonds-flow {
    flex-direction: column;
    align-items: flex-start;
  }

  .fonds-flow__arrow {
    transform: rotate(90deg);
  }

  .fonds-amounts {
    flex-wrap: wrap;
  }

  .impact-stats {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== Focus Visible ===== */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--primary);
}
