/* ==========================================================================
   HST Theme - Homepage Styles
   ========================================================================== */

body.home,
body.home.page,
body.page-template-front-page,
body.hst-language-home {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    background: #fff;
}

.home #page,
.home .site-content,
.home .ast-container,
.home #content,
.home .hfeed.site,
.hst-language-home #page,
.hst-language-home .site-content,
.hst-language-home .ast-container,
.hst-language-home #content,
.hst-language-home .hfeed.site {
    display: contents;
}

.home #masthead,
.hst-language-home #masthead {
    display: contents;
}

.home .ast-header-break-point .main-header-bar,
.home .ast-desktop .main-header-menu,
.home .main-header-bar-navigation,
.hst-language-home .ast-header-break-point .main-header-bar,
.hst-language-home .ast-desktop .main-header-menu,
.hst-language-home .main-header-bar-navigation {
    display: none !important;
}

.hst-home-main {
    color: #1a1a1a;
    font-family: var(--hst-font-family);
}

.hst-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}

/* Header */
.hst-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hst-header-inner {
    width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.hst-logo {
    flex: 0 0 auto;
}

.hst-logo a {
    color: #111 !important;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none !important;
}

.hst-logo img {
    display: block;
    max-height: 44px;
    width: auto;
}

.hst-main-nav {
    margin-left: auto;
}

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

.hst-nav-list a {
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 14px;
    color: #222 !important;
    font-size: var(--hst-font-nav);
    font-weight: 600;
    text-decoration: none !important;
}

.hst-nav-list a:hover,
.hst-nav-list .current-menu-item > a {
    color: #e60012 !important;
}

.hst-header-right {
    flex: 0 0 auto;
}

.hst-mobile-toggle {
    display: none;
}

/* Shared */
.hst-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 34px;
    color: #fff !important;
    font-size: var(--hst-font-button);
    font-weight: 600;
    text-decoration: none !important;
    background: #e60012;
    border-radius: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hst-btn:hover {
    color: #fff !important;
    background: #c40010;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.28);
    transform: translateY(-1px);
}

.hst-section-header {
    text-align: center;
}

.hst-section-header h2,
.hst-contact-title h2 {
    margin: 0;
    color: #1a1a1a;
    font-size: var(--hst-font-section-title);
    font-weight: 700;
    line-height: 1.25;
}

/* Hero */
.hst-hero-section {
    position: relative;
    min-height: min(720px, calc(100vh - 72px));
    margin-top: 72px;
    overflow: hidden;
    background: #111;
}

.hst-hero-slider,
.hst-hero-slide {
    position: absolute;
    inset: 0;
}

.hst-hero-slide {
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hst-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.hst-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hst-hero-content {
    position: relative;
    z-index: 1;
    width: min(1624px, calc(100% - 296px));
    margin: 0 auto;
    padding: 0 0 208px;
}

.hst-hero-content h1 {
    margin: 0 0 28px;
    color: #fff;
    font-size: var(--hst-font-hero-title);
    font-weight: 600;
    line-height: 1.35;
}

.hst-hero-content p {
    margin: 0 0 118px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--hst-font-hero-subtitle);
    line-height: 1.2;
}

.hst-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 48px;
    z-index: 2;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.hst-hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    transition: background 0.25s ease;
}

.hst-hero-dots button.is-active,
.hst-hero-dots button:hover,
.hst-hero-dots button:focus-visible {
    background: #fff;
}

.hst-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background-color: transparent;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.hst-hero-arrow:hover,
.hst-hero-arrow:active {
    background-color: #e60012;
    border-color: #e60012;
    transform: translateY(-50%) scale(1.05);
}

.hst-hero-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.hst-hero-arrow-prev {
    left: 42px;
}

.hst-hero-arrow-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.hst-hero-arrow-next {
    right: 42px;
}

.hst-hero-arrow-next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

/* Business */
.hst-business-section {
    padding: 132px 0 0;
    background: #fff;
}

.hst-business-section .hst-container {
    width: min(1624px, calc(100% - 80px));
    max-width: none;
    margin: 0 auto;
    padding-left: var(--hst-pc-page-gutter);
    padding-right: var(--hst-pc-page-gutter);
    box-sizing: border-box;
}

.hst-business-section .hst-section-header p {
    max-width: 1624px;
    margin: 40px auto 0;
    color: #333;
    font-size: var(--hst-font-body-lg);
    line-height: 1.55;
    opacity: 0.68;
}

.hst-home-business-cards {
    margin: 76px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.hst-home-business-card {
    min-height: 620px;
    padding: 58px 46px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff !important;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hst-home-business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
    transition: background 0.28s ease;
}

.hst-home-business-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: 0 22px 54px rgba(230, 0, 18, 0.18);
}

.hst-home-business-card:hover::before {
    background: rgba(230, 0, 18, 0.72);
}

