/* ==========================================================================
   Wise Compliance Group — styles.css
   Palette: navy #14507E → bright blue #29ABE2, tint #EAF2F8, green #6CB33F
   ========================================================================== */

:root {
  --navy-950: #0A2E4C;
  --navy-900: #0E3D63;
  --navy-800: #14507E;
  --navy-700: #1B5E8C;
  --blue-600: #2188C4;
  --blue-500: #2E9BD6;
  --blue-400: #29ABE2;
  --blue-300: #6CC4ED;
  --green-500: #6CB33F;
  --green-600: #56962E;
  --red-500: #C4574E;
  --tint-100: #EAF2F8;
  --tint-200: #D9E8F3;
  --line: #D8E5F0;
  --heading: #133B5C;
  --body: #46535E;
  --muted: #64798C;

  --grad-brand: linear-gradient(120deg, #14507E 0%, #2188C4 55%, #29ABE2 100%);
  --grad-dark: linear-gradient(135deg, #0A2E4C 0%, #123F66 55%, #1B6FA8 100%);

  --shadow-1: 0 6px 18px rgba(16, 52, 82, 0.08);
  --shadow-2: 0 16px 38px rgba(16, 52, 82, 0.16);
  --radius: 16px;
  --container: 1160px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: #fff;
}

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

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  color: var(--heading);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.15rem, 4.6vw + 0.6rem, 3.55rem); }
h2 { font-size: clamp(1.65rem, 2.6vw + 0.6rem, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--navy-800); }

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

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

.section { padding: 5.5rem 0; }
.tint { background: var(--tint-100); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.ic {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  vertical-align: -0.22em;
}
.ic-green { color: var(--green-500); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Section headings ---------- */

.section-head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head.left { margin-inline: 0; text-align: left; }

.kicker {
  color: var(--blue-600);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}
.kicker.light { color: var(--blue-300); }

.lead { font-size: 1.12rem; color: var(--muted); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(33, 136, 196, 0.38);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 12px 28px rgba(33, 136, 196, 0.45);
}

.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
}
.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn-sm { padding: 0.62rem 1.1rem; font-size: 0.92rem; border-radius: 10px; }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy-950);
  color: #CFE6F5;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
}
.topbar-note { margin: 0; opacity: 0.85; }
.topbar-contact { display: flex; gap: 1.4rem; }
.topbar-contact a {
  color: #CFE6F5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}
.topbar-contact a:hover { color: #fff; }

/* ---------- Sticky header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(16, 52, 82, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-name {
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--heading);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-grad {
  background: linear-gradient(90deg, var(--navy-700), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-grad-light {
  background: linear-gradient(90deg, var(--blue-300), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu { display: flex; align-items: center; gap: 1.6rem; }
.menu ul { display: flex; gap: 1.6rem; }
.menu ul a {
  color: var(--heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.menu ul a:hover { color: var(--blue-600); }
.menu ul a.active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-400);
}
.menu-call { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--heading);
}
.nav-toggle .ic { width: 1.7em; height: 1.7em; }
.nav-toggle .ic-close { display: none; }
body.menu-open .nav-toggle .ic-open { display: none; }
body.menu-open .nav-toggle .ic-close { display: block; }

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 88vh, 840px);
  padding: 5rem 0 6rem;
  background:
    linear-gradient(100deg, rgba(8, 40, 66, 0.94) 0%, rgba(15, 64, 102, 0.88) 40%, rgba(27, 110, 168, 0.6) 75%, rgba(41, 171, 226, 0.4) 100%),
    var(--navy-950) url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=70") center / cover no-repeat;
  color: #fff;
}

.hero-inner { width: 100%; }
.hero h1 { color: #fff; max-width: 760px; }

.grad-text {
  background: linear-gradient(90deg, var(--blue-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D6ECF9;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: 1.18rem;
  color: #D9ECF8;
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.96rem;
  color: #E3F2FB;
}

/* ---------- Problem / versus ---------- */

.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2.6rem;
}

.versus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red-500);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-1);
}
.versus-card.is-proactive { border-top-color: var(--green-500); }

