/*
Theme Name:        Diviora
Theme URI:         https://quiknexa.com
Author:            QuikNexa
Author URI:        https://quiknexa.com
Description:       
Version:           1.0.0
Requires at least: 6.2
Requires PHP:      7.4
Tested up to:      6.9
Template:          Divi
License:           GPL-2.0-or-later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       diviora
Tags:              divi, child-theme, demo-content

Generated by:      QuikNexa Divi Packager on 2026-08-07T00:40:56+00:00
*/

/* ===== Custom CSS (from Design step) ===== */


/* ==========================================================================
   MOMENTUM — Custom CSS (Divi 5)
   Goes in: Divi → Theme Options → General → Custom CSS
   --------------------------------------------------------------------------
   Divi globals used:
     --gcid-primary-color    #0d6f6c
     --gcid-secondary-color  #04211f
     --gcid-heading-color    #1a2126
     --gcid-body-color

   Every other colour derives from --gcid-primary-color, so changing that one
   global in Divi rebrands the whole palette. No raw hex or rgba() values live
   outside the token block — section 1 is the only place colour is authored.

   SECTION CLASSES (Advanced → CSS → CSS Class)
     Background   mmt-bg + one of:
                    mmt-hero        grid + wash, hero proportions
                    mmt-bg-light    grid + wash, centred
                    mmt-bg-dark     dark surface, grid + wash
                    mmt-bg-footer   grid rising from the base + gradient
     Rings        mmt-rings-on      rings, spinning
                  mmt-rings-static  rings, held still
     Motion       mmt-reveal        wipes in on scroll
                  mmt-swipe         image swipes on hover
                  mmt-blog          both, applied per post
     Components   mmt-trusted-lebel eyebrow label with flanking rules
                  mmt-marquee       looping logo strip
                  mmt-ser-card      service card icon tile
                  mmt-steps         watermark numerals wrapper (+ mmt-step)
                  mmt-steps-dark    same numerals on a dark surface
                  mmt-legal-nav     current-page card highlight
                  mmt-review        carousel dot styling
                  mmt-hl            inline underlined highlight
                  mmt-pri-header    primary header (dropdown + mobile menu)
   --------------------------------------------------------------------------
    1. Tokens                9. Logo marquee
    2. Header — dropdown     10. Service cards
    3. Header — mobile menu  11. FAQ toggle
    4. Background engine     12. Legal nav
    5. Background variants   13. Step numerals
    6. Rings                 14. Inline highlight
    7. Motion                15. Misc overrides
    8. Trusted label
   ========================================================================== */


/* ==========================================================================
   1. TOKENS — all derived from --gcid-primary-color
   ========================================================================== */

