/* ---------------------------
   Global reset / base styles
---------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
}

/* ---------------------------
   Layout shell
---------------------------- */

.body-root {
    min-height: 100vh;
}

.page-container {
    max-width: 1120px;
    margin: 0 auto;
    /* add this: */
    zoom: 1.2;
    /* roughly 120% */
}

/* provide consistent horizontal padding for all content sections */
.main-content__width,
.header-inner,
.section_specific_content,
.site-footer__container {
    padding-left: 48px;
    padding-right: 48px;
}

@media (max-width: 768px) {

    .main-content__width,
    .header-inner,
    .section_specific_content,
    .site-footer__container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------------------------
   Header
---------------------------- */

.header {
    padding-top: 20px;
    padding-bottom: 12px;
}

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

.header__logo-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__logo-img-wrapper {
    width: 18px;
    height: 18px;
}

.header__logo-img {
    width: 100%;
    height: 100%;
    display: block;
}

.header__title {
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    letter-spacing: 0;
}

.header__mobile-menu-button {
    display: none;
}

/* nav */

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 12px;
    color: #777777;
}

.header__nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__nav-link {
    position: relative;
    padding-bottom: 2px;
}

.header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #111111;
    transition: width 0.2s ease;
}

.header__nav-link:hover {
    color: #111111;
}

.header__nav-link:hover::after {
    width: 100%;
}

/* ---------------------------
   Buttons
---------------------------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #111111;
    background-color: #111111;
    color: #ffffff;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.button--primary {
    /* same as base button */
}

.button:hover {
    background-color: #ffffff;
    color: #111111;
}

.button__text {
    white-space: nowrap;
}

/* ---------------------------
   Main content common
---------------------------- */

.main-content {
    padding-top: 80px;
    padding-bottom: 96px;
}

.section_specific_content {
    width: 100%;
}

.description-inner {
    max-width: 520px;
}

/* ---------------------------
   Hero
---------------------------- */

.hero-section {
    padding-bottom: 96px;
}

.hero-section__padding-wrapper {
    display: flex;
}

.hero-section__content-box {
    max-width: 520px;
}

.hero-section__text-group {
    margin-bottom: 24px;
}

.hero-section__title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-section__subtitle {
    font-size: 14px;
    color: #5b5b5b;
    line-height: 1.7;
}

.hero-section__cta-button {
    margin-top: 4px;
}

/* ---------------------------
   Video section
---------------------------- */

.video-section {
    padding-bottom: 104px;
}

.video-section-spacing-div {
    max-width: 640px;
}

.video-section__player {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #f7f7f7;
}

.video-section__player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-section__play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section__fullscreen-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------------
   Section titles & text
---------------------------- */

.section-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.description-section {
    padding-bottom: 80px;
}

.description-section__text {
    font-size: 13px;
    color: #5b5b5b;
    margin-bottom: 32px;
}

/* ---------------------------
   Capabilities (cards -> flat)
---------------------------- */

.capabilities-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 28px;
}

.capability-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: flex-start;
}

.capability-card__icon img {
    display: block;
    opacity: 0.7;
}

.capability-card__title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.capability-card__description {
    font-size: 13px;
    color: #5b5b5b;
}

/* ---------------------------
   ROI section
---------------------------- */

.roi-section {
    padding-bottom: 88px;
}

.roi-section-spacing-div {
    max-width: 640px;
}

.roi-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 40px;
    align-items: center;
}

.roi-header {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.roi-description {
    font-size: 13px;
    color: #5b5b5b;
}

.roi-graph {
    width: 160px;
    height: 90px;
}

.roi-graph__svg {
    width: 100%;
    height: 100%;
}

.roi-graph__curve {
    fill: none;
    stroke: #111111;
    stroke-width: 1.2;
}

.roi-graph__point {
    fill: #111111;
}

/* ---------------------------
   Contact section
---------------------------- */

.contact-banner-section {
    padding-top: 16px;
    padding-bottom: 96px;
}

.contact-banner-section-spacing-div {
    max-width: 640px;
}

.contact-banner-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
}

.contact-banner-header {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
}

.contact-line img {
    width: 18px;
    height: 18px;
    display: block;
}

.contact-line span {
    white-space: nowrap;
}

.contact-line--phone span {
    font-weight: 500;
}

/* ---------------------------
   Footer
---------------------------- */

.site-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 28px;
    padding-bottom: 28px;
}

.site-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    font-size: 11px;
    color: #7b7b7b;
}

.site-footer-spacing-div {
    display: none;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.site-footer__logo-img {
    width: 18px;
    height: 18px;
}

.site-footer__product-name {
    font-size: 12px;
    font-weight: 500;
    color: #111111;
}

.site-footer__company-info {
    margin-bottom: 4px;
}

.site-footer__column-title {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #111111;
}

.site-footer__address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-footer__contact-icon {
    width: 14px;
    height: 14px;
}

/* ---------------------------
   Responsive
---------------------------- */
@media (max-width: 900px) {
    .page-container {
        zoom: 1;
    }
}
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__mobile-menu-button {
        display: inline-flex;
        width: 22px;
        height: 16px;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .header__mobile-menu-icon,
    .header__mobile-menu-icon::before,
    .header__mobile-menu-icon::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #111111;
    }

    .header__mobile-menu-icon::before {
        top: -5px;
    }

    .header__mobile-menu-icon::after {
        top: 5px;
    }

    .hero-section {
        padding-bottom: 64px;
    }

    .video-section {
        padding-bottom: 72px;
    }

    .roi-content {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .site-footer__container {
        flex-direction: column;
        align-items: flex-start;
    }
}