/* ============================================
   91 AT WORK — Blog Styles
   Header + footer copied 1:1 from main site
   ============================================ */

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

:root {
  /* Brand palette */
  --orange: #F37021;
  --orange-light: #FF8C42;
  --green: #1E9E4A;
  --green-light: #2DC55E;
  --navy: #1B2C7C;
  --navy-deep: #0F1F5C;
  --navy-light: #4358B5;
  --purple: #6B3FE5;
  --purple-deep: #4A28B5;
  --purple-light: #9B6FFF;
  --magenta: #C13EE5;
  --pink: #E63E96;
  --coral: #FF6B6B;
  --gold: #FFD66B;

  /* Surfaces */
  --bg: #120829;
  --bg-soft: #221356;
  --bg-elev: #2D1A6B;
  --surface: rgba(255, 255, 255, 0.04);
  --glass: rgba(45, 26, 96, 0.55);
  --text: #F5F7FA;
  --text-muted: #C5CAE0;
  --text-subtle: #8E94B8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Type */
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --sh-md: 0 6px 16px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.25);
  --sh-lg: 0 16px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 88px;
  --article-max: 1080px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--orange); color: #fff; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Ambient glow — same as main site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(193, 62, 229, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(107, 63, 229, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(230, 62, 150, 0.06), transparent 70%);
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============================================
   HEADER — Dark glass sticky bar (blog style)
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 4, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__img {
  height: 44px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}
.nav__link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--magenta), var(--pink));
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(193, 62, 229, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(193, 62, 229, 0.42);
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 4, 26, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 16px; padding: 8px 0; color: var(--text-muted); }
.mobile-nav .nav__cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ============================================
   MAIN — sits below sticky header
   ============================================ */
.blog-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) var(--gutter);
}

.blog-article {
  max-width: var(--article-max);
  margin: 0 auto;
}

/* ============================================
   BLOG LISTING
   ============================================ */
.blog-listing__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.blog-listing__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.blog-listing__eyebrow::before { content: '— '; color: var(--magenta); }
.blog-listing__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
  color: var(--text);
}
.blog-listing__title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-listing__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 2.8vw, 36px);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 62, 229, 0.4);
  background: linear-gradient(160deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03));
  box-shadow: 0 24px 40px rgba(107, 63, 229, 0.22);
}
.blog-card__category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.blog-card__excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.blog-card__meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-subtle);
}
.blog-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card__author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__author-name { color: var(--text); font-weight: 600; }
.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--magenta);
  font-weight: 600;
  transition: color 0.3s ease, gap 0.3s ease;
}
.blog-card:hover .blog-card__read {
  color: var(--pink);
  gap: 8px;
}

/* ============================================
   ARTICLE
   ============================================ */
.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.blog-article__back:hover { color: var(--text); gap: 12px; }

.blog-article__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.blog-article__category::before { content: '— '; color: var(--magenta); }

.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.8px;
  color: var(--text);
}
.blog-article__title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.blog-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-article__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-article__author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.blog-article__author-name { font-weight: 600; color: var(--text); }
.blog-article__author-title {
  font-size: 12.5px;
  color: var(--text-subtle);
}
.blog-article__date-block {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-subtle);
  font-size: 13px;
}
.blog-article__date-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-subtle);
}

.blog-article__body {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--text-muted);
}
.blog-article__body p { margin-bottom: 22px; max-width: 820px; }
.blog-article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 20px;
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.blog-article__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.blog-article__body strong { color: var(--text); font-weight: 600; }
.blog-article__body em { color: var(--text-subtle); font-style: italic; }
.blog-article__body ul,
.blog-article__body ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
  max-width: 820px;
}
.blog-article__body li { margin-bottom: 10px; padding-left: 4px; }
.blog-article__body li::marker { color: var(--magenta); }
.blog-article__body a {
  color: var(--magenta);
  border-bottom: 1px solid rgba(193, 62, 229, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.blog-article__body a:hover { color: var(--pink); border-color: var(--pink); }

.blog-callout {
  margin: 36px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(107, 63, 229, 0.1), rgba(193, 62, 229, 0.06));
  border: 1px solid rgba(193, 62, 229, 0.2);
  border-radius: 14px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  max-width: 820px;
}
.blog-callout strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}

