/* Ezy Bites landing — Figma frame 736:846 */

.eb-landing {
    --eb-nav: #004d2c;
    --eb-accent: #4caf50;
    --eb-active: #4bdd80;
    --eb-footer: #002b19;
    --eb-footer-heading: #72fe88;
    --eb-why-bg: #f9fafb;
    --eb-app-bg: #f1f8f1;
    --eb-newsletter-bg: #f3f4f6;
    --eb-text: #111827;
    --eb-text-2: #1f2937;
    --eb-muted: #6b7280;
    --eb-muted-2: #4b5563;
    --eb-gray-100: #f3f4f6;
    --eb-gray-200: #e5e7eb;
    --eb-green-50: #f0fdf4;
    --eb-font: Inter, system-ui, -apple-system, sans-serif;
}

body.eb-landing {
    font-family: var(--eb-font);
    margin: 0;
    color: var(--eb-text);
    background: #fff;
}

body.eb-landing #landing-loader {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Neutralize old header/footer styles */
body.eb-landing > header,
body.eb-landing .header-wrapper,
body.eb-landing .footer-bg,
body.eb-landing .newsletter-section {
    all: unset;
}

body.eb-landing a {
    text-decoration: none;
}

body.eb-landing .eb-nav__link {
    color: #fff !important;
}

body.eb-landing .eb-nav__link.active,
body.eb-landing .eb-nav__link:hover {
    color: var(--eb-active) !important;
}

body.eb-landing .eb-nav__phone,
body.eb-landing .eb-nav__name {
    color: #fff !important;
}

body.eb-landing img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.eb-landing ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-accent {
    color: var(--eb-accent);
}

.eb-label {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--eb-accent);
}

.eb-label--dark {
    color: var(--eb-nav);
}

/* Buttons */
.eb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.eb-btn:hover {
    opacity: 0.92;
}

.eb-btn--primary {
    background: var(--eb-accent);
    color: #fff;
    padding: 17.5px 32px 18.5px;
}

.eb-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15.5px 34px 16.5px;
}

.eb-btn--dark {
    background: var(--eb-nav);
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 24px;
}

.eb-btn--sm {
    font-weight: 400;
    font-size: 16px;
    padding: 8px 24px;
}

/* ========== NAV ========== */
.eb-nav {
    background: var(--eb-nav);
    padding: 16px 32px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.eb-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.eb-nav__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.eb-nav__logo {
    width: 37px;
    height: 36px;
    object-fit: contain;
}

.eb-nav__name {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.36px;
    white-space: nowrap;
}

.eb-nav__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}

.eb-nav__links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.eb-nav__link {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.eb-nav__link.active,
.eb-nav__link:hover {
    color: var(--eb-active);
}

.eb-nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.eb-nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.eb-nav__phone img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.eb-nav__cta {
    background: var(--eb-accent);
    color: #fff !important;
    font-size: 14px;
    border-radius: 99px;
    padding: 6px 12px;
    white-space: nowrap;
}

.eb-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}

.eb-nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}

/* ========== HERO ========== */
.eb-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 50% 128px 32px;
    background-color: var(--eb-nav);
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        var(--eb-hero-bg);
    background-size: cover;
    background-position: center right;
    box-sizing: border-box;
    min-height: 640px;
}

.eb-hero__content {
    position: relative;
    z-index: 1;
    max-width: 584px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eb-hero__title {
    margin: 0;
    color: #fff;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -1.8px;
    line-height: 1.05;
}

.eb-hero__accent {
    color: var(--eb-accent);
}

.eb-hero__subtitle {
    margin: 0;
    max-width: 512px;
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.eb-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
}

.eb-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 4px 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.eb-chip img {
    width: auto;
    height: 14px;
    object-fit: contain;
}

.eb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.eb-hero__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
}

.eb-hero__trust-text {
    margin: 0;
    color: #d1d5db;
    font-size: 14px;
}

.eb-hero__trust-text strong {
    color: #fff;
    font-weight: 700;
}

.eb-hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.eb-avatars {
    display: flex;
    align-items: center;
}

