:root {
  --edm-blue: #1a4a8a;
  --edm-blue-deep: #0d2d5e;
  --edm-blue-dark: #081c3d;
  --edm-blue-mid: #2260a8;
  --edm-blue-light: #3a7bc8;
  --edm-blue-glow: #4a9ae0;
  --noir: #080c14;
  --surface: #111828;
  --card: #162035;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --white: #ffffff;
  --light: #d0dff0;
  --dim: #8a9fc0;
  --muted: #4a5c78;
  --border: rgba(58, 123, 200, 0.22);
  --border-strong: rgba(74, 154, 224, 0.28);
  --success: #25d366;
  --danger-bg: rgba(142, 37, 37, 0.18);
  --danger-border: rgba(255, 100, 100, 0.18);
  --danger-text: #ffd2d2;
  --container: 1180px;
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(58, 123, 200, 0.09), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 168, 76, 0.08), transparent 24%),
    var(--noir);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.top-line {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1000;
  background: linear-gradient(
    90deg,
    var(--edm-blue-deep),
    var(--edm-blue-light),
    var(--gold),
    var(--edm-blue-light),
    var(--edm-blue-deep)
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--edm-blue-glow);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--edm-blue-glow));
  opacity: 0.9;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-header--compact {
  margin-bottom: 0;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 18px 0 14px;
}

.section-header p {
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.8;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(8, 12, 20, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 0.3s ease;
}

.site-nav.scrolled .nav-inner {
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  z-index: 2;
}

.brand-mark {
  width: 220px;
  height: 132px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
  transition: width 0.35s ease, height 0.35s ease;
}

.site-nav.scrolled .brand-mark {
  width: 165px;
  height: 100px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.dropdown-trigger {
  color: var(--light);
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-links a:hover,
.dropdown-trigger:hover,
.has-dropdown.open .dropdown-trigger,
.nav-links a.active,
.dropdown-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.caret {
  font-size: 0.74rem;
  opacity: 0.85;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 330px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 32, 53, 0.98), rgba(13, 18, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  display: none;
}

.has-dropdown.open .dropdown-menu {
  display: grid;
  gap: 6px;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--light);
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding-bottom: 18px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav .mobile-group {
  margin-top: 10px;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--edm-blue-mid), var(--edm-blue-deep));
  border-color: rgba(74, 154, 224, 0.2);
  box-shadow: 0 12px 30px rgba(10, 33, 76, 0.35);
}

.btn-secondary {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.24);
}

.btn-whatsapp {
  color: #072312;
  background: linear-gradient(135deg, #49e67f, var(--success));
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 0.92rem;
  padding-top: 24px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--light);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb .current {
  color: var(--gold-light);
}

.hero {
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 168, 76, 0.14), transparent 18%),
    radial-gradient(circle at 20% 18%, rgba(74, 154, 224, 0.13), transparent 20%),
    linear-gradient(135deg, rgba(8, 12, 20, 0) 0%, rgba(58, 123, 200, 0.06) 45%, rgba(201, 168, 76, 0.04) 100%);
  pointer-events: none;
}

.hero::after {
  content: attr(data-watermark);
  position: absolute;
  right: 0;
  bottom: -28px;
  font-family: "Cormorant Garamond", serif;
  font-size: min(32vw, 25rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(13, 45, 94, 0.42);
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 64px 0 42px;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin: 20px 0;
  max-width: 820px;
}

.hero-copy h1 em,
.panel-heading em,
.glass-card h3 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-copy p {
  color: var(--dim);
  font-size: 1.03rem;
  max-width: 700px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 30px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.hero-panel,
.service-card,
.step-card,
.insight-card,
.form-card,
.contact-item,
.glass-card,
.blog-card {
  background: linear-gradient(180deg, rgba(22, 32, 53, 0.9), rgba(13, 18, 32, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero-panel,
.service-card,
.insight-card,
.form-card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.service-card::before,
.insight-card::before,
.form-card::before,
.blog-card::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--edm-blue-light), var(--gold));
}

.hero-panel {
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-title {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--edm-blue-glow);
  margin-bottom: 14px;
}

.panel-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.panel-desc {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.panel-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  font-style: italic;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--light);
  font-size: 0.94rem;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    rgba(74, 154, 224, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8l3 3L12.5 5' stroke='%234a9ae0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/14px no-repeat;
  border: 1px solid rgba(74, 154, 224, 0.25);
}

.stats-grid,
.services-grid,
.steps-grid,
.insight-grid,
.contact-grid,
.blog-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 26px;
}

.stat-box {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 8px;
}

.stat-box span {
  color: var(--dim);
  font-size: 0.88rem;
  display: block;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card,
.insight-card,
.blog-card {
  border-radius: var(--radius);
  padding: 28px;
}

.service-card .tag,
.insight-card .tag,
.blog-card .tag {
  display: inline-flex;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--edm-blue-glow);
  margin-bottom: 14px;
}

.service-card h3,
.insight-card h3,
.blog-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card p,
.insight-card p,
.blog-card p {
  color: var(--dim);
  font-size: 0.96rem;
  line-height: 1.75;
}

.card-link,
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.92rem;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
}

.step-card .number {
  position: absolute;
  right: 16px;
  bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(74, 154, 224, 0.11);
}

.step-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 12px 0 8px;
}

.step-card p {
  color: var(--dim);
  font-size: 0.95rem;
  max-width: 280px;
}

.insight-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.glass-card {
  border-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.glass-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  margin: 14px 0 12px;
}

.glass-card p {
  color: var(--dim);
  max-width: 660px;
  margin-bottom: 22px;
}

.risk-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.risk-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.risk-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.98rem;
}

.risk-item span {
  color: var(--dim);
  font-size: 0.92rem;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-date {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.cta-band {
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(13, 45, 94, 0.95), rgba(8, 28, 61, 0.96)),
    var(--edm-blue-dark);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(201, 168, 76, 0.18), transparent 24%);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 10px;
}

.cta-band p {
  position: relative;
  z-index: 1;
  color: var(--light);
  max-width: 620px;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  padding: 18px 20px;
  border-radius: 20px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-item span,
.contact-item a {
  color: var(--dim);
}

.contact-item a:hover {
  color: var(--gold-light);
}

.form-card {
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.form-card p {
  color: var(--dim);
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--light);
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(208, 223, 240, 0.45);
}

select option {
  color: #000;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(74, 154, 224, 0.45);
  box-shadow: 0 0 0 3px rgba(74, 154, 224, 0.12);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.error {
  display: none;
  margin-top: 8px;
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger-text);
  font-size: 0.84rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

footer {
  padding: 36px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.footer-brand img {
  width: min(100%, 270px);
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--dim);
  max-width: 420px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.footer-col a,
.footer-col li {
  color: var(--dim);
  font-size: 0.93rem;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #49e67f, var(--success));
  color: #062412;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  }
  50% {
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .insight-wrap,
  .cta-band,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section {
    padding: 78px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    min-height: 108px;
  }

  .site-nav.scrolled .nav-inner {
    min-height: 82px;
  }

  .brand-mark {
    width: 175px;
    height: 105px;
  }

  .site-nav.scrolled .brand-mark {
    width: 138px;
    height: 83px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 56px 0 36px;
  }

  .hero-copy h1 {
    font-size: 3.05rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta-band,
  .hero-panel,
  .form-card,
  .glass-card,
  .service-card,
  .insight-card,
  .blog-card {
    padding: 24px;
  }

  .breadcrumb {
    font-size: 0.84rem;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}