@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Unbounded:wght@600;700;800&display=swap");

:root {
    color-scheme: dark;
    --bg: #080b0f;
    --panel: #101720;
    --panel-2: #151e27;
    --text: #f4f7fb;
    --muted: #9aa8b6;
    --line: rgba(255, 255, 255, .11);
    --accent: #f0b35a;
    --accent-2: #4cc3c7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 54px);
    background: linear-gradient(180deg, rgba(8, 11, 15, .88), rgba(8, 11, 15, .22));
    backdrop-filter: blur(16px);
}

.brand,
.admin-brand {
    font-weight: 800;
    letter-spacing: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 55px;
	justify-content: center;
}

.brand img {
    width: auto;
    max-width: min(220px, 44vw);
    max-height: 55px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 18px;
}

.menu-toggle {
    display: none;
}

.nav a:hover,
.header-phone:hover {
    color: var(--accent);
}

.header-phone {
    cursor: pointer;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 700;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-menu {
    position: relative;
}

.phone-menu::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 16px;
}

.phone-dropdown {
    position: absolute;
    z-index: 30;
    top: calc(100% + 12px);
    right: 0;
    min-width: 230px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 11, 15, .94);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .32);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.phone-menu:hover .phone-dropdown,
.phone-menu:focus-within .phone-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.phone-dropdown a {
    display: grid;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--text);
    font-weight: 800;
}

.phone-dropdown a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--accent);
}

.phone-dropdown span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