.eb-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid var(--eb-nav);
    object-fit: cover;
    margin-right: -12px;
}

.eb-avatars img:last-child {
    margin-right: 0;
}

.eb-hero__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
    font-size: 12px;
}

.eb-hero__rating img {
    height: 16px;
    width: auto;
}

/* ========== STATS ========== */
.eb-stats {
    background: #fff;
    border-bottom: 1px solid var(--eb-gray-100);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 32px 16px 33px;
}

.eb-stats__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.eb-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
    text-align: center;
}

.eb-stats__item img {
    height: 30px;
    width: auto;
    margin-bottom: 4px;
}

.eb-stats__item strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--eb-text-2);
    line-height: 1;
}

.eb-stats__item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--eb-muted);
}

/* ========== WHY ========== */
.eb-why {
    background: var(--eb-why-bg);
    padding: 40px 24px;
}

.eb-why__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.eb-why__copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    min-width: 0;
}

.eb-why__title {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    color: var(--eb-text);
    line-height: 1.2;
}

.eb-why__body {
    margin: 0;
    font-size: 18px;
    color: var(--eb-muted-2);
    line-height: 1.5;
}

.eb-why__cards {
    display: flex;
    gap: 20px;
    width: 800px;
    max-width: 100%;
    flex-shrink: 0;
}

.eb-why-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}

.eb-why-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: var(--eb-green-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-why-card__icon img {
    max-width: 30px;
    max-height: 24px;
    object-fit: contain;
}

.eb-why-card h3 {
    margin: 8px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--eb-text-2);
    line-height: 1.25;
}

.eb-why-card p {
    margin: 0;
    font-size: 14px;
    color: var(--eb-muted);
    line-height: 1.4;
}

/* ========== PARTNERS ========== */
.eb-partners {
    background: #fff;
    padding: 80px 16px;
}

.eb-partners__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.eb-partner-card {
    position: relative;
    flex: 1 1 320px;
    max-width: 395px;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--eb-nav);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.eb-partner-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

.eb-partner-card__overlay {
    position: absolute;
    inset: 0;
}

.eb-partner-card__overlay--dark {
    background: rgba(0, 0, 0, 0.4);
}

.eb-partner-card__overlay--green {
    background: rgba(20, 83, 45, 0.6);
}

.eb-partner-card__body {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 400px;
    justify-content: flex-end;
    box-sizing: border-box;
}

.eb-partner-card__label {
    margin: 0 0 8px;
    color: var(--eb-accent);
    font-size: 16px;
    font-weight: 500;
}

.eb-partner-card h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.eb-partner-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.eb-partner-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.eb-partner-card li img {
    width: 12px;
    height: 9px;
    flex-shrink: 0;
}

.eb-partner-card .eb-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ========== APP ========== */
.eb-app {
    background: var(--eb-app-bg);
    padding: 20px;
}

.eb-app__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.eb-app__copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.eb-app__copy h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    color: var(--eb-text);
    line-height: 1.2;
}

.eb-app__body {
    margin: 0;
    max-width: 512px;
    font-size: 18px;
    color: var(--eb-muted-2);
    line-height: 1.45;
}

.eb-app__downloads {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.eb-app__badges {
    display: flex;
    align-items: center;
    gap: 6px;
}

.eb-app__badges img {
    height: 40px;
    width: auto;
}

.eb-app__qr {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-left: 16px;
    color: var(--eb-muted);
    font-size: 14px;
    font-weight: 500;
}

.eb-app__qr-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--eb-gray-200);
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    box-sizing: border-box;
}

.eb-app__qr-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.eb-app__media {
    flex: 1;
    max-width: 672px;
}

.eb-app__media img {
    width: 100%;
    height: auto;
}

/* ========== STEPS ========== */
.eb-steps {
    background: #fff;
    padding: 80px 32px;
}

.eb-steps__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.eb-steps__left {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-width: 0;
}

.eb-steps__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eb-steps__heading h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    color: var(--eb-text);
}

.eb-steps__cards {
    display: flex;
    gap: 24px;
}

