/* ==============================
   STYLES.CSS — Page Styles
   ============================== */

/* ============================
   NAVIGATION
   ============================ */
.header {
    position: relative;
    z-index: 1000;
}

.header-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;

    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.875rem);
    padding: 2.25rem var(--spacing-container);
    transition:
        background 0.3s ease,
        padding 0.3s ease,
        backdrop-filter 0.3s ease;
}

.header-box:has(.nav.scrolled) {
    background: rgba(11, 11, 15, 0.92);
    backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header .logo img,
.header .logo svg {
    width: clamp(7rem, 12vw, 10.75rem);
    height: auto;
}

.header .nav {
    position: static;
    inset: auto;
    z-index: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.875rem, 2vw, 1.375rem);
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.header .nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
}

.header .nav > div[class*='menu-'] {
    display: flex;
    align-items: center;
    min-width: 0;
		 width: 100%;
    justify-content: center;
}

.header .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .main-nav li {
    list-style: none;
}

.header .main-nav li a {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-primary);
    transition: color 0.2s ease;
    padding: 0.25rem 0;
    white-space: nowrap;
    position: relative;
}

.header .main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.header .main-nav li a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header .main-nav li a:not(:hover)::after {
    transform: scaleX(0);
    transform-origin: right center;
}

.header .main-nav li.current-menu-item > a,
.header .main-nav li.current_page_item > a,
.header .main-nav li.current-menu-ancestor > a,
.header .main-nav li a.current-ref {
    color: #f6f6fb;
}
.header .main-nav li a:hover {
}

.header__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header__right .btn-main {
    min-width: auto;
    background: #c8ccd5;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 15px;
    gap: 0;
}

.header__right .btn__text {
    height: auto;

    padding: 0;
    background: transparent;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.3;
    text-transform: none;
}

.header__right .btn__text::after,
.header__right .btn__arrow {
    display: none;
}

.header__right .btn:hover .btn__text {
    color: var(--color-accent);
}

/* Hide original GPTranslate widget */
.gpt-hidden-source {
    display: none !important;
}

/* Custom language switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 34px;
    border-radius: 2px;
    background: rgba(156, 156, 156, 0.149);
    border: 1px solid rgba(156, 156, 156, 0.149);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #ececf5;
    line-height: 1.2;
    cursor: pointer;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
    user-select: none;
}

.lang-switcher__current:hover,
.lang-switcher.is-open .lang-switcher__current {
    background: rgba(156, 156, 156, 0.25);
    border-color: rgba(156, 156, 156, 0.35);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 36px;
    background: rgba(11, 11, 15, 0.95);
    border: 1px solid rgba(156, 156, 156, 0.2);
    border-radius: 2px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 100;
}

.lang-switcher.is-open .lang-switcher__dropdown {
    display: flex;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #ececf5;
    line-height: 1.2;
    cursor: pointer;
    text-transform: uppercase;
    background: none;
    border: none;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.lang-switcher__btn:hover {
    background: rgba(156, 156, 156, 0.15);
}

.lang-switcher__btn.is-active {
    color: #c8ccd5;
    font-weight: 600;
}

.menu-toggle-box {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #C8CCD5;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    gap: 0;
}

.menu-toggle__label {
    font-family: var(--font-display);
    font-size:15px;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-toggle__close {
    display: none;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-accent);
}

.header-box.is-open .menu-toggle__label {
    display: none;
}

.header-box.is-open .menu-toggle__close {
    display: block;
}

.header-box.is-open .menu-toggle-box {
    background: none;
    padding: 0;
}

.menu-toggle.is-active::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================
   BUTTONS
   ============================ */
.btn-main {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: var(--fs-cta);
    color: var(--color-text-dark);
    gap: 1px;

    overflow: hidden;
    text-decoration: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    cursor: pointer;
    border: none;
    min-width: 320px;
}

.btn__text {
    height: 64px;
    padding: 16px 100px 16px 16px;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    background: var(--color-accent);
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.btn__text::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    height: 32px;
    width: 3px;
    top: 50%;
    transform: translateY(-50%);
    right: -2px;
}
.btn__arrow {
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.btn__arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-text-hero);
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-150%, -50%);
    width: 19px;
    height: 19px;
    background-color: var(--color-text-dark);
    opacity: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.89282 1.43359L14.6391 8.61052H1.43359V10.4765H14.7827L8.03636 17.2228H10.6201L17.797 10.0459L18.3711 9.47175L17.797 8.75405L10.6201 1.57713L7.89282 1.43359Z' fill='%230B0B0F'/%3E%3C/svg%3E")
        no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.89282 1.43359L14.6391 8.61052H1.43359V10.4765H14.7827L8.03636 17.2228H10.6201L17.797 10.0459L18.3711 9.47175L17.797 8.75405L10.6201 1.57713L7.89282 1.43359Z' fill='%230B0B0F'/%3E%3C/svg%3E")
        no-repeat center / contain;
    transition:
        transform 0.3s ease,
        opacity 0.15s ease;
}