.versus-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  font-size: 1.22rem;
}

.badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  flex: 0 0 auto;
}
.badge-dot .ic { width: 1.1em; height: 1.1em; }
.dot-red { background: var(--red-500); }
.dot-green { background: var(--green-500); }

.x-list li, .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-block: 0.45rem;
}
.x-list .ic, .check-list .ic { margin-top: 0.22em; }
.x-list .ic { color: var(--red-500); }

.check-list.big li { font-size: 1.06rem; padding-block: 0.55rem; }

.problem-banner {
  text-align: center;
  font-size: clamp(1.2rem, 2vw + 0.6rem, 1.6rem);
  font-weight: 700;
  color: var(--heading);
  background: var(--tint-100);
  border-left: 6px solid var(--green-500);
  border-radius: 12px;
  padding: 1.4rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.problem-banner strong { color: var(--blue-600); }

/* ---------- Services ---------- */

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}

.service-card {
  flex: 1 1 330px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  margin-bottom: 1.3rem;
  box-shadow: 0 8px 18px rgba(33, 136, 196, 0.35);
}
.icon-badge .ic { width: 1.65em; height: 1.65em; }

.service-card p { color: var(--muted); font-size: 0.98rem; }

.outcome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: auto 0 0;
  padding-top: 1rem;
  font-weight: 700;
  color: var(--heading) !important;
  font-size: 0.95rem !important;
  border-top: 1px dashed var(--line);
}

/* ---------- Who we help ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 2.8rem;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.industry-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.industry-body { padding: 1.6rem 1.6rem 1.8rem; }
.industry-body h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.industry-body .check-list li { padding-block: 0.3rem; font-size: 0.97rem; }

.builder-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--grad-dark);
  border-radius: 20px;
  padding: 2.8rem 3rem;
  color: #DCEDF8;
  box-shadow: var(--shadow-2);
}

.builder-panel blockquote { margin: 0; }
.builder-panel blockquote p {
  font-size: clamp(1.25rem, 1.6vw + 0.7rem, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 0.8rem;
}
.builder-panel cite { color: var(--blue-300); font-style: normal; font-weight: 600; }

.builder-copy p { font-size: 1.02rem; }

.chip-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}

/* ---------- About / why choose us ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-copy .check-list { margin-bottom: 2rem; }

.about-media { position: relative; }
.about-media img {
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}

.float-badge {
  position: absolute;
  left: -28px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  max-width: 290px;
}
.float-badge p { margin: 0; font-size: 0.95rem; line-height: 1.45; }
.float-badge strong { color: var(--heading); }
.float-mark { width: 46px; height: 46px; flex: 0 0 auto; }

/* ---------- SWMS spotlight ---------- */

.swms {
  background:
    radial-gradient(900px 480px at 85% 8%, rgba(41, 171, 226, 0.25), transparent 60%),
    var(--grad-dark);
  color: #D9ECF8;
}

.swms-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.swms h2 { color: #fff; }
.swms-copy > p { font-size: 1.05rem; }

.swms-tagline {
  font-size: clamp(1.5rem, 2.4vw + 0.7rem, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 1.8rem 0;
  letter-spacing: -0.01em;
}
.swms-tagline span {
  background: linear-gradient(90deg, var(--blue-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.swms-note { margin: 0.9rem 0 0; font-size: 0.92rem; color: var(--blue-300); font-weight: 600; }

.swms-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.swms-card img {
  width: 100%;
  aspect-ratio: 5 / 2.6;
  object-fit: cover;
}

.swms-steps { padding: 1.8rem 2rem 2rem; display: grid; gap: 1.3rem; }
.swms-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.swms-steps h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.swms-steps p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(33, 136, 196, 0.35);
}

/* ---------- Duties bar ---------- */

.duties { padding: 4.5rem 0; }

.duties-title {
  text-align: center;
  font-size: clamp(1.2rem, 1.6vw + 0.6rem, 1.55rem);
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.duties-title strong { color: var(--blue-600); }

.duties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  text-align: center;
}

.duty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-400);
  color: var(--blue-600);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-1);
}
.duty-icon .ic { width: 1.7em; height: 1.7em; }

.duty h3 { font-size: 1.06rem; margin-bottom: 0.4rem; }
.duty p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 2.2rem;
  align-items: stretch;
}

