:root {
    --bg: #0a0a0d;
    --bg-soft: #111218;
    --surface: #151722;
    --border: rgba(255, 255, 255, 0.08);

    --text: #f5f7fb;
    --text-soft: #b2b8c8;
    --text-muted: #8b92a3;

    --accent: #7c4dff;
    --accent-hover: #8d63ff;

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;

    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.38);
    --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.24);

    --container: 1180px;
    --section-space: 96px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at top right, rgba(124, 77, 255, 0.12), transparent 28%),
            linear-gradient(180deg, #090a0f 0%, #0c0d12 100%);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

section {
    padding: var(--section-space) 0;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head {
    max-width: 740px;
    margin-bottom: 34px;
}

.section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
}

.section-head p {
    margin: 0;
    color: var(--text-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 13, 0.72);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.logo {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a:not(.btn) {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
            transform 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 14px 32px rgba(124, 77, 255, 0.32);
}

.btn--primary:hover {
    background: var(--accent-hover);
}

.btn--ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.btn--small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.95rem;
}

/* HERO */
.hero {
    padding: 56px 0 88px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--text-soft);
    font-weight: 600;
}

.hero h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.9rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
}

.hero__text {
    max-width: 620px;
    margin: 22px 0 0;
    font-size: 1.08rem;
    color: var(--text-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero__media {
    position: relative;
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: auto 8% -6% 8%;
    height: 24%;
    background: rgba(124, 77, 255, 0.28);
    filter: blur(60px);
    z-index: 0;
}

.hero__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* CREDIBILITY */
.credibility {
    padding-top: 0;
}

.credibility__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.credibility__item {
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.credibility__item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.credibility__item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* ABOUT */
.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 42px;
    align-items: start;
}

.about__media-stack {
    position: relative;
    display: grid;
    gap: 0;
}

.about__media img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about__media--main {
    max-width: 92%;
    position: relative;
    z-index: 1;
}

.about__media--main img {
    aspect-ratio: 4 / 5;
    object-position: center 35%;
}

.about__media--secondary {
    max-width: 66%;
    margin: -72px 0 0 auto;
    position: relative;
    z-index: 2;
}

.about__media--secondary img {
    aspect-ratio: 4 / 4.8;
    object-position: center top;
    border: 1px solid var(--border);
    border-radius: 24px;
}

.about h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.06;
}

.about p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.about__proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.proof-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
}

.proof-card__label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proof-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.45;
    font-size: 0.96rem;
}

.proof-card p span {
    display: block;
}

.proof-card p span + span {
    margin-top: 8px;
}

/* SECTION BREAK IMAGES */
.section-break-image {
    margin-top: 30px;
}

.section-break-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.section-break-image--about {
    grid-column: 1 / -1;
    width: 66%;
    margin-left: auto;
    margin-top: 14px;
}

.section-break-image--about img {
    height: auto;
    object-position: center 22%;
}

.section-break-image--services {
    width: 68%;
    margin-left: auto;
}

.section-break-image--services img {
    height: clamp(300px, 32vw, 430px);
    object-position: center 20%;
}

/* SERVICES */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 77, 255, 0.34);
    background: linear-gradient(180deg, rgba(124,77,255,0.08), rgba(255,255,255,0.03));
}

.service-card__number {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.service-card p {
    margin: 0;
    color: var(--text-soft);
}

.service-card__meta {
    margin-top: 18px !important;
    color: var(--text);
    font-weight: 600;
    font-size: 0.94rem;
}

/* APPROACH */
.approach {
    overflow: hidden;
}

.approach__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.approach-card {
    padding: 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.approach-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.approach-card p {
    margin: 0;
    color: var(--text-soft);
}

.quote-box {
    margin: 28px 0 0;
    padding: 22px 24px;
    border-left: 3px solid var(--accent);
    border-radius: 18px;
    background: rgba(124, 77, 255, 0.08);
    color: var(--text);
    font-size: 1.03rem;
}

.approach-imgs {
    width: min(var(--container), calc(100% - 32px));
    margin: 34px auto 0;
    position: relative;
    min-height: 500px;
}

.approach-imgs img {
    display: block;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.approach-imgs img:first-child {
    width: min(62%, 760px);
    height: clamp(340px, 38vw, 500px);
    object-position: center 35%;
}

.approach-imgs img:last-child {
    position: absolute;
    right: 0;
    bottom: -26px;
    width: min(42%, 500px);
    height: clamp(290px, 31vw, 390px);
    object-position: center 25%;
}

/* REVIEWS */
.reviews {
    position: relative;
}

.reviews__carousel-wrap {
    position: relative;
}

.reviews__carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 77, 255, 0.6) rgba(255, 255, 255, 0.05);
}

.reviews__carousel::-webkit-scrollbar {
    height: 6px;
}

.reviews__carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.reviews__carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(124, 77, 255, 0.85), rgba(124, 77, 255, 0.5));
    border-radius: 999px;
}