:root {
  /* Teal ramp — primary hue, different lightness/chroma */
  --mmt-teal-50:   oklch(from var(--gcid-primary-color) 0.972 0.028 h);
  --mmt-teal-400:  oklch(from var(--gcid-primary-color) 0.752 0.122 h);
  --mmt-teal-500:  oklch(from var(--gcid-primary-color) 0.656 0.110 h);

  /* Neutrals — primary hue at very low chroma */
  --mmt-slate-50:  oklch(from var(--gcid-primary-color) 0.981 0.004 h);
  --mmt-slate-200: oklch(from var(--gcid-primary-color) 0.902 0.008 h);
  --mmt-ink-muted: oklch(from var(--gcid-primary-color) 0.487 0.024 h);
  --mmt-dark:      oklch(from var(--gcid-primary-color) 0.175 0.010 h);

  --mmt-white: #ffffff;

  /* Warm counterpoint — the one hue that is not the primary. Held at a fixed
     offset from it, so a rebrand carries the pairing along instead of
     stranding an orange next to a new hue. */
  --mmt-accent-warm: oklch(from var(--gcid-primary-color) 0.780 0.140 calc(h - 139));

  /* Hairlines */
  --mmt-line-light: rgb(from var(--gcid-primary-color) r g b / 0.10);
  --mmt-line-dark:  rgb(from var(--mmt-teal-400) r g b / 0.055);
  --mmt-ring-line:  rgb(from var(--gcid-primary-color) r g b / 0.18);
  --mmt-ring-faint: rgb(from var(--gcid-primary-color) r g b / 0.12);
  --mmt-rule-line:  oklch(from var(--gcid-primary-color) 0.72 0.012 h / 0.45);

  /* Elevation */
  --mmt-shadow-sm: 0 10px 30px rgb(from var(--mmt-dark) r g b / 0.10);
  --mmt-shadow-md: 0 18px 40px rgb(from var(--mmt-dark) r g b / 0.12);

  /* Ring geometry.

     All rings share ONE centre, `center` in from the corner on both axes, so
     they are truly concentric. Each ring then sits at centre − its own
     radius, which cancels the size term out of the centre entirely.

     At center 0 the shared centre sits exactly on the corner, so every ring
     is offset by half its own size on both axes. Raise it to pull the whole
     set inward; the rings stay concentric either way.

     `base` is the largest ring; the others are fractions of it, so the whole
     family keeps its proportions at any viewport width. */
  --mmt-ring-base: max(300px, 48vw);
  --mmt-ring-center: 0px;

  /* Washes */
  --mmt-wash-light: radial-gradient(
    46% 46% at 50% 50%,
    rgb(from var(--mmt-teal-400) r g b / 0.30) 0%,
    rgb(from var(--mmt-teal-400) r g b / 0.18) 38%,
    transparent 70%
  );
  --mmt-wash-dark: radial-gradient(
    50% 50% at 50% 50%,
    rgb(from var(--mmt-teal-400) r g b / 0.16),
    transparent
  );
  --mmt-wash-footer: linear-gradient(
    180deg,
    transparent 0%,
    rgb(from var(--mmt-teal-400) r g b / 0.07) 55%,
    rgb(from var(--mmt-teal-400) r g b / 0.14) 100%
  );
}


/* ==========================================================================
   2. HEADER — DESKTOP DROPDOWN
   Scope: .mmt-pri-header
   ========================================================================== */

@media (min-width: 981px) {

  /* ---- panel: all levels ---- */
  .mmt-pri-header .nav li ul {
    width: 270px;
    padding: 20px 0;
    border-top: 0;                       /* kills Divi's 3px blue bar */
    border-radius: 5px;
    box-shadow: var(--mmt-shadow-sm);
    margin-top: 30px;                    /* animates to 0 on hover */
    transition: opacity .25s linear, margin-top .25s linear, margin-left .25s linear;
  }

  .mmt-pri-header .nav li:hover > ul,
  .mmt-pri-header .nav li.et-hover > ul {
    margin-top: 0;
  }

  /* ---- row: drop Divi's inset so items run edge to edge ---- */
  .mmt-pri-header .nav li li {
    padding: 0;
  }

  /* ---- links ---- */
  .mmt-pri-header .et-menu li li a {
    display: flex;
    align-items: center;
    width: 100%;                         /* Divi hard-sets 200px */
    padding: 10px 30px;
  }

  .mmt-pri-header .et-menu li li a:hover {
    background-color: transparent;       /* Divi tints the row grey */
    opacity: 1;
    color: var(--gcid-primary-color);
  }

  /* ---- dash that slides in on hover / current ---- */
  .mmt-pri-header .et-menu li li a:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width .3s linear, margin .3s linear;
  }

  .mmt-pri-header .et-menu li li:hover > a:before,
  .mmt-pri-header .et-menu li li.current-menu-item > a:before,
  .mmt-pri-header .et-menu li li.current-menu-ancestor > a:before {
    width: 20px;
    margin-right: 5px;
  }

  /* ---- level 2+ : flyout to the right ---- */
  .mmt-pri-header .nav li li ul {
    top: -20px;                          /* aligns with parent's 20px padding */
    left: 270px;
    margin-top: 0;
    margin-left: 30px;                   /* animates to 0 */
  }

  .mmt-pri-header .nav li li:hover > ul {
    margin-left: 0;
  }

  /* flip when Divi flags an edge collision */
  .mmt-pri-header .nav li.et-reverse-direction-nav li ul {
    left: auto;
    right: 270px;
    margin-left: 0;
    margin-right: 30px;
  }

  .mmt-pri-header .nav li.et-reverse-direction-nav li:hover > ul {
    margin-right: 0;
  }

  /* ---- caret on parent items inside the dropdown ---- */
  .mmt-pri-header .et-menu li li.menu-item-has-children > a:first-child:after {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}