.eb-step-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--eb-gray-100);
    border-radius: 16px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.eb-step-card__media {
    position: relative;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-step-card__media > img {
    max-height: 160px;
    width: auto;
    max-width: 55%;
    object-fit: contain;
    margin: 0 auto;
}

.eb-step-card__num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: var(--eb-nav);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-step-card h3 {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--eb-text);
}

.eb-step-card p {
    margin: 0;
    font-size: 14px;
    color: var(--eb-muted);
    line-height: 1.4;
}

.eb-steps__right {
    flex: 0 0 30%;
    max-width: 390px;
}

.eb-steps__right img {
    width: 100%;
    border-radius: 24px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ========== TESTIMONIALS ========== */
.eb-testimonials {
    background: var(--eb-nav);
    padding: 80px 16px;
}

.eb-testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.eb-testimonials__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.eb-testimonials__heading h2 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 400;
}

.eb-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eb-testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eb-testimonial__stars {
    display: flex;
    gap: 2px;
}

.eb-testimonial__stars img {
    width: 17px;
    height: 16px;
}

.eb-testimonial__quote {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    color: #374151;
    line-height: 1.45;
}

.eb-testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}

.eb-testimonial__author img {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    object-fit: cover;
}

.eb-testimonial__author strong {
    display: block;
    font-size: 16px;
    color: var(--eb-text);
}

.eb-testimonial__author span {
    font-size: 14px;
    color: var(--eb-muted);
}

/* ========== NEWSLETTER ========== */
.eb-newsletter {
    background: var(--eb-newsletter-bg);
    padding: 48px 144px;
    box-sizing: border-box;
}

.eb-newsletter__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.eb-newsletter__card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 40px;
}

.eb-newsletter__intro {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.eb-newsletter__icon {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: var(--eb-green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eb-newsletter__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--eb-text);
}

.eb-newsletter__sub {
    margin: 4px 0 0;
    font-size: 16px;
    color: var(--eb-muted);
}

.eb-newsletter__form {
    flex: 1;
    min-width: 0;
}

.eb-newsletter__field {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1px solid var(--eb-gray-200);
    border-radius: 9999px;
    padding: 8px 8px 8px 25px;
    gap: 12px;
}

.eb-newsletter__field input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: var(--eb-text);
    min-width: 0;
    padding: 8px 0;
}

.eb-newsletter__field input::placeholder {
    color: var(--eb-muted);
}

.eb-newsletter__btn {
    background: var(--eb-accent);
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 8.5px 24px 9.5px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.eb-newsletter__btn:hover {
    opacity: 0.92;
}

/* ========== FOOTER ========== */
.eb-footer {
    position: relative;
    background: var(--eb-footer);
    padding: 80px 64px;
    color: #fff;
    box-sizing: border-box;
}

.eb-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.eb-footer__grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.eb-footer__brand {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.eb-footer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eb-footer__logo-wrap img {
    width: 32px;
    height: 32px;
}

.eb-footer__logo-wrap span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #fff;
}

.eb-footer__tagline {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    max-width: 280px;
}

.eb-footer__social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.eb-footer__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.eb-footer__social-btn img {
    width: 24px;
    height: 24px;
}

.eb-footer__cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.eb-footer__col-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.eb-footer__heading {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    color: var(--eb-footer-heading);
}

.eb-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eb-footer__col a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
}

.eb-footer__col a:hover {
    opacity: 1;
}

.eb-footer__col--contact {
    width: 245px;
    max-width: 100%;
}

.eb-footer__contact a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    opacity: 0.7;
}

.eb-footer__contact img {
    margin-top: 3px;
    flex-shrink: 0;
    width: 10px;
    height: auto;
}

