/* ================================================================
   ELARA ASSOCIATES — Main Stylesheet
   Design System from DESIGN.md · Low-specificity base for Elementor
   ================================================================ */

/* ── Font Faces ──────────────────────────────────────────────── */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-700-ext.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-800-ext.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens (CSS Custom Properties) ────────────────── */

:root {
  /* Colors — DESIGN.md 2.1 */
  --elara-blue:        #4B00FF;
  --elara-blue-hover:  #3A00C7;
  --elara-blue-soft:   #9D80FF;
  --elara-blue-100:    #EDE7FF;
  --elara-blue-50:     #F6F3FF;
  --elara-ink:         #0E0A2B;
  --elara-body:        #5B5875;
  --elara-line:        #E6E3F0;
  --elara-white:       #FFFFFF;

  /* Gradient */
  --elara-gradient:    linear-gradient(135deg, #4B00FF 0%, #2E0099 100%);

  /* Shadows — DESIGN.md 2.3 */
  --elara-shadow:      0 1px 2px rgba(14,10,43,.04), 0 8px 24px rgba(14,10,43,.06);
  --elara-shadow-hover: 0 2px 4px rgba(14,10,43,.05), 0 20px 48px rgba(75,0,255,.14);

  /* Spacing */
  --elara-radius:      16px;
  --elara-radius-img:  12px;
  --elara-radius-pill: 999px;
  --elara-container:   1240px;
  --elara-gap:         32px;

  /* Section padding */
  --elara-section-pad: 120px;

  /* Typography */
  --elara-font-heading: var(--e-global-typography-primary-font-family, 'Plus Jakarta Sans'), sans-serif;
  --elara-font-body:    var(--e-global-typography-text-font-family, 'Inter'), sans-serif;

  /* Easing */
  --elara-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset / Base ─────────────────────────────────────────── */

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

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--elara-font-body);
  font-size: 1.0625rem; /* 17px */
  font-weight: 400;
  line-height: 1.65;
  color: var(--elara-body);
  background-color: var(--elara-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* fallback */
  overflow-x: clip;   /* no scroll container, so sticky/fixed keep working */
}

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

a {
  color: var(--elara-blue);
  text-decoration: none;
  transition: color 0.2s var(--elara-ease);
}

a:hover {
  color: var(--elara-blue-hover);
}

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

/* ── Typography ───────────────────────────────────────────── */

h1, .el-h1 {
  font-family: var(--elara-font-heading);
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--elara-ink);
  text-wrap: balance;
}

h2, .el-h2 {
  font-family: var(--elara-font-heading);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--elara-ink);
  text-wrap: balance;
}

h3, .el-h3 {
  font-family: var(--elara-font-heading);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--elara-ink);
}

h4, .el-h4 {
  font-family: var(--elara-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--elara-ink);
}

.el-eyebrow:where(:not(.elementor-element)) {
  font-family: var(--elara-font-body);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--elara-blue);
  display: block;
  margin-bottom: 16px;
}

.el-intro {
  font-size: 1.1875rem;
  max-width: 680px;
  color: var(--elara-body);
}

.el-stat-number {
  font-family: var(--elara-font-heading);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--elara-blue);
  line-height: 1;
}

/* ── Layout ───────────────────────────────────────────────── */

.el-container {
  width: 100%;
  max-width: var(--elara-container);
  margin: 0 auto;
  padding: 0 24px;
}

