/* ============================================
   LYSI — Global Stylesheet
   Brand Style Guide v1.0 — March 2026
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --blue-primary: #2B5CE6;
  --blue-dark: #152E73;
  --blue-deeper: #0D1F4D;
  --blue-light: #4A7AFF;
  --blue-wash: #EDF1FF;
  --blue-tint: #F6F8FF;

  --gold-primary: #C49A3C;
  --gold-light: #D4AF5E;
  --gold-dark: #A67E2E;
  --gold-wash: #FBF6EB;

  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --grey-100: #EEEEF2;
  --grey-200: #D1D3DB;
  --grey-400: #8B8FA3;
  --grey-600: #4B4F63;
  --ink: #0F1A3C;
  --slate: #3A4060;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-subtle: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);

  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Body --- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

/* --- Container --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--blue-primary);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: var(--blue-primary);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--grey-100);
    box-shadow: var(--shadow-card);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav__links.open {
    transform: translateY(0);
  }
  .nav__link::after { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn--primary {
  background: var(--gold-primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,154,60,0.3);
}
.btn--secondary {
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  background: transparent;
}
.btn--secondary:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn--white:hover {
  background: rgba(255,255,255,0.12);
}
.btn--small {
  padding: 10px 22px;
  font-size: 13px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(170deg, var(--blue-deeper) 0%, var(--blue-dark) 40%, var(--blue-primary) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,154,60,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,122,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Compact hero variant */
.hero--compact {
  min-height: 42vh;
  padding: 100px 24px 56px;
  align-items: flex-end;
  text-align: left;
}
.hero--compact .hero__content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.hero--compact .hero__title {
  font-size: clamp(32px, 4.5vw, 54px);
  margin-bottom: 14px;
}
.hero--compact .hero__subtitle {
  font-size: 16px;
  margin-bottom: 0;
  max-width: 640px;
  margin-left: 0;
}
@media (max-width: 768px) {
  .hero--compact {
    min-height: unset;
    padding: 100px 24px 48px;
    text-align: center;
    align-items: center;
  }
  .hero--compact .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Services hero section */
.services-hero {
  padding-top: 64px;
  padding-bottom: 72px;
}
.services-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Country selector card — homepage */
.card--country {
  padding: 48px 32px;
}
.card--country .card__title {
  font-size: 28px;
}
.card__flag {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1;
}

/* Featured service card — larger, more impact */
.card--featured {
  border-color: var(--grey-100);
  transition: all 0.3s ease;
}
.card--featured:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 8px 32px rgba(43,92,230,0.1);
  transform: translateY(-6px);
}
.card--featured .card__icon {
  background: var(--blue-wash);
  color: var(--blue-primary);
}
.card--featured:hover .card__icon {
  background: var(--blue-primary);
  color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 24px;
}
.section--tint {
  background: var(--blue-tint);
}
.section--white {
  background: var(--white);
}
.section--blue {
  background: linear-gradient(170deg, var(--blue-deeper) 0%, var(--blue-dark) 50%, var(--blue-primary) 100%);
  color: var(--white);
}
.section__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.section--blue .section__title {
  color: var(--white);
}
.section__subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.section--blue .section__subtitle {
  color: rgba(255,255,255,0.6);
}
.section__center {
  text-align: center;
}
.section__center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 32px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}
.trust-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}
.trust-bar__icon {
  width: 36px;
  height: 36px;
  background: var(--blue-wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue-primary);
  flex-shrink: 0;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .card-grid--3,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--blue-wash);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--blue-primary);
}
.card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.card__text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.card__link:hover {
  gap: 8px;
}

/* Service card variant */
.card--service {
  text-align: center;
  padding: 40px 28px;
}
.card--service .card__icon {
  margin: 0 auto 20px;
}

/* Step card (How It Works) */
.card--step {
  position: relative;
  padding-top: 52px;
}
.card__number {
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--gold-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
  border-radius: 50%;
}

/* ============================================
   WHY LYSI (feature list)
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
}
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold-wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature__check svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-primary);
  stroke-width: 2.5;
  fill: none;
}
.feature__title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature__text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--grey-100);
}
.faq-item:first-child {
  border-top: 1px solid var(--grey-100);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--blue-primary);
}
.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  background: var(--grey-400);
  transition: var(--transition);
}
.faq-question__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}
.faq-question__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item.open .faq-question__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer__inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner__text {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.cta-banner__contact {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.cta-banner__contact a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.cta-banner__contact a:hover {
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue-deeper);
  color: rgba(255,255,255,0.6);
  padding: 64px 24px 32px;
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
.footer__brand-text {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}
.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--white);
}
.footer__bottom {
  max-width: 1120px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  max-width: 480px;
  text-align: right;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social:hover {
  background: rgba(255,255,255,0.12);
}
.footer__social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.5);
}

/* ============================================
   FORMS
   ============================================ */
.form {
  max-width: 600px;
}
.form--centered {
  margin: 0 auto;
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form__label .required {
  color: var(--gold-primary);
  margin-left: 2px;
}
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(43,92,230,0.1);
}
.form__textarea {
  resize: vertical;
  min-height: 100px;
}
.form__submit {
  margin-top: 8px;
}
.form__success {
  display: none;
  padding: 24px;
  background: var(--gold-wash);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--gold-dark);
}
.form__success.show {
  display: block;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
  scroll-margin-top: 88px;
}
.service-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.service-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.service-detail__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-wash);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.service-detail__description {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 32px;
}
.service-detail__description strong {
  color: var(--ink);
  font-weight: 600;
}
.service-detail__levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.service-level {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.section--white .service-level {
  background: var(--blue-tint);
}
.service-level:hover {
  border-color: var(--blue-primary);
}
.service-level__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.service-level__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.service-level__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* Form within service sections */
.service-detail .form {
  max-width: 680px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
}
.form__hint {
  font-size: 13px;
  color: var(--grey-400);
  margin-top: 4px;
}
.form__file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: border-color var(--transition), background var(--transition);
  text-align: center;
}
.form__file-label:hover {
  border-color: var(--blue-primary);
  background: var(--blue-tint);
}
.form__file-label svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.form__file-selected {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: #2e7d32;
  word-break: break-all;
}
.form__file-selected svg {
  flex-shrink: 0;
  stroke: #2e7d32;
}
.form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.form__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.form__checkbox-label:hover {
  border-color: var(--blue-primary);
  background: var(--blue-tint);
}
.form__checkbox-label input[type="checkbox"],
.form__checkbox-label input[type="radio"] {
  accent-color: var(--blue-primary);
}
/* Consent checkbox (privacy policy agreement) */

.form__divider {
  border: none;
  border-top: 1px solid var(--grey-100);
  margin: 32px 0;
}

/* Placeholder marker (for development) */
.placeholder {
  padding: 16px 20px;
  background: var(--gold-wash);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--gold-dark);
  margin: 16px 0;
}
.placeholder::before {
  content: 'PLACEHOLDER: ';
  font-weight: 700;
}