/* ==========================================================================
   3. HEADER — MOBILE MENU
   ========================================================================== */

@media (max-width: 980px) {

  .mmt-pri-header .et_pb_menu_inner_container.et_flex_module {
    padding: 20px 0;
  }

  /* ---- hamburger → close ----
     Divi swaps .closed for .opened on the toggle wrapper when the panel is
     out, so the glyph can follow it with no JS. ETmodules: \61 = bars,
     \4d = times. */
  .mmt-pri-header .mobile_nav.opened .mobile_menu_bar::before,
  .mmt-pri-header .et_mobile_nav_menu.opened .mobile_menu_bar::before {
    content: "\4d";
  }

  /* ---- panel ---- */
  .mmt-pri-header .et_pb_menu .et_mobile_menu {
    top: 100%;
    padding:  0;                      /* was 5% */
    border-top: 0;                       /* kills Divi's blue bar */
    border-radius: 0 0 14px 14px;
    box-shadow: var(--mmt-shadow-md);
    overflow: hidden;
  }

  .mmt-pri-header .et_mobile_menu li {
    position: relative;
    padding: 0;                          /* was 5% on nested li */
  }

  /* ---- rows ---- */
  .mmt-pri-header .et_mobile_menu li a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--mmt-line-light);
    color: var(--gcid-body-color);
    font-weight: 500;
    transition: background-color .2s linear, color .2s linear;
  }

  .mmt-pri-header .et_mobile_menu > li:last-child > a {
    border-bottom: 0;
  }

  .mmt-pri-header .et_mobile_menu li a:hover,
  .mmt-pri-header .et_mobile_menu li.current-menu-item > a {
    background-color: var(--mmt-teal-50);
    color: var(--gcid-primary-color);
    opacity: 1;
  }

  .mmt-pri-header .et_mobile_menu li.menu-item-has-children > a {
    padding-right: 56px;
    background-color: transparent;       /* Divi tints parent rows grey */
  }

  /* ---- submenu ---- */
  .mmt-pri-header .et_mobile_menu li .sub-menu {
    display: none !important;            /* beat Divi's forced expand */
    padding-left: 0 !important;
    background-color: var(--mmt-slate-50);
    box-shadow: inset 2px 0 0 var(--mmt-ring-line);
  }

  .mmt-pri-header .et_mobile_menu li.mmt-open > .sub-menu {
    display: block !important;
  }

  .mmt-pri-header .et_mobile_menu li.mmt-open > a {
    color: var(--gcid-primary-color);
  }

  /* nested rows: indent + step down in weight */
  .mmt-pri-header .et_mobile_menu li li > a {
    padding-left: 40px;
    font-weight: 400;
  }

  .mmt-pri-header .et_mobile_menu li li li > a {
    padding-left: 56px;
  }

  .mmt-pri-header .et_mobile_menu li li:last-child > a {
    border-bottom: 0;
  }

  /* ---- toggle ---- */
  .mmt-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 49px;
    display: grid;
    place-items: center;
    color: var(--gcid-primary-color);
    cursor: pointer;
    z-index: 2;
  }

  .mmt-menu-toggle:before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .25s linear;
  }

  .mmt-pri-header .et_mobile_menu li.mmt-open > .mmt-menu-toggle:before {
    transform: translateY(1px) rotate(-135deg);
  }
}


