*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Manrope', Arial, sans-serif;
    color: #444444;
    background-color: #f5f5f5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -- Header -- */
.header {
    background-color: #f5f5f5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.header__left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header__logo {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
}
.header__logo a {
    color: #444444;
}
.header__tagline {
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    white-space: nowrap;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.header__contact a.tel-link {
    color: #444444;
    font-weight: 600;
}
.header__address {
    color: #444444;
    font-weight: 400;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: none;
    border-radius: 15px;
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background-color: #fcaf58;
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #e89a3e;
}
.btn-secondary {
    background-color: #4e598c;
    color: #ffffff;
}
.btn-secondary:hover {
    background-color: #3d4670;
}
.btn-gray {
    background-color: #9a9a9a;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 30px;
}
.btn-gray:hover {
    background-color: #4e598c;
}

/* -- Section -- */
.section {
    padding: 90px 0;
}
.section--light {
    background-color: #ffffff;
}
.section--gray {
    background-color: #f5f5f5;
}

/* -- Hero -- */
.hero {
    background-color: #f5f5f5;
    padding: 60px 0;
}
.hero__grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.hero__left {
    flex: 1;
    display: flex;
    align-items: center;
}
.hero__question {
    font-size: 48px;
    font-weight: 700;
    color: #444444;
    line-height: 1.15;
}
.hero__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    margin-left: 40px;
    gap: 20px;
}
.hero__content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}
.hero__photo {
    flex: 0 0 120px;
}
.hero__photo img {
    border-radius: 20px;
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.hero__text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    font-weight: 400;
}
.hero__btn {
    width: 100%;
}

/* -- What We Create -- */
.what-we-create {
    background-color: #ffffff;
    padding: 60px 0;
}
.what-we-create__grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.what-we-create__left {
    flex: 1;
    display: flex;
    align-items: center;
}
.what-we-create__heading {
    font-size: 48px;
    font-weight: 700;
    color: #444444;
    line-height: 1.15;
}
.what-we-create__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.what-we-create__card {
    padding: 24px 28px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 400;
}
.what-we-create__card--dark {
    background-color: #4e598c;
}
.what-we-create__card--orange {
    background-color: #fcaf58;
}

/* -- Modules -- */
.modules {
    background-color: #f5f5f5;
    padding: 60px 0 0 0;
}
.modules__heading {
    font-size: 48px;
    font-weight: 700;
    color: #444444;
    line-height: 1.15;
    margin-bottom: 50px;
}
.module-card {
    background-color: #f5f5f5;
    padding: 40px 0;
}
.module-card__grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.module-card__number {
    font-size: 120px;
    font-weight: 700;
    color: #4e598c;
    line-height: 1;
    flex: 0 0 auto;
}
.module-card__inner {
    flex: 1;
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
}
.module-card__left {
    flex: 1;
}
.module-card__right {
    flex: 1;
}
.module-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 16px;
}
.module-card__text {
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    font-weight: 400;
}
.module-card__text + .module-card__text {
    margin-top: 12px;
}
.module-card__text--sub {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    font-weight: 400;
}
.module-card__images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.module-card__images-row {
    display: flex;
    gap: 20px;
}
.module-card__images img,
.module-card__images-row img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}
.module-card__img-full {
    width: 100%;
}
.module-card__img-half {
    width: calc(50% - 10px);
    max-height: 200px;
    object-fit: cover;
}

/* -- CTA Section -- */
.cta {
    background-color: #f5f5f5;
    padding: 60px 0 90px 0;
}
.cta__grid {
    display: flex;
    gap: 12px;
}
.cta__left {
    flex: 1;
    background-color: #4e598c;
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.cta__heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}
.cta__right {
    flex: 1;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.cta__text {
    font-size: 20px;
    line-height: 1.6;
    color: #444444;
    font-weight: 400;
}

/* -- Footer -- */
.footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    border-top: 1px solid #eeeeee;
}
.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}
.footer__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer__logo {
    font-weight: 700;
    font-size: 16px;
}
.footer__links a {
    color: #444444;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer__links a:hover {
    color: #4e598c;
}

/* -- Cookie Notice -- */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.4;
    color: #444444;
    font-weight: 300;
    z-index: 200;
    max-width: 700px;
}
.cookie-notice a {
    color: #444444;
    border-bottom: 1px solid #444444;
}
.cookie-notice a:hover {
    color: #4e598c;
    border-bottom-color: #4e598c;
}

/* -- Responsive -- */
@media screen and (max-width: 1199px) {
    .hero__question {
        font-size: 36px;
    }
    .modules__heading {
        font-size: 36px;
    }
    .module-card__number {
        font-size: 100px;
    }
    .cta__heading {
        font-size: 36px;
    }
}
@media screen and (max-width: 980px) {
    .header__tagline {
        display: none;
    }
    .hero {
        padding: 40px 0;
    }
    .hero__grid {
        flex-direction: column;
        gap: 30px;
    }
    .hero__question {
        font-size: 32px;
        text-align: center;
    }
    .what-we-create {
        padding: 40px 0;
    }
    .what-we-create__grid {
        flex-direction: column;
        gap: 30px;
    }
    .what-we-create__heading {
        font-size: 32px;
        text-align: center;
    }
    .modules__heading {
        font-size: 32px;
        text-align: center;
    }
    .module-card__grid {
        flex-direction: column;
        gap: 30px;
    }
    .module-card__inner {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    .module-card__number {
        font-size: 60px;
    }
    .cta__grid {
        flex-direction: column;
    }
    .cta__heading {
        font-size: 32px;
    }
}

@media screen and (max-width: 639px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .header__right {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .hero__grid {
        gap: 24px;
    }
    .hero__question {
        font-size: 26px;
    }
    .hero__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .what-we-create__heading {
        font-size: 26px;
    }
    .what-we-create__grid {
        gap: 24px;
    }
    .modules__heading {
        font-size: 26px;
    }
    .module-card__inner {
        padding: 20px;
    }
    .module-card__images-row {
        flex-direction: column;
    }
    .module-card__img-half {
        width: 100%;
        max-height: none;
    }
    .cta__heading {
        font-size: 26px;
    }
    .cta__left {
        padding: 30px 24px;
    }
    .cta__right {
        padding: 30px 24px;
    }
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-notice {
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 20px;
        font-size: 12px;
        padding: 12px 16px;
    }
}
