/* ==========================================================================
   Aurum Business Management — styles.css
   Palette: Navy #10253F · Gold #C9A227 · White
   Mobile first, no build step, no external assets.
   ========================================================================== */

:root {
  --navy: #10253F;
  --navy-deep: #0B1B30;
  --navy-soft: #1B3A5C;
  --gold: #C9A227;
  --gold-soft: #E8CD6B;
  --gold-pale: #F7EFD8;
  --ink: #17293E;
  --slate: #5A6B7E;
  --mist: #F6F8FA;
  --line: #E5EAF0;
  --white: #FFFFFF;
  --danger: #B4232A;
  --success: #1E7B4F;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Didot", "Bodoni 72", "Playfair Display", Georgia,
                "Times New Roman", serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;

  --shadow-s: 0 1px 2px rgba(16, 37, 63, 0.06), 0 2px 8px rgba(16, 37, 63, 0.05);
  --shadow-m: 0 2px 6px rgba(16, 37, 63, 0.07), 0 12px 32px rgba(16, 37, 63, 0.09);
  --shadow-l: 0 8px 24px rgba(16, 37, 63, 0.12), 0 24px 64px rgba(16, 37, 63, 0.14);

  --container: 1160px;
  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; color: var(--navy); }
p { margin: 0 0 1em; }
a { color: var(--navy); }

ul { padding-left: 1.2em; }

::selection { background: var(--gold-pale); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius-s);
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.005em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4.6vw, 42px);
  max-width: 24ch;
}

.section-lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--slate);
  max-width: 62ch;
}

.section-head { margin-bottom: clamp(32px, 6vw, 56px); }
.section-head.centered { text-align: center; }
.section-head.centered .section-title,
.section-head.centered .section-lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(16, 37, 63, 0.03), 0 8px 24px rgba(16, 37, 63, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { width: auto; height: 40px; }

/* Auf schmalen Screens: Kontakt-Button ausblenden (steht im Menü), Logo behält Platz */
@media (max-width: 599px) {
  .header-actions > .button { display: none; }
}

.desktop-nav { display: none; }

.desktop-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.desktop-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}
.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate);
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
}
.lang-switch button:hover:not([aria-pressed="true"]) { color: var(--navy); }

.menu-button {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-s);
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 12px 20px 20px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  text-decoration: none;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--mist);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.button:active { transform: translateY(1px); }

.button-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.35);
}
.button-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.45);
}

.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.button-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.button-navy {
  background: var(--navy);
  color: var(--white);
}
.button-navy:hover { background: var(--navy-soft); }

.button-small { padding: 10px 18px; font-size: 14px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(46, 80, 119, 0.5), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #14304F 100%);
  color: var(--white);
  padding: clamp(72px, 12vw, 140px) 0 clamp(64px, 10vw, 120px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(201, 162, 39, 0.08), transparent);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.08);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold-soft); }

.hero-lead {
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points .tick { color: var(--gold-soft); font-weight: 700; }

/* --------------------------------------------------------------------------
   Trust band
   -------------------------------------------------------------------------- */

.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 6vw, 56px) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 34px);
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-item span { color: var(--slate); font-size: 15px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: clamp(64px, 10vw, 112px) 0; }
.section-alt { background: var(--mist); }

/* Services */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 26px;
  box-shadow: var(--shadow-s);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: rgba(201, 162, 39, 0.45);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--gold-pale), #FDF9EC);
  border: 1px solid rgba(201, 162, 39, 0.3);
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }

.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 15.5px; margin: 0; }

/* Compliance / business model */

.compliance {
  background:
    radial-gradient(900px 420px at 110% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(155deg, var(--navy-deep), var(--navy) 70%);
  color: rgba(255, 255, 255, 0.85);
}
.compliance .eyebrow { color: var(--gold-soft); }
.compliance .section-title { color: var(--white); }
.compliance .section-lead { color: rgba(255, 255, 255, 0.75); }

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

.compliance-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-m);
  padding: 24px;
}
.compliance-card h3 {
  color: var(--gold-soft);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.compliance-card p { margin: 0; font-size: 15.5px; color: rgba(255, 255, 255, 0.78); }

.compliance-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.08);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.compliance-note p { margin: 0; }

/* Industries */

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.industry {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
  box-shadow: var(--shadow-s);
}
.industry-emoji {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 22px;
  border-radius: 12px;
  background: var(--gold-pale);
}
.industry h3 { font-size: 17px; margin-bottom: 4px; }
.industry p { margin: 0; font-size: 15px; color: var(--slate); }

/* Process */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 24px 24px 74px;
  box-shadow: var(--shadow-s);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 15.5px; color: var(--slate); }

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-copy p { color: var(--slate); }
.about-copy .about-strong { color: var(--ink); font-weight: 500; }

.about-values {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.about-values li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--slate);
}
.about-values .tick {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
}
.about-values strong { color: var(--navy); }

.about-visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background:
    radial-gradient(500px 320px at 80% 10%, rgba(201, 162, 39, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  padding: clamp(36px, 6vw, 56px);
  color: var(--white);
  box-shadow: var(--shadow-l);
}
.about-visual .monogram { width: 120px; margin-bottom: 26px; }
.about-visual blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.about-visual cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* FAQ */

.faq-list { max-width: 820px; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.is-open {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: var(--shadow-s);
}

.faq-question {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-question::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--slate);
  font-size: 15.5px;
}
.faq-answer p { margin: 0; }
.faq-item.is-open .faq-answer { display: block; }

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info p { color: var(--slate); }

.contact-channels {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-channel:hover { border-color: rgba(201, 162, 39, 0.5); box-shadow: var(--shadow-s); }
.contact-channel .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-pale);
  font-size: 18px;
}
.contact-channel strong { display: block; font-size: 15px; color: var(--navy); }
.contact-channel span { font-size: 14px; color: var(--slate); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-m);
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--mist);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 20px;
}
.form-consent input { margin-top: 3px; accent-color: var(--gold); }
.form-consent a { color: var(--navy); }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-s);
  font-size: 14.5px;
}
.form-status.is-success { display: block; background: #EAF6EF; color: var(--success); }
.form-status.is-error { display: block; background: #FBEBEC; color: var(--danger); }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(48px, 8vw, 72px) 0 32px;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand svg { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 40ch; margin: 0; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-disclaimer p { margin-bottom: 10px; }

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-main {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(48px, 8vw, 80px) 20px;
}
.legal-main h1 { font-size: clamp(30px, 5vw, 40px); margin-bottom: 10px; }
.legal-main h2 { font-size: 21px; margin-top: 2em; }
.legal-main p, .legal-main li { color: var(--slate); font-size: 16px; }
.legal-main strong { color: var(--ink); }
.legal-updated { font-size: 14px; color: var(--slate); margin-bottom: 2em; }

.placeholder-hint {
  background: var(--gold-pale);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--radius-s);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ink);
}

[data-lang-block] { display: none; }
[data-lang-block].is-active { display: block; }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Breakpoints
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 640px) {
  .brand img { height: 46px; }
}

@media (min-width: 960px) {
  .brand img { height: 50px; }
  .desktop-nav { display: flex; gap: 28px; }
  .menu-button, .mobile-nav { display: none !important; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
  .compliance-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