.btn-main:hover .btn__arrow::after {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.btn-main:hover .btn__arrow svg {
    transform: translate(250%, -50%);
}

.btn--outline {
    background: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-text-dark);
    border-radius: var(--radius-lg);
    padding: 0.6875em 2.5em;
    font-family: var(--font-display);
    font-size: var(--fs-body);
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.btn--outline:hover {
    background: var(--color-text-dark);
    color: #fff;
}

.btn--outline-light {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: 0.5em 1.25em;
    font-family: var(--font-display);
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s;
}

.btn--outline-light:hover {
    background: rgba(255, 60, 8, 0.1);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100svh;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(250, 192, 176, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(250, 192, 176, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.hero__label {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    margin-bottom: 1.25rem;
}

.hero__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.hero__dot-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-primary);
    line-height: 1.3;
}

.hero__title {

    font-size: var(--fs-hero);
    color: var(--color-text-hero);
    line-height: 1;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    cursor: default;
    max-width: 1068px;
}
.hero__title br {
    display: none;
}

/* Hero title — letter reveal from bottom */
.hero__title {
    overflow: visible;
}

.hero__char {
    display: inline;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.hero__char--space {
    opacity: 1;
    transition: none;
}

.hero__title.is-revealed .hero__char {
    opacity: 1;
}

.hero__cta {
    margin-top: 2.5rem;
}

/* ============================
   SERVICES SECTION
   ============================ */
.services {
    background: var(--color-bg);
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
    position: relative;
}

.services__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
}

.services__line {
    width: 2px;
    height: 100%;
    background: var(--color-border-light);
}

.services__header {
    display: flex;
    flex-direction: column;

    gap: 0.9375rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services__title {
    font-size: var(--fs-h1);
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.services__list {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding-left: 0;
}

/* ---- Service Row — pixel-perfect per design ----
   Horizontal: [num] — gap:454px — [right col]
   Right col: [name+desc vertical gap:16] + [tags, gap:30 below]
   Padding: 80px top/bottom, 12px left/right
   ------------------------------------------------ */
.service-row {
    display: flex;
    padding: 5rem 0.75rem; /* 80px / 12px */
    border-top: 1px solid var(--color-border);
    gap: clamp(1.5rem, 31.6vw, 28.375rem); /* 454px at 1440px viewport */
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
}
.service-row:hover {
    background: #ffffff0d;
}
/* GIF / image — hidden by default, revealed on row hover */
.service-row__gif {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: clamp(6rem, 12vw, 10.5rem);
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    flex-shrink: 0;
}

.service-row__gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-row:hover .service-row__gif {
    opacity: 1;
}

.service-row:first-child {
    border-top: none;
}

/* Left: [0x] number */
.service-row__num {
    font-family: var(--font-display);
    font-size: 1.75rem; /* 28px */
    color: var(--color-accent); /* #ff3c08 */
    line-height: 1.1;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Right column: name+desc stacked, then tags below */
.service-row__right {
    display: flex;
    flex-direction: column;
    gap: 1.875rem; /* 30px between content and tags */
    flex: 1;
    min-width: 0;
}

/* name + description block */
.service-row__content {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 16px */
    max-width: 34.375rem; /* 550px */
}

/* Service name */
.service-row__name {
    font-family: var(--font-display);
    font-size: 1.75rem; /* 28px */
    color: #f4f4e8; /* warm white: Branding/Design/Website Types/Marketing */
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
}

/* Development uses slightly cooler white */
.service-row__name--light {
    color: #f6f6fb;
}

/* Description text */
.service-row__desc {
    font-family: var(--font-body);
    font-size: 1rem; /* 16px */
    color: #ececf5; /* #ececf5ff */
    line-height: 1.3;
    max-width: 29.1875rem; /* 467px */
}

/* Tags row */
.service-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9375rem; /* 15px */
}

/* Single tag badge */
.service-row__tag {
    font-family: var(--font-display); /* Russo One */
    font-size: 0.6875rem; /* 11px */
    color: #f6f6fb;
    line-height: 1.2;
    background: rgba(255, 255, 237, 0.1); /* #ffffed1a */
    border-radius: var(--radius-lg); /* 5px */
    padding: 0.25rem 0.4375rem 0.3125rem; /* 4px 7px 5px */
    white-space: nowrap;
}

/* ============================
   PORTFOLIO SECTION
   ============================ */
.portfolio {
    background: var(--color-portfolio-bg);
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.portfolio__header {
    display: flex;

    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.portfolio__title {
    font-size: var(--fs-h1);
    color: var(--color-text-dark);
    line-height: 1;
}


.portfolio .section-tag,
.process .section-tag,
.reviews .section-tag  {
    display: block;

max-width: 37%;
width: 100%;
}

.portfolio__title .section-tag__num {
    color: var(--color-text-dark);
}

.portfolio__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Row layout: image (891px) + gap:24px + info (436px) --- */
.portfolio-item {
    display: grid;
    grid-template-columns: 2.04fr 1fr; /* ~891 : 436 */
    gap: 1.5rem; /* 24px */
    align-items: center;
    padding: 3.125rem 0; /* 50px top/bottom */
    border-top: 1px solid rgba(156, 156, 156, 0.15); /* #9c9c9c26 */
    position: sticky;
    top: 100px;
    background: #c8ccd5;
}

/* Image block: cornerRadius 4, height 676px, clip */
.portfolio-item__image {
    border-radius: var(--radius-md); /* 4px */
    overflow: hidden;
    aspect-ratio: 891 / 676;
}

.portfolio-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item__image img {
    transform: scale(1.03);
}

/* Right info column: vertical, padding 50px top/bottom, gap 80px, max-w 424px */
.portfolio-item__info {
    display: flex;
    flex-direction: column;

    gap: 5rem; /* 80px between body and button */
    padding: 3.125rem 0; /* 50px */
    max-width: 26.5rem; /* 424px */
    height: 100%;
}

/* Body = meta + tags, gap 30px */
.portfolio-item__body {
    display: flex;
    flex-direction: column;
    gap: 1.875rem; /* 30px */
}

/* meta = title + desc, gap 16px */
.portfolio-item__meta {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 16px */
}

/* Title: Russo One 42px, #0b0b0f, lineHeight 1.05 */
.portfolio-item__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.92vw, 2.625rem); /* 42px */
    color: var(--color-text-dark);
    line-height: 1.05;
    font-weight: normal;
    text-transform: uppercase;
}

/* Description: DM Sans 16px, opacity 0.7, lineHeight 1.2, max-w 332px */
.portfolio-item__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.2;
    opacity: 0.7;
    max-width: 20.75rem; /* 332px */
}

/* Tags row: gap 8px (from design, differs from services 15px) */
.portfolio-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* 8px */
}

/* Tag badge: Russo One 11px, dark text, semi-white bg (#f6f6fbb2) */
.portfolio-item__tag {
    text-transform: uppercase;
    font-family: var(--font-display); /* Russo One */
    font-size: 0.6875rem; /* 11px */
    color: var(--color-text-dark); /* #0b0b0f */
    line-height: 1.2;
    background: rgba(246, 246, 251, 0.7); /* #f6f6fbb2 */
    border-radius: var(--radius-lg); /* 5px */
    padding: 0.25rem 0.4375rem 0.3125rem; /* 4px 7px 5px */
    white-space: nowrap;
}

/* Button: outlined dark, Russo One 15px, height 52px, padding [11,40], border 2px */
.portfolio-item__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9375rem; /* 15px */
    color: var(--color-text-dark);
    line-height: 1.333;
    height: 3.25rem; /* 52px */
    padding: 0 2.5rem; /* 40px */
    border: 2px solid var(--color-text-dark);
    border-radius: var(--radius-lg); /* 5px */
    text-decoration: none;
    align-self: flex-start;
    transition:
        background 0.2s,
        color 0.2s;
    white-space: nowrap;
}

.portfolio-item__btn:hover {
    background: var(--color-text-dark);
    color: #fff;
}

.portfolio__cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    background: var(--color-bg);
    padding-top: 7.5rem; /* 120px */
    padding-bottom: 7.5rem;
    position: relative;
    overflow: hidden;
}