.eb-footer__bottom {
    margin-top: 48px;
    padding-top: 33px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.eb-footer__copy {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.5;
}

.eb-footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.eb-footer__payments > span:first-child {
    opacity: 0.6;
    margin-right: 12px;
}

.eb-footer__pay {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
}

.eb-footer__legal {
    display: flex;
    gap: 24px;
}

.eb-footer__legal a {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.5;
    color: #fff;
}

.eb-footer__legal a:hover {
    opacity: 1;
}

.eb-fab {
    position: fixed;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    overflow: hidden;
}

.eb-fab--top {
    right: 24px;
    bottom: 24px;
}

.eb-fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .eb-why__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .eb-why__cards {
        width: 100%;
    }

    .eb-steps__inner {
        flex-direction: column;
    }

    .eb-steps__right {
        max-width: 100%;
        width: 100%;
    }

    .eb-newsletter {
        padding: 48px 48px;
    }

    .eb-nav__links {
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .eb-nav {
        position: sticky;
    }

    .eb-nav__inner {
        position: relative;
        flex-wrap: wrap;
    }

    .eb-nav__toggle {
        display: flex;
    }

    .eb-nav__menu {
        display: none;
        position: absolute;
        left: -32px;
        right: -32px;
        top: calc(100% + 16px);
        background: var(--eb-nav);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        gap: 20px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        width: auto;
    }

    .eb-nav__menu.is-open {
        display: flex;
    }

    .eb-nav__links {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        gap: 14px;
    }

    .eb-nav__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .eb-hero {
        padding: 100px 24px 80px;
        background-position: center;
    }

    .eb-hero__title {
        font-size: 48px;
        letter-spacing: -1px;
    }

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

    .eb-why__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .eb-app__inner {
        flex-direction: column;
    }

    .eb-app__copy h2 {
        font-size: 36px;
    }

    .eb-steps__cards {
        flex-direction: column;
    }

    .eb-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .eb-newsletter__card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .eb-footer {
        padding: 64px 32px;
    }

    .eb-footer__grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .eb-nav {
        padding: 12px 16px;
    }

    .eb-nav__name {
        font-size: 22px;
    }

    .eb-hero {
        padding: 72px 16px 64px;
        min-height: 0;
    }

    .eb-hero__title {
        font-size: 36px;
    }

    .eb-hero__subtitle {
        font-size: 16px;
    }

    .eb-hero__subtitle br,
    .eb-app__body br,
    .eb-testimonial__quote br,
    .eb-why-card h3 br,
    .eb-why-card p br,
    .eb-step-card p br,
    .eb-partner-card h3 br {
        display: none;
    }

    .eb-btn {
        font-size: 16px;
    }

    .eb-btn--primary,
    .eb-btn--outline {
        padding: 14px 24px;
    }

    .eb-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .eb-why {
        padding: 32px 16px;
    }

    .eb-why__cards {
        grid-template-columns: 1fr;
    }

    .eb-why__title,
    .eb-steps__heading h2,
    .eb-testimonials__heading h2 {
        font-size: 28px;
    }

    .eb-partners {
        padding: 48px 16px;
    }

    .eb-steps {
        padding: 48px 16px;
    }

    .eb-newsletter {
        padding: 32px 16px;
    }

    .eb-newsletter__card {
        padding: 24px;
    }

    .eb-newsletter__field {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        align-items: stretch;
    }

    .eb-newsletter__btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .eb-footer {
        padding: 48px 16px;
    }

    .eb-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .eb-fab--top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}

/* =========================================================
   Multi-page interiors (services / features / partners /
   franchise / about / contact) — append only, keep home intact
   ========================================================= */

.eb-page {
    background: #f8faf5;
    color: #191c19;
}

.eb-page__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.96px;
    color: #00341c;
    text-align: center;
}

.eb-page__title--left {
    text-align: left;
}

.eb-page__subtitle {
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    color: #707971;
    text-align: center;
    max-width: 672px;
}

.eb-page__subtitle--left {
    text-align: left;
    color: #404942;
}

.eb-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 32px;
    border-radius: 8px;
    background: #006e28;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.28px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.eb-page__cta:hover {
    background: #005820;
    color: #fff !important;
}

/* ---------- Services ---------- */
.eb-services__hero {
    padding: 80px 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eb-services__hero .eb-page__subtitle {
    color: #707971;
}

.eb-services__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0 64px 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.eb-services__card {
    flex: 1 1 280px;
    max-width: 341px;
    background: #fff;
    border: 1px solid #e1e3de;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.eb-services__card-media {
    height: 191px;
    overflow: hidden;
    background: #ecefe9;
}

.eb-services__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-services__card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.eb-services__card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #00341c;
}