/* ==========================================================================
   4. BACKGROUND ENGINE — one set of rules, shared by every variant
   Layers: grid 0 · wash 0 · rings 1 · content 2
   ========================================================================== */

.mmt-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.mmt-bg > .et_pb_row,
.mmt-bg > .et_pb_row > .et_pb_column {
  position: relative;
  z-index: 2;
}

/* grid */
.mmt-bg::before {
  content: "";
  position: absolute;
  inset: var(--mmt-grid-inset, 0 0 auto 0);
  z-index: 0;
  height: var(--mmt-grid-h, 900px);
  background-image:
    linear-gradient(90deg, var(--mmt-line, var(--mmt-line-light)) 1px, transparent 1px),
    linear-gradient(180deg, var(--mmt-line, var(--mmt-line-light)) 1px, transparent 1px);
  background-size: var(--mmt-grid-size, 88px) var(--mmt-grid-size, 88px);
  background-position: center var(--mmt-grid-anchor, top);
  mask-image: var(--mmt-grid-mask, none);
  pointer-events: none;
}

/* wash */
.mmt-bg::after {
  content: "";
  position: absolute;
  top: var(--mmt-wash-top, -420px);
  left: 50%;
  z-index: 0;
  width: var(--mmt-wash-w, 1500px);
  height: var(--mmt-wash-h, 1000px);
  transform: translate(-50%, var(--mmt-wash-shift, 0));
  background-image: var(--mmt-wash, none);
  pointer-events: none;
}


/* ==========================================================================
   5. BACKGROUND VARIANTS — variables only, no new rules
   ========================================================================== */

