:root {
    color-scheme: dark;
    --bg: #071516;
    --bg-soft: #0b1e1f;
    --surface: rgba(17, 43, 42, 0.68);
    --surface-strong: #102a29;
    --text: #f3f4ed;
    --muted: #9fb3ad;
    --line: rgba(208, 232, 222, 0.13);
    --accent: #71e6ad;
    --accent-strong: #37c888;
    --accent-soft: rgba(113, 230, 173, 0.12);
    --warm: #e9c78e;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1180px;
    --header-height: 86px;
    --font-ar: "SF Arabic", "Noto Sans Arabic", "Geeza Pro", Tahoma, Arial, sans-serif;
    --font-en: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.017) 1px, transparent 1px),
        var(--bg);
    background-size: 58px 58px;
    color: var(--text);
    font-family: var(--font-ar);
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -3;
    background: linear-gradient(180deg, rgba(7, 21, 22, 0.18), var(--bg) 68%);
    content: "";
    pointer-events: none;
}

::selection {
    background: var(--accent);
    color: #062019;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
}

.skip-link {
    position: fixed;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--accent);
    color: #062019;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 112px;
}

.ambient {
    position: fixed;
    z-index: -2;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.45;
    pointer-events: none;
}

.ambient-one {
    width: 460px;
    height: 460px;
    inset-block-start: -180px;
    inset-inline-end: -150px;
    background: radial-gradient(circle, rgba(55, 200, 136, 0.32), transparent 68%);
}

.ambient-two {
    width: 520px;
    height: 520px;
    inset-block-start: 62vh;
    inset-inline-start: -260px;
    background: radial-gradient(circle, rgba(46, 118, 122, 0.3), transparent 67%);
}

.pointer-glow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(113, 230, 173, 0.075), transparent 68%);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(calc(var(--pointer-x, -500px) - 50%), calc(var(--pointer-y, -500px) - 50%), 0);
    transition: opacity 300ms ease;
}

body.has-pointer .pointer-glow {
    opacity: 1;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background-color 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
    height: 74px;
    border-color: var(--line);
    background: rgba(7, 21, 22, 0.82);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-logo {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26), 0 0 0 4px rgba(113, 230, 173, 0.08);
}

.brand-logo img {
    display: block;
    width: 47px;
    height: auto;
    filter: saturate(1.18) contrast(1.08);
}

.brand-copy {
    display: grid;
    gap: 0;
    direction: ltr;
    font-family: var(--font-en);
    line-height: 1.25;
    text-align: left;
}

.brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: -0.01em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.64rem;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #c5d2cd;
    font-size: 0.92rem;
    font-weight: 650;
}

.main-navigation > a:not(.nav-contact) {
    position: relative;
    padding-block: 9px;
}

.main-navigation > a:not(.nav-contact)::after {
    position: absolute;
    inset: auto 0 3px;
    height: 1px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease;
}

.main-navigation > a:hover::after,
.main-navigation > a:focus-visible::after {
    transform: scaleX(1);
}

.nav-contact {
    padding: 10px 18px;
    border: 1px solid rgba(113, 230, 173, 0.35);
    border-radius: 999px;
    color: var(--accent);
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.nav-contact:hover {
    background: var(--accent);
    color: #062019;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    border-radius: 99px;
    background: currentColor;
    transition: transform 200ms ease;
}

.hero {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding-block-start: calc(var(--header-height) + 70px);
    padding-block-end: 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.eyebrow span {
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-block-start: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin-block-end: 26px;
    font-size: clamp(3.2rem, 6.5vw, 6.25rem);
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

h1 em,
h2 em {
    color: var(--accent);
    font-style: normal;
    font-weight: 440;
}

.hero-lead {
    max-width: 650px;
    margin-block-end: 34px;
    color: #bbc9c4;
    font-size: clamp(1.05rem, 1.55vw, 1.22rem);
    line-height: 1.9;
}

.hero-lead bdi {
    color: var(--text);
    font-family: var(--font-en);
    font-weight: 760;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button span {
    direction: ltr;
    font-family: var(--font-en);
    font-size: 1.05rem;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--accent);
    box-shadow: 0 15px 36px rgba(55, 200, 136, 0.18);
    color: #062019;
}

.button-primary:hover {
    background: #8af0bd;
    box-shadow: 0 18px 46px rgba(55, 200, 136, 0.28);
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.button-ghost:hover {
    border-color: rgba(113, 230, 173, 0.38);
    background: var(--accent-soft);
}

.hero-values {
    display: grid;
    max-width: 650px;
    grid-template-columns: repeat(3, 1fr);
    margin: 54px 0 0;
    padding-block-start: 24px;
    border-top: 1px solid var(--line);
}

.hero-values div {
    padding-inline-start: 16px;
    border-inline-start: 1px solid var(--line);
}

.hero-values div:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
}

.hero-values dt {
    margin-block-end: 2px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
}

.hero-values dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.hero-visual {
    position: relative;
    perspective: 1200px;
}

.studio-card {
    position: relative;
    min-height: 550px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(194, 226, 214, 0.16);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 16% 5%, rgba(113, 230, 173, 0.13), transparent 35%),
        linear-gradient(150deg, rgba(21, 54, 51, 0.92), rgba(9, 27, 28, 0.92));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg));
    transition: transform 160ms ease-out;
}

