/* Emjeez Services — site styles */

/* ---------- Design tokens ---------- */
  :root {
    --ejz-ink: #0A0A0A;
    --ejz-ink-2: #1A1A1E;
    --ejz-muted: #6E6E78;
    --ejz-muted-2: #55555E;
    --ejz-muted-3: #8E8E98;
    --ejz-muted-4: #B9B9C2;
    --ejz-navy: #141033;
    --ejz-navy-deep: #0C0A22;
    --ejz-navy-mid: #1E1848;
    --ejz-purple: var(--ejz-navy);
    --ejz-purple-deep: var(--ejz-navy-deep);
    --ejz-lime: #E4FF57;
    --ejz-white: #ffffff;
    --ejz-page: 1440px;
    --ejz-gutter: clamp(20px, 4vw, 48px);
    --ejz-section-y: clamp(76px, 9vw, 120px);
    --ejz-grad-primary: linear-gradient(180deg, #1E1848 0%, #141033 55%, #0C0A22 100%);
    --ejz-shadow-primary: 0 12px 26px -12px rgba(20, 16, 51, .55), inset 0 1px 0 rgba(255, 255, 255, .16);
    --ejz-shadow-primary-hover: 0 18px 34px -14px rgba(20, 16, 51, .7), inset 0 1px 0 rgba(255, 255, 255, .16);
    --ejz-grad-dark: linear-gradient(180deg, #1E1848 0%, #141033 62%);
    --ejz-grad-lime: linear-gradient(180deg, #1E1848 0%, #141033 58%, #0C0A22 100%);
    --ejz-grad-word: linear-gradient(90deg, #FF6A3D 0%, #FF2FB0 30%, #A03BF0 62%, #4B33F0 100%);
    --ejz-ease: cubic-bezier(.22, 1, .36, 1);
    --ejz-reviews-gap: 18px;
  }

  /* ---------- Base ---------- */
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--ejz-white);
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  * { box-sizing: border-box; }
  a { color: var(--ejz-purple); text-decoration: none; }
  a:hover { color: var(--ejz-purple-deep); }
  input, select, textarea, button { font-family: inherit; }
  img { max-width: 100%; }
  summary { cursor: pointer; list-style: none; }
  summary::-webkit-details-marker { display: none; }
  summary::marker { content: ''; }

  /* ---------- Keyframes ---------- */
  @keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
  }
  @keyframes wordRoll {
    0%, 22%  { transform: translateY(0); }
    33%, 55% { transform: translateY(-1.15em); }
    66%, 88% { transform: translateY(-2.30em); }
    100%     { transform: translateY(-3.45em); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes avatarFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
  }
  @keyframes heroDashIn {
    from { opacity: 0; transform: translateY(36px) scale(.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ---------- Layout primitives ---------- */
  .ejz-page { background: var(--ejz-white); color: var(--ejz-ink); }
  .ejz-wrap { max-width: var(--ejz-page); margin: 0 auto; }
  .ejz-wrap--narrow { max-width: 1280px; margin: 0 auto; }
  .ejz-section {
    padding-left: var(--ejz-gutter);
    padding-right: var(--ejz-gutter);
  }
  .ejz-section--y {
    padding-top: var(--ejz-section-y);
    padding-bottom: var(--ejz-section-y);
  }

  /* ---------- Buttons ---------- */
  .ejz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
  }
  .ejz-btn:hover { text-decoration: none; }
  .ejz-btn--primary {
    background: var(--ejz-grad-primary);
    box-shadow: var(--ejz-shadow-primary);
    color: var(--ejz-white);
  }
  .ejz-btn--primary:hover {
    transform: translateY(-2px);
    background: var(--ejz-navy-deep);
    box-shadow: var(--ejz-shadow-primary-hover);
    color: var(--ejz-white);
  }
  .ejz-btn--dark {
    background: var(--ejz-grad-dark);
    box-shadow: var(--ejz-shadow-primary);
    color: var(--ejz-white);
    font-size: 17px;
    padding: 19px 42px;
  }
  .ejz-btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--ejz-shadow-primary-hover);
    background: var(--ejz-navy-deep);
    color: var(--ejz-white);
  }
  .ejz-btn--outline {
    background: var(--ejz-white);
    border: 1px solid rgba(20, 16, 51, .18);
    box-shadow: 0 6px 18px -10px rgba(20, 16, 51, .2), inset 0 1px 0 rgba(255, 255, 255, .8);
    color: var(--ejz-navy);
    font-size: 17px;
    padding: 19px 42px;
  }
  .ejz-btn--outline:hover {
    transform: translateY(-2px);
    border-color: var(--ejz-navy);
    background: var(--ejz-navy);
    box-shadow: var(--ejz-shadow-primary-hover);
    color: var(--ejz-white);
  }
  .ejz-btn--lime {
    background: var(--ejz-grad-lime);
    box-shadow: var(--ejz-shadow-primary);
    color: var(--ejz-white);
    font-size: 16px;
    font-weight: 700;
    padding: 17px 30px;
    gap: 10px;
  }
  .ejz-btn--lime:hover {
    transform: translateY(-2px);
    background: var(--ejz-navy-deep);
    box-shadow: var(--ejz-shadow-primary-hover);
    color: var(--ejz-white);
  }
  .ejz-btn--nav {
    color: var(--ejz-white);
    font-size: 15.5px;
    padding: 15px 30px;
  }
  .ejz-btn--nav:hover { color: var(--ejz-white); }
  .ejz-btn--submit {
    color: var(--ejz-white);
    font-size: 16.5px;
    padding: 19px 40px;
  }
  .ejz-btn--submit:hover { color: var(--ejz-white); }
  .ejz-btn--footer {
    color: var(--ejz-white);
    font-size: 17px;
    padding: 20px 42px;
    gap: 10px;
  }
  .ejz-btn--footer:hover { color: var(--ejz-white); }
  .ejz-btn__arrow { font-size: 13px; }

  /* ---------- Header / nav ---------- */
  .ejz-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10, 10, 10, .07);
  }
  .ejz-nav {
    max-width: var(--ejz-page);
    margin: 0 auto;
    padding: 16px var(--ejz-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .ejz-logo {
    display: flex;
    align-items: center;
  }
  .ejz-logo img {
    height: 44px;
    width: auto;
    display: block;
  }
  .ejz-navlinks {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    flex-wrap: wrap;
  }
  .ejz-navlinks a {
    font-size: 16px;
    font-weight: 700;
    color: var(--ejz-ink);
  }
  .ejz-navlinks a:hover { color: var(--ejz-purple); }

  /* ---------- Hero ---------- */
  .ejz-hero {
    padding: clamp(56px, 7vw, 104px) var(--ejz-gutter) 0;
  }
  .ejz-hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.55fr) minmax(180px, .55fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
  }
  .ejz-hero-title {
    margin: 0;
    font-size: clamp(44px, 6.6vw, 96px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.04em;
    animation: fadeUp .8s var(--ejz-ease) both;
  }
  .ejz-word-mask {
    display: inline-block;
    height: 1.15em;
    overflow: hidden;
    vertical-align: bottom;
  }
  .ejz-word-track {
    display: block;
    animation: wordRoll 9s cubic-bezier(.76, 0, .24, 1) infinite;
  }
  .ejz-word {
    display: block;
    height: 1.15em;
    line-height: 1.15;
    background: var(--ejz-grad-word);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .ejz-hero-logos {
    padding-bottom: 10px;
    animation: fadeUp .8s var(--ejz-ease) .12s both;
  }
  .ejz-hero-cta {
    margin: 44px 0 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .8s var(--ejz-ease) .22s both;
  }
  .ejz-hero-dash {
    margin-top: clamp(48px, 6vw, 84px);
    background: linear-gradient(120deg, #F1EEFF 0%, #F7F5FF 55%, #EFEBFF 100%);
    border-radius: 20px;
    padding: clamp(14px, 2vw, 26px);
    animation: heroDashIn 1s var(--ejz-ease) .32s both;
  }
  .ejz-hero-dash img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* ---------- Avatars ---------- */
  .ejz-avatar-group { display: flex; align-items: center; }
  .ejz-avatar {
    width: 88px;
    height: 88px;
    border-radius: 9999px;
    overflow: hidden;
    border: 3px solid #fff;
    background: #fff;
    box-shadow: 0 4px 14px rgba(10, 10, 10, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -18px;
    animation: avatarFloat 3.6s ease-in-out infinite;
  }
  .ejz-avatar:nth-child(2) { animation-delay: .35s; }
  .ejz-avatar:nth-child(3) { animation-delay: .7s; }
  .ejz-avatar:first-child { margin-left: 0; }
  .ejz-avatar img {
    width: 62%;
    height: 62%;
    object-fit: contain;
    display: block;
  }
  .ejz-avatar--amazon img { width: 72%; height: 72%; }
  .ejz-avatar--amazon { z-index: 3; background: #FFF7ED; }
  .ejz-avatar--tiktok { z-index: 2; background: #F4F4F5; }
  .ejz-avatar--shopify { z-index: 1; background: #ECFDF5; }
  @media (max-width: 700px) {
    .ejz-avatar { width: 68px; height: 68px; margin-left: -14px; }
  }

  /* ---------- Reveal / motion ---------- */
  .ejz-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ejz-ease), transform .7s var(--ejz-ease);
  }
  .ejz-reveal.is-in { opacity: 1; transform: translateY(0); }
  .ejz-reveal-delay-1 { transition-delay: .08s; }
  .ejz-reveal-delay-2 { transition-delay: .16s; }
  .ejz-reveal-delay-3 { transition-delay: .24s; }

  @media (prefers-reduced-motion: reduce) {
    .ejz-avatar,
    .ejz-hero-title,
    .ejz-hero-logos,
    .ejz-hero-cta,
    .ejz-hero-dash { animation: none !important; }
    .ejz-reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .ejz-t-card:hover { transform: none; }
    .ejz-btn:hover { transform: none; }
  }

  /* ---------- Problem ---------- */
  .ejz-problem {
    margin-top: clamp(56px, 7vw, 100px);
    background: var(--ejz-ink);
    color: var(--ejz-white);
    padding: clamp(84px, 10vw, 150px) var(--ejz-gutter);
  }
  .ejz-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .24em;
    margin-bottom: 26px;
  }
  .ejz-eyebrow--lime { color: var(--ejz-muted-4); }
  .ejz-eyebrow--purple {
    font-size: 12.5px;
    color: var(--ejz-purple);
    margin-bottom: 22px;
  }
  .ejz-problem-title {
    margin: 0;
    max-width: 1060px;
    font-size: clamp(38px, 4.8vw, 70px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -.035em;
  }
  .ejz-problem-title span { color: var(--ejz-muted); }
  .ejz-problem-copy {
    margin: 32px 0 0;
    max-width: 840px;
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.55;
    font-weight: 500;
    color: var(--ejz-muted-4);
    text-wrap: pretty;
  }
  .ejz-problem-list {
    margin-top: 52px;
    background: var(--ejz-ink-2);
    max-width: 1060px;
  }
  .ejz-problem-row {
    display: flex;
    align-items: baseline;
    gap: 26px;
    padding: 26px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .ejz-problem-row:last-child { border-bottom: none; }
  .ejz-problem-num {
    font-size: 15px;
    font-weight: 600;
    color: var(--ejz-muted);
  }
  .ejz-problem-text {
    font-size: clamp(21px, 1.8vw, 25px);
    font-weight: 600;
    letter-spacing: -.02em;
  }

  /* ---------- Services ---------- */
  .ejz-services {
    background: var(--ejz-ink);
    color: var(--ejz-white);
    padding: 0 var(--ejz-gutter) clamp(84px, 10vw, 140px);
  }
  .ejz-services-title {
    margin: 0 0 56px;
    max-width: 1240px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.03em;
  }
  .ejz-services-title span { color: #77777F; }
  .ejz-svc-stack {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .ejz-svc-card {
    position: sticky;
    top: 96px;
    min-height: clamp(380px, 48vh, 520px);
    box-shadow: 0 -22px 60px rgba(0, 0, 0, .5);
    display: grid;
    /* Text | image — image column wider to match ~1.56:1 banners */
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.5fr);
    align-items: stretch;
    overflow: hidden;
  }
  .ejz-svc-card--amazon { background: #FFD18A; color: #0A0A0A; }
  .ejz-svc-card--tiktok { background: #FF94B4; color: #0A0A0A; }
  .ejz-svc-card--shopify { background: #E4FF87; color: #0A0A0A; }
  .ejz-svc-card--multi { background: #D0A3FF; color: #0A0A0A; }
  .ejz-svc-card--partnerships { background: #FFE5AB; color: #0A0A0A; }
  .ejz-svc-body { padding: clamp(32px, 3.4vw, 52px); }
  .ejz-svc-num {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
    opacity: .7;
  }
  .ejz-svc-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 2.9vw, 42px);
    font-weight: 700;
    letter-spacing: -.028em;
    line-height: 1.05;
  }
  .ejz-svc-tagline {
    margin: 0 0 22px;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.25;
  }
  .ejz-svc-desc {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    text-wrap: pretty;
    max-width: 42rem;
  }
  .ejz-svc-badges {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ejz-svc-badges li {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.2;
    border: 1px solid transparent;
  }
  .ejz-svc-card--amazon .ejz-svc-desc { color: #6A4A18; }
  .ejz-svc-card--amazon .ejz-svc-tagline { color: #0A0A0A; }
  .ejz-svc-card--amazon .ejz-svc-badges li {
    background: rgba(10, 10, 10, .08);
    border-color: rgba(10, 10, 10, .12);
    color: #1A1A1E;
  }
  .ejz-svc-card--tiktok .ejz-svc-desc { color: #6E2E45; }
  .ejz-svc-card--tiktok .ejz-svc-tagline { color: #0A0A0A; }
  .ejz-svc-card--tiktok .ejz-svc-badges li {
    background: rgba(10, 10, 10, .08);
    border-color: rgba(10, 10, 10, .12);
    color: #1A1A1E;
  }
  .ejz-svc-card--shopify .ejz-svc-desc { color: #3A4A18; }
  .ejz-svc-card--shopify .ejz-svc-tagline { color: #0A0A0A; }
  .ejz-svc-card--shopify .ejz-svc-badges li {
    background: rgba(10, 10, 10, .08);
    border-color: rgba(10, 10, 10, .12);
    color: #1A1A1E;
  }
  .ejz-svc-card--multi .ejz-svc-desc { color: #4A2E6E; }
  .ejz-svc-card--multi .ejz-svc-tagline { color: #0A0A0A; }
  .ejz-svc-card--multi .ejz-svc-badges li {
    background: rgba(10, 10, 10, .08);
    border-color: rgba(10, 10, 10, .12);
    color: #1A1A1E;
  }
  .ejz-svc-card--partnerships .ejz-svc-desc { color: #6A5428; }
  .ejz-svc-card--partnerships .ejz-svc-tagline { color: #0A0A0A; }
  .ejz-svc-card--partnerships .ejz-svc-badges li {
    background: rgba(10, 10, 10, .08);
    border-color: rgba(10, 10, 10, .12);
    color: #1A1A1E;
  }
  /* Image frame sized for landscape service banners (~1565×1005 / 1.56:1) */
  .ejz-svc-media {
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100%;
    align-self: stretch;
  }
  .ejz-svc-media--empty {
    min-height: 280px;
    aspect-ratio: 1565 / 1005;
  }
  .ejz-svc-media__label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .45);
  }
  .ejz-svc-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  /* ---------- Results ---------- */
  .ejz-results { background: var(--ejz-white); }
  .ejz-results-title {
    margin: 0 0 52px;
    max-width: 940px;
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -.032em;
  }
  .ejz-results-table { border-top: 1px solid rgba(10, 10, 10, .13); }
  .ejz-result-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 2.4vw, 40px);
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(10, 10, 10, .13);
  }
  .ejz-result-name {
    font-size: clamp(23px, 2.1vw, 29px);
    font-weight: 700;
    letter-spacing: -.022em;
    line-height: 1.1;
  }
  .ejz-result-copy {
    margin: 0;
    font-size: 17.5px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--ejz-muted-2);
    text-wrap: pretty;
  }
  .ejz-result-metric {
    font-size: clamp(23px, 2.1vw, 31px);
    font-weight: 800;
    color: var(--ejz-purple);
    text-align: right;
    letter-spacing: -.02em;
  }

  /* ---------- Reviews ---------- */
  .ejz-reviews { background: #F5F5F5; }
  .ejz-reviews-head {
    margin-bottom: clamp(40px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ejz-reviews-title {
    margin: 0 0 16px;
    max-width: 820px;
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ejz-ink);
  }
  .ejz-reviews-sub {
    margin: 0;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--ejz-muted);
  }
  .ejz-reviews-shell {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
  }
  .ejz-t-track {
    display: flex;
    gap: var(--ejz-reviews-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
  }
  .ejz-t-track::-webkit-scrollbar { display: none; }
  .ejz-t-card {
    flex: 0 0 min(100%, 360px);
    scroll-snap-align: start;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ejz-white);
    border-radius: 28px;
    padding: 36px 28px 32px;
    user-select: none;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 8px 28px -18px rgba(20, 16, 51, .22);
  }
  .ejz-t-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -20px rgba(20, 16, 51, .3);
  }
  @media (min-width: 700px) {
    .ejz-t-card { flex-basis: calc(50% - 9px); }
  }
  @media (min-width: 1024px) {
    .ejz-t-card { flex-basis: calc(33.333% - 12px); }
  }
  .ejz-t-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin: 0 0 22px;
  }
  .ejz-t-mark::before,
  .ejz-t-mark::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(20, 16, 51, .18);
    max-width: 72px;
  }
  .ejz-t-mark span {
    font-size: 42px;
    line-height: .7;
    font-weight: 700;
    color: var(--ejz-navy);
    font-family: Georgia, 'Times New Roman', serif;
  }
  .ejz-t-body {
    margin: 0 0 28px;
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 500;
    color: var(--ejz-muted);
    max-width: 28rem;
  }
  .ejz-t-author {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--ejz-ink);
  }
  .ejz-t-nav {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .ejz-t-nav button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(10, 10, 10, .08);
    color: var(--ejz-ink);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .18s ease, transform .18s ease;
  }
  .ejz-t-nav button:hover {
    background: rgba(10, 10, 10, .14);
    transform: translateY(-1px);
  }

  /* ---------- FAQ ---------- */
  .ejz-faq { background: var(--ejz-white); }
  .ejz-faq-grid {
    max-width: var(--ejz-page);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
  .ejz-faq-title {
    margin: 0 0 44px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -.03em;
  }
  .ejz-faq-list { border-top: 1px solid rgba(10, 10, 10, .13); }
  .ejz-faq-item { border-bottom: 1px solid rgba(10, 10, 10, .13); }
  .ejz-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    font-size: clamp(19px, 1.6vw, 23px);
    font-weight: 600;
    letter-spacing: -.015em;
  }
  .ejz-faq-item summary:hover { color: var(--ejz-purple); }
  .ejz-faq-item summary span {
    font-size: 15px;
    color: var(--ejz-muted-3);
  }
  .ejz-faq-item p {
    margin: 0 0 26px;
    font-size: 17.5px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--ejz-muted-2);
    max-width: 700px;
    text-wrap: pretty;
  }
  .ejz-faq-aside {
    background: var(--ejz-ink);
    color: var(--ejz-white);
    padding: 36px 32px;
    position: sticky;
    top: 110px;
  }
  .ejz-faq-aside p {
    margin: 0 0 26px;
    font-size: 17.5px;
    line-height: 1.55;
    font-weight: 500;
    color: #DADAE2;
  }

  /* ---------- Contact ---------- */
  .ejz-contact { background: #EFEFEF; padding: clamp(76px, 9vw, 124px) var(--ejz-gutter); }
  .ejz-contact-grid {
    max-width: var(--ejz-page);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
  .ejz-contact-title {
    margin: 0;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.04em;
  }
  .ejz-contact-title span {
    display: block;
    color: #9A9AA4;
  }
  .ejz-contact-perks {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ejz-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16.5px;
    font-weight: 500;
  }
  .ejz-perk__mark {
    width: 19px;
    height: 19px;
    background: var(--ejz-ink);
    color: var(--ejz-white);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ejz-contact-note {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(10, 10, 10, .14);
    font-size: 16.5px;
    color: var(--ejz-muted-2);
    max-width: 420px;
    text-wrap: pretty;
  }
  .ejz-form {
    background: var(--ejz-white);
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .ejz-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  .ejz-field {
    padding: 18px 20px;
    font-size: 16px;
    border: 1px solid rgba(10, 10, 10, .16);
    border-radius: 2px;
    outline: none;
    color: var(--ejz-ink);
    background: var(--ejz-white);
  }
  .ejz-field:focus { border-color: var(--ejz-purple); }
  .ejz-field--muted { color: var(--ejz-muted-2); }
  .ejz-field--area { resize: vertical; }
  .ejz-form-label {
    margin-top: 6px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.015em;
  }
  .ejz-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .ejz-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border: 1px solid rgba(10, 10, 10, .16);
    font-size: 15.5px;
    color: #3D3D45;
    cursor: pointer;
  }
  .ejz-chip:hover {
    border-color: var(--ejz-purple);
    color: var(--ejz-ink);
  }
  .ejz-chip input {
    accent-color: var(--ejz-purple);
    width: 15px;
    height: 15px;
  }
  .ejz-form-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .ejz-form-alt {
    text-align: right;
    font-size: 15px;
    color: #6B6B72;
  }
  .ejz-form-alt a {
    color: var(--ejz-ink);
    text-decoration: underline;
    font-weight: 600;
  }
  .ejz-form-success {
    background: #F1FFE0;
    border: 1px solid #C8E88A;
    padding: 16px 20px;
    font-size: 16px;
    color: #2F4A00;
  }

  /* ---------- Footer ---------- */
  .ejz-footer {
    background: var(--ejz-ink);
    color: var(--ejz-white);
    padding: clamp(76px, 9vw, 124px) var(--ejz-gutter) 0;
    overflow: hidden;
  }
  .ejz-footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    align-items: center;
  }
  .ejz-footer-title {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.04em;
  }
  .ejz-footer-title span { display: block; }
  .ejz-footer-cta { display: flex; justify-content: flex-end; }
  .ejz-footer-cols {
    margin-top: clamp(56px, 7vw, 96px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 44px;
  }
  .ejz-footer h4 {
    margin: 0 0 22px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.01em;
  }
  .ejz-footer-block h4 { margin-bottom: 14px; }
  .ejz-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    color: #A2A2AC;
  }
  .ejz-footer-links a,
  .ejz-footer-link {
    color: #A2A2AC;
  }
  .ejz-footer-links a:hover,
  .ejz-footer-link:hover,
  .ejz-footer-social a:hover { color: var(--ejz-white); }
  .ejz-footer-phone {
    color: var(--ejz-white);
    text-decoration: underline;
  }
  .ejz-footer-phone:hover { color: var(--ejz-muted-4); }
  .ejz-footer-address {
    margin-top: 14px;
    color: var(--ejz-muted-3);
  }
  .ejz-footer-split {
    border-left: 1px solid rgba(255, 255, 255, .16);
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .ejz-footer-meta {
    font-size: 15px;
    color: var(--ejz-muted-3);
    margin-bottom: 6px;
  }
  .ejz-footer-link--bright {
    font-size: 16px;
    color: var(--ejz-white);
  }
  .ejz-footer-link--bright:hover { color: var(--ejz-muted-4); }
  .ejz-footer-bottom {
    margin-top: 64px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
  }
  .ejz-footer-social {
    display: flex;
    gap: 26px;
  }
  .ejz-footer-social a {
    font-size: 16px;
    color: #A2A2AC;
  }
  .ejz-footer-copy {
    font-size: 14.5px;
    color: var(--ejz-muted);
  }
  .ejz-footer-mark {
    margin-top: 36px;
    font-size: clamp(46px, 15.5vw, 240px);
    overflow: hidden;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: .85;
    color: var(--ejz-ink-2);
    text-align: center;
    user-select: none;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .ejz-hero-grid {
      grid-template-columns: 1fr !important;
      align-items: start !important;
      gap: 22px !important;
    }
    .ejz-svc-card {
      grid-template-columns: 1fr !important;
      top: 78px !important;
      min-height: 0 !important;
    }
    .ejz-svc-media {
      min-height: 0 !important;
      aspect-ratio: 1565 / 1005;
      max-height: none !important;
    }
    .ejz-svc-img {
      min-height: 0 !important;
      max-height: none !important;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .ejz-faq-aside {
      position: static !important;
      top: auto !important;
      margin-top: 8px !important;
    }
  }

  @media (max-width: 700px) {
    .ejz-faq-grid,
    .ejz-contact-grid,
    .ejz-footer-top { grid-template-columns: 1fr !important; }
    .ejz-footer-cta { justify-content: center !important; }
  }

  /* ---------- Mobile burger menu ---------- */
  .ejz-burger { display: none; }
  .ejz-mobile-menu { display: none; }

  @media (max-width: 760px) {
    .ejz-navlinks,
    .ejz-navcta { display: none !important; }

    .ejz-burger {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 46px;
      height: 40px;
      padding: 0 9px;
      margin-left: auto;
      background: transparent;
      border: none;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .ejz-burger span {
      display: block;
      width: 100%;
      height: 2.5px;
      border-radius: 3px;
      background: var(--ejz-ink);
      transition: transform .3s ease, opacity .2s ease;
    }
    .ejz-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .ejz-burger.open span:nth-child(2) { opacity: 0; }
    .ejz-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .ejz-mobile-menu {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      padding: 0 clamp(18px, 4vw, 48px);
      transition: max-height .38s ease, opacity .26s ease, padding .38s ease;
    }
    .ejz-mobile-menu.open {
      max-height: 360px;
      opacity: 1;
      padding-top: 6px;
      padding-bottom: 22px;
    }
    .ejz-mobile-menu a {
      font-size: 18px;
      font-weight: 700;
      color: var(--ejz-ink);
      padding: 15px 2px;
      border-bottom: 1px solid rgba(10, 10, 10, .08);
    }
    .ejz-mobile-menu a.ejz-mm-cta {
      margin-top: 16px;
      border-bottom: none;
      text-align: center;
      color: var(--ejz-white);
      border-radius: 100px;
      padding: 16px 24px;
      background: var(--ejz-grad-primary);
      box-shadow: var(--ejz-shadow-primary);
    }
    .ejz-mobile-menu a.ejz-mm-cta:hover {
      background: var(--ejz-navy-deep);
      box-shadow: var(--ejz-shadow-primary-hover);
      color: var(--ejz-white);
    }
  }
