﻿@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
:root {
    --base-100: #2e2e2e;
    --base-200: #3a3a39;
    --base-300: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}
span {
    font-family: 'Tajawal', sans-serif !important;
}
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: "Host Grotesk";
    background-color: var(--base-300);
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}
.logo-text {
    font-family: serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--base-300);
    letter-spacing: -0.05rem;
    line-height: 1.1;
    white-space: nowrap;
}
.menu-btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: auto;
    will-change: transform;
}
.btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 8px 8px 36px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: background 0.4s, color 0.4s, border 0.4s, box-shadow 0.4s !important;
    font-weight: 500 !important;
    gap: 24px !important;
    border: 1px solid rgba(24, 23, 23, 0.12) !important;
    cursor: none !important;
    position: relative;
    overflow: hidden;
    width: max-content;
    color: var(--base-100);
    background-color: var(--base-300);
}
.btn-icon {
    width: 52px !important;
    height: 52px !important;
    background-color: #D47328;
    color: var(--base-300);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background-color 0.4s ease, color 0.4s ease !important;
    flex-shrink: 0 !important;
}
.btn-label span {
    font-size: 0.9rem;
    font-weight: 450;
    line-height: 1;
}
.preloader-progress,
.preloader-mask,
.preloader-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}
.preloader-progress {
    background-color: var(--base-100);
    z-index: 1;
    will-change: opacity;
}
.preloader-progress-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0) translateZ(0);
    width: 55%;
    height: 100%;
    background-color: var(--base-300);
    transform-origin: left;
    will-change: transform;
}
.preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    mix-blend-mode: difference;
    z-index: 9999;
}
.preloader-logo h1 {
    position: relative;
    color: var(--base-300);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}