.about__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
}

.about__line {
    width: 2px;
    height: 100%;
    background: var(--color-border-light);
}

/* Inner: vertical layout, gap 70px */
.about__inner {
    display: flex;
    flex-direction: column;
    gap: 4.375rem; /* 70px */
}

/* TOP ROW: label+image | headline+subdesc — gap 198px, align end */
.about__top {
    display: flex;
    align-items: flex-end;
    gap: clamp(2rem, 13.75vw, 12.375rem); /* 198px at 1440 */
}

/* LEFT: label at top, image at bottom — width 317px */
.about__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 19.8125rem; /* 317px */
    flex-shrink: 0;
    min-height: 18.375rem; /* 294px */
}

/* Image: 317×209, radius 4 */
.about__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 317 / 209;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT: headline at top, subdesc bottom-right — fill, gap 64px */
.about__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem; /* 64px */
    flex: 1;
    min-height: 18.375rem; /* 294px */
}

/* Headline: DM Sans 42px #c8ccd5, lineHeight 1.1, letterSpacing -0.12 */
.about__headline {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.92vw, 2.625rem); /* 42px */
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: -0.003em;
    font-weight: normal;
}
.about__headline span {
    opacity: 0.55;
}
/* Sub wrapper: pushes subdesc to the right */
.about__sub {
    display: flex;
    justify-content: flex-end;
}

