
        :root {
            --hm-primary: #f76652;
            --hm-primary-dark: #df533f;
            --hm-dark: #20212d;
            --hm-dark-soft: #2c3140;
            --hm-text: #5f6679;
            --hm-muted: #7a8294;
            --hm-bg: #fffdfb;
            --hm-surface: #ffffff;
            --hm-surface-soft: #fff7f3;
            --hm-border: rgba(247, 102, 82, 0.14);
            --hm-shadow: 0 22px 60px rgba(32, 33, 45, 0.10);
            --hm-shadow-soft: 0 14px 38px rgba(32, 33, 45, 0.07);
            --hm-radius-xl: 32px;
            --hm-radius-lg: 24px;
            --hm-radius-md: 18px;
            --hm-container: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--hm-bg);
            color: var(--hm-text);
            overflow-x: hidden;
            font-family: var(--e-global-typography-text-font-family);
        }

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

        a,
        button,
        input {
            transition: all .22s ease;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(247, 102, 82, .35);
            outline-offset: 3px;
        }

        .hm-container {
            width: min(var(--hm-container), calc(100% - 32px));
            margin-inline: auto;
        }

        .hm-header.header.shd {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .94);
            border-bottom: 1px solid rgba(247, 102, 82, .10);
            box-shadow: 0 8px 30px rgba(32, 33, 45, .04);
            backdrop-filter: blur(16px);
        }

        .hm-header .navbar {
            padding-block: 16px;
        }

        .hm-header .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .hm-header .navbar-brand img {
            width: auto;
            height: 44px;
        }

        .hm-header .navbar-nav .nav-link,
        .hm-header.navbar-light .navbar-nav .nav-link {
            color: var(--hm-dark);
            font-weight: 700;
            letter-spacing: -.01em;
        }

        .hm-header .navbar-nav .nav-link:hover,
        .hm-header .navbar-nav .nav-link:focus {
            color: var(--hm-primary);
        }

        .hm-btn,
        .btn-default,
        .submit-btn .sbmt-btn,
        .hm-search__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 52px;
            padding: 0 22px;
            border: 1px solid var(--hm-primary);
            border-radius: 999px;
            background: var(--hm-primary);
            color: #fff !important;
            font-weight: 800;
            line-height: 1;
            box-shadow: 0 12px 26px rgba(247, 102, 82, .28);
        }

        .hm-btn:hover,
        .btn-default:hover,
        .submit-btn .sbmt-btn:hover,
        .hm-search__button:hover {
            transform: translateY(-1px);
            border-color: var(--hm-primary-dark);
            background: var(--hm-primary-dark);
            color: #fff !important;
            box-shadow: 0 16px 32px rgba(247, 102, 82, .32);
        }

        .hm-btn--ghost {
            border-color: rgba(32, 33, 45, .12);
            background: #fff;
            color: var(--hm-dark) !important;
            box-shadow: none;
        }

        .hm-btn--ghost:hover {
            border-color: var(--hm-primary);
            background: rgba(247, 102, 82, .08);
            color: var(--hm-primary) !important;
            box-shadow: none;
        }

        .hm-hero {
            position: relative;
            overflow: hidden;
            padding: clamp(72px, 8vw, 112px) 0 34px;
            background:
                radial-gradient(circle at 12% 14%, rgba(247, 102, 82, .24), transparent 22%),
                radial-gradient(circle at 86% 18%, rgba(32, 33, 45, .13), transparent 24%),
                linear-gradient(135deg, #fff7f3 0%, #fffdfb 54%, #eef4f8 100%);
        }

        .hm-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(32, 33, 45, .045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(32, 33, 45, .045) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 92%);
            pointer-events: none;
        }

        .hm-hero__grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
            gap: clamp(20px, 3vw, 34px);
            align-items: stretch;
        }

        .hm-hero__content {
            min-height: auto;
            padding: clamp(12px, 1vw, 18px) 0;
        }

        .hm-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(247, 102, 82, .12);
            color: var(--hm-primary);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .hm-hero h1 {
            max-width: 780px;
            margin: 20px 0 18px;
            color: var(--hm-dark);
            font-family: var(--e-global-typography-primary-font-family);
            font-size: clamp(1.7rem, 2.7vw, 2.25rem);
            font-weight: var(--e-global-typography-primary-font-weight);
            text-transform: var(--e-global-typography-primary-text-transform);
            line-height: var(--e-global-typography-primary-line-height);
            letter-spacing: -.04em;
        }

        .hm-hero__lead {
            max-width: 690px;
            margin-bottom: 0;
            color: #4f586d;
            font-size: clamp(16px, 1.35vw, 18px);
            line-height: 1.78;
        }

        .hm-hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .hm-hero__stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 30px;
        }

        .hm-stat-card {
            min-height: 116px;
            padding: 20px;
            border: 1px solid rgba(247, 102, 82, .11);
            border-radius: 22px;
            background: #fff;
            box-shadow: 0 12px 30px rgba(32, 33, 45, .05);
        }

        .hm-stat-card strong {
            display: block;
            margin-bottom: 8px;
            color: var(--hm-dark);
            font-size: clamp(27px, 2.4vw, 36px);
            line-height: 1;
            letter-spacing: -.04em;
        }

        .hm-stat-card span {
            display: block;
            color: var(--hm-muted);
            font-weight: 700;
            line-height: 1.35;
        }

        .hm-hero__panel {
            position: relative;
            overflow: hidden;
            min-height: auto;
            padding: clamp(12px, 1vw, 18px) 0 0;
            background: transparent;
            color: var(--hm-dark);
        }

        .hm-hero__panel-inner {
            position: relative;
            z-index: 1;
            display: flex;
            min-height: 100%;
            flex-direction: column;
            justify-content: space-between;
            gap: 26px;
            padding-left: clamp(14px, 2vw, 22px);
            border-left: 1px solid rgba(32, 33, 45, .12);
        }

        .hm-hero__panel h2 {
            margin-bottom: 14px;
            color: var(--hm-dark);
            font-size: clamp(30px, 3vw, 44px);
            line-height: 1.02;
            letter-spacing: -.04em;
        }

        .hm-hero__panel p {
            margin-bottom: 0;
            color: var(--hm-text);
            line-height: 1.78;
        }

        .hm-hero__mini-grid {
            display: grid;
            gap: 12px;
        }

        .hm-mini-card {
            padding: 0 0 0 16px;
            border-left: 3px solid rgba(247, 102, 82, .55);
            border-radius: 0;
            background: transparent;
        }

        .hm-mini-card strong {
            display: block;
            margin-bottom: 7px;
            color: var(--hm-dark);
            font-size: 17px;
        }

        .hm-search-wrap {
            position: relative;
            z-index: 4;
            margin-top: -34px;
            padding-bottom: 34px;
        }

        .hm-search {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 12px;
            align-items: center;
            padding: 16px;
            border: 1px solid rgba(247, 102, 82, .10);
            border-radius: 26px;
            background: #fff;
            box-shadow: var(--hm-shadow);
        }

        .hm-search__input {
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 60px;
            border: 1px solid rgba(32, 33, 45, .10);
            border-radius: 18px;
            background: #fff;
            color: var(--hm-dark);
        }

        .hm-search__input {
            padding: 0 18px;
            font-weight: 700;
        }

        .hm-search__input::placeholder {
            color: #98a0af;
            font-weight: 600;
        }

        .hm-search__button {
            width: 100%;
            min-height: 60px;
            border-radius: 18px;
            box-shadow: none;
            cursor: pointer;
        }

        .hm-section {
            padding: clamp(48px, 7vw, 92px) 0;
        }

        .hm-section--compact {
            padding: clamp(28px, 5vw, 54px) 0;
        }

        .hm-heading {
            max-width: 720px;
            margin: 0 auto 30px;
            text-align: center;
        }

        .hm-heading span {
            display: inline-block;
            margin-bottom: 10px;
            color: var(--hm-primary);
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .hm-heading h2 {
            margin-bottom: 12px;
            color: var(--hm-dark);
            font-family: var(--e-global-typography-secondary-font-family);
            font-size: clamp(1.85rem, 3vw, var(--e-global-typography-secondary-font-size));
            font-weight: var(--e-global-typography-secondary-font-weight);
            text-transform: var(--e-global-typography-secondary-text-transform);
            line-height: var(--e-global-typography-secondary-line-height);
            letter-spacing: -.03em;
        }

        .hm-heading p {
            margin-bottom: 0;
            color: var(--hm-text);
            line-height: 1.8;
        }

        .hm-benefits {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .hm-benefit {
            position: relative;
            overflow: hidden;
            min-height: 222px;
            padding: 26px;
            border: 1px solid rgba(247, 102, 82, .12);
            border-radius: var(--hm-radius-lg);
            background: #fff;
            box-shadow: var(--hm-shadow-soft);
        }

        .hm-benefit::after {
            content: "";
            position: absolute;
            right: -46px;
            bottom: -46px;
            width: 132px;
            height: 132px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(247, 102, 82, .16), transparent 68%);
        }

        .hm-benefit__icon {
            display: grid;
            width: 46px;
            height: 46px;
            margin-bottom: 18px;
            place-items: center;
            border-radius: 16px;
            background: rgba(247, 102, 82, .12);
            color: var(--hm-primary);
            font-size: 22px;
        }

        .hm-benefit strong {
            display: block;
            margin-bottom: 10px;
            color: var(--hm-dark);
            font-size: 21px;
            line-height: 1.2;
        }

        .hm-benefit p {
            position: relative;
            z-index: 1;
            margin-bottom: 0;
            color: var(--hm-text);
            line-height: 1.75;
        }

        .hm-info-band {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
            gap: 24px;
            align-items: center;
            margin-top: 34px;
            padding: clamp(26px, 4vw, 42px);
            border: 1px solid rgba(247, 102, 82, .13);
            border-radius: var(--hm-radius-xl);
            background:
                radial-gradient(circle at top right, rgba(247, 102, 82, .12), transparent 24%),
                linear-gradient(135deg, #fff8f4 0%, #ffffff 58%, #f5f8fb 100%);
            box-shadow: var(--hm-shadow-soft);
        }

        .hm-info-band h3 {
            margin-bottom: 12px;
            color: var(--hm-dark);
            font-size: clamp(28px, 3.4vw, 44px);
            line-height: 1.05;
            letter-spacing: -.04em;
        }

        .hm-info-band p {
            margin-bottom: 0;
            color: var(--hm-text);
            line-height: 1.82;
        }

        .hm-info-band__stats {
            display: grid;
            gap: 14px;
        }

        .hm-dark-card {
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(32, 33, 45, .98), rgba(32, 33, 45, .91));
        }

        .hm-dark-card strong {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 27px;
            line-height: 1.1;
        }

        .hm-dark-card span {
            display: block;
            color: rgba(255, 255, 255, .76);
            line-height: 1.72;
        }

        .hm-alert-note {
            margin: 28px 0 30px;
            padding: 24px 26px;
            border: 1px solid rgba(247, 102, 82, .12);
            border-radius: var(--hm-radius-lg);
            background: linear-gradient(135deg, rgba(247, 102, 82, .08), rgba(255, 255, 255, .96));
        }

        .hm-alert-note h3 {
            margin-bottom: 8px;
            color: var(--hm-dark);
            font-size: clamp(23px, 2.4vw, 32px);
            line-height: 1.12;
        }

        .hm-alert-note p {
            margin-bottom: 0;
            line-height: 1.78;
        }

        .hm-card-grid,
        .hm-product-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .hm-agency-card,
        .hm-product-card {
            display: flex;
            min-height: 100%;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(247, 102, 82, .10);
            border-radius: var(--hm-radius-lg);
            background: #fff;
            box-shadow: var(--hm-shadow-soft);
        }

        .hm-agency-card:hover,
        .hm-product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 54px rgba(32, 33, 45, .10);
        }

        .hm-agency-card__media {
            position: relative;
            display: grid;
            min-height: 220px;
            place-items: center;
            overflow: hidden;
            isolation: isolate;
            background:
                radial-gradient(circle at 50% 42%, rgba(247, 102, 82, .12), transparent 58%),
                linear-gradient(145deg, #fffaf8 0%, #f5f8fb 100%);
        }

        .hm-agency-card__media::after {
            position: absolute;
            z-index: 1;
            inset: 0;
            background: rgba(255, 255, 255, .16);
            content: '';
            pointer-events: none;
        }

        .hm-agency-card__media-image {
            position: absolute;
            z-index: 2;
            display: block;
            inset: 0;
            width: 100%;
            max-width: none;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hm-agency-card__badges {
            position: absolute;
            z-index: 3;
            left: 16px;
            right: 16px;
            bottom: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: space-between;
        }

        .hm-badge {
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            min-height: 34px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(32, 33, 45, .90);
            color: #fff;
            font-size: 12px;
            font-weight: 900;
            line-height: 1;
            white-space: nowrap;
        }

        .hm-badge--primary {
            background: var(--hm-primary);
        }

        .hm-agency-card__body,
        .hm-product-card__body {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 22px;
        }

        .hm-agency-card h3,
        .hm-product-card h3 {
            margin-bottom: 9px;
            color: var(--hm-dark);
            font-family: var(--e-global-typography-06a1534-font-family);
            font-size: clamp(1.05rem, 1.2vw, 1.25rem);
            font-weight: var(--e-global-typography-06a1534-font-weight);
            line-height: var(--e-global-typography-06a1534-line-height);
            letter-spacing: -.01em;
        }

        .hm-agency-card h3 a {
            color: inherit;
        }

        .hm-agency-card h3 a:hover {
            color: var(--hm-primary);
        }

        .hm-agency-card__location {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            color: var(--hm-muted);
            font-weight: 700;
            line-height: 1.55;
        }

        .hm-chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: auto 0 0;
            padding: 0;
            list-style: none;
        }

        .hm-chip-list li {
            padding: 8px 10px;
            border: 1px solid rgba(32, 33, 45, .08);
            border-radius: 999px;
            background: #fffaf7;
            color: #596277;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
        }

        .hm-agency-card__footer {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 16px 22px 22px;
        }

        .hm-link-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-height: 34px;
            padding: 8px 12px;
            border: 1px solid rgba(247, 102, 82, .14);
            border-radius: 999px;
            background: #fff7f2;
            color: var(--hm-primary);
            font-weight: 900;
            font-size: 12px;
        }

        .hm-link-action__icon {
            font-size: .9rem;
            line-height: 1;
        }

        .hm-link-action--primary {
            background: var(--hm-primary);
            border-color: var(--hm-primary);
            color: #fff;
        }

        .hm-link-action--icon-only {
            width: 34px;
            min-width: 34px;
            padding: 8px;
            color: #000;
            border-color: #000;
        }

        .hm-link-action--button {
            cursor: pointer;
        }

        .hm-link-action:hover {
            background: var(--hm-primary);
            border-color: var(--hm-primary);
            color: #fff;
        }

        .hm-empty-state {
            padding: 46px 28px;
            border: 1px solid rgba(247, 102, 82, .10);
            border-radius: var(--hm-radius-lg);
            background: #fff;
            text-align: center;
            box-shadow: var(--hm-shadow-soft);
        }

        .hm-empty-state h3 {
            margin-bottom: 8px;
            color: var(--hm-dark);
        }

        .hm-product-card {
            padding: 0;
        }

        .hm-product-card__body {
            gap: 14px;
        }

        .hm-product-card__price {
            color: var(--hm-dark);
            font-size: clamp(30px, 3vw, 42px);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.05em;
        }

        .hm-product-card__list {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hm-product-card__list li {
            position: relative;
            padding-left: 25px;
            color: var(--hm-text);
            line-height: 1.55;
        }

        .hm-product-card__list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--hm-primary);
            font-weight: 900;
        }

        .hm-product-card .hm-btn {
            margin-top: auto;
        }

        .hm-capabilities {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 14px;
        }

        .hm-capability {
            display: grid;
            min-height: 92px;
            place-items: center;
            padding: 16px;
            border: 1px solid rgba(247, 102, 82, .10);
            border-radius: 20px;
            background: #fff;
            color: var(--hm-dark);
            font-weight: 900;
            text-align: center;
            box-shadow: var(--hm-shadow-soft);
        }

        .hm-manifesto {
            padding-bottom: clamp(62px, 8vw, 104px);
        }

        .hm-manifesto__shell {
            position: relative;
            overflow: hidden;
            padding: clamp(28px, 4vw, 52px);
            border: 1px solid rgba(247, 102, 82, .13);
            border-radius: 36px;
            background:
                radial-gradient(circle at top left, rgba(247, 102, 82, .18), transparent 26%),
                linear-gradient(135deg, #fff8f4 0%, #fff 50%, #f3f7fb 100%);
            box-shadow: var(--hm-shadow);
        }

        .hm-manifesto__grid {
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
            gap: 30px;
            align-items: start;
        }

        .hm-manifesto h2 {
            max-width: 830px;
            margin: 18px 0 18px;
            color: var(--hm-dark);
            font-family: var(--e-global-typography-primary-font-family);
            font-size: clamp(2.3rem, 4vw, var(--e-global-typography-primary-font-size));
            font-weight: var(--e-global-typography-primary-font-weight);
            text-transform: var(--e-global-typography-primary-text-transform);
            line-height: var(--e-global-typography-primary-line-height);
            letter-spacing: -.04em;
        }

        .hm-manifesto__lead,
        .hm-manifesto__copy p,
        .hm-side-cta p {
            color: var(--hm-text);
            line-height: 1.84;
        }

        .hm-manifesto__lead {
            max-width: 700px;
            margin-bottom: 24px;
            font-size: 17px;
        }

        .hm-pillar-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 15px;
            margin-top: 24px;
        }

        .hm-pillar,
        .hm-side-cta {
            padding: 22px;
            border: 1px solid rgba(247, 102, 82, .12);
            border-radius: 22px;
            background: rgba(255, 255, 255, .84);
            box-shadow: 0 16px 34px rgba(32, 33, 45, .055);
        }

        .hm-pillar strong,
        .hm-side-cta h3 {
            display: block;
            margin-bottom: 8px;
            color: var(--hm-dark);
        }

        .hm-pillar span {
            display: block;
            color: var(--hm-text);
            line-height: 1.72;
        }

        .hm-manifesto__side {
            display: grid;
            gap: 15px;
        }

        .hm-side-cta h3 {
            font-family: var(--e-global-typography-06a1534-font-family);
            font-size: clamp(1.45rem, 2.2vw, var(--e-global-typography-06a1534-font-size));
            font-weight: var(--e-global-typography-06a1534-font-weight);
            line-height: var(--e-global-typography-06a1534-line-height);
            letter-spacing: -.02em;
        }

        .hm-side-cta .hm-btn {
            margin-top: 12px;
        }

        .hm-final-cta {
            display: block;
            background: linear-gradient(135deg, var(--hm-primary), #ff9274);
            text-decoration: none !important;
        }

        .hm-final-cta__inner {
            display: flex;
            gap: 22px;
            align-items: center;
            justify-content: space-between;
            padding: clamp(34px, 5vw, 58px) 0;
        }

        .hm-final-cta h2 {
            max-width: 890px;
            margin-bottom: 0;
            color: #fff;
            font-family: var(--e-global-typography-secondary-font-family);
            font-size: clamp(1.9rem, 3vw, var(--e-global-typography-secondary-font-size));
            font-weight: var(--e-global-typography-secondary-font-weight);
            text-transform: var(--e-global-typography-secondary-text-transform);
            line-height: var(--e-global-typography-secondary-line-height);
            letter-spacing: -.03em;
        }

        .hm-final-cta span {
            flex: 0 0 auto;
            padding: 15px 22px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .18);
            color: #fff;
            font-weight: 900;
        }

        .hm-bottom {
            padding: clamp(48px, 6vw, 78px) 0;
            background: #fffaf5;
        }

        .hm-bottom__grid {
            display: grid;
            grid-template-columns: 1fr .75fr 1.25fr;
            gap: 34px;
            align-items: start;
        }

        .hm-bottom img {
            width: auto;
            height: 52px;
        }

        .hm-bottom h3 {
            margin-bottom: 14px;
            color: var(--hm-dark);
            font-size: 20px;
        }

        .hm-bottom ul {
            display: grid;
            gap: 9px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hm-bottom a {
            color: var(--hm-text);
            font-weight: 700;
        }

        .hm-bottom a:hover {
            color: var(--hm-primary);
        }

        .hm-bottom p {
            margin-bottom: 0;
            color: var(--hm-text);
            line-height: 1.82;
        }

        @media (max-width: 1199px) {
            .hm-hero__grid,
            .hm-info-band,
            .hm-manifesto__grid {
                grid-template-columns: 1fr;
            }

            .hm-hero__content,
            .hm-hero__panel {
                min-height: auto;
            }

            .hm-card-grid,
            .hm-product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hm-search {
                grid-template-columns: minmax(0, 1fr) auto;
            }
        }

        @media (max-width: 991px) {
            .hm-header .navbar-collapse {
                margin-top: 16px;
                padding: 18px;
                border: 1px solid rgba(247, 102, 82, .10);
                border-radius: 20px;
                background: #fff;
                box-shadow: var(--hm-shadow-soft);
            }

            .hm-benefits,
            .hm-capabilities {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hm-hero__stats,
            .hm-pillar-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hm-bottom__grid {
                grid-template-columns: 1fr 1fr;
            }

            .hm-bottom__grid > :last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 767px) {
            .hm-container {
                width: min(100% - 24px, var(--hm-container));
            }

            .hm-header .navbar {
                padding-block: 12px;
            }

            .hm-header .navbar-brand img {
                height: 38px;
            }

            .hm-hero {
                padding-top: 46px;
            }

            .hm-hero__content,
            .hm-hero__panel,
            .hm-manifesto__shell {
                border-radius: 26px;
            }

            .hm-hero__panel-inner {
                padding-left: 0;
                border-left: 0;
                border-top: 1px solid rgba(32, 33, 45, .10);
                padding-top: 22px;
            }

            .hm-hero h1,
            .hm-manifesto h2 {
                letter-spacing: -.045em;
            }

            .hm-hero__actions,
            .hm-agency-card__footer,
            .hm-final-cta__inner {
                flex-direction: column;
                align-items: stretch;
            }

            .hm-btn,
            .hm-final-cta span {
                width: 100%;
            }

            .hm-hero__stats,
            .hm-benefits,
            .hm-card-grid,
            .hm-product-grid,
            .hm-capabilities,
            .hm-pillar-grid,
            .hm-bottom__grid {
                grid-template-columns: 1fr;
            }

            .hm-search-wrap {
                margin-top: -18px;
            }

            .hm-search {
                grid-template-columns: 1fr;
                padding: 12px;
                border-radius: 22px;
            }

            .hm-search__input,
            .hm-search__button {
                min-height: 56px;
                border-radius: 16px;
            }

            .hm-agency-card__media {
                min-height: 190px;
            }

            .hm-alert-note {
                padding: 22px;
            }

            .hm-bottom__grid > :last-child {
                grid-column: auto;
            }
        }

        @media (max-width: 480px) {
            .hm-hero__content,
            .hm-hero__panel,
            .hm-manifesto__shell,
            .hm-info-band {
                padding: 24px 18px;
            }

            .hm-eyebrow {
                align-items: flex-start;
                white-space: normal;
            }

            .hm-hero h1 {
                font-size: clamp(1.6rem, 7.5vw, 2rem);
            }

            .hm-manifesto h2 {
                font-size: clamp(1.9rem, 9vw, 2.5rem);
            }

            .hm-section {
                padding-block: 46px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                transition-duration: .01ms !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
            }
        }
    
