/* ============================================================
   HRio Marketing Website · Style
   ============================================================ */

:root {
  --red: #EC0016;
  --red-dark: #B8000F;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --g-50: #FAFAFA;
  --g-100: #F4F4F4;
  --g-150: #ECECEC;
  --g-200: #E0E0E0;
  --g-300: #C8C8C8;
  --g-400: #9E9E9E;
  --g-500: #6E6E6E;
  --g-600: #454545;
  --g-700: #2B2B2B;
  --g-800: #1A1A1A;
  --success: #00843D;
  --warning: #F59F00;
  --info: #1E66F5;
  --yellow-soft: #FFF4C2;
  --mint-soft: #D4F5DE;
  --blue-soft: #DCE9FF;
  --peach-soft: #FFE0D4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

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

/* ---- HEADER ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--g-150); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-size: 20px; color: var(--black); letter-spacing: -0.02em; }
.brand:hover { color: var(--black); }
.brand strong { font-weight: 700; }
.brand-dot { width: 8px; height: 8px; background: var(--red); display: inline-block; }
.brand-tag { font-size: 11px; color: var(--g-500); margin-left: 10px; font-weight: 400; letter-spacing: 0.02em; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.main-nav a { color: var(--g-700); }
.main-nav a:hover { color: var(--red); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; font-size: 14px; font-weight: 600; border: 1px solid; cursor: pointer; transition: all .15s; text-align: center; line-height: 1; font-family: inherit; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-primary-sm, .btn-ghost-sm { padding: 8px 14px; font-size: 13px; font-weight: 600; border: 1px solid; }
.btn-primary-sm { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary-sm:hover { color: var(--white); background: var(--red-dark); }
.btn-ghost-sm { background: transparent; color: var(--black); border-color: var(--g-300); }
.btn-ghost-sm:hover { color: var(--black); border-color: var(--black); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { display: block; width: 100%; }

/* ---- HERO ---- */
.hero { padding: 72px 0 56px; background: linear-gradient(180deg, #FFF9F0 0%, #FFFFFF 60%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero-text .eyebrow { color: var(--red); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 16px; }
.hero h1 { font-size: 56px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 300; margin: 0 0 20px; color: var(--black); }
.hero h1 strong, .hero-text h1 { font-weight: 300; }
.lead { font-size: 19px; color: var(--g-600); line-height: 1.55; margin: 0 0 28px; max-width: 540px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--g-600); }
.badge-hero { font-weight: 500; }
.hero-img { position: relative; }
.hero-img img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.hero-img-badge { position: absolute; bottom: -16px; left: 24px; background: var(--white); padding: 10px 18px; font-size: 12px; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--g-150); }

/* ---- TRUST ---- */
.trust { padding: 32px 0; border-top: 1px solid var(--g-150); border-bottom: 1px solid var(--g-150); background: var(--g-50); }
.trust-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--g-500); font-weight: 600; }
.trust-logos { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-logos span { font-size: 14px; color: var(--g-500); font-weight: 500; letter-spacing: 0.02em; }

/* ---- SECTION HEAD ---- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }
.section-head .eyebrow { color: var(--red); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-head h2 { font-size: 40px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 300; margin: 0; color: var(--black); }
.section-head h2 .accent { color: var(--red); font-weight: 500; }

/* ---- GALLERY (happy people) ---- */
.gallery { padding: 80px 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; grid-auto-rows: 280px; }
.gallery-item { position: relative; overflow: hidden; margin: 0; background: var(--g-100); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%); color: var(--white); padding: 40px 20px 16px; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; }
.gallery-item-0 { grid-row: span 1; }
.gallery-item-1 { grid-row: span 1; }
.gallery-item-2 { grid-row: span 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1) figcaption { font-size: 18px; padding-bottom: 22px; }

/* ---- TEAM MOMENT ---- */
.team-moment { padding: 100px 0; background: var(--mint-soft); }
.team-moment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.team-moment-img { position: relative; }
.team-moment-img img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.team-moment-img::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; background: var(--red); z-index: -1; }
.team-moment-text .eyebrow { color: var(--red); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 16px; }
.team-moment-text h2 { font-size: 38px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 300; margin: 0 0 20px; color: var(--black); }
.team-moment-text .lead { font-size: 18px; line-height: 1.6; color: var(--g-700); margin-bottom: 28px; }
.team-moment-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.team-moment-bullets li { padding-left: 36px; position: relative; font-size: 15px; line-height: 1.5; color: var(--g-700); }
.team-moment-bullets li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--red); color: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 13px; }

