:root {
    --eh-purple: #7935fc;
    --eh-purple-dark: #5a29d0;
    --eh-purple-soft: #905afc;
    --eh-blue: #2970fa;
    --eh-green: #42995b;
    --eh-black: #000;
    --eh-white: #fff;
    --eh-text: #333;
    --eh-muted: #d2d7d8;
    --eh-border-radius: 10px;
    --eh-shadow: 0 10px 35px 0 rgba(131, 72, 252, 0.1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: var(--eh-text);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.5em;
    font-family: 'Rubik', sans-serif;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.eh-container {
    width: min(90%, 1440px);
    margin: 0 auto;
}

.eh-main {
    overflow: hidden;
}

.eh-topbar {
    background: var(--eh-purple);
    color: #fff;
    padding: 8px 0;
}

.eh-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eh-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--eh-purple-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.eh-social-list a:hover,
.eh-social-list a:focus-visible {
    background: var(--eh-purple-soft);
}

.eh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(18, 36, 60, 0.08);
}

.eh-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
}

.eh-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 240px;
}

.eh-logo-link img,
.eh-logo-link .custom-logo-link,
.eh-logo-link .custom-logo {
    display: inline-block;
    max-height: 60px;
    width: auto;
}

.eh-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.eh-menu-toggle-line {
    width: 24px;
    height: 2px;
    background: #000;
}

.eh-nav {
    margin-left: auto;
}

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

.eh-nav-list li {
    position: relative;
}