.el-container-narrow {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.el-section:where(:not(.elementor-element)) {
  padding: var(--elara-section-pad) 0;
}

.el-section-header {
  margin-bottom: 64px;
}

.el-section-header-center {
  text-align: center;
}

.el-section-header-center .el-intro {
  margin: 16px auto 0;
}

.el-section-alt {
  background-color: var(--elara-blue-50);
}

.el-section-dark {
  background-color: var(--elara-ink);
  color: var(--elara-white);
}

.el-section-dark h2,
.el-section-dark h3,
.el-section-dark .el-h2,
.el-section-dark .el-h3 {
  color: var(--elara-white);
}

.el-section-dark .el-intro {
  color: rgba(255,255,255,0.7);
}

.el-section-dark .el-eyebrow {
  color: var(--elara-blue-soft);
}

/* ── Theme chrome vs. Elementor kit link color ──────────────
   Elementor prints the kit link color as `.elementor-kit-N a` (0,1,1).
   Header, menus, footer and theme buttons must keep their own colors. */

a.el-btn.el-btn-primary,
a.el-btn.el-btn-primary:hover,
a.el-btn.el-btn-primary:focus { color: var(--elara-white); }
a.el-btn.el-btn-secondary { color: var(--elara-blue); }
a.el-btn.el-btn-secondary:hover { color: var(--elara-white); }
a.el-btn.el-btn-white { color: var(--elara-blue); }
.el-nav .el-nav-link { color: var(--elara-ink); }
.el-nav .el-nav-link:hover,
.el-nav .el-nav-link:focus-visible,
.el-nav .el-nav-link[aria-expanded="true"] { color: var(--elara-blue); }
.el-mega-panel a.el-mega-col-title { color: var(--elara-ink); }
.el-mega-panel a.el-mega-col-title:hover { color: var(--elara-blue); }
.el-mobile-menu .el-mobile-nav-list a { color: var(--elara-ink); }
.el-mobile-menu a.el-mobile-group-title,
.el-mobile-menu a.el-mobile-overview { color: var(--elara-blue); }
.el-footer .el-footer-inner a,
.el-footer .el-footer-bottom a { color: rgba(255,255,255,0.7); }
.el-footer .el-footer-inner a:hover,
.el-footer .el-footer-bottom a:hover { color: var(--elara-white); }
.el-breadcrumbs a.el-breadcrumbs-link,
.el-breadcrumbs > a { color: var(--elara-body); }
.el-breadcrumbs > a:hover { color: var(--elara-blue); }

/* ── Skip Link ────────────────────────────────────────────── */

.el-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--elara-blue);
  color: var(--elara-white);
  border-radius: var(--elara-radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
}

.el-skip-link:focus {
  top: 16px;
}

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* ── Header ───────────────────────────────────────────────── */

.el-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 88px;
  background: transparent;
  transition: background 0.3s var(--elara-ease),
              height 0.3s var(--elara-ease),
              box-shadow 0.3s var(--elara-ease);
}

.el-header.is-scrolled {
  background: var(--elara-white);
  height: 72px;
  box-shadow: 0 1px 0 var(--elara-line), var(--elara-shadow);
}

.el-header-inner {
  max-width: var(--elara-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.el-logo {
  flex-shrink: 0;
}

.el-logo-img {
  height: 36px;
  width: auto;
  transition: height 0.3s var(--elara-ease);
}

.el-header.is-scrolled .el-logo-img {
  height: 32px;
}

/* ── Desktop Navigation ───────────────────────────────────── */

.el-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.el-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.el-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: var(--elara-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--elara-ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.el-nav-link:hover,
.el-nav-link:focus-visible {
  background: var(--elara-blue-50);
  color: var(--elara-blue);
}

.el-nav-link[aria-expanded="true"] {
  color: var(--elara-blue);
}

.current-menu-item > .el-nav-link::after,
.current-page-ancestor > .el-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--elara-blue);
  border-radius: 1px;
}

.el-nav-chevron {
  transition: transform 0.2s var(--elara-ease);
}

.el-nav-link[aria-expanded="true"] .el-nav-chevron {
  transform: rotate(180deg);
}

/* ── Mega Menu Panel ──────────────────────────────────────── */

.el-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--elara-white);
  border-top: 1px solid var(--elara-line);
  box-shadow: 0 20px 48px rgba(14,10,43,.1);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.15s var(--elara-ease),
              transform 0.15s var(--elara-ease),
              visibility 0.15s;
  pointer-events: none;
}