/* ---- FEATURES ---- */
.features { padding: 100px 0; background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { border: 1px solid var(--g-200); background: var(--white); transition: all .25s; overflow: hidden; display: flex; flex-direction: column; }
.feature-card:hover { border-color: var(--black); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.feature-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--g-100); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-emoji-overlay { position: absolute; bottom: -18px; right: 20px; width: 56px; height: 56px; background: var(--white); border: 3px solid var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 2; }
.feature-body { padding: 28px 28px 32px; flex: 1; }
.feature-icon { font-size: 40px; margin: 32px 28px 0; line-height: 1; }
.feature-card h3 { font-size: 20px; font-weight: 600; margin: 8px 0 10px; color: var(--black); }
.feature-card p { margin: 0; color: var(--g-600); font-size: 14px; line-height: 1.6; }

/* ---- LIFECYCLE ---- */
.lifecycle { padding: 80px 0; background: var(--g-50); }
.lifecycle-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 2px solid var(--red); }
.lc-step { padding: 28px 24px; background: var(--white); border-right: 1px solid var(--g-200); border-bottom: 1px solid var(--g-200); }
.lc-step:last-child { border-right: none; }
.lc-num { font-size: 12px; color: var(--red); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 12px; }
.lc-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.lc-text { font-size: 13px; color: var(--g-600); line-height: 1.5; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { padding: 36px; background: var(--yellow-soft); display: flex; flex-direction: column; }
.testi-stars { color: var(--red); font-size: 16px; margin-bottom: 20px; letter-spacing: 2px; }
.testi p { font-size: 17px; line-height: 1.5; color: var(--black); margin: 0 0 24px; font-weight: 400; flex: 1; }
.testi-author { font-size: 13px; color: var(--g-600); display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author strong { color: var(--black); font-size: 14px; display: block; line-height: 1.3; }
.testi-role { font-size: 12px; color: var(--g-600); margin-top: 2px; }
.testi:nth-child(2) { background: var(--mint-soft); }
.testi:nth-child(3) { background: var(--blue-soft); }

/* ---- CTA BAND ---- */
.cta-band { padding: 80px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: 36px; font-weight: 300; letter-spacing: -0.02em; margin: 0 0 8px; color: var(--white); }
.cta-band p { margin: 0; color: rgba(255,255,255,0.75); font-size: 18px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--g-50); padding: 64px 0 32px; border-top: 1px solid var(--g-200); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand { font-size: 20px; margin-bottom: 12px; }
.foot-tagline { color: var(--g-600); margin: 0 0 16px; font-size: 14px; }
.foot-small { font-size: 12px; color: var(--g-500); line-height: 1.6; }
.foot-head { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--g-700); font-weight: 600; margin-bottom: 16px; }
.site-footer a { display: block; padding: 6px 0; color: var(--g-600); font-size: 14px; }
.site-footer a:hover { color: var(--red); }
.foot-bottom { padding-top: 24px; border-top: 1px solid var(--g-200); display: flex; justify-content: space-between; font-size: 12px; color: var(--g-500); flex-wrap: wrap; gap: 16px; }
.foot-mini-nav { display: flex; gap: 20px; }
.foot-mini-nav a { display: inline; padding: 0; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 56px 0 32px; border-bottom: 1px solid var(--g-150); }
.breadcrumb-sm { font-size: 12px; color: var(--g-500); margin-bottom: 16px; }
.breadcrumb-sm a { color: var(--g-500); }
.breadcrumb-sm a:hover { color: var(--red); }
.page-hero h1 { font-size: 48px; font-weight: 300; letter-spacing: -0.03em; margin: 0 0 16px; line-height: 1.1; }
.page-body { padding: 48px 0 80px; }
.prose { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--g-700); }
.prose h2 { font-size: 30px; font-weight: 500; letter-spacing: -0.01em; margin: 48px 0 16px; color: var(--black); }
.prose h3 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; color: var(--black); }
.prose p { margin: 0 0 20px; }
.prose ul { margin: 0 0 20px; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote { margin: 24px 0; padding: 16px 24px; background: var(--yellow-soft); border-left: 3px solid var(--red); font-style: italic; }
.prose a { color: var(--red); text-decoration: underline; }
.prose strong { color: var(--black); }

/* ---- PRICING ---- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto 56px; }
.price-card { padding: 40px 32px; border: 1px solid var(--g-200); background: var(--white); }
.price-card-featured { border: 2px solid var(--red); background: linear-gradient(180deg, #FFF9F0 0%, #FFFFFF 100%); position: relative; }
.price-card-featured::before { content: 'Für wachsende Teams'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); padding: 4px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.price-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--g-500); font-weight: 600; margin-bottom: 8px; }
.price-big { font-size: 48px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.price-big span { font-size: 18px; color: var(--g-500); font-weight: 400; margin-left: 6px; }
.price-sub { font-size: 14px; color: var(--g-600); margin: 8px 0 24px; }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; font-size: 14px; color: var(--g-700); }
.price-list li { padding: 8px 0; border-bottom: 1px solid var(--g-150); }
.price-list li:last-child { border-bottom: none; }
.price-mini { text-align: center; font-size: 12px; color: var(--g-500); margin-top: 12px; }
.price-faq { max-width: 760px; margin: 0 auto; }
.price-faq h2 { font-size: 28px; font-weight: 300; margin-bottom: 24px; text-align: center; }
.price-faq details { border: 1px solid var(--g-200); padding: 16px 20px; margin-bottom: 10px; background: var(--white); }
.price-faq summary { font-weight: 600; cursor: pointer; font-size: 15px; color: var(--black); }
.price-faq details[open] summary { color: var(--red); margin-bottom: 10px; }
.price-faq details p { margin: 8px 0 0; color: var(--g-600); font-size: 14px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; max-width: 900px; margin: 0 auto; }
.contact-info p { color: var(--g-600); line-height: 1.6; }
.contact-block { padding: 16px 0; border-top: 1px solid var(--g-150); }
.contact-block:first-of-type { border-top: none; }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--g-500); font-weight: 600; margin-bottom: 4px; }
.contact-block a { font-size: 16px; color: var(--black); }
.contact-form { padding: 32px; background: var(--g-50); }
.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--g-700); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--g-300); background: var(--white); font-family: inherit; font-size: 14px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); }
.form-hint { font-size: 12px; color: var(--g-500); margin-top: 10px; text-align: center; }

/* ---- FEATURES DEEP ---- */
.features-deep > .features-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--g-150); }
.features-deep > .features-section:last-child { border-bottom: none; }
.features-deep > .features-section:nth-child(even) .features-text { order: 2; }
.features-text .eyebrow { color: var(--red); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 12px; }
.features-text h2 { font-size: 32px; font-weight: 400; letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1.15; }
.features-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--g-200); overflow: hidden; transition: all .2s; display: block; }
.blog-card:hover { border-color: var(--black); color: inherit; transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-emoji { font-size: 72px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 11px; color: var(--g-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; font-weight: 600; }
.blog-card h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; line-height: 1.3; color: var(--black); }
.blog-card p { font-size: 14px; color: var(--g-600); margin: 0 0 12px; line-height: 1.55; }
.blog-date { font-size: 12px; color: var(--g-500); }

/* ---- POST ---- */
.post-hero { padding: 48px 0 24px; }
.post-hero h1 { font-size: 44px; font-weight: 400; letter-spacing: -0.02em; margin: 12px 0 16px; line-height: 1.15; max-width: 900px; }
.post-meta { font-size: 13px; color: var(--g-600); margin-bottom: 32px; }
.post-cover { max-width: 1000px; margin: 0 auto; }
.post-cover img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.post-body { padding: 40px 0 80px; }
.post-cta { margin-top: 48px; padding: 32px; background: var(--yellow-soft); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.post-cta h3 { margin: 0 0 4px; font-size: 20px; }
.post-cta p { margin: 0; color: var(--g-600); }

/* ---- RELATED ---- */
.related { padding: 64px 0; background: var(--g-50); }
.related h2 { font-size: 28px; font-weight: 300; margin: 0 0 32px; }

/* ---- LANDINGPAGE ---- */
.hero-lp { background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%); }
.lp-problems { padding: 72px 0; background: var(--g-50); }
.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
.problem-card { display: flex; gap: 16px; padding: 20px 24px; background: var(--white); border: 1px solid var(--g-200); align-items: flex-start; }
.problem-ico { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #FFE5E5; color: var(--red); font-weight: 700; flex-shrink: 0; }
.problem-card strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--black); }
.problem-card p { margin: 0; font-size: 13px; color: var(--g-600); line-height: 1.5; }
.lp-solutions { padding: 72px 0; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card { padding: 28px; border: 1px solid var(--g-200); background: var(--white); }
.solution-emoji { font-size: 36px; margin-bottom: 12px; }
.solution-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--black); }
.solution-card p { margin: 0; font-size: 14px; color: var(--g-600); line-height: 1.55; }
.lp-testi { padding: 64px 0; background: var(--mint-soft); }
.lp-testi blockquote { max-width: 800px; margin: 0 auto; padding: 0; }
.lp-testi blockquote p { font-size: 24px; font-weight: 300; line-height: 1.4; letter-spacing: -0.01em; margin: 0 0 20px; color: var(--black); }
.lp-testi footer { font-size: 14px; color: var(--g-700); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner, .contact-grid, .features-deep > .features-section, .team-moment-inner { grid-template-columns: 1fr; gap: 32px; }
  .features-deep > .features-section:nth-child(even) .features-text { order: unset; }
  .hero h1 { font-size: 38px; }
  .section-head h2 { font-size: 28px; }
  .feature-grid, .blog-grid, .solutions-grid, .testi-grid { grid-template-columns: 1fr; }
  .lifecycle-grid { grid-template-columns: 1fr 1fr; }
  .lc-step:nth-child(2) { border-right: none; }
  .price-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .main-nav { gap: 16px; }
  .main-nav a:nth-child(1), .main-nav a:nth-child(3), .main-nav a:nth-child(4) { display: none; }
  .brand-tag { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .post-hero h1 { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .team-moment-text h2 { font-size: 28px; }
  .team-moment-img::after { display: none; }
}
@media (max-width: 640px) {
  .foot-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
  .lifecycle-grid { grid-template-columns: 1fr; }
  .lc-step { border-right: none; }
  .trust-logos { gap: 16px; }
  .trust-logos span { font-size: 12px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .team-moment { padding: 60px 0; }
}