/* Subdesc: DM Sans 20px, max-width 433px */
.about__subdesc {
    font-family: var(--font-body);
    font-size: 1.25rem; /* 20px */
    color: var(--color-text-primary);
    line-height: 1.2;
    letter-spacing: -0.003em;
    max-width: 27.0625rem; /* 433px */
}

/* DIVIDER */
.about__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM ROW: testimonial | stats — gap 138px, align end */
.about__bottom {
    display: flex;
    align-items: flex-end;

    gap: clamp(2rem, 9.58vw, 8.625rem); /* 138px at 1440 */
}

/* TESTIMONIAL: width 376px, vertical, gap 32px */
.about__testimonial {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* 32px */
    width: 23.5rem; /* 376px */
    flex-shrink: 0;
}

/* Founder row: avatar + name/role — gap 12px */
.about__founder {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
}

/* Avatar: 88×88 circle */
.about__avatar {
    width: 5.5rem; /* 88px */
    height: 5.5rem;
    border-radius: var(--radius-circle);
    overflow: hidden;
    background: rgba(255, 250, 250, 0.5);
    flex-shrink: 0;
}

.about__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name + role stacked, paddingTop 8px, gap 2px */
.about__founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem; /* 2px */
    padding-top: 0.5rem; /* 8px */
}

/* Name: DM Sans 16px #c8ccd5 */
.about__founder-name {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.3;
}

/* Role: DM Sans 14px rgba(240,234,234,0.5) */
.about__founder-role {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(240, 234, 234, 0.5);
    line-height: 1.3;
}

/* Quote: DM Sans 20px, lineHeight 1.4, letterSpacing -0.12 */
.about__quote {
    font-family: var(--font-body);
    font-size: 1.25rem; /* 20px */
    color: #c8ccd5;
    font-style: italic;

    line-height: 1.4;
    letter-spacing: -0.0071em;
    text-align: right;
}

/* STATS: fill space, vertical, gap 48px */
.about__stats {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* 48px */
    flex: 1;
}

/* Each stat: number left + label right, bottom border, padding-bottom 12px */
.about__stat {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 0.75rem; /* 12px */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Number: Russo One 70px #c8ccd5, lineHeight 1 */
.about__stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.86vw, 4.375rem); /* 70px */
    color: var(--color-text-primary);
    line-height: 1;
    flex: 1;
}

/* Label: DM Sans 16px rgba(255,255,255,0.8), lineHeight 1.3 */
.about__stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    max-width: 27.0625rem; /* 433px */
    width: 100%;
}

/* ============================
   PROCESS SECTION
   ============================ */
.process {
    background: linear-gradient(216.4deg, #c8ccd5 0%, #6c7894 100%);
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
    position: relative;
    overflow: hidden;
}

.process__header {
    display: flex;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 1rem);
}
.process .section-tag {
    display: block;
    margin-bottom: 0.9375rem;

}

.process__title {
    font-size: var(--fs-h1);
    color: var(--color-text-dark);
    line-height: 1.1;
		text-transform: uppercase;
}

.process__body {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.process__index {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 5.7vw, 5.125rem);
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.process__desc-panel {
    border-top: 1px solid var(--color-text-dark);
    padding-top: 0.625rem;
}
.process__left{
display: flex;
flex-direction: column;
justify-content:end;
height: 100%;
}

.process__desc {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    opacity: 0.7;
    line-height: 1.4;
    max-width: 19rem;
}

.process__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 50px;
}

.process__step {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding: 1.5rem 0;
    cursor: pointer;
    opacity: 0.6 !important;
    transition: all 0.3s ease 0s;
    padding-left: 60px;
}

.process__step.active {
    opacity: 1 !important;
    padding-left: 0px;
}

.process__step-week {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    opacity: 0.7;
    line-height: 1.4;
    min-width: 5rem;
    flex-shrink: 0;
}

.process__step-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 3.125rem);
    color: var(--color-text-dark);
    line-height: 1;
    text-transform: uppercase;
}