.lang-switch a {
    min-width: 38px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.lang-switch a.active {
    background: var(--accent);
    color: #15100a;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    padding: 132px clamp(18px, 5vw, 74px) 72px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    transform: scale(1.02);
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 52%, rgba(8, 11, 15, .9) 0%, rgba(8, 11, 15, .68) 24%, rgba(8, 11, 15, .24) 47%, rgba(8, 11, 15, .04) 72%),
        linear-gradient(90deg, rgba(8, 11, 15, .72) 0%, rgba(8, 11, 15, .38) 28%, rgba(8, 11, 15, .08) 58%, rgba(8, 11, 15, 0) 100%),
        linear-gradient(180deg, rgba(8, 11, 15, .18), #080b0f 100%);
}

.hero-content {
    position: relative;
    max-width: 680px;
    justify-self: start;
    margin-left: clamp(34px, 8vw, 150px);
    text-align: center;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 12.5ch;
    margin: 0 auto;
    font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(30px, 3.2vw, 36px);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

h2 {
    margin: 0;
    font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(30px, 3.2vw, 36px);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

h3 {
    margin: 0 0 12px;
    font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.18;
    letter-spacing: 0;
}

.hero-content > p {
    max-width: 600px;
    margin: 24px auto 0;
    color: #d5dde6;
    font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 800;
}

.button.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #15100a;
}

.button.ghost {
    background: rgba(255, 255, 255, .05);
}

.hero-stats {
    position: absolute;
    right: clamp(18px, 5vw, 74px);
    bottom: 48px;
    display: flex;
    gap: 12px;
}

.hero-stats span {
    min-width: 112px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: rgba(8, 11, 15, .55);
    backdrop-filter: blur(12px);
    color: var(--muted);
}

.hero-stats strong {
    display: block;
    color: var(--text);
    font-size: 24px;
}

.section {
    padding: 84px clamp(18px, 5vw, 74px);
    border-top: 1px solid var(--line);
}

.section-head {
    max-width: 1180px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-head h2 {
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
        var(--panel);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.service-card h3 {
    margin-top: 12px;
}

.service-card p,
.portfolio-card p,
.contact-section p,
.about-copy {
    color: var(--muted);
}

.service-card p {
    margin: 0 0 22px;
}

.service-card strong {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 12px;
    border: 1px solid rgba(240, 179, 90, .35);
    border-radius: 999px;
    background: rgba(240, 179, 90, .1);
    color: var(--text);
    font-size: 14px;
}

.insight-section {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(28px, 5vw, 78px);
    background:
        radial-gradient(circle at 18% 20%, rgba(76, 195, 199, .12), transparent 34%),
        linear-gradient(135deg, #111b1f 0%, #081015 58%, #070a0e 100%);
}

.insight-intro {
    grid-column: 1 / -1;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.insight-intro h2 {
    max-width: 720px;
    margin: 0 auto;
}

.insight-intro p {
    max-width: 1080px;
    margin: 22px auto 0;
    color: #d5dde6;
    font-size: clamp(17px, 1.25vw, 20px);
    font-weight: 700;
}

.audience-panel,
.benefit-panel {
    min-width: 0;
}

.audience-panel h3,
.benefit-panel h3 {
    margin-bottom: 24px;
    color: var(--accent);
	text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.audience-grid span {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    color: #e7edf4;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}

.audience-grid span::before {
    content: "";
    position: absolute;
    top: -7px;
    width: 14px;
    height: 14px;
    border: 3px solid #edf4fb;
    border-radius: 50%;
    background: #9f1e24;
    box-shadow: 0 0 0 5px rgba(159, 30, 36, .16);
}

.benefit-list {
    display: grid;
    gap: 10px;
}

.benefit-list details {
    border: 1px solid rgba(240, 179, 90, .32);
    border-radius: 8px;
    background: rgba(8, 11, 15, .48);
    overflow: hidden;
    transition: height .34s ease, border-color .24s ease, background .24s ease;
    will-change: height;
}

.benefit-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
}

.benefit-list summary::-webkit-details-marker {
    display: none;
}

.benefit-list summary::after {
    content: "+";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}

.benefit-list details[open] {
    border-color: rgba(76, 195, 199, .55);
    background: rgba(16, 23, 32, .88);
}

.benefit-list details[open] summary::after {
    content: "-";
}

.benefit-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 17px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .24s ease, transform .24s ease;
}

.benefit-list details[open] p {
    opacity: 1;
    transform: translateY(0);
}

.benefit-list details.is-closing p {
    opacity: 0;
    transform: translateY(-6px);
}

.portfolio-section {
    background: #0b1117;
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: -16px auto 34px;
}

.category-row button,
.category-row a {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .02);
    color: #dce5ee;
    font: inherit;
    font-weight: 800;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.category-row button:hover,
.category-row button.active,
.category-row a:hover,
.category-row a.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #15100a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1500px;
    max-height: min(760px, 70vw);
    overflow-y: auto;
    padding-right: 4px;
    margin: 0 auto;
}

.portfolio-grid::-webkit-scrollbar {
    width: 8px;
}

.portfolio-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(240, 179, 90, .42);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.portfolio-card[hidden] {
    display: none;
}

.portfolio-open {
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    background: #0b1016;
    color: inherit;
    text-align: left;
    overflow: hidden;
}

.portfolio-open:disabled {
    cursor: default;
}

.portfolio-card img,
.portfolio-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .2s ease, transform .35s ease;
}

.portfolio-card video {
    opacity: 0;
}

.portfolio-card.video-preview video {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card:hover video {
    opacity: 1;
}

.portfolio-card::after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 11, 15, .05) 20%, rgba(8, 11, 15, .82) 100%),
        linear-gradient(45deg, rgba(76, 195, 199, .08), transparent 48%);
}

.play-mark {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(8, 11, 15, .52);
    backdrop-filter: blur(12px);
}

.play-mark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--accent);
}

.portfolio-card.no-video .play-mark {
    display: none;
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 9px;
    padding: 18px;
}

.portfolio-overlay span {
    display: block;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 800;
}

.portfolio-overlay strong {
    color: var(--text);
    font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(15px, 1.15vw, 20px);
    line-height: 1.18;
}