.mmt-hero {
  --mmt-grid-mask: radial-gradient(62% 58% at 50% 26%, #000 38%, rgb(0 0 0 / .35) 68%, transparent 88%);
  --mmt-wash: var(--mmt-wash-light);
}

.mmt-bg-light {
  --mmt-grid-h: 100%;
  --mmt-grid-inset: 0;
  --mmt-grid-mask: radial-gradient(70% 70% at 50% 50%, #000 40%, transparent 92%);
  --mmt-wash: var(--mmt-wash-light);
  --mmt-wash-top: 50%;
  --mmt-wash-shift: -50%;
  --mmt-wash-w: 1200px;
  --mmt-wash-h: 900px;
}

.mmt-bg-dark {
  --mmt-line: var(--mmt-line-dark);
  --mmt-grid-h: 100%;
  --mmt-grid-inset: 0;
  --mmt-grid-size: 64px;
  --mmt-wash: var(--mmt-wash-dark);
  --mmt-wash-top: -260px;
  --mmt-wash-w: 1200px;
  --mmt-wash-h: 700px;
  background: var(--mmt-dark);
}

/* footer — grid rises from the base, gradient covers the whole band */
.mmt-bg-footer {
  --mmt-grid-h: 460px;
  --mmt-grid-inset: auto 0 0 0;
  --mmt-grid-anchor: bottom;
  --mmt-grid-mask: linear-gradient(0deg, #000 10%, rgb(0 0 0 / .45) 55%, transparent 100%);
  --mmt-wash: var(--mmt-wash-footer);
  --mmt-wash-top: 0;
  --mmt-wash-w: 100%;
  --mmt-wash-h: 100%;
}

@media (max-width: 980px) {
  .mmt-bg   { --mmt-grid-size: 64px; }
  .mmt-hero { --mmt-grid-h: 620px; }
}

@media (max-width: 767px) {
  .mmt-hero {
    --mmt-wash-top: -280px;
    --mmt-wash-w: 900px;
    --mmt-wash-h: 640px;
  }
  .mmt-bg-footer { --mmt-grid-h: 300px; }
}


/* ==========================================================================
   6. RINGS
   All geometry lives here — the markup carries classes only.
   Every ring is placed at the same shared centre minus its own radius, so
   the whole set is genuinely concentric at any size.
   ========================================================================== */

.mmt-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mmt-ring {
  --offset: calc(var(--mmt-ring-center) - var(--size) / 2);
  position: absolute;
  top: var(--offset);
  width: var(--size);
  height: var(--size);
  border: 1px solid var(--mmt-ring-line);
  border-radius: 999px;
}

/* one size + duration + dot rotation per ring, all scaled off the base */
.mmt-ring--l1 { --size: var(--mmt-ring-base);              --turn:  0deg; animation-duration: 72s; }
.mmt-ring--l2 { --size: calc(var(--mmt-ring-base) * 0.80); --turn: 15deg; animation-duration: 96s; }
.mmt-ring--l3 { --size: calc(var(--mmt-ring-base) * 0.58); --turn: 30deg; animation-duration: 58s; }
.mmt-ring--r1 { --size: var(--mmt-ring-base);              --turn:  8deg; animation-duration: 84s; }
.mmt-ring--r2 { --size: calc(var(--mmt-ring-base) * 0.74); --turn: 22deg; animation-duration: 110s; }

.mmt-ring--l1,
.mmt-ring--l2,
.mmt-ring--l3 { left: var(--offset); }

.mmt-ring--r1,
.mmt-ring--r2 { right: var(--offset); }

.mmt-ring--faint {
  border-color: var(--mmt-ring-faint);
  border-style: dashed;
}

/* the only difference between the two ring variants */
.mmt-rings-on .mmt-ring {
  animation-name: mmt-spin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.mmt-rings-on .mmt-ring--rev {
  animation-name: mmt-spin-rev;
}

/* dots ride the circumference — six per ring, evenly around the full 360° */
.mmt-ring__dot {
  --a: calc(var(--base) + var(--turn, 0deg));
  position: absolute;
  left: calc(50% + 50% * cos(var(--a)));
  top: calc(50% + 50% * sin(var(--a)));
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--gcid-primary-color);
}

.mmt-ring__dot:nth-child(1) { --base:   0deg; width: 7px; height: 7px; }
.mmt-ring__dot:nth-child(2) { --base:  60deg; width: 6px; height: 6px; background: var(--mmt-teal-500); }
.mmt-ring__dot:nth-child(3) { --base: 120deg; width: 8px; height: 8px; background: var(--mmt-teal-400); }
.mmt-ring__dot:nth-child(4) { --base: 180deg; width: 6px; height: 6px; }
.mmt-ring__dot:nth-child(5) { --base: 240deg; width: 7px; height: 7px; background: var(--mmt-teal-400); }
.mmt-ring__dot:nth-child(6) { --base: 300deg; width: 6px; height: 6px; background: var(--mmt-teal-500); }

@keyframes mmt-spin     { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes mmt-spin-rev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

/* thin the stack on narrow screens — clamp handles the sizing itself */
@media (max-width: 980px) {
  .mmt-ring--sm { display: none; }
}


/* ==========================================================================
   7. MOTION — scroll reveal & hover swipe
   ========================================================================== */

.mmt-ready .mmt-item:not(.is-in) {
  clip-path: inset(0 100% 0 0);
}

.mmt-ready .mmt-item.is-in {
  animation: mmt-wipe 900ms cubic-bezier(.65, 0, .35, 1);
}

@keyframes mmt-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* hover swipe — image modules, and blog posts triggered by the whole card */
.mmt-ready .mmt-swipe .et_pb_image_wrap,
.mmt-ready .mmt-blog .et_pb_image_container {
  overflow: hidden;
}

.mmt-ready .mmt-swipe:hover .et_pb_image_wrap img,
.mmt-ready .mmt-blog .et_pb_post:hover .et_pb_image_container img {
  animation: mmt-swipe 600ms ease;
}

@keyframes mmt-swipe {
  0%   { transform: translateX(0) scaleX(1);    opacity: 1; filter: blur(0); }
  45%  { transform: translateX(-50%) scaleX(2); opacity: 0; filter: blur(10px); }
  46%  { transform: translateX(50%) scaleX(2);  opacity: 0; filter: blur(10px); }
  100% { transform: translateX(0) scaleX(1);    opacity: 1; filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mmt-rings-on .mmt-ring,
  .mmt-ready .mmt-item.is-in,
  .mmt-ready .mmt-swipe:hover .et_pb_image_wrap img,
  .mmt-ready .mmt-blog .et_pb_post:hover .et_pb_image_container img {
    animation: none;
  }

  .mmt-ready .mmt-item:not(.is-in) { clip-path: none; }

  .mmt-marquee .et_pb_group_carousel_track { animation: none !important; }
}


/* ==========================================================================
   8. TRUSTED LABEL
   ========================================================================== */

.mmt-trusted-lebel .et_pb_module_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mmt-ink-muted);
}

.mmt-trusted-lebel .et_pb_module_header::before,
.mmt-trusted-lebel .et_pb_module_header::after {
  content: "";
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mmt-rule-line));
}

.mmt-trusted-lebel .et_pb_module_header::after {
  background: linear-gradient(to left, transparent, var(--mmt-rule-line));
}


/* ==========================================================================
   9. LOGO MARQUEE
   ========================================================================== */

.mmt-marquee .et_pb_group_carousel_track {
  width: max-content;
  gap: 80px;
  opacity: 0.5;
  animation: mmt-marquee 25s linear infinite !important;
  transition: none !important;
}

.mmt-marquee .et_pb_group_carousel_slide {
  flex: 0 0 auto !important;
}

.mmt-marquee .et_pb_image img {
  width: auto;
  height: 52px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

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

@media (max-width: 767px) {
  .mmt-marquee .et_pb_group_carousel_track { gap: 48px; }
  .mmt-marquee .et_pb_image img { height: 34px; }
}


/* ==========================================================================
   10. SERVICE CARDS
   ========================================================================== */

.mmt-ser-card .et-pb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 40px !important;
  background: var(--mmt-teal-50);
  border: 2px solid var(--mmt-white);
  border-radius: 10px;
}


/* ==========================================================================
   11. FAQ TOGGLE
   ========================================================================== */

.et_pb_toggle_title::before {
  display: grid !important;
  place-items: center;
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  background: var(--mmt-slate-50) !important;
  border: 1px solid var(--mmt-slate-200) !important;
  color: var(--gcid-primary-color) !important;
  font-family: ETmodules !important;
  font-size: 20px !important;
  line-height: 1 !important;
  content: "\4c" !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.et_pb_toggle_open .et_pb_toggle_title::before {
  content: "\4b" !important;
  background: var(--gcid-primary-color) !important;
  border: 0 !important;
  color: var(--mmt-white) !important;
}


/* ==========================================================================
   12. LEGAL NAV — .active is set by the JS on the current page's card
   ========================================================================== */

.mmt-legal-nav .et_pb_blurb {
  cursor: pointer;
}

.mmt-legal-nav .et_pb_blurb:hover,
.mmt-legal-nav .et_pb_blurb.active,
.mmt-legal-nav .et_pb_blurb.active:hover {
  background-color: var(--mmt-teal-50) !important;
}


/* ==========================================================================
   13. STEP NUMERALS — watermark digits behind "How it works" cards
   ========================================================================== */

.mmt-steps {
  counter-reset: mmt;
}

.mmt-steps .mmt-step {
  counter-increment: mmt;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--mmt-slate-200);
}

.mmt-steps .mmt-step::before {
  content: counter(mmt, decimal-leading-zero);   /* 01 02 03 04 */
  position: absolute;
  top: -.1em;
  right: .04em;
  z-index: -1;
  font-size: clamp(80px, 8vw, 150px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--gcid-primary-color);
  opacity: .07;
  user-select: none;
  pointer-events: none;
}

/* same numerals on a dark surface */
.mmt-steps-dark .mmt-step::before {
  color: var(--mmt-white) !important;
}


/* ==========================================================================
   14. INLINE HIGHLIGHT
   ========================================================================== */

.mmt-hl {
  position: relative;
  white-space: nowrap;
  color: var(--gcid-primary-color);
}

.mmt-hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .03em;
  height: .13em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mmt-teal-400), var(--mmt-accent-warm));
}


