:root {
    --hero-height: 887px;
}

/*.home {*/
/*    width: fit-content;*/
/*}*/

.home .site-wrapper {
    position: relative;
}

.home .site-main {
    margin-top: 0;
}

/* Hero — Tilda artboard 887px */
.hero {
    position: relative;
    /*height: var(--hero-height);*/
    height: 1004px;
    min-height: var(--hero-height);
    color: #fff;
    overflow: hidden;
    background: #fff;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    top: 11.5%;
    border-top: 1px solid #978f8f;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0;
    display: block;
}

.hero__left {
    position: absolute;
    top: 285px;
    left: 0;
    max-width: 800px;
    padding: 0;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 94px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    max-width: 790px;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 0;
}

.hero__cta-wrap {
    position: relative;
    margin-top: 125px;
    width: 578px;
    height: 72px;
}

.hero__cta-wrap .btn--primary {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
    padding: 20px 42px;
    border-radius: 0;
    opacity: 1;
}

.hero__cta-wrap .btn--primary:hover {
    opacity: 0.6;
    color: #fff;
}

.hero__tagline {
    position: absolute;
    top: 70%;
    right: 0;
    max-width: 596px;
    font-size: 27px;
    line-height: 1.4;
    text-align: right;
    z-index: 2;
    font-weight: 400;
}

.hero__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-accent);
    opacity: 0;
    animation: pulse-wave 3s infinite ease-out;
    pointer-events: none;
    box-sizing: border-box;
}

.hero__pulse--2 {
    animation-delay: 1s;
}

.hero__pulse--3 {
    animation-delay: 2s;
}

@keyframes pulse-wave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
        border-width: 2px;
    }
    100% {
        width: calc(100% + 80px);
        height: calc(100% + 40px);
        opacity: 0;
        border-width: 0;
    }
}

/* Benefits — bordered cards like Tilda (373×108, gap ~31) */
.benefits {
    padding: 70px 0 60px;
    background: var(--color-bg-dark);
}

.benefits__title {
    font-family: var(--font-sans);
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 40px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px 31px;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.benefits__item {
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid #fff;
    padding: 12px 22px;
    width: 100%;
    height: 108px;
    min-height: 108px;
    box-sizing: border-box;
}

.benefits__item:nth-child(n+4):nth-child(-n+6) {
    height: 107px;
    min-height: 107px;
}

.benefits__item:last-child {
    grid-column: 1 / -1;
    width: 100%;
    height: 80px;
    min-height: 80px;
    max-width: none;
    margin: 0;
    justify-content: center;
    padding: 16px 40px;
}

.portfolio-card:hover {
    color: #fff;
}

.benefits__icon {
    width: 31px;
    height: 34px;
    flex-shrink: 0;
    margin-top: 0;
}

.benefits__text {
    font-size: 21px;
    line-height: 1.8;
    font-weight: 400;
}

/* Portfolio — Tilda .portf / .pflex + featured video */
.portfolio {
    padding: 120px 0 60px;
    background: var(--color-bg-dark);
}

.portfolio__inner {
    max-width: 1548px;
    margin: 0 auto;
    padding: 0 10px;
}

.portfolio__header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.portfolio__title {
    font-family: var(--font-sans);
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.portfolio__featured {
    position: relative;
    width: min(1243px, 100%);
    aspect-ratio: 1243 / 690;
    margin: 0 auto 20px;
    background: #111;
    overflow: hidden;
}

.portfolio__featured iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.portfolio__featured-label {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    padding: 8px 22px;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff7a;
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    white-space: nowrap;
}

.portfolio__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding: 40px 0;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    width: 32.5%;
    height: 400px;
    display: block;
    margin-bottom: 20px;
    aspect-ratio: auto;
}

.portfolio-card__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition);
}

.portfolio-card:hover .portfolio-card__img {
    transform: none;
}

.portfolio-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px 20px;
    background: transparent;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    box-sizing: border-box;
}

.portfolio-card:hover .portfolio-card__info {
    display: flex;
}

.portfolio-card__name {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--font-sans);
}