/* ============================================
   INLINE ZOHO FORM at end of article
   ============================================ */
.blog-form-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.blog-form-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 3vw, 40px);
}
.blog-form-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.blog-form-section__eyebrow::before { content: '— '; color: var(--magenta); }
.blog-form-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  color: var(--text);
}
.blog-form-section__title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-form-section__sub {
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 auto;
}

#crmWebToEntityForm.crmWebToEntityForm {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(24px, 2.4vw, 36px) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(107, 63, 229, 0.18);
  font-family: 'Inter', sans-serif !important;
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
}
#crmWebToEntityForm .zcwf_title { display: none !important; }
#crmWebToEntityForm form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
#crmWebToEntityForm form > .zcwf_row:has(textarea),
#crmWebToEntityForm form > .zcwf_row:has(select),
#crmWebToEntityForm form > .zcwf_row--captcha,
#crmWebToEntityForm form > .zcwf_row--submit {
  grid-column: 1 / -1;
}
#crmWebToEntityForm form > .wfrm_fld_dpNn { display: none; }
#crmWebToEntityForm .zcwf_row { display: block; margin: 14px 0 !important; }
#crmWebToEntityForm .zcwf_col_lab {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 0 6px 0 !important;
}
#crmWebToEntityForm .zcwf_col_lab label {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
#crmWebToEntityForm .zcwf_col_lab label span { color: var(--pink) !important; }
#crmWebToEntityForm .zcwf_col_fld {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}
#crmWebToEntityForm input[type=text],
#crmWebToEntityForm input[type=password],
#crmWebToEntityForm textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 12px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  float: none !important;
  box-sizing: border-box;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
#crmWebToEntityForm input[type=text]:focus,
#crmWebToEntityForm textarea:focus,
#crmWebToEntityForm .zcwf_col_fld_slt:focus {
  outline: none !important;
  border-color: var(--magenta) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(193, 62, 229, 0.18) !important;
}
#crmWebToEntityForm textarea { min-height: 100px; resize: vertical; }
#crmWebToEntityForm .zcwf_col_fld_slt {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 12px 40px 12px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  float: none !important;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffffa0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  cursor: pointer;
}
#crmWebToEntityForm .zcwf_col_fld_slt option { background: #150A35; color: #fff; }
#crmWebToEntityForm .zcwf_row--captcha .zcwf_col_lab {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
#crmWebToEntityForm .zcwf_captcha_wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
#crmWebToEntityForm .zcwf_captcha_wrap img {
  max-width: 180px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
#crmWebToEntityForm .zcwf_captcha_wrap a {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s ease;
}
#crmWebToEntityForm .zcwf_captcha_wrap a:hover { color: var(--pink); }
#crmWebToEntityForm .zcwf_row--submit .zcwf_col_fld {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
#crmWebToEntityForm .formsubmit.zcwf_button,
#crmWebToEntityForm input[type=submit] {
  background: linear-gradient(135deg, var(--purple), var(--magenta), var(--pink)) !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 28px !important;
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  cursor: pointer;
  max-width: none !important;
  overflow: visible !important;
  box-shadow: 0 8px 20px rgba(193, 62, 229, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#crmWebToEntityForm .formsubmit.zcwf_button:hover,
#crmWebToEntityForm input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(193, 62, 229, 0.45);
}
#crmWebToEntityForm .zcwf_button--reset,
#crmWebToEntityForm input[type=reset] {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 14px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  cursor: pointer;
  max-width: none !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}
#crmWebToEntityForm input[type=reset]:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
#crmWebToEntityForm .zcwf_col_help { display: none; }

/* ============================================
   FOOTER — NAVY-DEEP (1:1 with main site)
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 32px;
  position: relative;
  margin-top: 80px;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--green-light), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .logo {
  background: #fff;
  padding: 8px 16px;
  border-radius: var(--r-md);
  display: inline-flex;
  margin-bottom: 20px;
}
.footer__brand .logo__img { height: 44px; }
.footer__tagline {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--orange);
  border-color: transparent;
  transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer__col ul li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav, .nav__cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article__body { font-size: 16px; line-height: 1.7; }
  #crmWebToEntityForm form { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  :root { --header-h: 80px; }
}