/* ==========================================================================
   15. MISC OVERRIDES
   ========================================================================== */

.et_pb_number_counter .percent {
  height: 55px !important;
}

.et-pb-contact-message ul {
  display: none;
}

.mmt-review .et_pb_group_carousel_dots {
  padding-left: 20px;
}

.mmt-review .et_pb_group_carousel_dot.et_pb_group_carousel_dot_active {
  width: 30px;
  height: 8px;
  border-radius: 20px;
  background: var(--gcid-heading-color);
}

/* pricing toggle — the active fill is painted inline by the JS, because
   Divi's per-module rules outrank a class rule here */
.pricing-btn {
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}

@media (min-width: 981px) {
  .et_pb_timeline_item { width: auto !important; }
}

@media (max-width: 767px) {
  .et_pb_timeline_marker { margin-left: -18px; }
}

























/* ==========================================================================
   BLOG GRID — image · meta · title · pill link
   Module class: mmt-blog
   Module settings: Elements → Author ON, Categories OFF
   ========================================================================== */

/* card: drop Divi's grid chrome, then reorder the pieces.
   Divi prints title before meta, so the order lives here rather than in
   the markup. */
.mmt-blog .et_grid_module > .et_pb_post {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;                 /* Divi's grid card padding */
  background: transparent;    /* Divi's grid card fill */
}