.preloader-mask {
    background-color: var(--base-100);
    mask: linear-gradient(var(--base-300), var(--base-300)),
        url("../images/mask2.svg") center/50% no-repeat;
    mask-composite: subtract;
    transform: translateZ(0);
    will-change: transform;
    z-index: 9998;
}
.preloader-content {
    z-index: 9999;
}
.preloader-footer {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    text-align: center;
}
.preloader-footer p {
    color: var(--base-300);
    opacity: 0.5;
}
.line,
.char {
    position: relative;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    margin-top: -0.1em;
    margin-bottom: -0.1em;
    will-change: transform;
}
.preloader-footer p {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer-main-grid {
    padding: 6rem 4rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.projects-header .small-label,
.projects-header .section-title,
.projects-header .section-description {
    opacity: 0;
}
.footer-bottom {
    position: relative;
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4rem;
    right: 4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.06) 50%, transparent);
}
::selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-moz-selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--base-300);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 115, 40, 0.4);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D47328;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(212, 115, 40, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}
img {
    transition: opacity 0.3s ease;
}
img[loading="lazy"] {
    opacity: 0;
}
img[loading="lazy"].loaded {
    opacity: 1;
}
:root {
    --em-accent: #D47328;
    --em-accent-rgb: 212, 115, 40;
    --em-dark: #0c0c0c;
    --em-dark-2: #161616;
    --em-gold: #D47328;
    --em-light: #fdfdfd;
    --em-light-2: #f5f2ee;
    --em-radius: 28px;
    --em-radius-lg: 40px;
    --em-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --em-section-pad: 130px;
    --em-font-body: "Host Grotesk", sans-serif;
    --em-font-disp: Georgia, "Times New Roman", serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body.no-preloader .preloader-progress,
body.no-preloader .preloader-mask,
body.no-preloader .preloader-content {
    display: none !important;
    opacity: 0 !important;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--em-font-body);
    background: var(--em-dark);
    color: var(--em-light);
    overflow-x: hidden;
}
.em-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 6%;
}
.em-eyebrow {
    display: block;
    font-family: var(--em-font-body);
    color: var(--em-accent);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.em-eyebrow--light {
    color: var(--em-gold);
}
.em-section-title {
    font-family: var(--em-font-disp);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--em-dark);
    margin-bottom: 1.5rem;
}
.em-section-title em {
    font-style: normal;
    color: var(--em-accent);
}
.em-section-title--light {
    color: var(--em-light) !important;
}
.em-section-lead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    opacity: 0.65;
    max-width: 700px;
    margin: 0 auto;
}
.btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 8px 8px 36px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: background 0.4s, color 0.4s, border 0.4s, box-shadow 0.4s !important;
    font-family: var(--em-font-body) !important;
    font-weight: 500 !important;
    gap: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    cursor: none !important;
    position: relative;
    overflow: hidden;
}
.btn-label span {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: inherit;
}
.btn-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.4s ease, color 0.4s ease !important;
    flex-shrink: 0 !important;
}
.btn-icon ion-icon {
    font-size: 1.3rem !important;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn:hover {
    box-shadow: none !important;
}
.btn:hover .btn-icon ion-icon {
    transform: none !important;
}
.primary-btn {
    background: #fff !important;
    color: #000 !important;
}
.primary-btn .btn-icon {
    background: var(--em-accent) !important;
    color: #fff !important;
}
.btn-light {
    background: #fff !important;
    color: #000 !important;
}
.btn-light:hover {
    box-shadow: none !important;
}
.btn-light .btn-icon {
    background: var(--em-accent) !important;
    color: #fff !important;
}
.form-submit-btn {
    background: #fff !important;
    color: #000 !important;
    align-self: flex-start;
}
.form-submit-btn .btn-icon {
    background: var(--em-accent) !important;
    color: #fff !important;
}
.em-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--em-dark);
    overflow: hidden;
}
.em-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.em-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(212, 115, 40, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}
.em-hero__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(212, 115, 40, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px, 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.4;
}
.em-hero__inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}
.em-hero__content {
    max-width: 600px;
}
.em-hero__tag {
    display: inline-block;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--em-gold);
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 40px;
}
.em-hero__title {
    font-family: var(--em-font-disp);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--em-light);
    margin-bottom: 20px;
}
.em-hero__title em {
    font-style: normal;
    color: var(--em-accent);
}
.em-hero__sub {
    font-family: var(--em-font-disp);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    margin-bottom: 24px;
    font-weight: 300;
}
.em-hero__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 48px;
}
.em-hero__visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.em-hero__card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--em-radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--em-light);
    white-space: nowrap;
    will-change: transform;
}
.em-hero__card-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 115, 40, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--em-accent);
    font-size: 1.3rem;
}
.em-hero__card--1 {
    top: 8%;
    left: 5%;
}
.em-hero__card--2 {
    top: 35%;
    right: 0%;
}
.em-hero__card--3 {
    bottom: 25%;
    left: 0%;
}
.em-hero__card--4 {
    bottom: 5%;
    right: 10%;
}
.em-hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 115, 40, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.em-hero__ring--1 {
    width: 280px;
    height: 280px;
}
.em-hero__ring--2 {
    width: 420px;
    height: 420px;
    border-color: rgba(212, 115, 40, 0.07);
}
.em-hero__ring--3 {
    width: 560px;
    height: 560px;
    border-color: rgba(212, 115, 40, 0.04);
}
.em-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.em-hero__scroll-bar {
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.em-hero__scroll-fill {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--em-accent);
    border-radius: 2px;
    animation: em-scroll-fill 2.2s ease-in-out infinite;
}
@keyframes em-scroll-fill {
    0% {
        top: -50%;
    }
    100% {
        top: 150%;
    }
}
.em-hero__scroll p {
    font-size: 0.52rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    writing-mode: vertical-lr;
}
.em-about {
    background: var(--em-light);
    color: var(--em-dark);
    padding: var(--em-section-pad) 0;
    border-radius: var(--em-radius-lg);
    position: relative;
    z-index: 5;
    margin-top: -40px;
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.em-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.em-about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #111;
    font-weight: 500;
    margin-bottom: 48px;
}
.em-expertise {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.em-expertise__title {
    font-family: var(--em-font-disp);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--em-dark);
    margin-bottom: 16px;
}
.em-expertise__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #111;
    font-weight: 500;
}
.em-outcomes {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--em-radius);
    padding: 50px 44px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
}
.em-outcomes__title {
    font-family: var(--em-font-disp);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--em-dark);
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.em-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s var(--em-ease);
}
.em-outcome-item:last-child {
    border-bottom: none;
}
.em-outcome-item:hover {
    transform: translateX(6px);
}
.em-outcome-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 115, 40, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--em-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.em-outcome-item:hover .em-outcome-icon {
    background: var(--em-accent);
    color: #fff;
}
.em-outcome-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--em-dark);
    margin-bottom: 4px;
}
.em-outcome-body p {
    font-size: 0.9rem;
    color: rgba(12, 12, 12, 0.55);
    line-height: 1.55;
}
.em-mission {
    background: var(--em-dark-2, #161616);
    color: var(--em-light);
    padding: var(--em-section-pad) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.em-mission__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--em-font-disp);
    font-size: clamp(5rem, 18vw, 20rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: 0.05em;
}
.em-mission__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.em-mission__inner span {
    letter-spacing: 0;
    font-size: 1rem;
}
.em-mission__title {
    font-family: var(--em-font-disp);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--em-light);
    margin-bottom: 30px;
}
.em-mission__title em {
    font-style: normal;
    color: var(--em-accent);
}
.em-mission__text {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto 80px;
}
.em-mission__stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}
.em-stat {
    text-align: center;
}
.em-stat__num {
    display: block;
    font-family: var(--em-font-disp);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    color: var(--em-accent);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.em-stat__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.35);
}
.em-scope {
    background: var(--em-light-2);
    color: var(--em-dark);
    padding: var(--em-section-pad) 0;
    border-radius: var(--em-radius-lg);
    position: relative;
    z-index: 5;
    margin-top: -40px;
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.em-scope__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}
.em-scope__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.em-scope-card {
    position: relative;
    padding: 44px 38px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--em-ease), box-shadow 0.4s ease;
}
.em-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.em-scope-card--featured {
    background: var(--em-dark);
    color: var(--em-light);
}
.em-scope-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 115, 40, 0.2) 0%, transparent 65%);
    pointer-events: none;
}
.em-scope-card--dark {
    background: #1a1610;
    color: var(--em-light);
}
.em-scope-card--accent {
    background: var(--em-accent);
    color: #fff;
}
.em-scope-card--stone {
    background: #fff;
    color: var(--em-dark);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.em-scope-card__num {
    font-family: var(--em-font-disp);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    position: absolute;
    top: 20px;
    right: 30px;
}
.em-scope-card--stone .em-scope-card__num,
.em-scope-card--accent .em-scope-card__num {
    color: rgba(0, 0, 0, 0.07);
}
.em-scope-card__icon {
    font-size: 2rem;
    color: var(--em-accent);
    margin-bottom: 4px;
}
.em-scope-card--featured .em-scope-card__icon {
    color: var(--em-gold);
}
.em-scope-card--accent .em-scope-card__icon {
    color: rgba(255, 255, 255, 0.8);
}
.em-scope-card__title {
    font-family: var(--em-font-disp);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}
.em-scope-card__desc {
    font-size: 0.92rem;
    line-height: 1.65;
    opacity: 0.65;
}
.em-scope-card--stone .em-scope-card__desc {
    color: rgba(12, 12, 12, 0.65);
    opacity: 1;
}
.em-method {
    background: var(--em-dark);
    color: var(--em-light);
    padding: var(--em-section-pad) 0;
    position: relative;
    overflow: hidden;
}
.em-method__bg-text {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--em-font-disp);
    font-size: clamp(6rem, 20vw, 22rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
}
.em-method__header {
    margin-bottom: 80px;
    max-width: 600px;
}
.em-method__lead {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-top: 20px;
}
.em-method__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    position: relative;
}
.em-method__steps::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 60px;
    bottom: 60px;
    width: 1px;
    background: linear-gradient(to bottom, var(--em-accent), rgba(212, 115, 40, 0.05));
}
.em-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    transition: transform 0.4s var(--em-ease);
}
.em-step:last-child {
    border-bottom: none;
}
.em-step:hover {
    transform: translateX(12px);
}
.em-step__connector {
    display: none;
}
.em-step__num {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font-disp);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--em-accent);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    background: var(--em-dark);
}
.em-step:hover .em-step__num {
    background: var(--em-accent);
    color: #fff;
    border-color: var(--em-accent);
}
.em-step__title {
    font-family: var(--em-font-disp);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 400;
    color: var(--em-light);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.em-step__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
}
.em-step__content {
    align-self: center;
}
.em-cta {
    background: var(--em-dark-2, #161616);
    padding: var(--em-section-pad) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--em-radius-lg) var(--em-radius-lg) 0 0;
    margin-top: -40px;
    z-index: 6;
}
.em-cta::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 115, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.em-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.em-cta__title {
    font-family: var(--em-font-disp);
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--em-light);
    margin-bottom: 30px;
}
.em-cta__title em {
    font-style: normal;
    color: var(--em-accent);
}
.em-cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 55px;
}
@media (max-width: 1024px) {
    .em-hero__inner {
        grid-template-columns: 1fr;
        padding-top: 140px;
        text-align: center;
    }
    .em-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .em-hero__desc {
        text-align: center;
    }
    .em-hero__visual {
        display: none;
    }
    .em-about__grid,
    .em-contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .em-about__left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .em-expertise {
        text-align: center;
    }
    .em-mission__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .em-mission__stats {
        gap: 40px;
    }
    .em-scope__grid {
        grid-template-columns: 1fr 1fr;
    }
    .em-method__header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto 60px;
    }
    .em-method__steps::before {
        display: none;
    }
}
@media (max-width: 768px) {
    :root {
        --em-section-pad: 80px;
    }
    .em-hero__scroll {
        display: none;
    }
    .em-scope__grid {
        grid-template-columns: 1fr;
    }
    .em-form-row {
        grid-template-columns: 1fr;
    }
    .em-contact__form-wrap {
        padding: 36px 28px;
    }
    .em-mission__stats {
        flex-direction: column;
        gap: 30px;
    }
    .em-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }
    .em-step__num {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }
}