.hst-home-business-card > * {
    position: relative;
    z-index: 1;
}

.hst-home-business-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 44px;
    display: inline-block;
    background: center / contain no-repeat;
    filter: brightness(0) invert(1);
}

.hst-icon-brand { background-image: url('../images/figma-icon-brand.svg'); }
.hst-icon-trade { background-image: url('../images/figma-icon-trade.svg'); }
.hst-icon-solution { background-image: url('../images/figma-icon-solution.svg'); }

.hst-home-business-card h3 {
    min-height: 84px;
    margin: 0 0 36px;
    color: #fff;
    font-size: var(--hst-font-content-title);
    font-weight: 700;
    line-height: 1.45;
}

.hst-home-business-line {
    width: 64px;
    height: 4px;
    margin-bottom: 30px;
    display: block;
    background: #e60012;
}

.hst-home-business-card:hover .hst-home-business-line {
    background: #fff;
}

.hst-home-business-card p {
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--hst-font-body);
    line-height: 1.85;
}

.hst-home-business-card b {
    margin-top: auto;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.hst-home-business-card small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 400;
}

/* Project */
.hst-project-case {
    padding: 72px 0 18px;
    background: #fff;
}

.hst-project-heading {
    padding: 0 0 38px;
}

.hst-project-card {
    min-height: 100%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hst-project-card:hover {
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.11);
    transform: translateY(-3px);
}

.hst-project-card a {
    min-height: 100%;
    display: flex;
    align-items: stretch;
    color: #111 !important;
    text-decoration: none !important;
}

