/* =========================================================
   ELETROCLIMA — folha de estilos modernizada
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

img { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Design tokens ---------- */
:root {
  --navy-950: #05021a;
  --navy-900: #0a0d2e;
  --navy-850: #0a0d3d;
  --navy-800: #0b0f52;
  --navy-700: #12175f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.09);

  --ice-300: #8fe9ff;
  --ice-400: #2fd6ff;
  --ice-500: #0ba9d6;
  --ice-grad: linear-gradient(135deg, #4be0ff 0%, #0ba9d6 100%);

  --gold-300: #f6cf88;
  --gold-400: #e8a63d;
  --gold-500: #c8862a;

  --ink-000: #ffffff;
  --ink-050: #f4f6ff;
  --ink-300: #b9bfe6;
  --ink-500: #7d84b0;

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-serif: "Crimson Text", serif;
  --font-body: "Inter", sans-serif;

  --fs-h1: clamp(2.1rem, 1.35rem + 3.4vw, 3.9rem);
  --fs-h2: clamp(1.6rem, 1.25rem + 1.6vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  --fs-body: clamp(1rem, 0.94rem + 0.25vw, 1.1rem);
  --fs-small: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.15vw, 0.8rem);

  --space-2: 0.5rem;
  --space-3: 0.85rem;
  --space-4: 1.25rem;
  --space-5: 1.75rem;
  --space-6: 2.5rem;
  --space-8: 4rem;
  --space-10: 5.5rem;
  --space-12: 7.5rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px -25px rgba(0, 0, 0, 0.6);
  --shadow-glow-ice: 0 0 0 1px rgba(79, 224, 255, 0.18), 0 25px 60px -25px rgba(11, 169, 214, 0.45);
  --shadow-glow-gold: 0 0 0 1px rgba(232, 166, 61, 0.25), 0 25px 60px -25px rgba(200, 134, 42, 0.4);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

/* ---------- Base ---------- */
body {
  background: var(--navy-900);
  color: var(--ink-050);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-000);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.ec-eyebrow img { width: 18px; height: 18px; }

.ec-section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-top: 0.5rem;
}

/* ---------- Botões ---------- */
.ec-btn {
  --btn-fg: var(--navy-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: var(--btn-fg);
  background: var(--ice-grad);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.9rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow-ice);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
}
.ec-btn img { width: 20px; height: 20px; filter: brightness(0); }
.ec-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.ec-btn:active { transform: translateY(-1px); }

.ec-btn--outline {
  background: transparent;
  color: var(--ink-050);
  box-shadow: none;
  border: 1.5px solid var(--panel-border);
}
.ec-btn--outline:hover { border-color: var(--ice-400); background: rgba(79, 224, 255, 0.08); }

.ec-btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: var(--shadow-glow-gold);
}

/* ---------- Header ---------- */
.ec-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-block: 1.1rem;
  background: rgba(6, 5, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
}
.ec-header.is-scrolled {
  background: rgba(6, 5, 26, 0.85);
  border-bottom-color: var(--panel-border);
  padding-block: 0.7rem;
}

.ec-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ec-logo img { height: 6vh; width: auto; }

.ec-nav-links {
  display: none;
  align-items: center;
  gap: 2.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.ec-nav-links a {
  text-decoration: none;
  color: var(--ink-300);
  position: relative;
  transition: color 0.25s var(--ease);
}
.ec-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--ice-400);
  transition: width 0.3s var(--ease);
}
.ec-nav-links a:hover { color: var(--ink-000); }
.ec-nav-links a:hover::after { width: 100%; }

.ec-nav-cta { display: none; }

.ec-burger {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  color: var(--ink-050);
}
.ec-burger svg { width: 20px; height: 20px; }

/* menu mobile (drawer) */
.ec-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(2, 1, 12, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 70;
}
.ec-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(78vw, 320px);
  background: var(--navy-850);
  border-left: 1px solid var(--panel-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 80;
}
body.menu-open .ec-drawer { transform: translateX(0); }
body.menu-open .ec-drawer-overlay { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

.ec-drawer-top { display: flex; justify-content: space-between; align-items: center; }
.ec-drawer-close {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--ink-050);
  display: grid; place-items: center;
}
.ec-drawer-links { display: flex; flex-direction: column; gap: 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.ec-drawer-links a { text-decoration: none; color: var(--ink-050); }
.ec-drawer .ec-btn { width: 100%; }

/* ---------- Hero ---------- */
.ec-hero {
  position: relative;
  padding-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-bottom: var(--space-10);
  overflow: hidden;
}
.ec-hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(38% 45% at 18% 15%, rgba(79, 224, 255, 0.28), transparent 70%),
    radial-gradient(30% 35% at 85% 10%, rgba(232, 166, 61, 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.ec-hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}
.ec-hero__content { max-width: 640px; }

.ec-hero__title { font-size: var(--fs-h1); font-weight: 800; }
.ec-hero__title .is-accent { color: var(--gold-400); }

.ec-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--ink-300);
  font-weight: 400;
  margin-top: var(--space-4);
  max-width: 34ch;
}