.contact-info {
  background: var(--grad-dark);
  border-radius: 20px;
  padding: 2.4rem 2.2rem;
  color: #D9ECF8;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2);
}
.contact-info h3 { color: #fff; font-size: 1.35rem; margin-bottom: 1.6rem; }
.contact-info ul { display: grid; gap: 1.25rem; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info a { color: #fff; font-weight: 700; }
.contact-info a:hover { color: var(--blue-300); }
.contact-info p { margin: 0; color: #fff; font-weight: 600; }

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-300);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.contact-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--blue-300);
  flex: 0 0 auto;
}

.contact-info-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info-foot p { font-style: italic; font-weight: 600; color: #CFE6F5; }
.info-mark { width: 52px; height: 52px; flex: 0 0 auto; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--heading);
  background: #FBFDFE;
  border: 1.5px solid #C9DCEB;
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 130px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(46, 155, 214, 0.18);
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
  background: #EFF7EA;
  border: 1px solid #BBDCA4;
  border-radius: 10px;
  color: #3E6B22;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-alt { margin: 1rem 0 0; font-size: 0.95rem; color: var(--muted); }
.form-alt a { font-weight: 700; }

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

.site-footer {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #BFD9EC;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1.2fr;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand .brand-name { color: #fff; }

.footer-tagline {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.footer-desc { font-size: 0.95rem; }

.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; margin-bottom: 1.4rem; }
.footer-col a { color: #BFD9EC; font-weight: 500; }
.footer-col a:hover { color: #fff; }

.footer-contact li { display: flex; align-items: center; gap: 0.6rem; }
.footer-contact .ic { color: var(--blue-300); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.3rem;
  font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }
.footer-motto { color: #fff; font-weight: 700; }

/* ---------- Mobile call FAB ---------- */

.call-fab {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(120deg, var(--green-500), var(--green-600));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(86, 150, 46, 0.45);
}
.call-fab:hover { color: #fff; }

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

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .industry-card { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .about-grid, .swms-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 620px; }
  .float-badge { left: 16px; bottom: -26px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}

@media (max-width: 820px) {
  .section { padding: 3.8rem 0; }

  .topbar-note { display: none; }
  .topbar-inner { justify-content: center; }

  /* Mobile menu */
  .nav-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px rgba(16, 52, 82, 0.16);
    padding: 1rem 24px 1.4rem;
    display: none;
  }
  body.menu-open .menu { display: flex; }
  .menu ul { flex-direction: column; gap: 0; }
  .menu ul a {
    display: block;
    padding: 0.85rem 0.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--tint-200);
  }
  .menu ul a.active { border-bottom-color: var(--tint-200); }
  .nav-cta { margin-top: 0.9rem; }
  .menu-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--navy-800);
    padding: 0.7rem;
  }

  .versus { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .builder-panel { grid-template-columns: 1fr; padding: 2.2rem 1.8rem; gap: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .duties-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .call-fab { display: inline-flex; }
}

@media (max-width: 540px) {
  .container { padding-inline: 16px; }
  .hero { padding: 4rem 0; min-height: 0; }
  .hero-sub { font-size: 1.05rem; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 0.7rem; }
  .brand-name { font-size: 1.02rem; }
  .brand-mark { width: 38px; height: 38px; }
  .topbar-contact .topbar-mail { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.8rem 2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .contact-form, .contact-info { padding: 1.8rem 1.4rem; }
  .float-badge { position: static; margin-top: 1rem; max-width: none; }
  .swms-steps { padding: 1.4rem 1.3rem 1.6rem; }
  .problem-banner { padding: 1.1rem 1.3rem; }
}