.portfolio-more {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.portfolio-more-button {
    min-width: 190px;
    background:
        linear-gradient(135deg, rgba(240, 179, 90, .16), rgba(76, 195, 199, .1)),
        rgba(255, 255, 255, .04);
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.portfolio-more-button:hover,
.portfolio-more-button:focus-visible,
.portfolio-action-button:hover,
.portfolio-action-button:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    color: #15100a;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(240, 179, 90, .24);
}

.portfolio-page-hero {
    padding-top: 150px;
    padding-bottom: 48px;
    background:
        radial-gradient(circle at 18% 12%, rgba(76, 195, 199, .12), transparent 30%),
        radial-gradient(circle at 80% 36%, rgba(240, 179, 90, .1), transparent 32%),
        #080b0f;
}

.portfolio-page-head,
.portfolio-category-head {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-page-head h1 {
    max-width: none;
}

.portfolio-page-head p,
.portfolio-category-head p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #cbd6e1;
    font-size: 18px;
}

.portfolio-page-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.portfolio-action-button {
    min-width: 160px;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.portfolio-page-nav {
    max-width: 1180px;
    margin: 34px auto 0;
}

.portfolio-category-section {
    scroll-margin-top: 120px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, 0)),
        #0b1117;
}

.portfolio-category-section:nth-of-type(even) {
    background:
        radial-gradient(circle at 14% 22%, rgba(76, 195, 199, .06), transparent 28%),
        #081015;
}

.portfolio-category-head {
    margin-bottom: 36px;
}

.portfolio-page-grid {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.video-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 54px);
}

.video-modal.open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 7, .82);
    backdrop-filter: blur(14px);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #05070a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .52);
}

.video-modal-close {
    cursor: pointer;
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--accent);
    color: #15100a;
    font-size: 28px;
    line-height: 1;
}

.video-modal-frame {
    aspect-ratio: 16 / 9;
}

.video-modal-frame video,
.video-modal-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-open {
    overflow: hidden;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 86px);
}

.split > div:first-child h2 {
    text-align: center;
}

.contact-section {
    display: grid;
    gap: 38px;
    background:
        radial-gradient(circle at 18% 16%, rgba(76, 195, 199, .08), transparent 32%),
        #080b0f;
}

.contact-intro {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h2 {
    margin: 0 auto;
}

.contact-intro p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #cbd6e1;
    font-size: 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: stretch;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.contact-info,
.lead-form {
    min-width: 0;
}

.about-copy p {
    margin-top: 0;
    font-size: 20px;
}

.about-copy ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.about-copy li {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.brand-story {
    background:
        radial-gradient(circle at 22% 58%, rgba(76, 195, 199, .1), transparent 30%),
        radial-gradient(circle at 76% 24%, rgba(240, 179, 90, .08), transparent 28%),
        linear-gradient(135deg, #10191d 0%, #081015 58%, #070a0e 100%);
}

.brand-story-head {
    max-width: 1180px;
    margin: 0 auto 42px;
    text-align: center;
}

.brand-story-head h2 {
    margin: 0 auto;
}

.brand-story-layout {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 88px);
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
}

.brand-story-media {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 52px);
}

.brand-story-media img {
    position: relative;
    z-index: 1;
    max-width: min(520px, 100%);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .38));
}

.brand-story-media strong {
    position: relative;
    z-index: 1;
    color: var(--text);
    font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    line-height: 1;
    text-align: center;
}

.brand-story-copy {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
        rgba(16, 23, 32, .78);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
    color: #dbe4ed;
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 700;
    line-height: 1.68;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: #10151d;
}

blockquote {
    margin: 0;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-2);
}

blockquote p {
    margin-top: 0;
    font-size: 20px;
}

cite {
    color: var(--accent);
    font-style: normal;
    font-weight: 800;
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.contact-info {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(76, 195, 199, .08), transparent 34%),
        rgba(16, 23, 32, .72);
}

.contact-group {
    display: grid;
    gap: 12px;
}

.contact-group + .contact-group {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.contact-group h3 {
    margin: 0;
    color: var(--accent);
    font-size: 18px;
    text-align: center;
}

.contact-list {
    display: grid;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 68px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 179, 90, .55);
    background: rgba(240, 179, 90, .08);
}