.eb-services__card-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #707971;
    flex: 1;
}

.eb-services__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 8px;
    padding: 12px 32px;
    border-radius: 8px;
    background: #006e28;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
}

.eb-services__btn:hover {
    background: #005820;
}

.eb-services__banner {
    padding: 0 64px 80px;
    display: flex;
    justify-content: center;
}

.eb-services__banner-inner {
    width: 100%;
    max-width: 1072px;
    background: #002b19;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.eb-services__banner-copy h2 {
    margin: 0 0 24px;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    max-width: 420px;
    line-height: 1.25;
}

.eb-services__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eb-services__badges img {
    height: 48px;
    width: auto;
}

.eb-services__banner-media {
    flex: 0 1 360px;
}

.eb-services__banner-media img {
    width: 100%;
    height: auto;
}

/* ---------- Features ---------- */
.eb-features__hero {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.eb-features__hero .eb-page__subtitle {
    color: #404942;
}

.eb-features__why {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.eb-features__why-item {
    flex: 1 1 140px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
}

.eb-features__why-icon {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: #ecefe9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-features__why-item h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    color: #191c19;
}

.eb-features__why-item p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #404942;
}

.eb-features__tech {
    margin: 0 40px;
    background: #00341c;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.eb-features__tech-copy {
    flex: 1 1 320px;
}

.eb-features__tech-copy h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.36px;
}

.eb-features__tech-sub {
    margin: 7px 0 20px;
    font-size: 16px;
}

.eb-features__tech-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eb-features__tech-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.eb-features__tech-media {
    flex: 1 1 360px;
    max-width: 464px;
}

.eb-features__tech-media img {
    width: 100%;
    height: auto;
}

.eb-features__trust {
    margin: 0 40px;
    padding: 80px 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.eb-features__trust-card {
    flex: 1 1 220px;
    background: #f2f4ef;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.eb-features__trust-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    color: #191c19;
}

.eb-features__trust-card p {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 500;
    color: #404942;
}

/* ---------- Partners ---------- */
.eb-partners-page__hero {
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.eb-partners-page__hero .eb-page__subtitle {
    color: #404942;
}

.eb-partners-page__tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px;
    background: #f2f4ef;
    border: 1px solid rgba(191, 201, 191, 0.3);
    border-radius: 9999px;
}

.eb-partners-page__tab {
    border: none;
    background: transparent;
    border-radius: 9999px;
    padding: 12px 32px;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.28px;
    color: #404942;
    cursor: pointer;
}

.eb-partners-page__tab.is-active {
    background: #fff;
    color: #00341c;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.eb-partners-page__panel {
    padding: 40px 40px 80px;
}

.eb-partners-page__split {
    display: flex;
    align-items: center;
    gap: 25px;
}

.eb-partners-page__copy {
    flex: 0 1 524px;
}

.eb-partners-page__eyebrow {
    margin: 0 0 11px;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #006e28;
}

.eb-partners-page__copy h2 {
    margin: 0 0 30px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.36px;
    color: #00341c;
    line-height: 1.2;
}

.eb-partners-page__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.eb-partners-page__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #191c19;
}

.eb-partners-page__media {
    flex: 1 1 420px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #ecefe9;
}

.eb-partners-page__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-partners-page__stats {
    padding: 0 40px 80px;
}

.eb-partners-page__stats-inner {
    background: #f2f4ef;
    border: 1px solid rgba(191, 201, 191, 0.2);
    border-radius: 24px;
    padding: 33px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.eb-partners-page__stat {
    flex: 1 1 160px;
    text-align: center;
}

.eb-partners-page__stat strong {
    display: block;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.96px;
    color: #00341c;
}

.eb-partners-page__stat span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #404942;
}