.portfolio-card__meta {
    font-size: 16px;
    line-height: 1.4;
    opacity: 1;
    margin-top: 4px;
    font-family: var(--font-sans);
}

.portfolio .btn--outline:hover {
    color: #fff;
}

.portfolio__footer-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.portfolio .btn--outline {
    font-size: 28px;
    padding: 14px 40px;
    border-width: 1px;
    min-width: 280px;
    min-height: 60px;
}

/* Video */
.home-video {
    padding: 30px 0 0;
    background: var(--color-bg-dark);
}

.home-video__grid {
    display: grid;
    grid-template-columns: repeat(2, 560px);
    gap: 40px 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.home-video__item {
    position: relative;
    width: 560px;
    height: 315px;
    aspect-ratio: auto;
    background: #111;
    overflow: hidden;
}

.home-video__item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Stages — dark artboard like Tilda */
.stages {
    padding: 80px 0 80px;
    background: var(--color-bg-dark);
    color: #fff;
}

.tariffs {
    position: relative;
    z-index: 1;
}

.tariffs::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 4px;
    background: #fff;
    z-index: 2;
    pointer-events: none;
}

.stages__eyebrow {
    font-size: 25px;
    color: #ababab;
    margin: 0 auto 8px;
    max-width: 1600px;
    padding: 0 20px;
}

.stages__title {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 48px;
    line-height: 1;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    color: #fff;
}

.stages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 130px 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.stages__item-head {
    display: flex;
    gap: 8px 20px;
    align-items: baseline;
    margin-bottom: 20px;
    justify-content: space-between;
}

.stages__item-num {
    white-space: nowrap;
    color: var(--color-accent);
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1.2;
}