.contact-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 179, 90, .4);
    border-radius: 8px;
    background: rgba(240, 179, 90, .12);
    color: var(--accent);
    font-weight: 900;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-item small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.contact-item strong {
    display: block;
    color: var(--text);
    font-size: 17px;
    line-height: 1.25;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.social-item {
    display: grid;
    justify-items: center;
    gap: 9px;
    min-width: 76px;
    color: #dce5ee;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.social-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 179, 90, .42);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .18), transparent 34%),
        rgba(240, 179, 90, .12);
    color: var(--accent);
    font-size: 20px;
    font-weight: 900;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.social-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.social-item:hover {
    color: var(--accent);
}

.social-item:hover .social-icon {
    transform: translateY(-3px);
    border-color: var(--accent);
    background: rgba(240, 179, 90, .2);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

label {
    display: grid;
    gap: 8px;
    color: #d7e0ea;
    font-size: 14px;
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #0b1016;
    color: var(--text);
    font: inherit;
    padding: 13px 14px;
}

.phone-field {
    display: grid;
    grid-template-columns: minmax(142px, .38fr) 1fr;
    gap: 10px;
}

.phone-code-picker {
    position: relative;
    display: block;
}

.phone-code-button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    min-height: 50px;
    display: grid;
    grid-template-columns: 34px auto 12px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(240, 179, 90, .1), rgba(76, 195, 199, .05)),
        #0b1016;
    color: var(--text);
    font: inherit;
    font-weight: 900;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.phone-code-button::after {
    content: "";
    justify-self: end;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease, border-color .2s ease;
}

.phone-code-picker.open .phone-code-button,
.phone-code-button:hover {
    border-color: rgba(240, 179, 90, .55);
    background:
        linear-gradient(135deg, rgba(240, 179, 90, .16), rgba(76, 195, 199, .08)),
        #0b1016;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.phone-code-picker.static .phone-code-button {
    cursor: default;
    grid-template-columns: 34px auto;
}

.phone-code-picker.static .phone-code-button::after {
    display: none;
}

.phone-code-picker.static .phone-code-button:hover {
    transform: none;
    border-color: var(--line);
    background:
        linear-gradient(135deg, rgba(240, 179, 90, .1), rgba(76, 195, 199, .05)),
        #0b1016;
    box-shadow: none;
}

.phone-code-picker.open .phone-code-button::after {
    border-color: var(--accent);
    transform: rotate(225deg) translate(-2px, -2px);
}

.phone-flag {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    border: 1px solid rgba(240, 179, 90, .34);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    color: #eef5fb;
    font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
}

.phone-code-text {
    justify-self: start;
}

.phone-code-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    width: min(280px, 86vw);
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 15, 21, .98);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.phone-code-picker.open .phone-code-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phone-code-menu button {
    cursor: pointer;
    display: grid;
    grid-template-columns: 34px auto 1fr;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--text);
    font: inherit;
    text-align: left;
}

.phone-code-menu button:hover,
.phone-code-menu button.active {
    background: rgba(240, 179, 90, .13);
}

.phone-code-menu button > span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #eef5fb;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.phone-code-menu strong {
    color: var(--accent);
}

.phone-code-menu small {
    color: var(--muted);
    font-weight: 800;
}

textarea {
    resize: vertical;
}

.flash {
    position: relative;
    padding: 15px 16px 15px 46px;
    border: 1px solid rgba(76, 195, 199, .45);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(76, 195, 199, .18), rgba(255, 255, 255, .035)),
        rgba(9, 17, 23, .94);
    color: #dffcff;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.flash::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--accent-2);
    box-shadow: 0 0 0 5px rgba(76, 195, 199, .16);
}

.flash.error {
    border-color: rgba(240, 93, 93, .5);
    background:
        linear-gradient(135deg, rgba(240, 93, 93, .18), rgba(255, 255, 255, .03)),
        rgba(16, 12, 14, .94);
    color: #ffe1e1;
}

.flash.error::before {
    background: #f05d5d;
    box-shadow: 0 0 0 5px rgba(240, 93, 93, .16);
}