.el-has-mega:hover > .el-mega-panel,
.el-has-mega:focus-within > .el-mega-panel,
.el-mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.el-mega-inner {
  max-width: var(--elara-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.9fr 0.9fr;
  gap: 40px;
}

/* Column icons: 1.75px line icons in brand blue (DESIGN.md 6), set by the
   el-icon-* CSS class on the column's menu item. */
.el-mega-col-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--elara-blue);
  -webkit-mask: var(--el-icon) center / contain no-repeat;
          mask: var(--el-icon) center / contain no-repeat;
}

.el-icon-billing {
  --el-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M9 15l2 2 4-4'/%3E%3C/svg%3E");
}

.el-icon-marketing {
  --el-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 15l4-4 3 3 6-6'/%3E%3Cpath d='M16 8h4v4'/%3E%3C/svg%3E");
}

.el-icon-ai {
  --el-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='6' r='2.5'/%3E%3Ccircle cx='19' cy='6' r='2.5'/%3E%3Ccircle cx='12' cy='18' r='2.5'/%3E%3Cpath d='M7.5 6h9M6.3 8.2l4.4 7.6M17.7 8.2l-4.4 7.6'/%3E%3C/svg%3E");
}

.el-mega-promo {
  align-self: start;
  padding: 24px;
  border-radius: var(--elara-radius);
  background: var(--elara-blue-50);
}

.el-mega-promo-title {
  font-family: var(--elara-font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--elara-ink);
  margin-bottom: 8px;
}

.el-mega-promo-text {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.el-mega-promo .el-btn {
  padding: 12px 20px;
  font-size: 0.875rem;
}

.el-mega-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--elara-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--elara-ink);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--elara-blue);
  text-decoration: none;
}

.el-mega-col-title:hover {
  color: var(--elara-blue);
}

.el-mega-col-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.el-mega-col-items li {
  margin: 0;
}

.el-mega-link {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.el-mega-link:hover {
  background: var(--elara-blue-50);
}

.el-mega-link:hover .el-mega-link-name {
  color: var(--elara-blue);
}

.el-mega-link-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--elara-ink);
  transition: color 0.15s;
}

.el-mega-link-desc {
  font-size: 0.8125rem;
  color: var(--elara-body);
  margin-top: 2px;
}

/* ── Header CTA ───────────────────────────────────────────── */

.el-header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Mobile Toggle ────────────────────────────────────────── */

.el-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.el-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.el-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--elara-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--elara-ease), opacity 0.3s;
}

.el-mobile-toggle[aria-expanded="true"] .el-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.el-mobile-toggle[aria-expanded="true"] .el-hamburger span:nth-child(2) {
  opacity: 0;
}

.el-mobile-toggle[aria-expanded="true"] .el-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Panel ────────────────────────────────────── */

.el-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--elara-white);
  transform: translateX(100%);
  transition: transform 0.35s var(--elara-ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.el-mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.el-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.el-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--elara-line);
}

.el-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--elara-ink);
}

.el-mobile-nav {
  flex: 1;
  padding: 24px 0;
}

.el-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.el-mobile-nav-list > li > a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--elara-ink);
  border-bottom: 1px solid var(--elara-line);
  text-decoration: none;
}

.el-mobile-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--elara-ink);
  background: none;
  border: none;
  border-bottom: 1px solid var(--elara-line);
  cursor: pointer;
  text-align: left;
}

.el-accordion-icon {
  transition: transform 0.3s var(--elara-ease);
}

.el-mobile-accordion-trigger[aria-expanded="true"] .el-accordion-icon {
  transform: rotate(45deg);
}

.el-mobile-accordion-panel {
  padding: 8px 0 16px;
}

.el-mobile-accordion-panel[hidden] {
  display: none;
}

.el-mobile-service-group {
  padding: 12px 0;
}

.el-mobile-overview {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-weight: 600;
  color: var(--elara-blue);
}

.el-mobile-group-title {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--elara-blue);
  padding: 8px 0;
  text-decoration: none;
}

