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

:root {
  --gold:        #C18F63;
  --gold-dark:   #A97A4F;
  --gold-soft:   #F3E9DD;
  --navy:        #14213D;
  --navy-2:      #1F3159;
  --charcoal:    #2E2E32;
  --charcoal-2:  #3B3B40;
  --gray:        #6B7280;
  --gray-light:  #E5E8EC;
  --bg-alt:      #F7F8FA;
  --white:       #ffffff;
}

html, body {
  background: var(--white);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 5vw;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(20,33,61,0.06);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after { width: 100%; }

.btn-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white) !important;
  background: var(--gold);
  padding: 26px 84px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(193,143,99,0.55);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover { background: var(--gold-dark); color: var(--white) !important; }
.btn-cta::after { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.lang-switch a {
  color: var(--gray);
  transition: color 0.2s ease;
}

.lang-switch a::after { display: none; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch .active { color: var(--navy); font-weight: 800; }
.lang-switch .lang-sep { color: var(--gray-light); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: var(--gold);
  padding: 15px 32px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--gray-light);
  padding: 14px 30px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.link-arrow:hover { color: var(--gold); }

/* Compact highlight banner */
.highlight-banner {
  background: var(--gold-soft);
  padding: 56px 5vw;
  text-align: center;
}

.highlight-banner .section-icon { margin-bottom: 18px; }

.highlight-banner p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto 18px;
  line-height: 1.4;
}

/* Homepage hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 84px 5vw 60px;
  background: var(--bg-alt);
}

.hero.has-photo {
  background:
    linear-gradient(90deg, rgba(247,248,250,0.93) 0%, rgba(247,248,250,0.78) 45%, rgba(247,248,250,0.55) 100%),
    var(--photo) var(--photo-position, center)/cover no-repeat;
}

.hero-content {
  max-width: 600px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 26px;
}

.hero h1 span { color: var(--gold); }

.hero .lead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn-outline {
  background: rgba(255,255,255,0.6);
  border-color: rgba(20,33,61,0.25);
}

.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.85);
}

.hero-visual {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.15), transparent 55%),
    linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 55%, var(--gold) 130%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual.has-photo,
.about-visual.has-photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  bottom: -90px;
  right: -60px;
}

/* Inner page header */
.page-header {
  padding: 160px 5vw 80px;
  background: linear-gradient(155deg, var(--charcoal) 0%, var(--charcoal-2) 70%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header.has-photo {
  background:
    linear-gradient(155deg, rgba(20,20,22,0.82) 0%, rgba(20,20,22,0.6) 70%),
    var(--photo) var(--photo-position, center)/cover no-repeat;
}

.page-header::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(193,143,99,0.3);
  top: -220px;
  right: -160px;
}

.page-header .breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto 22px;
}

.page-header .lead {
  font-size: 17px;
  line-height: 1.75;
  color: #C7C8CB;
  max-width: 620px;
  margin: 0 auto;
}

/* Generic sections */
.section {
  padding: 90px 5vw;
}

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

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section p.body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 640px;
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-grid p.body { margin-bottom: 18px; max-width: 100%; }

.about-visual {
  position: relative;
  height: 360px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.14), transparent 55%),
    linear-gradient(150deg, var(--charcoal) 0%, var(--charcoal-2) 60%, var(--gold) 140%);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
}

/* Routes */
.routes-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.europe-map-wrap {
  display: flex;
  justify-content: center;
  margin: 34px 0 30px;
}

.europe-map {
  width: 100%;
  max-width: 620px;
  height: auto;
}

.map-country {
  fill: #DDE2E8;
  stroke: var(--bg-alt);
  stroke-width: 0.7;
  transition: fill 0.25s ease;
}

.map-country--active {
  fill: var(--gold);
}

.europe-map:hover .map-country--active { fill: var(--gold-dark); }

.routes-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 26px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
  flex-shrink: 0;
}

.routes-note {
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
  text-align: center;
}

/* Centered section icon badge */
.section-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 22px;
}

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
  margin: 34px auto 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.check-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.check-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 40px auto 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.25s ease;
}