.site-toast {
    position: fixed;
    z-index: 90;
    top: 96px;
    right: clamp(16px, 4vw, 48px);
    width: min(420px, calc(100vw - 32px));
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    animation: toastIn .35s ease both;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-chat {
    position: fixed;
    z-index: 88;
    right: clamp(18px, 3vw, 42px);
    bottom: calc(clamp(18px, 3vw, 42px) + 84px);
}

.chat-toggle {
    cursor: pointer;
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    box-shadow:
        0 0 0 1px rgba(240, 179, 90, .08),
        0 18px 42px rgba(0, 0, 0, .34),
        0 0 28px rgba(76, 195, 199, .24);
    transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}

.chat-toggle:hover,
.site-chat.open .chat-toggle {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, .09);
    box-shadow:
        0 0 0 1px rgba(240, 179, 90, .18),
        0 22px 46px rgba(0, 0, 0, .4),
        0 0 34px rgba(76, 195, 199, .32);
}

.chat-toggle img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.chat-toggle span {
    position: relative;
    width: 30px;
    height: 24px;
    border: 2px solid var(--accent);
    border-radius: 10px;
    filter:
        drop-shadow(0 0 7px rgba(240, 179, 90, .78))
        drop-shadow(0 0 10px rgba(76, 195, 199, .62));
}

.chat-toggle span::after {
    content: "";
    position: absolute;
    left: 7px;
    bottom: -7px;
    width: 9px;
    height: 9px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: skew(-18deg);
    background: rgba(8, 11, 15, .74);
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: min(380px, calc(100vw - 36px));
    display: grid;
    grid-template-rows: auto minmax(210px, 340px) auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 15, 21, .98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.site-chat.open .chat-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(240, 179, 90, .12), rgba(76, 195, 199, .06));
}

.chat-head strong {
    display: block;
    color: var(--text);
    font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
}

.chat-head small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.chat-head button {
    cursor: pointer;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    font-size: 22px;
}

.chat-messages {
    display: grid;
    align-content: start;
    gap: 10px;
    overflow-y: auto;
    padding: 16px;
}

.chat-empty {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.chat-message {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    white-space: pre-wrap;
}

.chat-message.user {
    justify-self: end;
    background: rgba(240, 179, 90, .18);
    border: 1px solid rgba(240, 179, 90, .28);
}

.chat-message.admin {
    justify-self: start;
    background: rgba(76, 195, 199, .13);
    border: 1px solid rgba(76, 195, 199, .24);
}

.chat-form {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--line);
}

.chat-contact-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

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

.chat-contact-fields input {
    padding: 11px 12px;
    font-size: 14px;
}

.chat-form textarea {
    min-height: 86px;
    max-height: 160px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px clamp(18px, 5vw, 74px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
}

.site-footer > div:first-child {
    display: grid;
    gap: 4px;
}

.site-footer strong {
    color: var(--text);
}

.site-footer span {
    font-size: 13px;
}

.scroll-top {
    cursor: pointer;
    position: fixed;
    z-index: 40;
    right: clamp(18px, 3vw, 42px);
    bottom: clamp(18px, 3vw, 42px);
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    box-shadow:
        0 0 0 1px rgba(240, 179, 90, .08),
        0 18px 42px rgba(0, 0, 0, .34),
        0 0 28px rgba(76, 195, 199, .24);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(18px) scale(.92);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, box-shadow .24s ease;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, .09);
    box-shadow:
        0 0 0 1px rgba(240, 179, 90, .18),
        0 22px 46px rgba(0, 0, 0, .4),
        0 0 34px rgba(76, 195, 199, .32);
}

.scroll-top img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.scroll-plane {
    position: relative;
    width: 35px;
    height: 30px;
    transform: rotate(-45deg);
    filter:
        drop-shadow(0 0 7px rgba(240, 179, 90, .78))
        drop-shadow(0 0 10px rgba(76, 195, 199, .72));
}