.el-mobile-service-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.el-mobile-service-group ul li a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--elara-ink);
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.el-mobile-service-group ul li a:hover {
  background: var(--elara-blue-50);
  color: var(--elara-blue);
}

.el-mobile-menu-footer {
  padding-top: 16px;
  border-top: 1px solid var(--elara-line);
  margin-top: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */

.el-btn:where(:not(.elementor-element)) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--elara-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--elara-radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--elara-ease);
  white-space: nowrap;
}

.el-btn-primary:where(:not(.elementor-element)) {
  background: var(--elara-blue);
  color: var(--elara-white);
  border-color: var(--elara-blue);
}

.el-btn-primary:where(:not(.elementor-element)):hover {
  background: var(--elara-blue-hover);
  border-color: var(--elara-blue-hover);
  color: var(--elara-white);
  transform: translateY(-2px);
  box-shadow: var(--elara-shadow-hover);
}

.el-btn-primary:where(:not(.elementor-element)):focus-visible {
  outline: 3px solid var(--elara-blue-soft);
  outline-offset: 2px;
}

.el-btn-secondary:where(:not(.elementor-element)) {
  background: transparent;
  color: var(--elara-blue);
  border-color: var(--elara-blue);
}

.el-btn-secondary:where(:not(.elementor-element)):hover {
  background: var(--elara-blue);
  color: var(--elara-white);
  transform: translateY(-2px);
  box-shadow: var(--elara-shadow-hover);
}

.el-btn-white:where(:not(.elementor-element)) {
  background: var(--elara-white);
  color: var(--elara-blue);
  border-color: var(--elara-white);
}

.el-btn-white:where(:not(.elementor-element)):hover {
  background: var(--elara-blue-50);
  color: var(--elara-blue-hover);
  transform: translateY(-2px);
}

.el-btn-full:where(:not(.elementor-element)) {
  width: 100%;
  justify-content: center;
}

.el-btn-arrow {
  transition: transform 0.25s var(--elara-ease);
}

.el-btn:where(:not(.elementor-element)):hover .el-btn-arrow {
  transform: translateX(4px);
}

/* Text Link CTA */
.el-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--elara-blue);
  position: relative;
  text-decoration: none;
}

.el-text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--elara-blue);
  transition: width 0.3s var(--elara-ease);
}

.el-text-link:hover::after {
  width: 100%;
}

.el-text-link:hover svg {
  transform: translateX(4px);
}

.el-text-link svg {
  transition: transform 0.25s var(--elara-ease);
}

/* ── Cards ────────────────────────────────────────────────── */

.el-card:where(:not(.elementor-element)) {
  background: var(--elara-white);
  border: 1px solid var(--elara-line);
  border-radius: var(--elara-radius);
  padding: 32px;
  transition: transform 0.3s var(--elara-ease),
              box-shadow 0.3s var(--elara-ease),
              border-color 0.3s var(--elara-ease);
}

.el-card:where(:not(.elementor-element)):hover {
  transform: translateY(-6px);
  box-shadow: var(--elara-shadow-hover);
  border-color: var(--elara-blue);
}

.el-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--elara-blue-100);
  border-radius: 12px;
  color: var(--elara-blue);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.el-card:where(:not(.elementor-element)):hover .el-card-icon {
  background: var(--elara-blue);
  color: var(--elara-white);
}

/* ── Blog Cards ───────────────────────────────────────────── */

.el-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--elara-gap);
}

.el-blog-card {
  background: var(--elara-white);
  border: 1px solid var(--elara-line);
  border-radius: var(--elara-radius);
  overflow: hidden;
  transition: transform 0.3s var(--elara-ease),
              box-shadow 0.3s var(--elara-ease);
}

.el-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elara-shadow-hover);
}

.el-blog-card-img-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.el-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s var(--elara-ease);
}

.el-blog-card:hover .el-blog-card-img {
  transform: scale(1.04);
}

.el-blog-card-placeholder {
  background: var(--elara-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.el-placeholder-icon {
  color: var(--elara-blue-soft);
}

.el-blog-card-body {
  padding: 24px;
}

.el-cat-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--elara-blue-100);
  color: var(--elara-blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--elara-radius-pill);
  text-decoration: none;
  margin-bottom: 12px;
}