/* ---------- Franchise ---------- */
.eb-franchise {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.eb-franchise__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.eb-franchise__intro .eb-page__subtitle {
    color: #404942;
}

.eb-franchise__split {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.eb-franchise__split-media {
    flex: 1 1 50%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    background: #ecefe9;
}

.eb-franchise__split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-franchise__why {
    flex: 1 1 50%;
    padding: 10px 0 10px 20px;
}

.eb-franchise__why h2 {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.36px;
    color: #006e28;
    line-height: 1.2;
}

.eb-franchise__why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eb-franchise__why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #191c19;
}

.eb-franchise__highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.eb-franchise__card {
    flex: 1 1 200px;
    background: #f4f7f5;
    border: 1px solid #bfc9bf;
    border-radius: 12px;
    padding: 33px;
}

.eb-franchise__card-icon {
    margin-bottom: 9px;
}

.eb-franchise__card-label {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #00341c;
}

.eb-franchise__card h3 {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 400;
    color: #404942;
}

.eb-franchise__steps h2 {
    margin: 0 0 60px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.36px;
    color: #00341c;
}

.eb-franchise__steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.eb-franchise__step {
    flex: 1 1 140px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.eb-franchise__step-num {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: #006e28;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.eb-franchise__step h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #191c19;
}

.eb-franchise__step p {
    margin: 0;
    font-size: 16px;
    color: #404942;
}

.eb-franchise__steps-cta {
    margin-top: 48px;
    text-align: center;
}

/* ---------- About ---------- */
.eb-about__hero {
    padding: 80px 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eb-about__hero .eb-page__subtitle {
    color: #404942;
}

.eb-about__cms {
    padding: 0 64px 80px;
}

.eb-about__cms-inner {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e1e3de;
    border-radius: 24px;
    padding: 48px;
    color: #404942;
    line-height: 1.6;
    font-size: 16px;
}

.eb-about__cms-inner h1,
.eb-about__cms-inner h2,
.eb-about__cms-inner h3 {
    color: #00341c;
}

.eb-about__story {
    padding: 40px 64px 80px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.eb-about__story-copy {
    flex: 1 1 480px;
}

.eb-about__eyebrow {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #006e28;
    font-weight: 600;
}

.eb-about__story-copy h2 {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 700;
    color: #00341c;
}

.eb-about__story-copy p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #404942;
}

.eb-about__story-media {
    flex: 1 1 420px;
    border-radius: 24px;
    overflow: hidden;
    background: #ecefe9;
}

.eb-about__story-media img {
    width: 100%;
    height: auto;
    display: block;
}

.eb-about__values {
    padding: 0 64px 80px;
}

.eb-about__values-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.eb-about__values-head h2 {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 700;
    color: #00341c;
}

.eb-about__values-head p {
    margin: 0;
    font-size: 16px;
    color: #404942;
}

.eb-about__values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eb-about__value {
    background: #fff;
    border: 1px solid #e1e3de;
    border-radius: 24px;
    padding: 28px;
}

.eb-about__value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ecefe9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.eb-about__value h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #00341c;
}

.eb-about__value p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #404942;
}

.eb-about__journey {
    padding: 0 64px 80px;
}

.eb-about__journey-head {
    text-align: center;
    margin-bottom: 40px;
}

.eb-about__journey-head h2 {
    margin: 0 0 8px;
    font-size: 36px;
    font-weight: 700;
    color: #00341c;
}

.eb-about__journey-head p {
    margin: 0;
    color: #404942;
}

.eb-about__timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.eb-about__timeline-item {
    background: #f2f4ef;
    border-radius: 16px;
    padding: 24px;
}

.eb-about__year {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: #006e28;
}

.eb-about__timeline-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #00341c;
}

.eb-about__timeline-item p {
    margin: 0;
    font-size: 14px;
    color: #404942;
}

.eb-about__stats {
    margin: 0 64px 80px;
    padding: 40px;
    background: #00341c;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.eb-about__stat {
    flex: 1 1 140px;
    text-align: center;
    color: #fff;
}

.eb-about__stat strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.eb-about__stat span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.85;
}