.eh-nav-list a {
    display: block;
    padding: 10px 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.eh-nav-list > li.current-menu-item > a,
.eh-nav-list > li > a:hover,
.eh-nav-list > li > a:focus-visible {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.eh-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(18, 36, 60, 0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.eh-nav-list li:hover > .sub-menu,
.eh-nav-list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eh-nav-list .sub-menu a {
    padding: 8px;
    font-size: 13px;
}

.eh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 54px;
    padding: 11px 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    max-width: 100%;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    box-sizing: border-box;
    box-shadow: 0 12px 18px -6px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eh-btn:hover,
.eh-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 20px -6px rgba(0, 0, 0, 0.35);
}

.eh-btn-solid {
    background: var(--eh-purple-dark);
    color: #fff;
}

.eh-btn-outline {
    border: 1px solid rgba(121, 53, 252, 0.25);
    background: #fff;
    color: var(--eh-purple-dark);
}

.eh-btn-outline--light {
    border-color: rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #fff;
}

.eh-btn-light {
    background: #fff;
    color: var(--eh-purple-dark);
}

.eh-hero-actions .eh-btn,
.eh-path-card__actions .eh-btn,
.eh-page-actions .eh-btn,
.eh-sales-cta-band__actions .eh-btn {
    min-width: clamp(180px, 22vw, 250px);
}

.eh-footer-brand .eh-btn {
    min-width: 150px;
}

.eh-hero {
    position: relative;
    padding: 42px 0 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.eh-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.eh-hero-card {
    background: #fff;
    border-radius: var(--eh-border-radius);
    box-shadow: var(--eh-shadow);
    padding: 44px 40px 40px;
}

.eh-hero-card h2 {
    margin-bottom: 16px;
    color: #8348fc;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.eh-hero-card h1 {
    margin-bottom: 20px;
    color: var(--eh-text);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.eh-hero-card p {
    margin-bottom: 26px;
    font-size: 18px;
}

.eh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.eh-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 440px;
}

.eh-hero-orb {
    width: min(88%, 480px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #fff 0, #d6c7ff 36%, #9c76ff 70%, #5a29d0 100%);
    box-shadow: 0 40px 55px rgba(90, 41, 208, 0.35);
}

.eh-hero-screen {
    position: absolute;
    width: min(70%, 360px);
    padding: 26px;
    border-radius: 14px;
    background: rgba(16, 12, 38, 0.9);
    backdrop-filter: blur(3px);
    box-shadow: 0 20px 40px rgba(13, 9, 32, 0.4);
}

.eh-code-line {
    display: block;
    height: 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a9bdff 0%, #7fd9b3 100%);
}

.eh-code-line:nth-child(2) {
    width: 82%;
}

.eh-code-line:nth-child(3) {
    width: 64%;
}

.eh-code-line:nth-child(4) {
    width: 74%;
    margin-bottom: 0;
}

.eh-hero-dots {
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#fff 20%, transparent 21%);
    background-size: 16px 16px;
    opacity: 0.55;
}

.eh-funnel {
    padding: 72px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(121, 53, 252, 0.1), transparent 32%),
        linear-gradient(180deg, #f9f7ff 0%, #ffffff 100%);
}

.eh-funnel-intro {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

.eh-kicker {
    margin-bottom: 10px;
    color: var(--eh-purple-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eh-funnel-intro h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 5vw, 52px);
}

.eh-funnel-intro p:last-child {
    margin-bottom: 0;
    font-size: 19px;
}

.eh-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 38px;
}

.eh-path-card,
.eh-funnel-track {
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--eh-shadow);
}

.eh-path-card {
    padding: 32px;
}

.eh-path-card--partner {
    background:
        linear-gradient(165deg, rgba(90, 41, 208, 0.96) 0%, rgba(121, 53, 252, 0.96) 100%);
    color: #fff;
}

.eh-path-card--partner .eh-btn-solid {
    background: #fff;
    color: var(--eh-purple-dark);
}

.eh-path-card--partner .eh-path-link {
    color: #fff;
}

.eh-path-card__eyebrow {
    margin-bottom: 10px;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
}

.eh-path-card h3 {
    margin-bottom: 12px;
    font-size: 34px;
}

.eh-check-list {
    margin: 0 0 28px;
    padding-left: 20px;
}

.eh-check-list li + li {
    margin-top: 12px;
}

.eh-path-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.eh-path-link {
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.eh-funnel-route-card {
    margin-bottom: 26px;
    padding: 28px 30px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(18, 36, 60, 0.96) 0%, rgba(48, 32, 104, 0.96) 100%);
    box-shadow: var(--eh-shadow);
    color: #fff;
}

.eh-funnel-route-card h3 {
    margin-bottom: 12px;
    font-size: clamp(28px, 3.2vw, 36px);
}

.eh-funnel-route-card p:not(.eh-kicker) {
    max-width: 760px;
    margin-bottom: 0;
}

.eh-funnel-route-card .eh-kicker {
    color: rgba(255, 255, 255, 0.8);
}

.eh-funnel-route-card .eh-btn-outline {
    border-color: rgba(255, 255, 255, 0.28);
    background: #fff;
    color: var(--eh-purple-dark);
}

.eh-funnel-track {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    padding: 24px;
    align-items: start;
}

.eh-funnel-track + .eh-funnel-track {
    margin-top: 26px;
}

.eh-funnel-track--partner {
    background:
        linear-gradient(180deg, rgba(248, 244, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.eh-funnel-track__content {
    padding: 10px 4px;
}

.eh-funnel-track__content h3 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 42px);
}

.eh-funnel-track__content > p {
    font-size: 18px;
}

.eh-step-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.eh-step-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: #f7f2ff;
    border: 1px solid rgba(121, 53, 252, 0.12);
}

.eh-step-card__number {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--eh-purple-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.eh-step-card h4 {
    margin-bottom: 8px;
    font-size: 22px;
}

.eh-step-card p {
    margin: 0;
}

.eh-funnel-track__widget .ehle-widget {
    margin: 0;
}

.eh-funnel-track__widget {
    min-width: 0;
}

.eh-funnel-track__widget .ehle-widget__shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.eh-funnel-track__widget .ehle-widget__intro,
.eh-funnel-track__widget .ehle-widget__panel {
    padding: 1.35rem;
}

.eh-funnel-track__widget .ehle-widget__headline,
.eh-funnel-track__widget .ehle-widget__step h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
}

.eh-funnel-track__widget .ehle-widget__choice-grid,
.eh-funnel-track__widget .ehle-widget__field-grid {
    gap: 0.75rem;
}

.eh-funnel-widget-fallback {
    padding: 28px;
    border-radius: 22px;
    background: #f5efff;
    border: 1px solid rgba(121, 53, 252, 0.12);
}

.eh-funnel-widget-fallback h4 {
    margin-bottom: 10px;
    font-size: 28px;
}

.eh-funnel-widget-fallback p {
    margin-bottom: 20px;
    font-size: 18px;
}

.eh-sales-page {
    background: #fff;
}

.eh-sales-proof {
    padding: 14px 0 76px;
    background: linear-gradient(180deg, #fff 0%, #f7f2ff 100%);
}

.eh-sales-proof__intro {
    max-width: 840px;
    margin: 0 auto 30px;
    text-align: center;
}

.eh-sales-proof__intro h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 4.5vw, 50px);
}

.eh-sales-proof__intro p:last-child {
    margin-bottom: 0;
    font-size: 18px;
}

.eh-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.eh-proof-card {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--eh-shadow);
}

.eh-proof-card__value {
    margin-bottom: 12px;
    color: var(--eh-purple-dark);
    font-family: 'Rubik', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

.eh-proof-card h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.eh-proof-card p {
    margin: 0;
    font-size: 18px;
}

.eh-sales-cta-band {
    padding: 36px;
    border-radius: 24px;
    background: linear-gradient(135deg, #4b21b5 0%, #7935fc 56%, #9b74ff 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(90, 41, 208, 0.28);
}

.eh-sales-cta-band h3 {
    max-width: 920px;
    margin: 0 auto 14px;
    font-size: clamp(30px, 4vw, 42px);
}

.eh-sales-cta-band p:not(.eh-kicker) {
    max-width: 780px;
    margin: 0 auto;
    font-size: 18px;
}

.eh-sales-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.eh-faq-section {
    padding: 0 0 82px;
    background: #fff;
}

.eh-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.eh-faq-card {
    padding: 26px;
    border-radius: 20px;
    background: #f8f5ff;
    border: 1px solid rgba(121, 53, 252, 0.12);
}

.eh-faq-card h3 {
    margin-bottom: 10px;
    font-size: 26px;
}

.eh-faq-card p {
    margin: 0;
    font-size: 18px;
}

.eh-services {
    position: relative;
    padding: 48px 0 0;
    background: var(--eh-purple-dark);
    color: #fff;
}

.eh-centered-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 44px;
    color: var(--eh-muted);
    font-size: clamp(26px, 4vw, 42px);
    text-align: center;
}

.eh-centered-title::before,
.eh-centered-title::after {
    content: '';
    display: block;
    flex: 1;
    max-width: 260px;
    border-top: 3px solid #fff;
}

.eh-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.eh-service-card {
    padding: 28px 22px;
    border-radius: var(--eh-border-radius);
    background: #fff;
    color: var(--eh-text);
    text-align: center;
}

.eh-service-icon {
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-size: 36px;
    background: linear-gradient(145deg, #f3ecff, #dbceff);
}

.eh-service-card h3 {
    margin-bottom: 10px;
    font-size: 25px;
}

.eh-service-card h3 a {
    text-decoration: none;
    background-image: linear-gradient(120deg, var(--eh-purple) 0%, var(--eh-purple) 100%);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 100%;
    transition: all 0.25s ease;
}

.eh-service-card h3 a:hover,
.eh-service-card h3 a:focus-visible {
    color: #fff;
    background-size: 100% 100%;
}

.eh-service-card p {
    margin: 0;
    font-size: 18px;
}

.eh-services-cta {
    padding: 42px 0 22px;
    text-align: center;
}

.eh-services-cta h3 {
    margin-bottom: 22px;
    font-size: clamp(28px, 4vw, 42px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
}

.eh-testimonials-intro {
    width: min(93%, 1000px);
    margin: 36px auto -100px;
    padding: 3vw 3vw 2.5vw;
    border-radius: 0 0 30px 30px;
    background: linear-gradient(180deg, #5a29d0 0%, #905afc 100%);
    text-align: center;
    position: relative;
    z-index: 3;
}

.eh-testimonials-intro h3 {
    margin-bottom: 12px;
    font-size: clamp(32px, 5vw, 48px);
}

.eh-testimonials-intro p {
    margin: 0 auto;
    max-width: 700px;
    font-size: clamp(18px, 3vw, 25px);
    line-height: 1.45;
}

.eh-quote-mark {
    margin-top: 10px;
    color: #fff;
    font-size: 56px;
    line-height: 1;
}

.eh-reviews {
    position: relative;
    padding: 160px 0 80px;
    background: #fff;
}

.eh-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.eh-review-card {
    margin: 0;
    padding: 24px;
    border-left: 5px solid var(--eh-purple);
    border-radius: 8px;
    background: #f8f5ff;
    color: var(--eh-text);
    font-size: 18px;
}

.eh-centered {
    text-align: center;
}

.eh-real-people {
    padding: 70px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.eh-real-people-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 36px;
    align-items: center;
}

.eh-real-people-logo-wrap {
    text-align: right;
}

.eh-real-people-logo-wrap img {
    max-width: 500px;
    width: 100%;
}

.eh-real-people-card {
    padding: 44px 40px 40px;
    border-radius: var(--eh-border-radius);
    background: #fff;
    box-shadow: var(--eh-shadow);
}

.eh-real-people-card h2 {
    font-size: clamp(34px, 5vw, 42px);
    margin-bottom: 8px;
}

.eh-real-people-card h4 {
    margin-bottom: 16px;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.eh-real-people-card h4 a {
    text-decoration: underline;
}

.eh-real-people-card p {
    margin-bottom: 22px;
    font-size: 20px;
}

.eh-footer-main {
    padding: 58px 0;
    background: #fff;
    color: #000;
    border-top: 1px solid rgba(18, 36, 60, 0.08);
}

.eh-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.eh-footer-col h2 {
    margin-bottom: 6px;
    font-size: 30px;
}

.eh-footer-rule {
    width: 100%;
    max-width: 120px;
    margin-bottom: 20px;
    border-top: 3px solid #000;
}

.eh-footer-col p,
.eh-footer-col li,
.eh-footer-col a {
    font-size: 18px;
}

.eh-footer-col a {
    text-decoration: none;
}

.eh-footer-col a:hover,
.eh-footer-col a:focus-visible {
    text-decoration: underline;
}

.eh-footer-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-footer-menu-list li + li {
    margin-top: 8px;
}

.eh-footer-brand {
    text-align: center;
}

.eh-footer-logo {
    display: block;
    width: min(260px, 100%);
    margin: 0 auto 14px;
}

.eh-social-list-footer {
    justify-content: center;
    margin-top: 18px;
}

.eh-footer .eh-social-list a {
    background: #fff;
    color: #000;
    border: 1px solid rgba(18, 36, 60, 0.16);
}

.eh-footer .eh-social-list a:hover,
.eh-footer .eh-social-list a:focus-visible {
    background: #f3f3f3;
}

.eh-footer-bottom {
    background: #fff;
    color: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(18, 36, 60, 0.08);
}

.eh-footer-bottom p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.eh-generic-content {
    padding: 50px 0 70px;
}

.eh-content-header {
    margin-bottom: 20px;
}

.eh-content-header h1 {
    font-size: clamp(32px, 4vw, 46px);
}

.eh-content-body,
.eh-post-list {
    font-size: 18px;
}

.eh-post-card {
    padding: 22px;
    border-radius: var(--eh-border-radius);
    background: #f7f7f7;
    margin-bottom: 16px;
}

.eh-post-meta {
    color: #666;
    font-size: 14px;
}

.eh-page-shell {
    display: grid;
    gap: 24px;
}

.eh-page-hero,
.eh-page-section,
.eh-page-card {
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--eh-shadow);
}

.eh-page-hero {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(121, 53, 252, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
}

.eh-page-hero h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 44px);
}

.eh-page-lead {
    max-width: 860px;
    margin-bottom: 0;
    font-size: 19px;
}

.eh-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    align-items: stretch;
}

.eh-page-actions .eh-btn {
    flex: 0 1 240px;
}

.eh-page-section .ehle-widget__shell {
    gap: 1.25rem;
}

.eh-generic-content .eh-page-section .ehle-widget__shell {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 2.5vw, 30px);
    padding: clamp(18px, 2.2vw, 30px);
}

.eh-generic-content #agency-intake .ehle-widget__shell {
    grid-template-columns: minmax(0, 1fr);
}

.eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__shell {
    grid-template-columns: minmax(0, 1fr);
}

.eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__shell {
    grid-template-columns: minmax(0, 1fr);
}

.eh-generic-content .eh-page-section .ehle-widget__intro,
.eh-generic-content .eh-page-section .ehle-widget__panel {
    padding: clamp(22px, 2.4vw, 30px);
}

.eh-generic-content .eh-page-section .ehle-widget__field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.eh-generic-content #agency-intake .ehle-widget__choice-grid,
.eh-generic-content #agency-intake .ehle-widget__field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__choice-grid,
.eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__choice-grid,
.eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eh-generic-content .eh-page-section .ehle-widget__field-grid label,
.eh-generic-content .eh-page-section .ehle-widget__field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.eh-generic-content .eh-page-section .ehle-widget__contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(18, 36, 60, 0.12);
}