.el-cat-badge:hover {
  background: var(--elara-blue);
  color: var(--elara-white);
}

.el-blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.el-blog-card-title a {
  color: var(--elara-ink);
  text-decoration: none;
}

.el-blog-card-title a:hover {
  color: var(--elara-blue);
}

.el-blog-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--elara-body);
  margin-bottom: 12px;
}

.el-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--elara-body);
}

.el-dot {
  opacity: 0.5;
}

/* ── Featured Post ────────────────────────────────────────── */

.el-featured-post-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.el-featured-img-wrap {
  display: block;
  border-radius: var(--elara-radius-img);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.el-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.el-featured-body {
  padding: 8px 0;
}

.el-featured-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.el-featured-title a {
  color: var(--elara-ink);
  text-decoration: none;
}

.el-featured-title a:hover {
  color: var(--elara-blue);
}

.el-featured-excerpt {
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

/* ── Blog Filter Pills ────────────────────────────────────── */

.el-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.el-filter-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--elara-line);
  border-radius: var(--elara-radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--elara-body);
  text-decoration: none;
  transition: all 0.2s;
}

.el-filter-pill:hover,
.el-filter-pill.el-filter-active {
  background: var(--elara-blue);
  border-color: var(--elara-blue);
  color: var(--elara-white);
}

/* ── Single Post ──────────────────────────────────────────── */

.el-single-post {
  padding-bottom: 48px;
}

.el-single-header {
  text-align: center;
  padding: 120px 24px 40px;
}

.el-single-title {
  margin-top: 16px;
  margin-bottom: 24px;
}

.el-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--elara-body);
}

.el-single-featured {
  margin-bottom: 48px;
}

.el-single-featured-img {
  border-radius: var(--elara-radius-img);
  width: 100%;
}

.el-single-content {
  padding-bottom: 48px;
}

.el-entry-content h2 {
  margin: 48px 0 16px;
}

.el-entry-content h3 {
  margin: 32px 0 12px;
}

.el-entry-content p {
  margin-bottom: 20px;
}

.el-entry-content ul,
.el-entry-content ol {
  margin: 0 0 20px 24px;
}

.el-entry-content li {
  margin-bottom: 8px;
}

.el-entry-content blockquote {
  border-left: 4px solid var(--elara-blue);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--elara-blue-50);
  border-radius: 0 var(--elara-radius-img) var(--elara-radius-img) 0;
  font-style: italic;
}

.el-entry-content img {
  border-radius: var(--elara-radius-img);
  margin: 24px 0;
}

/* Author Box */
.el-single-author {
  padding-top: 32px;
  border-top: 1px solid var(--elara-line);
}

.el-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.el-author-avatar {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.el-author-name {
  font-weight: 600;
  color: var(--elara-ink);
  margin-bottom: 4px;
  font-size: 1rem;
}

.el-author-bio {
  font-size: 0.875rem;
  color: var(--elara-body);
}

/* ── Breadcrumbs ──────────────────────────────────────────── */

.el-breadcrumbs-wrap {
  padding-top: 104px;
}

.el-breadcrumbs {
  font-size: 0.8125rem;
  color: var(--elara-body);
  padding: 16px 0;
}

.el-breadcrumbs a {
  color: var(--elara-body);
  text-decoration: none;
}

.el-breadcrumbs a:hover {
  color: var(--elara-blue);
}

.el-breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.4;
}

/* ── Pagination ───────────────────────────────────────────── */

.el-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.el-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--elara-line);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--elara-body);
  text-decoration: none;
  transition: all 0.2s;
}

.el-pagination .page-numbers.current,
.el-pagination .page-numbers:hover {
  background: var(--elara-blue);
  border-color: var(--elara-blue);
  color: var(--elara-white);
}

/* ── CTA Band ─────────────────────────────────────────────── */

