/* ============================================
   KIND — Global Design System
   Violet #6202C8 | Crème #F7F4EF | Anthracite #1A1A2E
   ============================================ */

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

:root {
  --violet:     #6202C8;
  --violet-light: #7C1FE0;
  --violet-pale: #F4EEFC;
  --creme:      #FAFAF8;
  --creme-dark: #F2F1ED;
  --anthracite: #15131F;
  --grey:       #64607D;
  --grey-light: #ECEAF2;
  --white:      #FFFFFF;
  --danger:     #DC2626;
  --success:    #059669;

  --font-display: 'Inter Tight', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --nav-h: 72px;
  --drawer-w: 300px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(21, 19, 31, 0.06);
  --shadow-lg: 0 16px 48px rgba(21, 19, 31, 0.10);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--anthracite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
p  { font-size: 1rem; color: var(--grey); line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.85rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--creme);
}
.section--violet {
  background: var(--violet);
  color: var(--white);
}
.section--violet p { color: rgba(255,255,255,0.8); }
.section--violet .eyebrow { color: rgba(255,255,255,0.6); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header p { margin-top: 1rem; font-size: 1.1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--violet);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--violet-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--violet);
}
.btn-white:hover {
  background: var(--creme);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-light);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--anthracite);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--violet);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.05em;
}

/* Desktop nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--anthracite);
  transition: all var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active {
  background: var(--violet-pale);
  color: var(--violet);
}

/* Desktop CTA */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger button */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 1100;
}
.navbar__hamburger:hover { background: var(--violet-pale); }
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── DRAWER (mobile + desktop sidebar) ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0; left: 0;
  width: var(--drawer-w);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 40px rgba(98,2,200,0.12);
}
.drawer.open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-light);
}
.drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-size: 1.4rem;
  line-height: 1;
}
.drawer__close:hover { background: var(--violet-pale); color: var(--violet); }

.drawer__nav {
  padding: 24px 16px;
  flex: 1;
}
.drawer__section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0 12px;
  margin: 20px 0 8px;
}
.drawer__section-label:first-child { margin-top: 0; }
.drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--anthracite);
  transition: all var(--transition);
  margin-bottom: 2px;
}
.drawer__link:hover,
.drawer__link.active {
  background: var(--violet-pale);
  color: var(--violet);
}
.drawer__link svg { flex-shrink: 0; }

.drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--grey-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 72px) 0 88px;
  background: linear-gradient(180deg, var(--white) 0%, var(--creme) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -240px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(98,2,200,0.06) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet-pale);
  color: var(--violet);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--violet);
  border-radius: 50%;
}
.hero h1 { color: var(--anthracite); margin-bottom: 24px; }
.hero h1 span { color: var(--violet); }
.hero__desc {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 460px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--grey-light);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--violet);
}
.stat__label {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 4px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--anthracite);
  padding: 24px 0;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-strip__item svg { color: var(--violet-light); flex-shrink: 0; }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card__icon {
  width: 48px; height: 48px;
  background: var(--violet-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.92rem; }

.card--featured {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}
.card--featured p { color: rgba(255,255,255,0.8); }
.card--featured .card__icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.card--featured:hover {
  background: var(--violet-light);
  border-color: var(--violet-light);
}

/* ── OFFER CARDS ── */
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid var(--grey-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.offer-card--featured {
  border-color: var(--violet);
  background: linear-gradient(135deg, var(--violet) 0%, #8B2CF5 100%);
  color: var(--white);
}
.offer-card--featured p { color: rgba(255,255,255,0.85); }
.offer-card__badge {
  display: inline-block;
  background: var(--violet-pale);
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}
.offer-card--featured .offer-card__badge {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.offer-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--violet);
  margin: 16px 0 8px;
}
.offer-card--featured .offer-card__price { color: var(--white); }
.offer-card__features {
  list-style: none;
  margin: 24px 0 32px;
  flex: 1;
}
.offer-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  color: var(--anthracite);
}
.offer-card--featured .offer-card__features li {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.offer-card__features li::before {
  content: '✓';
  color: var(--violet);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.offer-card--featured .offer-card__features li::before { color: rgba(255,255,255,0.9); }

/* ── SECTORS ── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sector-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  cursor: pointer;
}
.sector-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.sector-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.sector-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.sector-card p { font-size: 0.8rem; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--grey-light);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--violet-pale);
  position: absolute;
  top: -10px; left: 24px;
  line-height: 1;
}
.testimonial__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--anthracite);
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  background: var(--violet-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--violet);
  font-size: 0.85rem;
}
.testimonial__name { font-size: 0.9rem; font-weight: 600; }
.testimonial__role { font-size: 0.78rem; color: var(--grey); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--violet) 0%, #4B01A0 100%);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 260px;
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer__logo-white {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-mark--white {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

/* ── ANIMATIONS ── */
/* Content is visible by default. JS adds .js-anim to <html> to enable
   the entrance animation, so content is NEVER hidden if JS fails. */
.fade-in {
  opacity: 1;
  transform: none;
}
html.js-anim .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js-anim .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html.js-anim .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: linear-gradient(135deg, var(--violet) 0%, #4B01A0 100%);
  color: var(--white);
}
.page-hero .eyebrow { color: rgba(255,255,255,0.7); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── TAG ── */
.tag {
  display: inline-block;
  background: var(--violet-pale);
  color: var(--violet);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── FORM ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--anthracite);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--anthracite);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── PROCESS STEPS ── */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__number {
  width: 48px; height: 48px;
  background: var(--violet);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 23px; top: 48px;
  width: 2px;
  height: calc(100% - 48px);
  background: var(--violet-pale);
}
.process-step:last-child::before { display: none; }
.process-step__content { padding-top: 10px; }
.process-step__content h3 { margin-bottom: 8px; }

/* ── DIAGNOSTIC WIDGET ── */
.diagnostic {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--violet);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.diagnostic h3 { margin-bottom: 8px; }
.diagnostic > p { margin-bottom: 28px; }
.diag-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--grey-light);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.diag-option:hover,
.diag-option.selected {
  border-color: var(--violet);
  background: var(--violet-pale);
}
.diag-option input[type="radio"] { accent-color: var(--violet); margin-top: 2px; flex-shrink: 0; }
.diag-option label { cursor: pointer; font-size: 0.93rem; }
.diag-result {
  display: none;
  background: var(--violet-pale);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid var(--violet);
}
.diag-result.visible { display: block; }
.diag-result h4 { color: var(--violet); margin-bottom: 8px; }
.diag-result p { font-size: 0.9rem; }

/* ── BADGE ── */
.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--violet);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__inner { padding: 0 20px; }

  .hero { padding: calc(var(--nav-h) + 48px) 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .cards-grid--3,
  .cards-grid--2 { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }

  .offer-cards { grid-template-columns: 1fr !important; }

  .cta-banner { padding: 40px 24px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .trust-strip__inner { gap: 24px; }

  .process-step { grid-template-columns: 48px 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .sector-grid { grid-template-columns: 1fr; }
  .diagnostic { padding: 24px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-violet { color: var(--violet); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