.stages__item-title {
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.stages__item-text {
    font-size: 20px;
    line-height: 2;
    color: #c9c9c9;
}

/* Founder — white artboard like Tilda */
.founder {
    padding: 60px 0 60px;
    background: #fff;
    color: #000;
}

.founder__title {
    font-family: var(--font-sans);
    font-size: 45px;
    font-weight: 400;
    margin: 0 auto 55px;
    line-height: 1;
    text-align: center;
    max-width: 528px;
    color: #000;
}

.founder__grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: start;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder__text {
    line-height: 2;
    font-size: 21px;
    color: #000;
}

.founder__text p + p {
    margin-top: 14px;
}

.founder__text strong {
    font-weight: 600;
}

.founder__tagline {
    margin-top: 28px;
    font-size: 21px;
    line-height: 2;
    color: #000;
}

.founder__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.founder__closing {
    margin-top: 30px;
    font-size: 21px;
    line-height: 2;
    color: #000;
}

/* Services list — gold bordered pills like Tilda */
.services-list {
    margin-top: 28px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.services-list__title {
    font-size: 21px;
    font-weight: 400;
    margin: 0 0 25px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

.services-list__items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 50px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-size: 20px;
    color: #000;
    justify-content: flex-start;
}

.services-list__items li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    height: 41px;
    padding: 0 16px 0 12px;
    border: 1px solid var(--color-accent);
    box-sizing: border-box;
}

.services-list__items img {
    width: 19px;
    height: 20px;
    flex-shrink: 0;
}

/* Reviews */
.reviews {
    padding: 20px 0 80px 0;
    background: var(--color-bg-dark);
}

.reviews__title {
    font-family: var(--font-sans);
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    line-height: 1;
}

.reviews-slider {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-slider__main {
    flex: 1;
    min-width: 0;
}

.reviews-slider__card {
    background: transparent;
    padding: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateX(0);
}

.reviews-slider__item[hidden] {
    display: none !important;
}

.reviews-slider__text a {
    color: inherit;
    text-decoration: underline;
}

.reviews-slider__card-text {
    display: flex;
    justify-content: space-between;
}

.reviews-slider__card--out-left {
    opacity: 0;
    transform: translateX(-30px);
}

.reviews-slider__card--out-right {
    opacity: 0;
    transform: translateX(30px);
}

.reviews-slider__card--in {
    animation: reviews-slide-in 0.4s ease;
}

@keyframes reviews-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reviews-slider__author {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-accent);
}

.reviews-slider__position {
    font-size: 17px;
    opacity: 0.65;
    margin-bottom: 20px;
}

.reviews-slider__text {
    font-size: 18px;
    line-height: 1.4;
    max-height: 176px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.reviews-slider__text--expanded {
    max-height: none;
    -webkit-line-clamp: unset;
    display: block;
}

.reviews-slider__read-more {
    display: inline-flex;
    margin-top: 30px;
    margin-bottom: 60px;
    background: none;
    border: none;
    color: #fff;
    opacity: 0.6;
    font-size: 18px;
    cursor: pointer;
    font-family: var(--font-sans);
    float: right;
    padding: 0;
}

.reviews-slider__read-more:hover {
    opacity: 1;
}

.reviews-slider__dots {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    clear: both;
}

.reviews-slider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #e2d9c9;
    cursor: pointer;
}

.reviews-slider__dot--active {
    background: var(--color-accent);
    transform: scale(1.2);
}

.reviews-slider__side-btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews-slider__side-btn:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Trust / publications */
.trust {
    padding: 60px 0 40px;
    background: var(--color-bg-dark);
    text-align: center;
}

.trust__title {
    font-family: var(--font-sans);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1;
}

.trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 36px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.trust__logo {
    width: 105px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust__logo img {
    max-width: 100%;
    max-height: 90px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.trust__pubs {
    display: grid;
    grid-template-columns: 588px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1250px;
    margin: 0 auto;
    text-align: left;
}

.trust__exhibition {
    width: 100%;
    max-width: 588px;
    height: auto;
    display: block;
}

.trust__pubs-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
}

.trust__subtitle {
    font-size: 25px;
    line-height: 1.55;
    max-width: 560px;
    text-align: right;
    margin: 0;
    color: #fff;
}

.trust__magazines {
    width: 358px;
    max-width: 100%;
    height: auto;
}

/* Tariffs — Tilda layout: wide top + 2 bottom cards */
.tariffs {
    padding: 80px 0;
    background: #fff;
    color: #fff;
}

.tariffs__title {
    font-family: var(--font-sans);
    font-size: 45px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 56px;
    color: #0c0c0c;
    line-height: 1;
}

.tariffs__layout {
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
}

.tariff-card {
    background: #525252;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    min-height: 0;
    color: #fff;
}

.tariff-card--wide {
    background: #202020;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px 40px;
    align-items: start;
    min-height: 295px;
    padding: 30px;
}

.tariffs__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tariff-card__name {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0;
}

.tariff-card__price {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.tariff-card__subtitle {
    font-size: 17px;
    line-height: 1.35;
    color: #c5c5c5;
    margin: 0;
    padding: 15px 0 30px 0;
    opacity: 0.95;
}

.tariff-card__list {
    display: grid;
    gap: 8px;
    font-size: 16px;
    color: #fff;
    padding: 0;
    list-style: none;
}

.tariff-card__list li {
    padding-left: 18px;
    position: relative;
    line-height: 1.35;
}

.tariff-card__list li::before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
}

.tariff-card__aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.tariff-card__actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.tariff-card__btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.tariff-card--wide .tariff-card__btn {
    font-size: 19px;
    min-height: 48px;
    width: 100%;
}

.tariff-card__btn:hover {
    border-color: #e1c286;
    color: #e1c286;
}

.tariff-card__btn--primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.tariff-card__btn--primary:hover {
    background: #dfb970;
    border-color: var(--color-accent-hover);
    color: #fff;
}

/* CTA */
.home-cta {
    display: none;
}

/* FAQ — photo + bordered items */
.faq {
    padding: 80px 0 55px;
    background: #fff;
    color: #000;
}

.faq__inner {
    max-width: 1548px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__title {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1;
    color: #000;
}

.faq__grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.faq__image-col {
    flex: 0 0 40%;
    max-width: 700px;
}

.faq__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq__content-col {
    flex: 1;
    min-width: 0;
}

.faq__list {
    width: 100%;
}

.faq__item {
    border: 1px solid #a9a9a9;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq__question {
    width: 100%;
    background: #fff;
    border: none;
    color: #333;
    text-align: left;
    padding: 22px 25px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    font-family: var(--font-sans);
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq__question:hover {
    background: #f9f9f9;
}

.faq__toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq__toggle::before,
.faq__toggle::after {
    content: "";
    position: absolute;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq__toggle::before {
    width: 18px;
    height: 2px;
    top: 11px;
    left: 3px;
}

.faq__toggle::after {
    width: 2px;
    height: 18px;
    top: 3px;
    left: 11px;
}

.faq__item--open .faq__toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__question::after {
    display: none;
}

.faq__answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    display: block;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq__item--open .faq__answer {
    padding: 20px 25px 25px;
    max-height: 8000px;
}

.faq__answer p {
    margin: 0 0 15px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer ol {
    margin: 0 0 15px;
    padding-left: 1.3em;
}

.faq__answer li {
    margin-bottom: 12px;
}

/* Free audit CTA */
.home-audit {
    position: relative;
    height: 366px;
    background: #202020 center / cover no-repeat;
    background-image: url("../images/audit-bg.png");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.home-audit__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.tariff-card__btn {
    background: transparent;
}

.tariff-card__btn--primary {
    background: var(--color-accent);;
}

.home-audit__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.home-audit__title {
    font-family: var(--font-sans);
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    max-width: 560px;
    margin: 0;
}

.home-audit__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--color-accent);
    color: #fff;
    font-size: 25px;
    line-height: 1;
    transition: background 0.2s ease;
}

.home-audit__btn:hover {
    background: #cfb686;
    color: #fff;
}

.form-placeholder {
    display: none;
}

.tariff-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

/* Large desktop — Tilda 1920 artboard */
@media (min-width: 1441px) {
    .hero__left {
        top: 28%;
    }

    .hero__title {
        font-size: 117px;
        max-width: 900px;
    }

    .hero__subtitle {
        font-size: 37px;
        margin-top: 40px;
    }

    .hero__cta-wrap {
        margin-top: 125px;
    }

    .hero__tagline {
        top: 70%;
        font-size: 33px;
        max-width: 725px;
    }
}

@media (max-width: 1441px) {
    .hero__content {
        max-width: 1200px;
    }

    .hero__left {
        top: 28%;
    }

    .hero__cta-wrap {
        margin-top: 186px;
    }

    .benefits__text {
        font-size: 21px;
        line-height: 1.3;
    }

    .benefits__item {
        height: auto;
    }

    .portfolio__featured {
        width: min(815px, 100%);
        aspect-ratio: 1200 / 760;
        border-radius: 15px;
    }

    .portfolio__featured-label {
        bottom: 20%;
    }

    .home-video {
        border-bottom: none;
        border-top: none;
    }

    .stages {
        border-top: none;
    }

    .stages__eyebrow {
        font-size: 18px;
    }

    .stages__title {
        font-size: 34px;
    }

    .stages__item-num {
        font-size: 19px;
    }

    .stages__item-title {
        font-size: 19px;
        text-align: end;
    }

    .stages__item-text {
        font-size: 18px;
        line-height: 2.2;
    }

    .stages__grid {
        gap: 60px 40px;
    }

    .founder__title {
        font-size: 34px;
    }

    .founder__text, .founder__tagline {
        font-size: 16px;
    }

    .services-list__items {
        gap: 10px;
        font-size: 16px;
    }

    .services-list {
        max-width: 775px;
    }

    .founder__closing {
        font-size: 16px;
        margin-top: 18px;
    }

    .trust__title {
        font-size: 36px;
    }

    .trust__logo {
        width: 94px;
    }

    .trust__pubs {
        padding: 0 20px;
    }

    .reviews__title {
        font-size: 36px;
    }

    .reviews-slider {
        max-width: 770px;
    }

    .reviews-slider__text {
        font-size: 16px;
        line-height: 1.8;
    }

    .reviews-slider__position,
    .reviews-slider__read-more {
        font-size: 16px;
    }

    .pb-20 {
        padding-bottom: 0;
    }

    .tariff-card__subtitle {
        padding: 10px 0 25px 0;
    }

    .tariff-card__name {
        font-size: 28px;
    }

    .tariffs__row {
        gap: 20px;
    }

    .tariff-card__btn {
        font-size: 18px;
        padding: 15px 10px;
    }

    .tariff-card__actions {
        justify-content: space-between;
    }

    .faq__inner {
        max-width: 1200px;
    }

    .faq__title {
        margin-bottom: 80px;
    }

    .faq__question {
        font-size: 16px;
    }

    .faq__answer {
        font-size: 15px;
    }

    .founder__closing {
        max-width: 500px;
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .home-video__grid {
        grid-template-columns: repeat(2, auto);
        gap: 40px 20px;
    }

    .home-video__item {
        width: 450px;
    }
}

@media (max-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        padding: 0 20px;
    }

    .benefits__item,
    .benefits__item:last-child {
        width: auto;
    }

    .benefits__item:last-child {
        grid-column: 1 / -1;
        max-width: none;
        margin: 0;
        justify-content: flex-start;
    }

    .benefits__text {
        font-size: 18px;
    }

    .stages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tariff-card--wide {
        grid-template-columns: 1fr;
    }

    .tariffs__row {
        grid-template-columns: 1fr;
    }

    .faq__grid {
        flex-direction: column;
    }

    .faq__image-col {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .founder__grid {
        gap: 20px;
    }

    .founder__image {
        width: 100%;
        max-width: 418px;
        height: auto;
        margin: 0 auto;
    }

    .trust__pubs-side {
        align-items: flex-start;
        padding-top: 0;
    }

    .trust__subtitle {
        text-align: end;
        font-size: 24px;
    }

    .hero {
        height: auto;
        min-height: 100svh;
    }

    .hero__left {
        position: relative;
        top: auto;
        left: auto;
        padding: 140px 20px 40px;
    }

    .hero__subtitle {
        margin-top: 40px;
    }

    .hero__cta-wrap {
        margin-top: 40px;
        width: min(578px, 100%);
    }

    .hero__tagline {
        position: static;
        text-align: left;
        margin: 30px 0;
        max-width: 550px;
        font-size: 25px;
    }

    .hero__left {
        display: contents;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
    }

    .hero__title {
        order: 1;
    }

    .hero__subtitle {
        order: 2;
    }

    .hero__tagline {
        order: 3;
    }

    .hero__cta-wrap {
        order: 4;
    }

    .hero__content {
        max-width: 945px;
    }

    .hero__title {
        padding-top: 22%;
    }

    .hero__cta-wrap {
        margin-top: 0 !important;
    }

    .hero__bg {
        top: 13.4%;
    }

    .benefits {
        border-bottom: none;
    }

    .portfolio {
        padding: 70px 0 55px;
    }

    .portfolio__title {
        font-size: 35px;
    }

    .portfolio__featured {
        width: min(950px, 100%);
        aspect-ratio: 1200 / 683;
        height: 400px;
    }

    .portfolio__featured-label {
        bottom: 12%;
    }

    .portfolio__grid {
        padding: 50px 0;
    }

    .portfolio-card {
        margin-bottom: 25px;
    }

    .portfolio .btn--outline {
        font-size: 24px;
    }

    .portfolio__footer-cta {
        margin-top: 0;
    }

    .stages__item-head {
        flex-direction: column;
    }

    .founder__text, .founder__tagline {
        font-size: 14px;
    }

    .services-list__title {
        font-size: 15px;
    }

    .services-list__items {
        font-size: 15px;
    }

    .trust__logo {
        width: 70px;
    }

    .trust__logos {
        gap: 0px 36px;
    }

    .reviews {
        padding: 30px 0 80px 0;
    }

    .reviews-slider {
        max-width: 100%;
    }

    .tariff-card {
        display: flex;
        flex-direction: column;
    }

    .tariff-card__body,
    .tariff-card__aside {
        display: contents;
    }

    .tariff-card__name {
        order: 1;
    }

    .tariff-card__price {
        order: 2;
    }

    .tariff-card__subtitle {
        order: 3;
        padding: 0;
    }

    .tariff-card__list {
        order: 4;
    }

    .tariff-cards {
        order: 5;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-top: 25px;
    }

    .tariff-card__actions {
        order: 5;
        flex-wrap: nowrap;
        padding-top: 30px;
    }

    .tariff-card__btn {
        width: 100%;
    }

    .pb-20 {
        margin: 0 20px;
    }

    .hero__bg {
        border-top: none;
    }
}

@media (max-width: 900px) {
    .home-video__item {
        width: 344px;
    }
}

@media (max-width: 768px) {
    .home-video__grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .home-video__item {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .portfolio-card {
        width: 100%;
    }

    .reviews-slider {
        gap: 4px;
    }

    .home-audit {
        height: 300px;
    }

    .home-audit__title {
        font-size: 30px;
    }

    .home-audit__btn {
        width: 200px;
        height: 56px;
        font-size: 20px;
    }

    .hero__cta-wrap {
        height: auto;
        min-height: 56px;
    }

    .hero__cta-wrap .btn--primary {
        padding: 16px 24px;
        height: auto;
        font-size: 18px;
    }

    .benefits__title,
    .portfolio__title,
    .stages__title,
    .tariffs__title,
    .reviews__title,
    .faq__title,
    .home-cta__link {
        font-size: 32px;
    }

    .trust__pubs {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 650px;
    }

    .hero__title {
        padding-top: 40%;
    }

    .hero__cta-wrap {
        width: fit-content;
        margin: 0 auto;
    }

    .hero__cta-wrap .btn--primary {
        padding: 16px 50px;
        font-size: 14px;
    }

    .content-container {
        max-width: 620px;
    }

    .portfolio {
        padding: 0;
    }

    .portfolio__featured {
        width: min(950px, 88%);
    }

    .portfolio-card {
        width: calc(50% - 5px);
    }

    .portfolio__grid {
        padding: 40px 0 50px 0;
    }

    .home-video {
        padding: 80px 0 0;
    }

    .home-video__item {
        width: 100%;
    }

    .stages {
        padding: 50px 0 80px;
    }

    .stages__eyebrow {
        margin: 0 auto 15px;
    }

    .stages__grid {
        gap: 45px 40px;
    }

    .stages__item-title {
        text-align: start;
    }

    .founder__grid {
        grid-template-columns: 1fr;
    }

    .founder__image {
        order: 1;
    }

    .founder__content {
        order: 2;
    }

    .founder__title {
        margin: 0 auto 35px;
    }

    .trust__logos {
        padding: 0 45px;
        gap: 0px 15px;
    }

    .trust__logo {
        width: 45px;
        height: 60px;
    }

    .trust__pubs {
        max-width: 550px;
        padding: 0 45px;
        gap: 15px;
    }

    .trust__pubs-side {
        align-items: center;
        gap: 15px;
    }

    .trust__subtitle {
        text-align: center;
        order: 2;
    }

    .trust__magazines {
        width: 260px;
        order: 1;
    }

    .trust__subtitle {
        font-size: 26px;
        line-height: 2;
        max-width: 403px;
    }

    .trust {
        padding: 60px 0 0 0;
    }

    .reviews__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .reviews {
        padding: 30px 0 50px 0;
    }

    .tariffs {
        padding: 60px 0;
    }

    .tariffs__title {
        font-size: 45px;
        margin-bottom: 50px;
    }

    .pb-20 {
        margin: 0;
    }

    .tariff-card--wide {
        padding: 20px;
    }

    .tariffs__layout {
        gap: 20px;
    }

    .faq__title {
        padding-left: 8%;
    }

    .faq__item--open .faq__answer {
        padding: 0px 25px 25px;
    }

    .faq__question {
        font-size: 15px;
    }

    .faq__answer {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .content-container {
        max-width: 978px;
    }
}

@media (max-width: 799px) {
    .content-container {
        max-width: 670px;
    }
}

@media (max-width: 500px) {
    .home-video__grid {
        grid-template-columns: 1fr;
    }

    .home-video__item {
        width: 386px;
    }

    .content-container {
        max-width: 365px;
    }

    .stages__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tariff-cards {
        flex-direction: column;
    }

    .tariff-card__actions {
        flex-wrap: wrap;
    }

    .hero__bg {
        top: 10.7%;
    }

    .site-header {
        height: 92px;
    }

    .site-header__inner {
        height: 92px;
    }

    .hero__content {
        max-width: 300px;
    }

    .hero__title {
        padding-top: 60%;
        font-size: 45px;
        text-align: center;
    }

    .hero__subtitle {
        font-size: 20px;
        margin-top: 20px;
        text-align: center;
    }

    .hero__tagline {
        text-align: center;
        font-size: 18px;
        line-height: 2;
    }

    .hero__cta-wrap .btn--primary {
        padding: 16px 24px;
        font-size: 13px;
    }

    .hero {
        height: auto;
        min-height: 625px;
    }

    .benefits {
        padding: 50px 0 85px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits__title {
        font-size: 25px;
    }

    .benefits__item {
        padding: 30px 20px;
    }

    .benefits__item:last-child {
        height: auto;
        padding: 30px 20px;
    }

    .portfolio__featured {
        height: 210px;
        width: min(950px, 80%);
    }

    .portfolio-card {
        width: 100%;
    }

    .stages__item-head {
        flex-direction: row-reverse;
    }

    .services-list__title {
        text-align: center;
    }

    .services-list__items {
        justify-content: center;
    }

    .founder {
        padding: 40px 0;
    }

    .founder__title {
        font-size: 28px;
    }

    .trust__title {
        font-size: 28px;
    }

    .trust {
        padding: 30px 0 0 0;
    }

    .trust__logos {
        padding: 0 35px;
    }

    .trust__logos {
        margin: 0 auto 25px;
    }

    .trust__pubs {
        padding: 0 35px;
    }

    .trust__magazines {
        width: 190px;
    }

    .trust__subtitle {
        font-size: 16px;
        max-width: 260px;
    }

    .reviews__title {
        font-size: 26px;
    }

    .reviews-slider__card-text {
        flex-direction: column;
    }

    .reviews-slider__position, .reviews-slider__read-more {
        font-size: 12px;
    }

    .reviews-slider__author {
        font-size: 17px;
    }

    .reviews-slider__text {
        font-size: 13px;
    }

    .reviews {
        padding: 30px 0 75px 0;
    }

    .tariffs {
        padding: 40px 0;
    }

    .tariffs__title {
        margin-bottom: 35px;
    }

    .tariff-card__subtitle {
        font-size: 16px;
    }

    .tariff-card--wide .tariff-card__btn {
        font-size: 18px;
    }

    .faq__title {
        font-size: 27px;
        margin-bottom: 70px;
    }

    .faq {
        padding: 65px 0;
    }

    .faq__question {
        font-size: 13px;
        padding: 15px;
    }

    .faq__answer {
        font-size: 13px;
        padding: 0 15px;
    }

    .faq__item--open .faq__answer {
        padding: 5px 15px 15px;
    }

    .home-audit__title {
        font-size: 25px;
        line-height: 1.7;
        max-width: 300px;
    }

    .home-audit__btn {
        font-size: 18px;
    }

    .portfolio .btn--outline {
        min-width: 225px;
    }
}

@media (max-width:400px) {
    .home-video__item {
        width: 340px;
    }

    .stages__title {
        font-size: 26px;
    }

    .stages {
        padding: 50px 0 60px;
    }
}

@media (max-width:350px) {
    .content-container {
        max-width: 315px;
    }
    
    .portfolio__featured {
        width: min(950px, 95%);
    }

    .home-video__item {
        width: 290px;
    }

    .founder__grid {
        padding: 0 10px;
    }
    
    .trust__logos {
        padding: 0 10px;
    }

    .trust__pubs {
        padding: 0 10px;
    }

    .reviews-slider {
        padding: 0 10px;
    }

    .tariffs__layout {
        padding: 0 10px;
    }

    .faq__inner {
        padding: 0 10px;
    }

    .faq__title {
        padding-left: 0;
    }
}