.mmt-blog .et_pb_post .et_pb_image_container { order: 1; margin: 0; }
.mmt-blog .et_pb_post .post-meta             { order: 2; margin: 0; }
.mmt-blog .et_pb_post .entry-title           { order: 3; padding: 0; }
.mmt-blog .et_pb_post .post-content          { order: 4; }

/* meta — font-size 0 blanks the " | " text nodes Divi prints between the
   items; the children set their own size back. */
.mmt-blog .et_pb_post .post-meta { font-size: 0; }

.mmt-blog .post-meta span,
.mmt-blog .post-meta a { font-size: 14px; }

.mmt-blog .post-meta .published { color: var(--gcid-primary-color); }

.mmt-blog .post-meta .author::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 14px;
  vertical-align: middle;
  background: var(--mmt-slate-200);
}

/* read more — the label is Divi's "read more...", so it's blanked the same
   way and re-set on the pseudo-element. */
.mmt-blog .et_pb_post a.more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 20px;
  border: 1px solid var(--mmt-slate-200);
  border-radius: 999px;
  font-size: 0;
  color: var(--gcid-heading-color);
}

.mmt-blog .et_pb_post a.more-link::before {
  content: "Read more";
  font-size: 15px;
  font-weight: 600;
}

.mmt-blog .et_pb_post a.more-link::after {
  content: "5";                       /* ETmodules chevron */
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--gcid-primary-color);
  color: var(--mmt-white);
  font-family: ETmodules;
  font-size: 16px;
}


/* ==========================================================================
   MOMENTUM — Inertia scrolling, CSS layer
   Goes in: Divi → Theme Options → General → Custom CSS, below the main file.

   Required by the JS layer. Lenis adds .lenis / .lenis-smooth to <html>,
   and these rules are what let it drive the page:

     · height:auto  — Lenis measures the document itself; a fixed height on
                      html/body would clamp the scrollable distance
     · scroll-behavior:auto — native smooth scroll would fight Lenis frame
                      by frame, so it has to be off while Lenis is running
     · [data-lenis-prevent] — put this attribute on any inner scrollable
                      pane (a modal, a code block) to leave it native

   Replaces momentum-smooth-scroll.css — remove that one.
   ========================================================================== */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