/* Description inside each step — hidden on desktop, shown on mobile */
.process__step-desc {
    display: none;
}

/* ============================
   TEAM SECTION
   ============================ */
.team {
    background: var(--color-bg);
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
    position: relative;
    overflow: hidden;
}

.team__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
}

.team__line {
    width: 2px;
    height: 100%;
    background: var(--color-border-light2);
}

.team__header {
    display: flex;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    position: relative;
    z-index: 1;
}
.team .section-tag {
    display: block;
    margin-bottom: 0.9375rem;
    width: 55%;
}

.team__title {
    font-size: var(--fs-h1);
    color: var(--color-text-primary);
    line-height: 1;
    text-transform: uppercase;
}

.team__carousel-wrapper {
    overflow: hidden;
    margin: 0 calc(-1 * var(--spacing-container));
}

/* Swiper overrides */
.team-swiper {
    overflow: visible;
    padding: 2.5rem 0;
}

.swiper-wrapper {
    align-items: center;
}

.team-swiper .swiper-slide {
    width: 16rem; /* 256px base */
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
    transform: scale(0.82);
    opacity: 0.5;
}

.team-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.team-swiper .swiper-slide-prev,
.team-swiper .swiper-slide-next {
    opacity: 0.75;
}

/* Card base */
.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-portfolio-bg);
    position: relative;
    width: 100%;
    height: 18.875rem; /* 302px */
		padding-top: 8px;
}

.team-card__img {
    width: 100%;
    height: calc(100% - 3.25rem);
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-card__label {
    height: 3.25rem;
    background: var(--color-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.625rem;
}

.team-card__role {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    color: var(--color-accent);
    text-align: center;
    line-height: 1;
}

.team__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.team__nav-btn {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
}

.team__nav-btn--prev {
    background: var(--color-portfolio-bg);
}

.team__nav-btn--next {
    background: var(--color-accent);
}

.team__nav-btn svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-text-dark);
}

.team__nav-btn--next svg {
    color: #fff;
}

.team__nav-btn:hover {
    opacity: 0.8;
}

.team__hiring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    z-index: 1;
}

.team__hiring-title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    color: var(--color-text-primary);
    line-height: 1.1;
}

.team__hiring-desc {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-primary);
    line-height: 1.3;
    max-width: 30rem;
}

/* CF7 file form in team hiring */
.team__hiring .wpcf7-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 36rem;
}

.team__hiring .wpcf7-form p {
    display: contents;
    margin: 0;
}

/* Hide native file wrap — replaced by JS custom label */
.team__hiring .wpcf7-form .wpcf7-form-control-wrap {
    display: none;
}