.scroll-plane::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(0 47%, 100% 0, 62% 100%, 45% 60%, 21% 86%, 30% 55%);
    background: linear-gradient(115deg, #ffd447 0%, #f0b35a 35%, #30e7b5 63%, #4cc3c7 100%);
}

.scroll-plane::after {
    content: "";
    position: absolute;
    inset: 5px 7px 7px 8px;
    clip-path: polygon(0 48%, 100% 0, 58% 100%, 43% 60%, 20% 82%, 29% 55%);
    background: rgba(8, 11, 15, .74);
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 10px;
        position: absolute;
        padding: 14px 18px 16px;
        background: linear-gradient(180deg, rgba(8, 11, 15, .92), rgba(8, 11, 15, .62));
    }

    .brand {
        justify-self: start;
    }

    .brand {
        min-height: 46px;
    }

    .brand img {
        max-height: 46px;
    }

    .menu-toggle {
        cursor: pointer;
        justify-self: end;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 14px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, .06);
        color: var(--text);
        font: inherit;
        font-weight: 900;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--accent);
        transition: transform .22s ease, opacity .22s ease;
    }

    .menu-toggle span {
        position: relative;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
        position: absolute;
        left: 0;
    }

    .menu-toggle span::before {
        top: -6px;
    }

    .menu-toggle span::after {
        top: 6px;
    }

    .site-header.menu-open .menu-toggle span {
        background: transparent;
    }

    .site-header.menu-open .menu-toggle span::before {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav {
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        font-size: 16px;
        text-align: center;
        transition: max-height .28s ease, opacity .2s ease, padding-top .28s ease;
    }

    .site-header.menu-open .nav {
        max-height: 340px;
        padding-top: 6px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 14px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 8px;
        background: rgba(255, 255, 255, .035);
        color: #dce5ee;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-self: center;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    .header-phone {
        font-size: 14px;
        white-space: nowrap;
    }

    .service-grid,
    .portfolio-grid,
    .testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-section,
    .insight-intro {
        grid-template-columns: 1fr;
    }

    .brand-story-layout {
        grid-template-columns: 1fr;
    }

    .brand-story-media {
        min-height: 300px;
    }

    .section-head,
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        align-items: start;
        padding-top: 168px;
        padding-bottom: 42px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .nav a {
        line-height: 1.15;
    }

    .header-actions {
        width: 100%;
    }

    .lang-switch a {
        min-width: 34px;
        padding: 6px 8px;
    }

    .phone-dropdown {
        right: 50%;
        transform: translate(50%, -6px);
    }

    .phone-menu:hover .phone-dropdown,
    .phone-menu:focus-within .phone-dropdown {
        transform: translate(50%, 0);
    }

    h1 {
        max-width: 11.5ch;
    }

    .hero-content > p {
        max-width: 31ch;
        font-size: 20px;
        line-height: 1.55;
    }

    .hero-actions {
        display: grid;
        justify-items: center;
    }

    .hero-actions .button {
        width: min(300px, 100%);
    }

    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin-top: 30px;
    }

    .hero-stats span {
        min-width: 0;
        padding: 12px 7px;
        text-align: center;
        background: rgba(8, 11, 15, .68);
        font-size: 12px;
        line-height: 1.25;
    }

    .hero-stats strong {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 5px;
    }

    .service-grid,
    .audience-grid,
    .portfolio-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .brand-story-media {
        min-height: 220px;
        padding: 10px;
    }

    .portfolio-grid {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .phone-field {
        grid-template-columns: 1fr;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
    }

    .site-footer {
        align-items: center;
    }
}

@media (max-width: 380px) {
    .site-header {
        padding-inline: 14px;
    }

    .nav {
        gap: 8px 12px;
        font-size: 12px;
    }

    .header-phone {
        font-size: 13px;
    }

    .hero {
        padding-top: 164px;
    }

    .hero-stats strong {
        font-size: 21px;
    }

    .hero-stats span {
        padding: 10px 5px;
        font-size: 11px;
    }
}