.el-cta-band:where(:not(.elementor-element)) {
  background: var(--elara-gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.el-cta-band:where(:not(.elementor-element))::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  right: -100px;
  animation: el-float 8s ease-in-out infinite;
}

.el-cta-band:where(:not(.elementor-element))::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -150px;
  left: -50px;
  animation: el-float 10s ease-in-out infinite reverse;
}

.el-cta-band-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.el-cta-band:where(:not(.elementor-element)) h2 {
  color: var(--elara-white);
  margin-bottom: 16px;
}

.el-cta-band:where(:not(.elementor-element)) p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

/* ── FAQ Accordion ────────────────────────────────────────── */

.el-faq-item {
  border-bottom: 1px solid var(--elara-line);
}

.el-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--elara-font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--elara-ink);
  text-align: left;
  gap: 16px;
}

.el-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.el-faq-icon::before,
.el-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--elara-ink);
  border-radius: 1px;
  transition: transform 0.3s var(--elara-ease);
}

.el-faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.el-faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.el-faq-question[aria-expanded="true"] .el-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.el-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--elara-ease);
}

.el-faq-answer-inner {
  padding: 0 0 24px;
  color: var(--elara-body);
}

.el-faq-answer.is-open {
  max-height: 500px;
}

/* ── Footer ───────────────────────────────────────────────── */

.el-footer {
  background: var(--elara-ink);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.el-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.el-footer a:hover {
  color: var(--elara-white);
}

.el-footer-inner {
  max-width: var(--elara-container);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 48px;
}

.el-footer-logo img {
  opacity: 1;
}

.el-footer-tagline {
  margin: 20px 0 24px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.el-footer-contact p {
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.el-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.el-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.el-social-link:hover {
  background: var(--elara-blue);
  color: var(--elara-white);
}

.el-footer-heading {
  font-family: var(--elara-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--elara-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.el-footer-heading-mt {
  margin-top: 32px;
}

.el-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.el-footer-links li {
  margin-bottom: 10px;
}

.el-footer-links a {
  font-size: 0.9375rem;
}

/* Newsletter */
.el-footer-newsletter-text {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.el-footer-newsletter {
  display: flex;
  gap: 8px;
}

.el-footer-newsletter input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--elara-radius-pill);
  color: var(--elara-white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.el-footer-newsletter input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.el-footer-newsletter input[type="email"]:focus {
  border-color: var(--elara-blue-soft);
}

.el-footer-newsletter .el-btn {
  padding: 12px 20px;
  font-size: 0.8125rem;
}

/* Footer Bottom */
.el-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.el-footer-bottom-inner {
  max-width: var(--elara-container);
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8125rem;
}

/* ── Back to Top ──────────────────────────────────────────── */

.el-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--elara-blue);
  color: var(--elara-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--elara-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.el-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.el-back-to-top:hover {
  background: var(--elara-blue-hover);
  transform: translateY(-2px);
}

/* ── 404 ──────────────────────────────────────────────────── */

.el-404-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.el-404-content {
  text-align: center;
  padding-top: 88px;
}

.el-404-number {
  font-family: var(--elara-font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--elara-blue-100);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
}

.el-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── Elementor-Specific el- Utility Classes ───────────────── */

/* Service card with icon circle */
.el-service-card .elementor-icon {
  width: 56px;
  height: 56px;
  background: var(--elara-blue-100);
  border-radius: 12px;
  transition: background 0.3s, color 0.3s;
}

.el-service-card:hover .elementor-icon {
  background: var(--elara-blue);
  color: var(--elara-white);
}

/* Card hover lift */
.el-card-hover {
  transition: transform 0.3s var(--elara-ease), box-shadow 0.3s var(--elara-ease);
}

.el-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--elara-shadow-hover);
}

/* Marquee (DESIGN.md 3.7) — two identical tracks; the second is aria-hidden.
   Pauses on hover; static and wrapped when reduced motion is requested. */
.el-marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.el-marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  margin: 0;
  list-style: none;
}

.el-marquee-item {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 20px;
  border: 1px solid var(--elara-line);
  border-radius: var(--elara-radius-pill);
  background: var(--elara-white);
  color: var(--elara-body);
  font-size: 0.875rem;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s, border-color 0.3s;
}

.el-marquee-item:hover {
  filter: none;
  opacity: 1;
  border-color: var(--elara-blue-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .el-marquee-track {
    animation: el-marquee 40s linear infinite;
  }
  .el-marquee:hover .el-marquee-track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .el-marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .el-marquee-track {
    flex-wrap: wrap;
    flex-shrink: 1;
    justify-content: center;
    row-gap: 12px;
  }
  .el-marquee-track[aria-hidden="true"] {
    display: none;
  }
  .el-marquee-item {
    white-space: normal;
    text-align: center;
  }
}

/* Process line */
.el-process-line {
  position: relative;
}

.el-process-line::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--elara-blue-100);
  z-index: 0;
}

.el-process-line::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--elara-blue);
  z-index: 1;
  transition: width 1.5s var(--elara-ease);
}