.team__hiring .hiring-file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    height: 3.25rem;
    padding: 0 1.75rem 0 1.5rem;
    border: 1px solid rgba(200, 204, 213, 0.45);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: var(--fs-cta);
    color: var(--color-text-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.team__hiring .hiring-file-label:hover {
    border-color: rgba(200, 204, 213, 0.8);
}

.team__hiring .hiring-file-label.has-file {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.team__hiring .wpcf7-form input[type="submit"] {
    height: 3.25rem;
    padding: 0 1.75rem;
    background: #c8ccd5;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: var(--fs-cta);
    color: var(--color-text-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.team__hiring .wpcf7-form input[type="submit"]:hover {
    background: var(--color-text-primary);
    color: var(--color-text-dark);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.reviews {
    background: var(--color-bg);
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
    position: relative;
    overflow: hidden;
}

.reviews__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
}

.reviews__line {
    width: 2px;
    height: 100%;
    background: var(--color-border-light2);
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6.5rem;
    background: linear-gradient(transparent, var(--color-bg));
    pointer-events: none;
    z-index: 2;
}

.reviews__header {
    display: flex;

    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews__title {
    font-size: var(--fs-h1);
    color: var(--color-text-primary);
    line-height: 1;
    text-transform: uppercase;
}



.reviews__widget {
    background: var(--color-accent);
    border-radius: var(--radius-xxl);
    padding: 2rem clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.reviews__left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.reviews__cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-text-dark);
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: auto;
}

.reviews__cta-desc {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-text-dark);
    opacity: 0.75;
    line-height: 1.4;
}

.reviews__leave-btn {
    color: var(--color-text-dark) !important;
    background: #c8ccd5 !important;
    border: none !important;
    align-self: flex-start;
    transition: all 0.3s ease 0s;
}

.reviews__leave-btn:hover {
    background: var(--color-text-dark) !important;
    color: var(--color-accent) !important;
}
form.glsr-form .glsr-star-rating span[data-value] {
    filter: invert(41%) sepia(92%) saturate(3000%) hue-rotate(350deg) brightness(98%) contrast(105%);
}
.reviews__right {
    min-width: 0;
}

.reviews-swiper {
    overflow: hidden;
}

.reviews-swiper .swiper-slide {
    width: clamp(17rem, 26vw, 26rem);
    height: auto;
}

.reviews__rating {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.reviews__stars {
    display: flex;
    gap: 0.25rem;
}

.reviews__star {
    color: var(--color-text-dark);
    font-size: 1.5rem;
}

.reviews__rating-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    line-height: 1.3;
}

.reviews__carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews__cards {
    display: flex;
    gap: 0.75rem;
    transition: transform 0.4s ease;
}

.review-card {
    flex-shrink: 0;
    width: clamp(18rem, 26.5vw, 26.5rem);
    background: #c8ccd5;
width: 100%;
    border-radius: var(--radius-xl);
    padding: 1.1875rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.reviews .swiper-wrapper {
    align-items: stretch;
}
.review-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.review-card__name {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

.review-card__date {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-text-dark);
    opacity: 0.6;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0;
}

.review-card__stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-card__star {
    color: #f59e0b;
    font-size: 1rem;
}

.review-card__text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    line-height: 1.4;
    opacity: 0.8;
}

.reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 3;
}

.reviews__nav .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* review-card avatar */
.review-card__avatar-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-card__avatar-placeholder {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}

.review-card__star--filled {
    color: #ff3c08;
}

.review-card__star:not(.review-card__star--filled) {
    color: rgba(245, 158, 11, 0.3);
}

/* ============================
   REVIEW POPUP
   ============================ */
.review-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.review-popup[hidden] {
    display: none;
}

.review-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.review-popup__box {
    position: relative;
    z-index: 1;
    background: #c8ccd5;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
    max-width: 42rem;
    max-height: 90vh;
    overflow-y: auto;
}

.review-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-text-dark);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.review-popup__close:hover {
    opacity: 1;
}

.review-popup__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* Site Reviews form inside popup */
.review-popup__box .glsr-field label {
    font-family: var(--font-display);
    font-size: var(--fs-small);
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 0.375rem;
}

.review-popup__box .glsr-field input,
.review-popup__box .glsr-field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 0.6875rem 0.875rem;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    outline: none;
    transition: border-color 0.2s;
}

.review-popup__box .glsr-field input:focus,
.review-popup__box .glsr-field textarea:focus {
    border-color: var(--color-accent);
}

.review-popup__box .glsr-field textarea {
    height: 9rem;
    resize: vertical;
}

.review-popup__box .glsr-field input::placeholder,
.review-popup__box .glsr-field textarea::placeholder {
    color: rgba(11, 11, 15, 0.35);
}

.review-popup__box .glsr-button[type='submit'] {
    font-family: var(--font-display);
    font-size: var(--fs-cta);
    color: var(--color-text-dark);
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0 ;
    height: 64px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
}

.review-popup__box .glsr-button[type='submit']:hover .btn__arrow svg {
    transform: translate(250%, -50%);
}

.review-popup__box .glsr-button[type='submit']:hover .btn__arrow::after {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Star rating in Site Reviews form */
.review-popup__box .glsr-star-rating .glsr-star {
    color: var(--color-accent);
    font-size: 1.75rem;
}

/* ============================
   CONTACT POPUP
   ============================ */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-popup__box {
  position: relative;
  z-index: 1;
  background: #c8ccd5;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 52rem;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text-dark);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.contact-popup__close:hover {
  opacity: 1;
}

.contact-popup__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text-dark);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 30rem;
}

.contact-popup__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Override dark form styles inside light popup */
.contact-popup__box .form__label {
  color: var(--color-text-dark);
  opacity: 0.7;
}

.contact-popup__box .form__input,
.contact-popup__box .form__textarea,
.contact-popup__box .form__select {
  background: rgba(0, 0, 0, 0.07);
  border-color: transparent;
  color: var(--color-text-dark);
}

.contact-popup__box .form__input::placeholder,
.contact-popup__box .form__textarea::placeholder {
  color: var(--color-text-dark);
  opacity: 0.45;
}

.contact-popup__box .form__input:focus,
.contact-popup__box .form__textarea:focus,
.contact-popup__box .form__select:focus {
  border-color: var(--color-text-dark);
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}