.eh-generic-content .eh-page-section .ehle-widget__contact h3 {
    margin-bottom: 12px;
}

.eh-generic-content .eh-page-section .ehle-widget__message {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(90, 41, 208, 0.08);
}

.eh-page-section .ehle-widget__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: stretch;
}

.eh-generic-content .eh-page-section .ehle-widget__actions {
    gap: 14px;
}

.eh-page-section .ehle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    max-width: 100%;
    padding: 0.95rem 1.35rem;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    box-sizing: border-box;
}

.eh-generic-content .eh-page-section .ehle-widget__actions .ehle-button {
    flex: 1 1 220px;
    min-width: 0;
    padding: 1rem 1.4rem;
}

.eh-page-grid {
    display: grid;
    gap: 20px;
}

.eh-page-grid--1 {
    grid-template-columns: 1fr;
}

.eh-page-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eh-page-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eh-page-card {
    padding: 26px;
}

.eh-page-card h3,
.eh-page-section h3 {
    margin-bottom: 10px;
    font-size: 26px;
}

.eh-page-card p,
.eh-page-section p,
.eh-page-section li {
    font-size: 18px;
}

.eh-page-section {
    padding: 28px;
}

.eh-page-section--callout {
    background:
        linear-gradient(135deg, rgba(90, 41, 208, 0.08) 0%, rgba(144, 90, 252, 0.08) 100%);
    border: 1px solid rgba(121, 53, 252, 0.12);
}