.el-process-line.is-visible::after {
  width: 100%;
}

/* Step number */
.el-step-num {
  font-family: var(--elara-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--elara-blue-100);
  line-height: 1;
}

/* Hero stat card float */
.el-hero-stat {
  background: var(--elara-white);
  border-radius: var(--elara-radius);
  padding: 16px 20px;
  box-shadow: var(--elara-shadow);
  position: absolute;
}

/* Count-up target */
.el-count-up {
  font-variant-numeric: tabular-nums;
}

/* Form styling for CF7 */
.el-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 16px;
}

.el-form-wrap input[type="text"],
.el-form-wrap input[type="email"],
.el-form-wrap input[type="tel"],
.el-form-wrap input[type="url"],
.el-form-wrap select,
.el-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  height: 52px;
  border: 1px solid var(--elara-line);
  border-radius: 12px;
  font-family: var(--elara-font-body);
  font-size: 1rem;
  color: var(--elara-ink);
  background: var(--elara-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.el-form-wrap textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.el-form-wrap select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235B5875' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.el-form-wrap input:focus,
.el-form-wrap select:focus,
.el-form-wrap textarea:focus {
  border-color: var(--elara-blue);
  box-shadow: 0 0 0 3px rgba(75, 0, 255, 0.12);
}

.el-form-wrap .wpcf7-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--elara-blue);
  color: var(--elara-white);
  border: none;
  border-radius: var(--elara-radius-pill);
  font-family: var(--elara-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.el-form-wrap .wpcf7-submit:hover {
  background: var(--elara-blue-hover);
}

.el-form-wrap label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--elara-ink);
  margin-bottom: 6px;
}

.el-form-notice {
  font-size: 0.8125rem;
  color: var(--elara-body);
  margin-top: 12px;
}

/* ── Animations ───────────────────────────────────────────── */

@keyframes el-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes el-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Entrance animations come from Elementor (Motion Effects → Entrance Animation);
   easing, distance and reduced-motion handling live in elementor-overrides.css. */

/* Reduced motion: everything visible immediately */
@media (prefers-reduced-motion: reduce) {
  .el-cta-band::before,
  .el-cta-band:where(:not(.elementor-element))::after {
    animation: none !important;
  }
}

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet: up to 1024px */
@media (max-width: 1024px) {
  :root {
    --elara-section-pad: 88px;
    --elara-gap: 24px;
  }

  .el-nav,
  .el-header-cta {
    display: none;
  }

  .el-mobile-toggle {
    display: flex;
  }

  .el-mega-inner {
    grid-template-columns: 1fr;
  }

  .el-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .el-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .el-featured-post-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  :root {
    --elara-section-pad: 64px;
    --elara-gap: 16px;
  }

  body {
    font-size: 1rem; /* 16px minimum */
  }

  .el-header {
    height: 72px;
  }

  .el-header.is-scrolled {
    height: 64px;
  }

  .el-blog-grid {
    grid-template-columns: 1fr;
  }

  .el-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .el-footer-newsletter {
    flex-direction: column;
  }

  .el-404-actions {
    flex-direction: column;
    align-items: center;
  }

  .el-single-header {
    padding: 88px 16px 32px;
  }

  .el-breadcrumbs-wrap {
    padding-top: 80px;
  }

  .el-btn {
    padding: 14px 24px;
    font-size: 0.875rem;
  }

  .el-section-header {
    margin-bottom: 40px;
  }
}