.ec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: var(--space-5);
}
.ec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-050);
}
.ec-badge img { width: 18px; height: 18px; }

.ec-hero__cta { margin-top: var(--space-6); }

.ec-hero__aside { display: none; }
.ec-hero__ice { width: 100%; height: auto; opacity: 0.9; }
.ec-marquee-wrap { margin-top: var(--space-10); position: relative; z-index: 1; }
.ec-marquee-label {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--ink-500);
  margin-bottom: var(--space-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Marquee de logos ---------- */
.ec-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ec-marquee__track {
  display: flex;
  width: max-content;
  gap: 3.2rem;
  animation: ec-scroll 34s linear infinite;
}
.ec-marquee:hover .ec-marquee__track { animation-play-state: paused; }
.ec-marquee__track img {
  height: 34px;
  width: auto;
  flex: 0 0 auto;
  filter: grayscale(1) brightness(2.2) opacity(0.55);
  transition: filter 0.3s var(--ease);
}
.ec-marquee__track img:hover { filter: grayscale(0) brightness(1) opacity(1); }

@keyframes ec-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Divisores em ângulo ---------- */
.ec-divider {
  height: clamp(28px, 4vw, 56px);
  width: 100%;
}
.ec-divider--down { clip-path: polygon(0 0, 50% 100%, 100% 0); }
.ec-divider--up { clip-path: polygon(0 100%, 50% 0, 100% 100%); }

/* ---------- Currículo / módulos ---------- */
.ec-curriculum { background: var(--navy-950); padding-block: var(--space-4) var(--space-10); }

.ec-module {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.4rem + 1.6vw, 3.2rem);
  margin-top: var(--space-8);
}
.ec-module--install {
  background: linear-gradient(160deg, rgba(79, 224, 255, 0.09), rgba(79, 224, 255, 0.02));
  border: 1px solid rgba(79, 224, 255, 0.18);
}
.ec-module--maintenance {
  background: linear-gradient(160deg, rgba(232, 166, 61, 0.09), rgba(232, 166, 61, 0.02));
  border: 1px solid rgba(232, 166, 61, 0.2);
}

.ec-module__head { display: flex; flex-direction: column; gap: 0.4rem; }
.ec-module__tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  color: var(--ice-400);
}
.ec-module--maintenance .ec-module__tag { color: var(--gold-400); }

.ec-module__title { font-size: var(--fs-h2); font-weight: 800; margin-top: 0.2rem; }
.ec-module--install .ec-module__title { color: var(--ice-300); }
.ec-module--maintenance .ec-module__title { color: var(--gold-300); }

.ec-module__equip { color: var(--ink-300); font-size: var(--fs-body); margin-top: 0.3rem; }
.ec-module__equip strong { color: var(--ink-050); font-weight: 600; }

.ec-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: var(--space-5); }
.ec-pill {
  font-size: var(--fs-small);
  padding: 0.6rem 1.05rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--panel-border);
  color: var(--ink-050);
}

.ec-module__about-title {
  font-size: var(--fs-h3);
  font-weight: 800;
  margin-top: var(--space-6);
  color: var(--ink-000);
}
.ec-module__about-text {
  color: var(--ink-300);
  margin-top: 0.8rem;
  max-width: 78ch;
}

/* ---------- Cards de destaque ---------- */
.ec-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.ec-perk {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: var(--panel);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.ec-perk:hover { transform: translateY(-6px); border-color: rgba(79, 224, 255, 0.4); }
.ec-perk img { width: 44px; height: 44px; margin-inline: auto; }
.ec-perk h4 { font-size: 1.15rem; margin-top: var(--space-3); color: var(--gold-300); }
.ec-perk p { color: var(--ink-300); margin-top: 0.4rem; font-size: var(--fs-small); }

/* ---------- Motivos / benefícios ---------- */
.ec-reasons { background: var(--navy-900); padding-block: var(--space-10); }
.ec-reasons__head { text-align: center; max-width: 640px; margin-inline: auto; }
.ec-reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.ec-reason {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.ec-reason:hover { transform: translateY(-4px); border-color: rgba(232, 166, 61, 0.35); }
.ec-reason__icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(79, 224, 255, 0.1);
}
.ec-reason__icon img { width: 28px; height: 28px; }
.ec-reason h4 { font-size: 1.1rem; color: var(--ink-000); }
.ec-reason p { color: var(--ink-300); margin-top: 0.35rem; font-size: var(--fs-small); }

/* ---------- Sobre / autoridade ---------- */
.ec-about { background: var(--navy-800); padding-block: var(--space-10); }
.ec-about__lead {
  font-size: var(--fs-lead);
  color: var(--ink-050);
  max-width: 62ch;
  margin-top: var(--space-3);
}
.ec-about__lead strong { color: var(--gold-300); }

.ec-about__body {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}
.ec-about__col { display: flex; flex-direction: column; gap: var(--space-4); width: 100%; }

.ec-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.ec-feature:hover { border-color: var(--panel-border); background: rgba(255, 255, 255, 0.06); }
.ec-feature__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(232, 166, 61, 0.12);
  display: grid; place-items: center;
}
.ec-feature__icon img { width: 24px; height: 24px; }
.ec-feature h5 { color: var(--ink-000); font-size: 1rem; font-weight: 700; }
.ec-feature p { color: var(--ink-300); font-size: var(--fs-small); margin-top: 0.25rem; }