.studio-card::after {
    position: absolute;
    width: 300px;
    height: 300px;
    inset: auto -120px -140px auto;
    border: 1px solid rgba(113, 230, 173, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(113, 230, 173, 0.025), 0 0 0 90px rgba(113, 230, 173, 0.018);
    content: "";
}

.studio-bar,
.studio-heading,
.studio-flow,
.studio-widgets {
    position: relative;
    z-index: 1;
}

.studio-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block-end: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    direction: ltr;
    font-family: var(--font-en);
    font-size: 0.69rem;
}

.studio-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.studio-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(113, 230, 173, 0.09);
}

.studio-dots {
    letter-spacing: 0.18em;
}

.studio-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-block: 40px 35px;
}

.studio-heading small {
    display: block;
    margin-block-end: 7px;
    color: var(--muted);
    font-size: 0.76rem;
}

.studio-heading strong {
    display: block;
    max-width: 300px;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.35;
}

.studio-badge {
    display: grid;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    place-items: center;
    border: 1px solid rgba(113, 230, 173, 0.24);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(220, 237, 228, 0.9));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.studio-badge img {
    display: block;
    width: 52px;
    height: auto;
    filter: saturate(1.16) contrast(1.06);
}

.studio-flow {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(2, 13, 14, 0.25);
}

.studio-flow > i {
    height: 1px;
    background: linear-gradient(90deg, var(--line), rgba(113, 230, 173, 0.45), var(--line));
}

.flow-item {
    display: grid;
    gap: 2px;
    text-align: center;
}

.flow-item span {
    color: var(--muted);
    direction: ltr;
    font-family: var(--font-en);
    font-size: 0.6rem;
}

.flow-item b {
    font-size: 0.78rem;
}

.flow-item.active b {
    color: var(--accent);
}

.studio-widgets {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 14px;
    margin-block-start: 14px;
}

.widget {
    min-height: 155px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(2, 13, 14, 0.22);
}

.widget-label {
    color: var(--muted);
    font-size: 0.7rem;
}

.chart-bars {
    display: flex;
    height: 92px;
    align-items: flex-end;
    gap: 9px;
    margin-block-start: 8px;
    direction: ltr;
}

.chart-bars i {
    width: 100%;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(to top, rgba(113, 230, 173, 0.25), var(--accent));
    opacity: 0.75;
    animation: bars 4.2s ease-in-out infinite alternate;
}

.chart-bars i:nth-child(1) { height: 35%; }
.chart-bars i:nth-child(2) { height: 62%; animation-delay: -0.8s; }
.chart-bars i:nth-child(3) { height: 48%; animation-delay: -1.6s; }
.chart-bars i:nth-child(4) { height: 82%; animation-delay: -2.4s; }
.chart-bars i:nth-child(5) { height: 68%; animation-delay: -3.2s; }

.widget-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.widget-side strong {
    font-size: 0.92rem;
    line-height: 1.45;
}

.orbit {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(113, 230, 173, 0.3);
    border-radius: 50%;
}

.orbit::after {
    position: absolute;
    width: 8px;
    height: 8px;
    inset: 3px auto auto 4px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent);
    content: "";
}

.floating-note {
    position: absolute;
    z-index: 2;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(10, 31, 31, 0.82);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #d9e6e1;
    font-size: 0.7rem;
    font-weight: 750;
    animation: float 5s ease-in-out infinite;
}

.note-one {
    inset: 12% auto auto -48px;
}

.note-two {
    inset: auto -36px 12% auto;
    animation-delay: -2.5s;
}

.about {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
}

.about-grid,
.process-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 10vw, 150px);
}