/* Very small screens */
@media (max-width: 374px) {
  .el-container,
  .el-container-narrow {
    padding: 0 16px;
  }
}

/* Default page styling */
.el-page-default {
  padding-top: 120px;
  padding-bottom: 80px;
}

.el-page-title {
  margin-bottom: 32px;
}

/* Body scroll lock when mobile menu is open */
body.el-mobile-menu-open {
  overflow: hidden;
}

/* Elementor full-width page — remove theme containers */
.elementor-page .el-site-content {
  max-width: none;
  padding: 0;
}

/* Elementor content area — ensure no extra margins */
.elementor .elementor-element {
  /* Theme does not add extra specificity here */
}

/* Page template spacing for Elementor pages */
.page-template-elementor_header_footer .el-main {
  padding-top: 0;
}

/* ==========================================================================
   TASK 2: CENTER BUTTONS IN CENTERED SECTIONS (All Pages)
   ========================================================================== */

.el-btn-row--center,
.el-cta-band .el-btn-row,
.el-cta-section .el-btn-row,
.el-section-heading--center ~ .el-btn-row,
.el-included .el-btn-row,
.el-process-section .el-btn-row,
.el-ai-workflows .el-btn-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.el-btn-row--center > .elementor-widget-button,
.el-cta-band .el-btn-row > .elementor-widget-button,
.el-cta-section .el-btn-row > .elementor-widget-button,
.el-section-heading--center ~ .el-btn-row > .elementor-widget-button,
.el-included .el-btn-row > .elementor-widget-button,
.el-process-section .el-btn-row > .elementor-widget-button,
.el-ai-workflows .el-btn-row > .elementor-widget-button {
  display: inline-flex !important;
  justify-content: center !important;
  text-align: center !important;
  flex: 0 0 auto !important;
}

.el-btn-row--center .elementor-button-wrapper,
.el-cta-band .el-btn-row .elementor-button-wrapper,
.el-cta-section .el-btn-row .elementor-button-wrapper,
.el-section-heading--center ~ .el-btn-row .elementor-button-wrapper,
.el-included .el-btn-row .elementor-button-wrapper,
.el-process-section .el-btn-row .elementor-button-wrapper,
.el-ai-workflows .el-btn-row .elementor-button-wrapper {
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .el-btn-row--center,
  .el-cta-band .el-btn-row,
  .el-cta-section .el-btn-row,
  .el-section-heading--center ~ .el-btn-row,
  .el-included .el-btn-row,
  .el-process-section .el-btn-row,
  .el-ai-workflows .el-btn-row {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
  }
  .el-btn-row--center > .elementor-widget-button,
  .el-cta-band .el-btn-row > .elementor-widget-button,
  .el-cta-section .el-btn-row > .elementor-widget-button,
  .el-section-heading--center ~ .el-btn-row > .elementor-widget-button,
  .el-included .el-btn-row > .elementor-widget-button,
  .el-process-section .el-btn-row > .elementor-widget-button,
  .el-ai-workflows .el-btn-row > .elementor-widget-button {
    width: 100% !important;
  }
}

/* ==========================================================================
   TASK 1: HOME PAGE HERO
   ========================================================================== */
.el-hero--home {
  padding-top: calc(88px + 56px) !important;
  padding-bottom: 72px !important;
}
@media (max-width: 1024px) {
  .el-hero--home {
    padding-top: calc(88px + 40px) !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .el-hero--home {
    padding-top: calc(72px + 32px) !important;
    padding-bottom: 48px !important;
  }
}