.ec-about__emblem {
  display: grid;
  place-items: center;
  position: relative;
  padding: var(--space-6);
}
.ec-about__emblem::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 224, 255, 0.22), transparent 70%);
  z-index: 0;
  filter: blur(6px);
}
.ec-about__emblem img { position: relative; z-index: 1; width: clamp(130px, 16vw, 190px); height: auto; }

.ec-about__banner {
  margin-top: var(--space-10);
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79, 224, 255, 0.12), rgba(232, 166, 61, 0.08));
  border: 1px solid var(--panel-border);
}
.ec-about__banner h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-lead);
  color: var(--ink-050);
  max-width: 44ch;
  margin-inline: auto;
}
.ec-about__banner .ec-btn { margin-top: var(--space-5); }

/* ---------- Passo a passo ---------- */
.ec-steps { background: var(--navy-900); padding-block: var(--space-10); }
.ec-steps__list {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  counter-reset: step;
}
.ec-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: var(--panel);
}
.ec-step__num {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-950);
  background: var(--ice-grad);
}
.ec-step p { color: var(--ink-050); font-size: var(--fs-body); }

/* ---------- FAQ ---------- */
.ec-faq { background: var(--navy-950); padding-block: var(--space-10); }
.ec-faq__head { text-align: center; }
.ec-faq__list { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); max-width: 760px; margin-inline: auto; }

.ec-faq-item {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.ec-faq-item.is-open { border-color: rgba(79, 224, 255, 0.4); }

.ec-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: none;
  color: var(--ink-050);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.ec-faq-item__icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.ec-faq-item__icon svg { width: 14px; height: 14px; }
.ec-faq-item.is-open .ec-faq-item__icon { transform: rotate(45deg); background: var(--ice-400); }

.ec-faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.ec-faq-item.is-open .ec-faq-item__panel { grid-template-rows: 1fr; }
.ec-faq-item__panel-inner { overflow: hidden; }
.ec-faq-item__panel p { padding: 0 var(--space-5) var(--space-5); color: var(--ink-300); font-size: var(--fs-small); }

/* ---------- CTA final ---------- */
.ec-final-cta { background: var(--navy-900); padding-block: var(--space-10); text-align: center; position: relative; overflow: hidden; }
.ec-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(79, 224, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.ec-final-cta__inner { position: relative; z-index: 1; }
.ec-final-cta p { color: var(--ink-300); margin-top: var(--space-3); max-width: 46ch; margin-inline: auto; }
.ec-final-cta .ec-btn { margin-top: var(--space-6); }

/* ---------- Rodapé ---------- */
.ec-footer { background: var(--navy-950); border-top: 1px solid var(--panel-border); padding-block: var(--space-8) var(--space-6); }
.ec-footer__grid { display: flex; flex-direction: column; gap: var(--space-6); }
.ec-footer__brand { flex: 1 1 320px; }
.ec-footer__brand img { height: clamp(28px, 4vh, 44px); }
.ec-footer__brand p { color: var(--ink-500); font-size: var(--fs-small); margin-top: 0.7rem; max-width: 40ch; }
.ec-footer__links { display: flex; flex-direction: column; gap: 0.7rem; font-size: var(--fs-small); flex: 0 1 200px; }
.ec-footer__links a { text-decoration: none; color: var(--ink-300); }
.ec-footer__links a:hover { color: var(--ice-300); }
.ec-footer__title { font-family: var(--font-display); font-weight: 700; color: var(--ink-050); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.3rem; }
.ec-footer__bottom { margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--panel-border); text-align: center; color: var(--ink-500); font-size: 0.8rem; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .ec-perks { grid-template-columns: repeat(3, 1fr); }
  .ec-reasons__grid { grid-template-columns: repeat(2, 1fr); }
  .ec-steps__list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .ec-hero__grid { flex-direction: row; align-items: center; justify-content: space-between; }
  .ec-hero__content { max-width: 54%; }
  .ec-hero__aside { display: block; width: 42%; }

  .ec-about__body { flex-direction: row; align-items: center; }
  .ec-about__col { width: 32%; align-self: flex-start; }
  .ec-about__emblem { width: 26%; }

  .ec-reasons__grid { grid-template-columns: repeat(3, 1fr); }

  .ec-footer__grid { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: var(--space-8); }
}

@media (min-width: 992px) {
  .ec-nav-links { display: flex; }
  .ec-nav-cta { display: inline-flex; }
  .ec-burger { display: none; }

  .ec-steps__list { grid-template-columns: repeat(5, 1fr); }
  .ec-step { flex-direction: column; text-align: center; }
}

@media (min-width: 1200px) {
  .ec-perks { grid-template-columns: repeat(3, 1fr); }
}