h2 {
    margin-block-end: 24px;
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    font-weight: 730;
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.large-copy {
    margin-block-end: 22px;
    color: var(--text);
    font-size: clamp(1.3rem, 2.1vw, 1.75rem);
    font-weight: 580;
    line-height: 1.8;
}

.about-copy > p:not(.large-copy) {
    max-width: 680px;
    color: var(--muted);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-block-start: 30px;
    direction: ltr;
    font-family: var(--font-en);
}

.about-tags span {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #c7d6d0;
    font-size: 0.7rem;
    font-weight: 650;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-block-end: 55px;
}

.section-heading > p {
    max-width: 410px;
    margin-block-end: 28px;
    color: var(--muted);
}

.services {
    isolation: isolate;
}

.services::before {
    position: absolute;
    width: 520px;
    height: 520px;
    inset: 20% auto auto -330px;
    z-index: -1;
    border: 1px solid rgba(113, 230, 173, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(113, 230, 173, 0.018), 0 0 0 140px rgba(113, 230, 173, 0.012);
    content: "";
}

.services-grid {
    display: grid;
    gap: 28px;
}

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
    padding: clamp(20px, 3vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(208, 232, 222, 0.14);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 0 0, rgba(113, 230, 173, 0.09), transparent 34%),
        linear-gradient(135deg, rgba(18, 49, 47, 0.72), rgba(10, 29, 30, 0.72));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    direction: ltr;
    transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-card::before {
    position: absolute;
    width: 290px;
    height: 290px;
    inset: auto -170px -190px auto;
    border: 1px solid rgba(113, 230, 173, 0.11);
    border-radius: 50%;
    box-shadow: 0 0 0 44px rgba(113, 230, 173, 0.018);
    content: "";
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(113, 230, 173, 0.32);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.service-card.featured {
    background:
        radial-gradient(circle at 100% 0, rgba(113, 230, 173, 0.14), transparent 38%),
        linear-gradient(225deg, rgba(18, 52, 48, 0.82), rgba(9, 28, 29, 0.76));
}

.service-card:nth-child(even) .service-media {
    grid-column: 2;
    grid-row: 1;
}

.service-card:nth-child(even) .service-content {
    grid-column: 1;
    grid-row: 1;
}

.service-content {
    position: relative;
    z-index: 1;
    direction: rtl;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-block-end: 27px;
}

.service-number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(113, 230, 173, 0.2);
    border-radius: 17px;
    background: rgba(113, 230, 173, 0.08);
    color: var(--accent);
    direction: ltr;
    font-family: var(--font-en);
    font-size: 0.74rem;
    font-weight: 820;
}

.service-type {
    color: #a9bdb6;
    direction: ltr;
    font-family: var(--font-en);
    font-size: 0.67rem;
    font-weight: 720;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-media {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(208, 232, 222, 0.16);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(113, 230, 173, 0.025));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.service-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.service-card:hover .service-media img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.045);
}

.service-card h3 {
    margin-block-end: 17px;
    font-size: clamp(2rem, 3.4vw, 3.45rem);
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.service-card p {
    max-width: 520px;
    margin-block-end: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.9;
}

.service-card ul {
    display: grid;
    gap: 9px;
    margin: 25px 0 0;
    padding: 0;
    color: #c3d1cc;
    font-size: 0.84rem;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.service-card li::before {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(113, 230, 173, 0.08);
    content: "";
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-block-start: 30px;
    padding-block-end: 5px;
    border-block-end: 1px solid rgba(113, 230, 173, 0.34);
    color: var(--accent);
    font-size: 0.83rem;
    font-weight: 790;
    transition: border-color 200ms ease, gap 200ms ease, color 200ms ease;
}

.service-link span {
    direction: ltr;
    font-family: var(--font-en);
}

.service-link:hover {
    gap: 20px;
    border-color: var(--accent);
    color: #9cf2c6;
}

.process {
    border-block-start: 1px solid var(--line);
}

.process-copy > p:last-child {
    max-width: 410px;
    color: var(--muted);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding-block: 32px;
    border-block-end: 1px solid var(--line);
}

.process-list li:first-child {
    padding-block-start: 0;
}

.process-list > li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 15px;
    color: var(--accent);
    direction: ltr;
    font-family: var(--font-en);
    font-size: 0.69rem;
    font-weight: 760;
}

.process-list h3 {
    margin-block-end: 6px;
    font-size: 1.25rem;
}

.process-list p {
    max-width: 520px;
    margin-block-end: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-section {
    padding-block-start: 60px;
}

.contact-card {
    position: relative;
    padding: clamp(38px, 7vw, 82px);
    overflow: hidden;
    border: 1px solid rgba(113, 230, 173, 0.25);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(113, 230, 173, 0.11), transparent 38%),
        #102c2a;
    box-shadow: var(--shadow);
}

.contact-card > *:not(.contact-orb) {
    position: relative;
    z-index: 1;
}

.contact-card h2 {
    max-width: 850px;
}

.contact-card > p:not(.eyebrow) {
    max-width: 580px;
    margin-block-end: 32px;
    color: #b9cac4;
}

.contact-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    inset: -180px auto auto -150px;
    border: 1px solid rgba(113, 230, 173, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(113, 230, 173, 0.025), 0 0 0 110px rgba(113, 230, 173, 0.017);
}

.button-light {
    background: var(--text);
    color: #09201e;
}

.button-light:hover {
    background: var(--accent);
}

.contact-phone {
    display: grid;
    gap: 0;
    padding-inline: 14px;
}

.contact-phone small {
    color: var(--muted);
    font-size: 0.65rem;
}

.contact-phone bdi {
    color: var(--text);
    direction: ltr;
    font-family: var(--font-en);
    font-size: 0.92rem;
    font-weight: 730;
}

.site-footer {
    padding-block: 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding-block-start: 30px;
    border-block-start: 1px solid var(--line);
}

.footer-grid > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background: #ffffff;
}

.footer-logo img {
    display: block;
    width: 36px;
    height: auto;
    filter: saturate(1.16) contrast(1.06);
}

.footer-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.copyright {
    text-align: center;
}

.back-to-top {
    justify-self: end;
    color: #c8d6d1;
    font-size: 0.76rem;
    font-weight: 720;
}

.back-to-top span {
    margin-inline-start: 5px;
    color: var(--accent);
}

.noscript {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 200;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-strong);
    color: var(--text);
    font-size: 0.75rem;
    text-align: center;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2) {
    transition-delay: 100ms;
}