.hst-project-grid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hst-project-card__image {
    flex: 0 0 42%;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.hst-project-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hst-project-card:hover .hst-project-card__image img {
    transform: scale(1.04);
}

.hst-project-card__body {
    min-height: 188px;
    padding: 22px 26px 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.hst-project-card time {
    margin-bottom: 10px;
    color: #e60012;
    font-size: var(--hst-font-caption);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hst-project-card h3 {
    margin: 0 0 10px;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.hst-project-card p {
    margin: 0 0 14px;
    color: #5f6673;
    font-size: var(--hst-font-body-sm);
    line-height: 1.65;
}

.hst-project-card__more {
    margin-top: auto;
    color: #e60012;
    font-size: var(--hst-font-body-sm);
    font-weight: 700;
}

.hst-project-card__more::after {
    content: ' ->';
}

.hst-project-cta {
    margin-top: 26px;
    text-align: center;
}

/* Contact */
.hst-contact-section {
    padding: 56px 0 128px;
    background: #fff;
}

.hst-contact-section .hst-container {
    width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
    max-width: var(--hst-container-width);
}

.hst-contact-title {
    margin: 0 0 62px;
    padding: 0;
    text-align: center;
    background: transparent;
}

.hst-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(36px, 4vw, 64px);
    align-items: stretch;
}

.hst-contact-links {
    align-self: start;
    height: 100%;
    padding: clamp(24px, 2.4vw, 34px);
    border: 1px solid #d8d8d8;
    border-top: 5px solid #e60012;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 16, 16, 0.08);
    box-sizing: border-box;
}

.hst-home-contact-info-item {
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #eee;
}

.hst-home-contact-info-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.hst-home-contact-info-item h3 {
    margin: 0 0 6px;
    color: #111;
    font-size: var(--hst-font-body-lg);
    font-weight: 700;
    line-height: 1.4;
}

.hst-home-contact-info-item p {
    margin: 0;
    color: #666;
    font-size: var(--hst-font-body);
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.hst-home-contact-info-item a {
    color: #666 !important;
    text-decoration: none !important;
}

.hst-home-contact-info-item a:hover,
.hst-home-contact-info-item a:focus {
    color: #e60012 !important;
}

.hst-home-inquiry-form {
    height: 100%;
    padding: 38px 34px;
    border: 1px solid #d8d8d8;
    border-top: 5px solid #e60012;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 16, 16, 0.08);
    box-sizing: border-box;
}

.hst-home-inquiry-form form {
    display: grid;
    gap: 22px;
}

.hst-home-inquiry-form .hst-contact-form-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-left: 4px solid #1f9d55;
    background: #f0fbf4;
    color: #166534;
    font-size: var(--hst-font-body-sm);
    line-height: 1.5;
}

.hst-home-inquiry-form .hst-contact-form-message.is-error {
    border-left-color: #e60012;
    background: #fff3f3;
    color: #9f1239;
}

.hst-home-inquiry-form .hst-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hst-home-inquiry-form .hst-contact-form-field {
    display: block;
    margin: 0;
}

.hst-home-inquiry-form .hst-contact-form-label {
    display: block;
    margin: 0 0 10px;
    color: #111;
    font-size: var(--hst-font-body-sm);
    font-weight: 700;
    line-height: 1.4;
}

.hst-home-inquiry-form .hst-contact-form-required {
    margin-left: 4px;
    color: #e60012;
    font-style: normal;
}

.hst-home-inquiry-form input,
.hst-home-inquiry-form textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-size: var(--hst-font-body-sm);
    line-height: 1.5;
    box-sizing: border-box;
    outline: none;
}

.hst-home-inquiry-form input {
    height: 52px;
    padding: 0 18px;
}

.hst-home-inquiry-form textarea {
    min-height: 132px;
    padding: 16px 18px;
    resize: vertical;
}

.hst-home-inquiry-form input:focus,
.hst-home-inquiry-form textarea:focus {
    box-shadow: inset 0 0 0 1px #e60012;
}

.hst-home-inquiry-form ::placeholder {
    color: #777;
    opacity: 1;
}

.hst-home-inquiry-form button {
    height: 56px;
    border: 0;
    border-radius: 0;
    background: #df0615;
    color: #fff;
    font-size: var(--hst-font-button);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    opacity: 0.3;
}

.hst-home-inquiry-form button::before,
.hst-home-inquiry-form button::after {
    content: none !important;
    display: none !important;
}

.hst-home-inquiry-form button:hover,
.hst-home-inquiry-form button:focus {
    background: #e60012;
    opacity: 1;
}

@media (max-width: 1100px) {
    .hst-container,
    .hst-hero-content {
        width: min(1200px, calc(100% - 40px));
    }

    .hst-business-section .hst-container {
        width: min(1200px, calc(100% - 40px));
    }

    .hst-contact-layout {
        grid-template-columns: 1fr;
    }

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

    .hst-project-card a {
        flex-direction: column;
    }

    .hst-project-card__image {
        flex-basis: auto;
    }

    .hst-project-card__image img {
        height: 200px;
        min-height: 0;
    }

}

@media (max-width: 820px) {
    .hst-header-inner {
        width: calc(100% - 40px);
    }

    .hst-main-nav {
        display: none;
    }

    .hst-main-nav.is-open {
        display: block;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    }

    .hst-nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .hst-nav-list a {
        height: 48px;
        justify-content: flex-start;
        padding: 0 24px;
    }

    .hst-header-right {
        display: none;
    }

    .hst-mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        border: 0;
        background: transparent !important;
        padding: 8px;
        box-shadow: none !important;
        cursor: pointer;
    }

    .hst-mobile-toggle span {
        width: 24px;
        height: 2px;
        background: #222;
    }

    .hst-mobile-toggle:hover,
    .hst-mobile-toggle:focus,
    .hst-mobile-toggle:active {
        background: transparent !important;
        outline: 0;
    }

    .hst-hero-section {
        min-height: 620px;
        margin-top: 72px;
    }

    .hst-hero-arrow {
        width: 42px;
        height: 42px;
    }

    .hst-hero-arrow-prev {
        left: 18px;
    }

    .hst-hero-arrow-next {
        right: 18px;
    }

    .hst-hero-content {
        padding: 0 0 96px;
    }

    .hst-hero-content h1 {
        font-size: var(--hst-font-hero-title);
    }

    .hst-hero-content p {
        margin-bottom: 52px;
        font-size: var(--hst-font-hero-subtitle);
    }

    .hst-section-header h2,
    .hst-contact-title h2 {
        font-size: var(--hst-font-section-title);
    }

    .hst-business-section {
        padding-top: 76px;
    }

    .hst-business-section .hst-section-header p {
        margin-top: 32px;
        font-size: var(--hst-font-body-lg);
    }

    .hst-home-business-cards {
        margin-top: 52px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hst-home-business-card {
        min-height: 430px;
        padding: 42px 30px 34px;
    }

    .hst-home-business-card h3 {
        min-height: 0;
    }

    .hst-project-heading {
        padding-bottom: 30px;
    }

    .hst-project-card img {
        height: 190px;
    }

    .hst-project-case {
        padding: 56px 0 16px;
    }

    .hst-contact-section {
        padding-top: 48px;
    }

    .hst-project-cta {
        margin-top: 22px;
    }

    .hst-contact-title {
        padding-bottom: 0;
        margin-bottom: 44px;
    }

    .hst-contact-links {
        padding: 34px 28px;
    }

    .hst-home-inquiry-form {
        padding: 30px 24px;
    }

    .hst-home-inquiry-form .hst-contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hst-container,
    .hst-hero-content {
        width: calc(100% - 32px);
    }

    .hst-business-section .hst-container {
        width: calc(100% - 32px);
    }

    .hst-hero-content h1 {
        font-size: var(--hst-font-hero-title);
    }

    .hst-hero-content p {
        margin-bottom: 34px;
        font-size: var(--hst-font-hero-subtitle);
    }

    .hst-btn {
        min-height: 46px;
        padding: 0 24px;
        font-size: var(--hst-font-button);
    }

    .hst-section-header h2,
    .hst-contact-title h2 {
        font-size: var(--hst-font-section-title);
    }

    .hst-home-inquiry-form {
        padding: 26px 20px;
    }

    .hst-project-grid {
        grid-template-columns: 1fr;
    }

    .hst-project-card__body {
        min-height: 0;
        padding: 20px 20px 18px;
    }

    .hst-project-card h3 {
        font-size: 19px;
    }

}

@media (min-width: 1025px) {
    .hst-business-section,
    .hst-project-case {
        padding-left: var(--hst-pc-page-gutter);
        padding-right: var(--hst-pc-page-gutter);
        box-sizing: border-box;
    }

    .hst-container {
        width: min(1200px, calc(100% - (var(--hst-pc-page-gutter) * 2)));
        padding-left: var(--hst-pc-page-gutter);
        padding-right: var(--hst-pc-page-gutter);
        box-sizing: border-box;
    }

    .hst-hero-content,
    .hst-business-tabs,
    .hst-business-content {
        width: min(1624px, calc(100% - (var(--hst-pc-page-gutter) * 2)));
    }

    .hst-business-section .hst-container {
        width: 100%;
        max-width: 1624px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--hst-pc-page-gutter);
        padding-right: var(--hst-pc-page-gutter);
        box-sizing: border-box;
    }

    .hst-business-section .hst-section-header {
        width: 100%;
        max-width: 1624px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

/* Unified 1280px content width. Hero backgrounds remain full width. */
.hst-container,
.hst-hero-content,
.hst-business-section .hst-container,
.hst-business-section .hst-section-header,
.hst-home-business-cards,
.hst-project-case .hst-container,
.hst-contact-section .hst-container {
    width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
    max-width: var(--hst-container-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.hst-business-section .hst-container {
    padding-left: 0;
    padding-right: 0;
}

.hst-business-section .hst-section-header p {
    max-width: var(--hst-container-width);
}

@media (min-width: 1025px) {
    .hst-container,
    .hst-hero-content,
    .hst-business-section .hst-container,
    .hst-business-section .hst-section-header,
    .hst-business-tabs,
    .hst-business-content,
    .hst-home-business-cards,
    .hst-project-case .hst-container,
    .hst-contact-section .hst-container {
        width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
        max-width: var(--hst-container-width);
        padding-left: 0;
        padding-right: 0;
    }
}

.hst-contact-section .hst-container {
    width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
    max-width: var(--hst-container-width);
}

@media (max-width: 720px) {
    .hst-container,
    .hst-hero-content,
    .hst-business-section .hst-container,
    .hst-business-section .hst-section-header,
    .hst-home-business-cards,
    .hst-project-case .hst-container,
    .hst-contact-section .hst-container {
        width: calc(100% - 36px);
    }

    .hst-hero-content {
        width: calc(100% - 32px);
    }
}

.hst-business-section {
    margin-top: 0;
    padding-top: 72px;
}

@media (max-width: 720px) {
    .hst-business-section {
        padding-top: 56px;
    }
}

/* Keep image-overlay display text lighter so photography remains dominant. */
.hst-hero-content h1 {
    min-height: 2.5em;
    margin-bottom: 22px;
    font-size: clamp(36px, 3vw, 42px);
    line-height: 1.25;
}

.hst-hero-content p {
    margin-bottom: 72px;
    font-size: clamp(24px, 2.35vw, 32px);
    line-height: 1.35;
}

.hst-hero-content .hst-btn {
    min-height: 48px;
    padding: 0 30px;
    font-size: 16px;
}

.hst-home-business-card h3 {
    min-height: 76px;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.42;
}

.hst-home-business-card p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.78;
}

.hst-home-business-card b {
    font-size: 28px;
}

.hst-home-business-card small {
    font-size: 15px;
}

@media (max-width: 820px) {
    .hst-hero-content h1 {
        margin-bottom: 18px;
        font-size: 38px;
    }

    .hst-hero-content p {
        margin-bottom: 44px;
        font-size: 22px;
    }

    .hst-home-business-card h3 {
        min-height: 0;
        font-size: 19px;
    }

    .hst-home-business-card p {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .hst-hero-content h1 {
        margin-bottom: 14px;
        font-size: 28px;
        line-height: 1.3;
    }

    .hst-hero-content p {
        margin-bottom: 28px;
        font-size: 17px;
    }

    .hst-hero-content .hst-btn {
        min-height: 44px;
        padding: 0 22px;
        font-size: 14px;
    }

    .hst-home-business-card h3 {
        font-size: 18px;
    }

    .hst-home-business-card p {
        font-size: 14px;
    }

    .hst-home-business-card b {
        font-size: 24px;
    }

    .hst-home-business-card small {
        font-size: 13px;
    }
}