.contact-popup__box .form__select {
  color: var(--color-text-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230b0b0f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
}

.contact-popup__box .form__select option {
  background: #c8ccd5;
  color: var(--color-text-dark);
}

/* ============================
   FOOTER / CONTACT SECTION
   ============================ */
.contact {
    background: var(--color-bg);
    padding-top: var(--spacing-section);
    position: relative;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: 0;
    background-image: url('image/006 1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    pointer-events: none;
}

.contact__form-section {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: clamp(2rem, 6vw, 5.375rem);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 3.125rem);
    color: var(--color-text-primary);
    line-height: 1.1;
    text-transform: uppercase;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
		margin-bottom: 24px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__label {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.iti__selected-country {
    background-color: #1b1b22 !important;
}
.iti__selected-dial-code {
    color: #c8ccd5 !important;
}
.iti--inline-dropdown .iti__country-list {
    background-color: #1b1b23 !important;
}
.iti__search-input {
    border: navajowhite;
    outline: none;
    padding: 2px;
    background-color: #1b1b23;
}
.iti--inline-dropdown .iti__dropdown-content {
    border: 1px solid #464652 !important;
}
.form__input,
.form__textarea,
.form__select {
    width: 100%;
    background: var(--color-input-bg);

    border: 1px solid #9c9c9c26;
    border-radius: var(--radius-md);
    padding: 0.6875rem 0.875rem;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--color-accent);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(200, 204, 213, 0.3);
}

.form__textarea {
    height: 10.5rem;
    resize: vertical;
    border: 1px solid var(--color-border);
}

.form__submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}
.form__submit-row p {
    width: 50%;
}
.form__submit-row .btn-main {
    width: 100%;
}
.form__submit-row .btn__text {
    width: 100%;
}

/* CF7 validation */
.wpcf7-not-valid {
    border-color: var(--color-accent) !important;
}

.wpcf7-not-valid-tip {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-accent);
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-response-output {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    border: 1px solid;
    background: transparent;
}

.wpcf7-mail-sent-ok {
    color: #4caf50;
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.08);
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(255, 60, 8, 0.08);
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23c8ccd5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.form__select option {
    background: var(--color-input-bg);
}

.form__phone-wrap {
    display: flex;
    gap: 0.5rem;
}

.form__flag {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--color-input-bg);
    border-radius: var(--radius-md);
    padding: 0 0.75rem;
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-primary);
    cursor: pointer;
    white-space: nowrap;
}

/* ============================
   FOOTER BOTTOM
   ============================ */
.footer {
    margin-top: var(--spacing-section);

    padding: 2rem var(--spacing-container) 2.5rem;
    position: relative;
    z-index: 1;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2.5rem;
		border-bottom: 1px solid #C8CCD566;

}

.footer__tagline {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2.625rem);
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.125rem;
    line-height: 1.063;
    max-width: 434px;
    margin-bottom: 0;
}

.footer__email-link {
    font-family: var(--font-body);
    font-size: 50px;

    color: #ff3c08;
    text-underline-offset: 3px;
    margin-top: 0.35rem;
    display: inline-block;
    transition: color 0.2s;
}

.footer__email-link:hover {
    color: var(--color-accent);
}