/* ---------- Contact ---------- */
.eb-contact__hero {
    padding: 80px 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eb-contact__hero .eb-page__subtitle {
    color: #404942;
}

.eb-contact__grid {
    padding: 0 64px 64px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.eb-contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eb-contact__info-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #e1e3de;
    border-radius: 16px;
    padding: 24px;
}

.eb-contact__info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ecefe9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eb-contact__info-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #00341c;
}

.eb-contact__info-card a {
    color: #006e28 !important;
    font-weight: 600;
}

.eb-contact__info-card p,
.eb-contact__address,
.eb-contact__hours {
    margin: 6px 0 0;
    font-size: 14px;
    color: #404942;
    line-height: 1.45;
}

.eb-contact__form-wrap {
    background: #fff;
    border: 1px solid #e1e3de;
    border-radius: 24px;
    padding: 32px;
}

.eb-contact__form-wrap h2 {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 700;
    color: #00341c;
}

.eb-contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eb-contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eb-contact__field span {
    font-size: 14px;
    font-weight: 500;
    color: #191c19;
}

.eb-contact__field input,
.eb-contact__field textarea {
    width: 100%;
    border: 1px solid #e1e3de;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    color: #191c19;
    background: #f8faf5;
}

.eb-contact__field input:focus,
.eb-contact__field textarea:focus {
    outline: 2px solid rgba(0, 110, 40, 0.25);
    border-color: #006e28;
}

.eb-contact__captcha {
    margin-top: 4px;
}

.eb-contact__submit {
    width: 100%;
    margin-top: 8px;
}

.eb-contact__map {
    margin: 0 64px 80px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    background: #ecefe9;
}

.eb-contact__map-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.eb-contact__map-card {
    position: absolute;
    left: 32px;
    bottom: 32px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    max-width: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.eb-contact__map-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #00341c;
}

.eb-contact__map-card p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #404942;
}

.eb-contact__directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #006e28 !important;
    font-weight: 600;
    font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .eb-page__title {
        font-size: 36px;
    }

    .eb-services__hero,
    .eb-features__hero,
    .eb-partners-page__hero,
    .eb-about__hero,
    .eb-contact__hero {
        padding: 48px 24px 24px;
    }

    .eb-services__cards,
    .eb-services__banner,
    .eb-features__tech,
    .eb-features__trust,
    .eb-partners-page__panel,
    .eb-partners-page__stats,
    .eb-about__story,
    .eb-about__values,
    .eb-about__journey,
    .eb-about__stats,
    .eb-about__cms,
    .eb-contact__grid,
    .eb-contact__map {
        margin-left: 24px;
        margin-right: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .eb-franchise {
        padding: 48px 24px;
        gap: 48px;
    }

    .eb-services__banner-inner,
    .eb-features__tech,
    .eb-partners-page__split,
    .eb-franchise__split,
    .eb-about__story,
    .eb-contact__grid {
        flex-direction: column;
        display: flex;
    }

    .eb-contact__grid {
        display: flex;
        flex-direction: column;
    }

    .eb-about__values-grid,
    .eb-about__timeline {
        grid-template-columns: 1fr 1fr;
    }

    .eb-services__banner-inner {
        padding: 32px;
    }

    .eb-features__tech {
        margin: 0 24px;
        padding: 32px;
    }

    .eb-features__trust {
        margin: 0 24px;
        padding: 48px 0;
    }
}

@media (max-width: 640px) {
    .eb-page__title {
        font-size: 28px;
    }

    .eb-page__subtitle {
        font-size: 16px;
    }

    .eb-services__cards {
        padding: 0 16px 40px;
    }

    .eb-services__banner {
        padding: 0 16px 48px;
    }

    .eb-about__values-grid,
    .eb-about__timeline {
        grid-template-columns: 1fr;
    }

    .eb-contact__map-card {
        position: static;
        margin: 16px;
        max-width: none;
    }

    .eb-partners-page__tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .eb-franchise__why {
        padding-left: 0;
    }

    .eb-franchise__why h2,
    .eb-partners-page__copy h2,
    .eb-features__tech-copy h2,
    .eb-about__story-copy h2 {
        font-size: 28px;
    }
}