.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(20,33,61,0.08); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 40px auto 0;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 36px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gray-light);
}

.contact-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-row .feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-row-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-row-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
}

.contact-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* Benefit cards (icon + single label) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 34px 26px;
  transition: all 0.25s ease;
}

.benefit-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(20,33,61,0.08); }

.benefit-card .feature-icon { margin-bottom: 18px; }

.benefit-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.4;
}

/* Job cards */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 32px 30px;
  transition: all 0.25s ease;
}

.job-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(20,33,61,0.08); }

.job-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.job-card-head .feature-icon { margin-bottom: 0; flex-shrink: 0; }

.job-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}

.job-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 14px;
}

.job-card p:last-child { margin-bottom: 0; }

.job-card p strong { color: var(--navy); }

/* Contact / partner form */
.form-card {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--bg-alt);
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.form-card select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236B7280' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.form-card input::placeholder,
.form-card textarea::placeholder { color: var(--gray); }

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.form-card .btn-primary {
  border: none;
  cursor: pointer;
  width: 100%;
}

.form-card--wide { max-width: 860px; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.form-msg.is-visible { display: block; }

.form-msg.success {
  background: #EAF7EE;
  color: #1E7A3D;
  border: 1.5px solid #B9E5C6;
}

.form-msg.error {
  background: #FCEBEA;
  color: #B3261E;
  border: 1.5px solid #F3C4C0;
}

.form-card .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}

.field label .req { color: var(--gold); }

.field--full { grid-column: 1 / -1; }

.field input,
.field select,
.field textarea {
  margin-bottom: 0;
}

.form-divider {
  grid-column: 1 / -1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(90deg, rgba(20,20,22,0.78) 0%, rgba(20,20,22,0.45) 55%, rgba(20,20,22,0.6) 100%),
    url('images/cta-banner.jpg') center 75%/cover no-repeat;
  padding: 130px 5vw;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  line-height: 1.75;
  color: #C7C8CB;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-band .btn-primary { position: relative; }

/* Stats band */
.stats-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  padding: 60px 5vw;
}

.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 52px);
  white-space: nowrap;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #C7C8CB;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #9CA0A8;
  padding: 64px 5vw 0;
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo-chip {
  display: inline-block;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  line-height: 0;
}

.footer-logo-chip img { height: 34px; width: auto; display: block; }

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #9CA0A8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14.5px;
  color: #B7BAC0;
  transition: color 0.2s ease;
}

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

.footer-contact li { font-size: 14.5px; color: #B7BAC0; line-height: 1.5; }

.footer-contact li strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7D8189;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }

  .navbar.open .nav-menu {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5vw 28px;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(20,33,61,0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 110px;
  }

  .hero-visual { height: 260px; order: -1; clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%); }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 240px; order: -1; }

  .section { padding: 64px 5vw; }
  .page-header { padding: 130px 5vw 60px; }

  .stats-inner { flex-direction: column; gap: 28px; }
  .stat-item { border-right: none !important; padding: 0; }

  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 28px 24px; }
}

/* Scroll / entrance animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.3s cubic-bezier(.16,.8,.24,1), transform 1.3s cubic-bezier(.16,.8,.24,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-d1 { transition-delay: 0.2s; }
.reveal-d2 { transition-delay: 0.4s; }
.reveal-d3 { transition-delay: 0.6s; }
.reveal-d4 { transition-delay: 0.8s; }

.features-grid .feature-card.reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card.reveal:nth-child(3) { transition-delay: 0.4s; }
.features-grid .feature-card.reveal:nth-child(4) { transition-delay: 0.6s; }

.stats-inner .stat-item.reveal:nth-child(1) { transition-delay: 0s; }
.stats-inner .stat-item.reveal:nth-child(2) { transition-delay: 0.2s; }
.stats-inner .stat-item.reveal:nth-child(3) { transition-delay: 0.4s; }
.stats-inner .stat-item.reveal:nth-child(4) { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