.footer__nav {
    display: flex;
		justify-content:space-between;
		width: 100%;max-width: 720px;
    gap: clamp(2rem, 5vw, 5rem);
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__nav-heading {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer__nav-link {
    color: var(--color-text-primary);
    font-family: 'DM Sans';
    font-weight: 400;

    font-size: 16px;

    transition:
        opacity 0.2s,
        color 0.2s;
}

.footer__nav-link:hover {
    opacity: 0.7;
    color: var(--color-text-hero);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
}

.footer__logo img {
    width: clamp(5rem, 9vw, 8rem);
    height: auto;
}

.footer__copy {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-text-primary);
    opacity: 0.4;
    text-align: right;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
    .portfolio-item {
        grid-template-columns: 1.5fr 1fr;
    }

    .about__left {
        width: 16rem;
        min-height: auto;
    }

    .about__right {
        min-height: auto;
    }

    .process__body {
        grid-template-columns: 16rem 1fr;
    }

    .contact__form-section {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 900px) {
	.form__submit-row{
		margin-top: 16px;
	}
	.menu-menu-container {
   
    background: rgb(11, 11, 15);}
		.service-row__tags {
  
    gap: 8px; /* 15px */
}
.service-row__name{
	font-size: 26px;
}
.service-row {
flex-direction: column;
gap: 12px;
}


    .header-box {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .menu-toggle-box {
        display: flex;
    }

    .header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 11, 15, 0.98);
        border-top: 1px solid rgba(156, 156, 156, 0.15);
        padding: 1rem var(--spacing-container) 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-box.is-open .nav {
        display: flex;
				        background: rgb(11, 11, 15);
								padding: 16px;
    }

    .header .nav > div[class*='menu-'] {
        width: 100%;

    }

    .header .main-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .header .main-nav li {
        width: 100%;
    }

    .header .main-nav li a {
        display: block;
        width: 100%;
        font-family: var(--font-display);
        font-size: clamp(1.25rem, 5.5vw, 2rem);
        line-height: 1.1;
    }

    .header__right {
        width: 100%;
    }

    .header__right .btn__text {
        font-family: var(--font-display);
        font-size: 1.25rem;
        line-height: 1.1;
    }

    .portfolio-item {
        grid-template-columns: 1fr;
    }

    .portfolio-item__image {
        aspect-ratio: 16 / 9;
    }

    .portfolio-item__info {
        gap: 2rem;
        padding: 1.5rem 0 0;
    }

    .about__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .about__left {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 1.5rem;
    }

    .about__image {
        width: 12rem;
        flex-shrink: 0;
    }

    .about__right {
        min-height: auto;
        gap: 2rem;
    }

    .about__sub {
        justify-content: flex-start;
    }

    .about__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2.5rem;
    }
    .about__stat-label {
        text-align: right;
    }

    .about__testimonial {
        width: 100%;
    }

    .about__stats {
        width: 100%;
    }

    /* Process — mobile: hide left panel, expand all steps */
    .process__body {
        grid-template-columns: 1fr;
    }

    .process__left {
        display: none;
    }

    .process__header {
        flex-direction: column;
        gap: 0.75rem;
    }
    .process__steps {
        margin-top: 0px;
    }

    .process__step {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.5rem 0;

        position: relative;
        overflow: hidden;
        opacity: 1 !important;
    }

    /* Ghost watermark number */
    .process__step::before {
        content: attr(data-index);
        position: absolute;
        left: -0.5rem;
        bottom: -0.5rem;
        font-family: var(--font-display);
        font-size: 7rem;
        line-height: 1;
        color: #ff3c08;

        opacity: 0.07;
        pointer-events: none;
        user-select: none;
    }

    .process__step-week {
        font-size: 0.875rem;
        min-width: auto;
    }
    .process__step-desc {
        border-top: 1px solid #0b0b0f80;
    }

    .process__step-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
        color: #0b0b0f;
        width: 100%;
    }

    .process__step-desc {
        display: block;
        font-family: var(--font-body);
        font-size: 0.9375rem;
        color: var(--color-text-dark);
        opacity: 0.7;
        line-height: 1.5;
        padding: 0.625rem 0.875rem;

        margin-top: 0.25rem;
        position: relative;
        z-index: 1;
    }

    .contact__form-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .reviews__header {
        flex-direction: column;
        gap: 12px;
    }

    .team__header {
        flex-direction: column;
        gap: 12px;
    }
    .reviews__widget {
  grid-template-columns: 1fr;
	padding-right: 0;
    }

    .reviews-swiper .swiper-slide {
        width: 85%;
    }

    .reviews-swiper {
        overflow: visible;
    }

    .reviews__right {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-section: 3rem;
        --spacing-container: 1.25rem;
    }

    .hero__title {
        text-align: center;
				font-size: 38px;
    }.review-card {
		
		width: 100%;}

    .form__row {
        grid-template-columns: 1fr;
gap:12px;
margin-bottom: 12px;
    }

    .portfolio__header {
        flex-direction: column;
    }

    .portfolio-item__title {
        font-size: clamp(1.375rem, 5vw, 1.75rem);
    }

    .portfolio-item__desc {
        max-width: 100%;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 2rem 0rem;
    }

    .service-row__num {
        font-size: 1.25rem;
    }

    .service-row__name {
        font-size: 1.25rem;
    }

    .service-row__desc {
        max-width: 100%;
    }

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

    .footer__copy {
        text-align: left;
    }

    .services__header {
        align-items: flex-start;
    }

    .about {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .about__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .about__image {
        width: 100%;
    }

    .about__stat-num {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .portfolio__list {
        padding-left: 0;
    }
		.form__submit-row p {
    width: 100%;
}
.reviews__rating{
	display: none;
}
.reviews__left{
	gap: 10px
	;
	justify-content: center;
	text-align: center;
}
.reviews__leave-btn {
    margin: auto;}
		.footer__email-link{
font-size: 32px;
		}
		.service-row__gif{
			display: none;
		}
		.portfolio-item
{
	top: 50px;
}

.about__subdesc{
	color: #C8CCD5;
	font-size: 14px;
	max-width: 230px;
margin-left: auto;
}
.about__quote{
	max-width: 270px;
	font-size: 14px;
}
}



.wpcf7-spinner{
	display: none !important;
}
.contact-popup__title{
	width: 90%;
}

.glsr-field-subgroup{
	display: none;
}