.eh-page-list {
    margin: 0;
    padding-left: 20px;
}

.eh-page-list li + li {
    margin-top: 10px;
}

.eh-page-section .ehle-widget {
    margin: 0;
}

@media (max-width: 1200px) {
    .eh-nav-list {
        gap: 12px;
    }

    .eh-nav-list a {
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    .eh-hero-card h1 {
        font-size: 44px;
    }

    .eh-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-page-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-path-grid,
    .eh-funnel-track,
    .eh-funnel-track__widget .ehle-widget__shell,
    .eh-page-section .ehle-widget__shell,
    .eh-funnel-track__widget .ehle-widget__choice-grid,
    .eh-funnel-track__widget .ehle-widget__field-grid,
    .eh-page-section .ehle-widget__choice-grid,
    .eh-page-section .ehle-widget__field-grid {
        grid-template-columns: 1fr;
    }

    .eh-funnel-track__widget {
        width: min(100%, 960px);
        margin: 0 auto;
    }

    .eh-funnel-track__widget .ehle-widget__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-funnel-track__widget .ehle-button {
        width: 100%;
    }

    .eh-page-section .ehle-button {
        width: 100%;
    }

    .eh-generic-content .eh-page-section .ehle-widget__field-grid {
        grid-template-columns: 1fr;
    }

    .eh-generic-content #agency-intake .ehle-widget__shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .eh-generic-content #agency-intake .ehle-widget__choice-grid,
    .eh-generic-content #agency-intake .ehle-widget__field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__choice-grid,
    .eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__choice-grid,
    .eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eh-real-people-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .eh-real-people-logo-wrap {
        text-align: center;
    }
}

@media (max-width: 980px) {
    .eh-topbar {
        display: none;
    }

    .eh-generic-content #agency-intake .ehle-widget__shell,
    .eh-generic-content #agency-intake .ehle-widget__choice-grid,
    .eh-generic-content #agency-intake .ehle-widget__field-grid {
        grid-template-columns: 1fr;
    }

    .eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__shell,
    .eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__choice-grid,
    .eh-generic-content .eh-page-section .ehle-widget--client .ehle-widget__field-grid {
        grid-template-columns: 1fr;
    }

    .eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__shell,
    .eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__choice-grid,
    .eh-generic-content .eh-page-section .ehle-widget--partner .ehle-widget__field-grid {
        grid-template-columns: 1fr;
    }

    .eh-header-inner {
        min-height: 80px;
    }

    .eh-menu-toggle {
        display: inline-flex;
    }

    .eh-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 14px 5%;
        background: #fff;
        border-top: 1px solid rgba(18, 36, 60, 0.08);
    }

    .eh-nav.is-open {
        display: block;
    }

    .eh-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .eh-nav-list > li {
        border-bottom: 1px solid rgba(18, 36, 60, 0.08);
    }

    .eh-nav-list > li:last-child {
        border-bottom: 0;
    }

    .eh-nav-list a {
        padding: 14px 0;
        font-size: 15px;
        text-align: left;
    }

    .eh-nav-list .sub-menu {
        position: static;
        min-width: 100%;
        margin: 0 0 10px;
        border: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f7f7f7;
    }

    .eh-hero {
        padding: 50px 0;
    }

    .eh-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .eh-hero-card {
        padding: 36px;
    }

    .eh-hero-card h1 {
        font-size: 40px;
    }

    .eh-funnel {
        padding: 60px 0;
    }

    .eh-services {
        padding-top: 42px;
    }

    .eh-proof-grid,
    .eh-faq-grid {
        grid-template-columns: 1fr;
    }

    .eh-testimonials-intro {
        margin-bottom: -80px;
    }

    .eh-reviews {
        padding-top: 130px;
    }

    .eh-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .eh-container {
        width: min(92%, 1440px);
    }

    .eh-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 17px;
    }

    .eh-hero-actions,
    .eh-path-card__actions,
    .eh-page-actions,
    .eh-sales-cta-band__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-hero-card {
        padding: 0 0 20px;
        background: transparent;
        box-shadow: none;
    }

    .eh-hero-card h1 {
        font-size: 35px;
    }

    .eh-hero-card p {
        font-size: 18px;
    }

    .eh-path-card,
    .eh-funnel-track {
        padding: 22px;
        border-radius: 18px;
    }

    .eh-funnel-route-card {
        padding: 22px;
        border-radius: 18px;
    }

    .eh-page-hero,
    .eh-page-section,
    .eh-page-card {
        padding: 22px;
        border-radius: 18px;
    }

    .eh-funnel-track__widget .ehle-widget__intro,
    .eh-funnel-track__widget .ehle-widget__panel {
        padding: 1.15rem;
    }

    .eh-sales-proof,
    .eh-faq-section {
        padding-bottom: 60px;
    }

    .eh-funnel-intro p:last-child,
    .eh-funnel-track__content > p,
    .eh-funnel-widget-fallback p,
    .eh-sales-proof__intro p:last-child,
    .eh-proof-card p,
    .eh-faq-card p,
    .eh-sales-cta-band p:not(.eh-kicker) {
        font-size: 17px;
    }

    .eh-path-card h3,
    .eh-funnel-track__content h3,
    .eh-faq-card h3 {
        font-size: 30px;
    }

    .eh-proof-card,
    .eh-faq-card,
    .eh-sales-cta-band {
        padding: 22px;
        border-radius: 18px;
    }

    .eh-sales-cta-band__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-hero-visual {
        min-height: 320px;
    }

    .eh-services-grid,
    .eh-review-grid,
    .eh-page-grid--2,
    .eh-page-grid--3 {
        grid-template-columns: 1fr;
    }

    .eh-services-cta h3 {
        font-size: 32px;
        line-height: 1.25;
    }

    .eh-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-page-actions .eh-btn,
    .eh-page-section .ehle-button {
        width: 100%;
        flex-basis: auto;
    }

    .eh-testimonials-intro {
        margin: 26px auto -48vw;
        padding: 28px 25px;
    }

    .eh-testimonials-intro h3 {
        font-size: 32px;
    }

    .eh-testimonials-intro p {
        font-size: 20px;
    }

    .eh-reviews {
        padding-top: 52vw;
    }

    .eh-real-people {
        padding: 36px 0;
    }

    .eh-real-people-card {
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .eh-real-people-card h2 {
        font-size: 36px;
    }

    .eh-real-people-card h4 {
        font-size: 20px;
    }

    .eh-real-people-card p {
        font-size: 20px;
    }

    .eh-footer-main {
        padding: 38px 0;
    }

    .eh-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eh-footer-bottom p {
        font-size: 16px;
        line-height: 1.4;
    }
}
