/* ============================================================
   Crisan Immobilienmanagement — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --blue:       #0C54A0;
  --blue-dark:  #07203D;
  --blue-light: #1A6BBF;
  --white:      #FFFFFF;
  --off:        #F8F9FB;
  --border:     #E4E8EE;
  --text:       #1A2332;
  --sub:        #5A6478;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:      72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

p { color: var(--sub); line-height: 1.8; }

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--dark { background: var(--blue-dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.65); }
.section--off { background: var(--off); }

.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.section--dark .section-label { color: #7BAADC; }
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; max-width: 55ch; margin-bottom: 3rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 4px;
  font-size: .9rem; font-weight: 600;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  border: 2px solid var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(12,84,160,.3); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s;
}
.nav.scrolled {
  background: rgba(7,32,61,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.1;
  text-decoration: none;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--white); letter-spacing: .01em;
}
.nav-logo-sub {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-link {
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .5rem .85rem; border-radius: 4px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: .3rem; }
.dropdown-toggle svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  padding: .5rem 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown-item {
  display: block; padding: .65rem 1.25rem;
  font-size: .82rem; font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
}
.dropdown-item:hover { background: var(--off); color: var(--blue); }
.dropdown-divider { height: 1px; background: var(--border); margin: .35rem 0; }

.nav-cta {
  margin-left: .75rem;
  background: var(--blue); color: var(--white) !important;
  padding: .55rem 1.25rem; border-radius: 4px;
  font-size: .82rem; font-weight: 600;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--blue-dark);
  padding: 2rem; overflow-y: auto;
  flex-direction: column; gap: .25rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .85rem 1rem; border-radius: 4px;
  transition: background .15s, color .15s;
}
.mobile-link:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-link-sub {
  padding-left: 2rem; font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.mobile-link-sub:hover { color: rgba(255,255,255,.8); }
.mobile-divider { height: 1px; background: rgba(255,255,255,.1); margin: .5rem 0; }
.mobile-cta {
  margin-top: 1rem;
  background: var(--blue); color: var(--white);
  padding: .9rem; text-align: center;
  border-radius: 4px; font-weight: 600;
}

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  background: var(--blue-dark);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, rgba(12,84,160,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(12,84,160,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #7BAADC; margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 48ch;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.hero-img-card {
  border-radius: 6px; overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: rgba(255,255,255,.3);
  text-align: center; padding: 1rem;
}
.hero-img-card:first-child { margin-top: 2rem; }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--blue);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  color: var(--white);
}
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }
.trust-text strong { display: block; font-size: .9rem; font-weight: 600; }
.trust-text span { font-size: .78rem; opacity: .7; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12,84,160,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(12,84,160,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.service-card p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-card-link {
  font-size: .82rem; font-weight: 600;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: .6rem; }

/* ── TARGET GROUPS ── */
.targets-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.target-card {
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.target-card:hover { border-color: var(--blue); box-shadow: 0 8px 30px rgba(12,84,160,.08); }
.target-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 400;
  color: var(--blue); opacity: .2;
  line-height: 1; margin-bottom: 1rem;
}
.target-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.target-card p { font-size: .88rem; }

/* ── ABOUT TEASER ── */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--sub); font-size: .8rem; text-align: center; padding: 2rem;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.about-value { display: flex; gap: .75rem; align-items: flex-start; }
.about-value-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); margin-top: .45rem; flex-shrink: 0;
}
.about-value p { font-size: .88rem; font-weight: 500; color: var(--text); }

/* ── NEWS CARDS ── */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.news-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.news-card-img {
  aspect-ratio: 16/9;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--sub); font-size: .75rem; text-align: center; padding: 1rem;
}
.news-card-body { padding: 1.5rem; }
.news-card-cat {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .75rem;
}
.news-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.news-card p { font-size: .83rem; line-height: 1.6; }
.news-card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 600; color: var(--blue);
  margin-top: 1rem;
  transition: gap .2s;
}
.news-card:hover .news-card-link { gap: .55rem; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; font-size: .95rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 6px;
  background: rgba(12,84,160,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; }
.contact-detail strong { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .2rem; }
.contact-detail span { font-size: .85rem; color: var(--sub); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .8rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font: inherit; font-size: .9rem; color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,84,160,.1);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-error { font-size: .75rem; color: #C0392B; margin-top: .2rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C0392B; }
.field.has-error .field-error { display: block; }

.form-checkbox {
  display: flex; gap: .75rem; align-items: flex-start;
  margin-top: .5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--blue); cursor: pointer; flex-shrink: 0;
}
.form-checkbox label {
  font-size: .82rem; color: var(--sub); line-height: 1.6;
}
.form-checkbox a { color: var(--blue); border-bottom: 1px solid rgba(12,84,160,.3); }

.form-success {
  display: none; padding: 1.25rem 1.5rem;
  background: #EBF5EA; border: 1px solid #A8D5A2;
  border-radius: 6px; margin-bottom: 1.5rem;
  font-size: .9rem; color: #2E7D32;
}
.form-success.show { display: block; }
.form-error-msg {
  display: none; padding: 1rem 1.5rem;
  background: #FDECEA; border: 1px solid #F5C6CB;
  border-radius: 6px; margin-bottom: 1.5rem;
  font-size: .9rem; color: #C0392B;
}
.form-error-msg.show { display: block; }

/* Honeypot */
.hp-field { display: none !important; }

/* ── PAGE HERO (Unterseiten) ── */
.page-hero {
  background: var(--blue-dark);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(12,84,160,.3) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.65); max-width: 55ch; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

/* ── LEISTUNGEN DETAIL ── */
.leistung-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.leistung-block:last-child { border-bottom: none; }
.leistung-block.deletable-item { position: relative; }
.leistung-block--flip { direction: rtl; }
.leistung-block--flip > * { direction: ltr; }
.leistung-visual {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--sub); font-size: .8rem; text-align: center; padding: 2rem;
}
.leistung-list { list-style: none; margin-top: 1.5rem; }
.leistung-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.leistung-list li:last-child { border-bottom: none; }
.leistung-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); margin-top: .55rem; flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--blue); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 1.25rem; font-size: .9rem; line-height: 1.8;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--blue);
  padding: 5rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ── FOOTER ── */
.footer { background: var(--blue-dark); color: var(--white); }
.footer-main {
  padding: 4rem 0 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,.5); font-size: .85rem;
  line-height: 1.75; margin-top: 1rem; max-width: 32ch;
}
.footer-col h4 {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.footer-link {
  display: block; font-size: .85rem;
  color: rgba(255,255,255,.6);
  padding: .3rem 0;
  transition: color .2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 780px; padding: 3rem 0 5rem;
}
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 .75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .92rem; margin-bottom: 1rem; }
.legal-content a { color: var(--blue); border-bottom: 1px solid rgba(12,84,160,.3); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leistung-block { grid-template-columns: 1fr; gap: 3rem; }
  .leistung-block--flip { direction: ltr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .targets-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