.reviews__carousel-wrap::before,
.reviews__carousel-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 14px;
    width: 52px;
    pointer-events: none;
    z-index: 3;
}

.reviews__carousel-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #0c0d12 0%, rgba(12, 13, 18, 0) 100%);
}

.reviews__carousel-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #0c0d12 0%, rgba(12, 13, 18, 0) 100%);
}

.review-card {
    scroll-snap-align: start;
    min-width: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.review-card--photo {
    position: relative;
    min-height: 500px;
    background: transparent;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.review-card--photo:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 77, 255, 0.22);
}

.review-card--photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.review-card--photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(8, 9, 12, 0.02) 0%,
            rgba(8, 9, 12, 0.06) 30%,
            rgba(8, 9, 12, 0.22) 58%,
            rgba(8, 9, 12, 0.62) 100%
    );
}

.review-card__overlay {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 16px;
    z-index: 2;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(10, 10, 13, 0.52);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card__name {
    display: inline-block;
    margin: 0 0 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-card--photo blockquote {
    margin: 0;
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CONSULTATION */
.consultation__inner {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 30px;
    align-items: start;
    padding: 38px;
    border-radius: var(--radius-lg);
    background:
            linear-gradient(135deg, rgba(124,77,255,0.16), rgba(124,77,255,0.05)),
            var(--surface);
    border: 1px solid rgba(124, 77, 255, 0.28);
    box-shadow: var(--shadow-md);
}

.consultation__copy h2 {
    margin: 0 0 16px;
    max-width: 14ch;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
}

.consultation__text,
.consultation__note {
    margin: 0;
    color: var(--text-soft);
}

.consultation__list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.consultation__list li + li {
    margin-top: 10px;
}

.consultation__footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.consultation__note {
    max-width: 560px;
}

.consultation-template {
    width: min(var(--container), calc(100% - 32px));
    margin: 18px auto 0;
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
    border-radius: 18px;
    background: rgba(124, 77, 255, 0.08);
}

.consultation-template p {
    margin: 0;
    color: var(--text-soft);
    user-select: all;
    cursor: text;
}

/* CONTACT */
.contact__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.contact__content {
    padding: 28px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.contact__intro {
    margin: 0 0 18px;
    color: var(--text-soft);
}

.contact__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact__list li + li {
    margin-top: 12px;
}

.contact__list a {
    color: var(--text-soft);
}

.contact__list a:hover {
    color: var(--text);
}

.contact__place {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.contact__place h3 {
    margin: 0 0 8px;
}

.contact__place p {
    margin: 0;
    color: var(--text-soft);
}

.contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.contact__map {
    padding: 0;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    :root {
        --section-space: 80px;
    }

    .hero__grid,
    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .credibility__grid,
    .services__grid,
    .approach__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero h1 {
        max-width: 11ch;
    }

    .reviews__carousel {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .review-card--photo {
        min-height: 430px;
    }

    .consultation__inner {
        grid-template-columns: 1fr;
    }

    .consultation__footer {
        flex-direction: column;
    }

    .section-break-image--about {
        width: 76%;
    }

    .section-break-image--services {
        width: 78%;
    }

    .section-break-image--services img {
        height: clamp(270px, 40vw, 390px);
    }
}

@media (max-width: 760px) {
    :root {
        --section-space: 68px;
    }

    .site-header .container {
        min-height: 68px;
    }

    .site-nav {
        display: none;
    }

    .services__grid,
    .approach__grid,
    .credibility__grid,
    .about__proof-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 28px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.15rem, 11vw, 3.2rem);
        line-height: 0.98;
        letter-spacing: -0.03em;
    }

    .hero__media img,
    .about__media--main img {
        aspect-ratio: 4 / 4.8;
    }

    .about__media-stack {
        gap: 12px;
    }

    .about__media--secondary {
        width: 78%;
        margin-top: -28px;
        margin-left: auto;
    }

    .about__media--secondary img {
        aspect-ratio: 4 / 4.8;
    }

    .section-break-image,
    .section-break-image--about,
    .section-break-image--services,
    .third-image,
    .service-img {
        width: 100% !important;
        max-width: none;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .section-break-image img,
    .section-break-image--about img,
    .section-break-image--services img,
    .third-image img,
    .service-img img {
        width: 100%;
        display: block;
        border-radius: 22px;
    }

    .section-break-image--about img {
        height: auto;
        object-fit: contain;
    }

    .section-break-image--services img {
        height: 240px;
        object-fit: cover;
        object-position: center 20%;
    }

    .approach-imgs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 26px;
        min-height: 0;
        width: 100%;
    }

    .approach-imgs img,
    .approach-imgs img:first-child,
    .approach-imgs img:last-child {
        position: static;
        width: 90%;
        height: 320px;
        object-fit: cover;
        border-radius: 22px;
        margin-left: auto;
        margin-right: auto;
    }

    .approach-imgs img:first-child {
        object-position: center 35%;
    }

    .approach-imgs img:last-child {
        object-position: center 25%;
    }

    .reviews__carousel {
        grid-auto-columns: 84%;
        gap: 14px;
        padding-bottom: 12px;
    }

    .reviews__carousel-wrap::before,
    .reviews__carousel-wrap::after {
        width: 28px;
    }

    .review-card--photo {
        min-height: 440px;
        border-radius: 22px;
    }

    .review-card__overlay {
        left: 4px;
        right: 4px;
        bottom: 12px;
        padding: 12px 13px;
        border-radius: 16px;
    }

    .review-card__name {
        font-size: 0.72rem;
        margin-bottom: 7px;
    }

    .review-card--photo blockquote {
        font-size: 0.94rem;
        line-height: 1.5;
        -webkit-line-clamp: 5;
    }

    .consultation__inner,
    .contact__content {
        padding: 24px;
    }

    .consultation-template {
        padding: 16px 18px;
    }

    .contact__actions {
        flex-direction: column;
    }

    .contact__map {
        min-height: 320px;
    }

    .contact__map iframe {
        min-height: 320px;
    }
}

.consultation-template {
    width: min(var(--container), calc(100% - 32px));
    margin: 18px auto 0;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(124, 77, 255, 0.26);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.consultation-template:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 77, 255, 0.42);
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.consultation-template__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.consultation-template__label {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.consultation-template__copy {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.consultation-template__copy:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 77, 255, 0.32);
    transform: translateY(-1px);
}

.consultation-template__text {
    margin: 0;
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    user-select: all;
}

.consultation-template__hint {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .consultation-template {
        padding: 16px 16px;
        border-radius: 18px;
    }

    .consultation-template__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .consultation-template__copy {
        width: 100%;
    }

    .consultation-template__text {
        font-size: 0.96rem;
    }
}

.approach-h2-span {
    display: block;
}

.review-card--photo {
    min-height: 540px;
}

.review-card__overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 16px 18px;
    min-height: 185px;
    background: rgba(10, 10, 13, 0.42);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.review-card__name {
    margin: 0 0 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.review-card--photo blockquote {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.55;
    color: #fff;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* mobil */
@media (max-width: 760px) {
    .review-card--photo {
        min-height: 470px;
    }

    .review-card__overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        min-height: 170px;
        padding: 14px 14px 16px;
    }

    .review-card--photo blockquote {
        font-size: 0.94rem;
        line-height: 1.5;
        -webkit-line-clamp: 6;
    }

    .review-card--photo-lg .review-card__overlay {
        min-height: 210px;
    }

    .review-card--photo-lg blockquote {
        -webkit-line-clamp: 8;
    }
}