.services-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3) {
    transition-delay: 200ms;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes bars {
    from { transform: scaleY(0.85); opacity: 0.55; }
    to { transform: scaleY(1); opacity: 0.9; }
}

@media (max-width: 980px) {
    :root {
        --header-height: 78px;
    }

    .section {
        padding-block: 88px;
    }

    .hero {
        padding-block-start: calc(var(--header-height) + 70px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .studio-card {
        min-height: 520px;
    }

    .about-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .service-card {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
        gap: 28px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-copy {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.25px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-3.25px) rotate(-45deg);
    }

    .main-navigation {
        position: absolute;
        inset: calc(100% + 8px) 14px auto;
        display: grid;
        gap: 5px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(8, 25, 25, 0.96);
        box-shadow: var(--shadow);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-navigation a {
        padding: 11px 13px;
        border-radius: 12px;
    }

    .main-navigation > a:not(.nav-contact)::after {
        display: none;
    }

    .main-navigation a:hover {
        background: var(--accent-soft);
    }

    .nav-contact {
        margin-block-start: 3px;
        text-align: center;
    }

    h1 {
        font-size: clamp(2.9rem, 14vw, 4.8rem);
    }

    .hero-values {
        gap: 10px;
    }

    .hero-values div {
        padding-inline-start: 10px;
    }

    .hero-values dd {
        display: none;
    }

    .studio-card {
        min-height: 490px;
        padding: 17px;
    }

    .studio-heading {
        padding-block: 32px 28px;
    }

    .studio-flow {
        gap: 7px;
        padding: 14px 10px;
    }

    .studio-widgets {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .note-one {
        inset-inline-start: -8px;
    }

    .note-two {
        inset-inline-end: -8px;
    }

    .section-heading {
        display: block;
        margin-block-end: 36px;
    }

    .section-heading > p {
        margin-block-end: 0;
    }

    .services-grid {
        gap: 18px;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 16px;
        border-radius: 25px;
    }

    .service-card:nth-child(even) .service-media,
    .service-card:nth-child(even) .service-content,
    .service-media,
    .service-content {
        grid-column: auto;
        grid-row: auto;
    }

    .service-content {
        padding: 4px 5px 12px;
    }

    .service-media {
        padding: 7px;
        border-radius: 21px;
    }

    .service-media img {
        border-radius: 15px;
    }

    .service-card h3 {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .contact-card {
        border-radius: 24px;
    }

    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-actions .button,
    .contact-phone {
        width: 100%;
    }

    .contact-phone {
        align-items: center;
        padding-block: 7px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-grid > div {
        flex-direction: column;
        gap: 10px;
    }

    .back-to-top {
        justify-self: center;
    }
}

@media (max-width: 450px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .studio-heading strong {
        font-size: 1.28rem;
    }

    .studio-badge {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 16px;
    }

    .studio-badge img {
        width: 44px;
    }

    .widget {
        padding: 14px;
    }

    .floating-note {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
