/* ===================================================
   VOSG PRETS — New Design System
   Palette: Deep Navy + Gold + Warm Cream
   =================================================== */

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

:root {
  --navy:       #0D2B4E;
  --navy-mid:   #1A4A7A;
  --navy-light: #2A6FAD;
  --gold:       #C9952A;
  --gold-light: #E8B84B;
  --cream:      #F7F4EE;
  --cream-dark: #EDE9DF;
  --white:      #FFFFFF;
  --text-dark:  #0D2B4E;
  --text-body:  #3A4D63;
  --text-light: #7A90A8;
  --danger:     #C0392B;
  --success:    #1A6644;
  --border:     rgba(13,43,78,0.12);
  --shadow-sm:  0 2px 12px rgba(13,43,78,0.08);
  --shadow-md:  0 8px 40px rgba(13,43,78,0.13);
  --shadow-lg:  0 20px 60px rgba(13,43,78,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }

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

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: .3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ─── Nav / Header ────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.site-header.transparent .nav-link { color: rgba(255,255,255,0.9); }
.site-header.transparent .logo-dark { display: none; }
.site-header.transparent .logo-light { display: block; }
.site-header.scrolled .logo-dark { display: block; }
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .nav-link { color: var(--navy); }
.site-header.scrolled .btn-header { background: var(--gold); color: var(--navy); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.logo img { height: 42px; }
.logo-light { display: none; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-weight: 500; font-size: 15px; color: var(--navy);
  position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-header {
  background: var(--navy);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.btn-header:hover { background: var(--gold); color: var(--navy); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}
.site-header.transparent .hamburger span { background: var(--white); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--white); z-index: 10000;
  box-shadow: -4px 0 40px rgba(0,0,0,.15);
  transition: right var(--transition);
  padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-link { color: var(--navy); font-size: 18px; padding: 12px 0; display: block; border-bottom: 1px solid var(--border); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 9998; display: none; }
.mobile-overlay.open { display: block; }
.menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--navy); }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0D3B6E 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,149,42,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(42,111,173,0.25) 0%, transparent 60%);
}
.hero-geo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,42,0.15);
  border: 1px solid rgba(201,149,42,0.4);
  padding: 8px 18px; border-radius: 50px;
  color: var(--gold-light); font-size: 13px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

.hero-visual {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  z-index: 1; opacity: .9;
}

/* ─── Disclosure Banner ───────────────────────────── */
.disclosure-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  font-size: 13px; line-height: 1.5;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.disclosure-banner strong { color: var(--gold-light); }

/* ─── Section Basics ──────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--white); }
.section-navy { background: var(--navy); }
.section-cream { background: var(--cream); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold);
}

.section-heading { margin-bottom: 56px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { color: var(--text-body); max-width: 560px; font-size: 17px; }
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }

/* ─── About ───────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
}
.about-card-float .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201,149,42,0.1);
  display: grid; place-items: center;
}
.about-card-float .icon svg { width: 24px; height: 24px; color: var(--gold); }

.features-list { display: flex; flex-direction: column; gap: 20px; margin: 36px 0; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px; background: rgba(201,149,42,0.1);
  display: grid; place-items: center;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ─── Services ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-visual {
  height: 180px; position: relative; overflow: hidden;
}
.service-card-body { padding: 28px; }
.service-card-body h4 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card-body p { color: var(--text-body); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: 14px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ─── Process ─────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 80px; right: 80px;
  height: 2px; background: var(--border); z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
}
.process-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--navy); margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.process-step h5 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { font-size: 14px; color: var(--text-body); }

/* ─── Why Us ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,149,42,0.4); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(201,149,42,0.15);
  display: grid; place-items: center; margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 2; stroke-linecap: round; }
.why-card h4 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.65; }

/* ─── Legal Disclaimer ────────────────────────────── */
.legal-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 40px 0;
}
.legal-box h6 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--navy); margin-bottom: 10px;
}
.legal-box p { font-size: 13px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ─── Representative Example ──────────────────────── */
.rep-example {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.rep-example h6 {
  color: var(--gold-light); font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.rep-example p { font-size: 14px; line-height: 1.75; }
.rep-example strong { color: var(--white); }

/* ─── Form ────────────────────────────────────────── */
.form-wrapper {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 52px;
}
.form-title { margin-bottom: 8px; }
.form-subtitle { color: var(--text-body); margin-bottom: 40px; font-size: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: .3px; }
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--navy);
  background: var(--cream); transition: all var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,149,42,0.1); }
.form-control::placeholder { color: var(--text-light); }

.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D2B4E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}

.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.form-check input[type=checkbox] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.form-check label { font-size: 14px; color: var(--text-body); line-height: 1.6; cursor: pointer; }
.form-check a { color: var(--navy); font-weight: 600; text-decoration: underline; }

.btn-submit {
  width: 100%; padding: 17px;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  letter-spacing: .3px;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,42,.35); }

/* ─── Page Header ─────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 18px; }
.breadcrumb { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.breadcrumb a { color: var(--gold-light); font-size: 14px; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 14px; }

/* ─── Team / Testimonials ─────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15px; color: var(--text-body); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: grid; place-items: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.author-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.author-city { font-size: 13px; color: var(--text-light); }

/* ─── Contact ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  background: rgba(201,149,42,0.1);
  display: grid; place-items: center;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }
.contact-info-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.contact-info-text { font-size: 15px; color: var(--text-body); }
.contact-info-text a:hover { color: var(--gold); }

/* ─── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand img { height: 38px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 260px; }

.footer-heading {
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; min-width: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold-light); }

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 0;
}
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; text-align: center; }

/* ─── SVG Illustration helpers ────────────────────── */
.svg-hero { width: 100%; max-width: 520px; }
.svg-about { width: 100%; border-radius: var(--radius-lg); overflow: hidden; }

/* ─── Utilities ───────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white) !important; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.gap-12 { gap: 12px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ─── Cookie / GDPR Notice ────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: var(--navy); color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 14px; max-width: 680px; }
.cookie-bar a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-header { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
  .form-wrapper { padding: 32px 24px; }
  .hero-visual { display: none; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
