@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #070816;
    --bg2: #0b1020;
    --purple: #4b00d8;
    --neon: #6d1bff;
    --cyan: #ff7a1a;
    --orange: #ff7a1a;
    --white: #f8fafc;
    --text-purple: #6d1bff;
    --muted: #e2e8f0;
    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 8%, rgba(75, 0, 216, 0.2), transparent 30%),
        radial-gradient(circle at 88% 15%, rgba(255, 122, 26, 0.14), transparent 28%),
        linear-gradient(135deg, #020305, #05060b 58%, #020305);
    line-height: 1.65;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}
body[data-theme="light"] {
    --bg: #f7f7fb;
    --bg2: #ffffff;
    --white: #101828;
    --muted: #475467;
    --card: rgba(255, 255, 255, 0.78);
    --border: rgba(75, 0, 216, 0.16);
    --shadow: 0 26px 80px rgba(16, 24, 40, 0.16);
    background:
        radial-gradient(circle at 12% 8%, rgba(75, 0, 216, 0.12), transparent 30%),
        radial-gradient(circle at 88% 15%, rgba(255, 122, 26, 0.14), transparent 28%),
        linear-gradient(135deg, #f8fafc, #ffffff 58%, #eef2ff);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background: var(--bg);
    transition: opacity .35s ease, visibility .35s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader span {
    width: 52px;
    height: 52px;
    border: 4px solid var(--border);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky;
    top: 18px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(1400px, calc(100% - 36px));
    min-height: 74px;
    margin: 18px auto -96px;
    padding: 13px clamp(18px, 3vw, 70px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(5, 6, 10, 0.86);
    box-shadow: 0 28px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    transition: background .25s ease, border .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(5, 6, 10, 0.94);
    border-color: rgba(109, 27, 255, 0.35);
    backdrop-filter: blur(18px);
}
body[data-theme="light"] .site-header {
    border-color: rgba(75, 0, 216, .14);
    background: rgba(255,255,255,.88);
}
.brand img {
    width: 172px;
    max-height: 54px;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
.nav a:hover,
.nav a.is-active {
    color: var(--cyan);
}
.nav > a:not(.nav-cta).is-active {
    text-shadow: 0 0 18px rgba(255, 122, 26, .42);
}
.nav > a:not(.nav-cta).is-active::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}
.nav-icon, .theme-toggle {
    position: relative;
    display: inline-grid;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.055);
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}
.nav-icon svg, .theme-toggle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.nav-whatsapp svg { width: 22px; height: 22px; }
.nav-whatsapp svg path:first-child { fill: none; }
.nav-whatsapp svg path:last-child { fill: currentColor; stroke: none; }
.nav-login svg path:first-child { fill: none; }
.nav-login svg path:last-child { fill: none; }
.theme-toggle svg path { fill: currentColor; stroke: none; }
.nav-icon:hover, .theme-toggle:hover {
    border-color: rgba(109, 27, 255, .65);
    color: #ffffff;
    background: rgba(109, 27, 255, .26);
}
body[data-theme="light"] .nav-icon, body[data-theme="light"] .theme-toggle {
    border-color: rgba(75, 0, 216, .16);
    background: rgba(75, 0, 216, .06);
}
.nav-cta {
    padding: 11px 18px;
    border: 1px solid rgba(109, 27, 255, .65);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--neon));
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(75, 0, 216, .34);
}
.nav a.nav-cta:hover { color: #ffffff; transform: translateY(-1px); }
.nav-cta.is-active {
    border-color: rgba(255, 122, 26, .72);
    box-shadow: 0 18px 42px rgba(109, 27, 255, .36), 0 0 0 1px rgba(255, 122, 26, .2) inset;
}
.mobile-header-actions,
.mobile-menu-close,
.mobile-menu-contact {
    display: none;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 92px 0;
}
.inner-page {
    overflow: visible;
}
.inner-page > .section:first-child {
    padding-top: 154px;
}
.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 46px;
    min-height: 100vh;
    padding-top: 150px;
}
.service-hero {
    width: 100vw;
    max-width: none;
    grid-template-columns: 1fr;
    margin: 0 0 0 calc(50% - 50vw);
    padding-left: max(18px, calc((100vw - 1320px) / 2));
    padding-right: max(18px, calc((100vw - 1320px) / 2));
    overflow: hidden;
}
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(2,3,5,.96) 0%, rgba(2,3,5,.82) 46%, rgba(2,3,5,.7) 100%),
        radial-gradient(circle at 62% 36%, rgba(255,122,26,.18), transparent 36%),
        linear-gradient(135deg, #050607, #15151b 54%, #050607);
}
.hero-bg-stack {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .72;
    filter: saturate(1.05);
}
.hero-bg-card {
    position: absolute;
    width: min(680px, 52vw);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 40px 110px rgba(0,0,0,.52);
    opacity: .74;
}
.card-one {
    right: 7vw;
    top: 150px;
    transform: rotate(-8deg) scale(1.08);
}
.card-two {
    right: 28vw;
    bottom: 72px;
    transform: rotate(8deg) scale(.92);
    opacity: .42;
}
.card-three {
    right: -8vw;
    bottom: 160px;
    transform: rotate(2deg) scale(.84);
    opacity: .34;
}
.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, transparent 0%, rgba(2,3,5,.38) 70%, rgba(2,3,5,.95) 100%),
        radial-gradient(circle at 18% 50%, transparent 0 24%, rgba(2,3,5,.24) 55%, rgba(2,3,5,.9) 100%);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .42;
    pointer-events: none;
}
.hero-glow.one { left: -120px; top: 120px; background: var(--purple); }
.hero-glow.two { right: -90px; bottom: 90px; background: var(--cyan); }
.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -0.055em;
}
h1 span { color: var(--orange); }
h2 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}
h3 { margin-bottom: 10px; font-size: 22px; }
p { color: var(--muted); }
.hero-content p { max-width: 680px; font-size: 19px; }
.service-hero .hero-content {
    display: grid;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.service-hero .hero-content h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(40px, 4.55vw, 72px);
    line-height: 1.08;
    letter-spacing: 0;
}
.service-hero .hero-content p {
    max-width: 760px;
    color: #e4e4e7;
    margin-right: auto;
    margin-left: auto;
}
.service-hero .hero-orbit {
    display: none;
}
.hero-actions, .feature-row, .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-actions { justify-content: center; margin-top: 30px; }
.feature-row { margin-top: 28px; }
.feature-row span {
    padding: 9px 12px;
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
}
.hero-tabs {
    position: absolute;
    left: 50%;
    bottom: 42px;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: min(920px, calc(100% - 44px));
    min-height: 58px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
        rgba(8, 9, 13, .48);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 24px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(22px) saturate(1.25);
    transform: translateX(-50%);
}
.hero-tabs.reveal {
    transform: translateX(-50%) translateY(20px);
}
.hero-tabs.reveal.is-visible {
    transform: translateX(-50%) translateY(0);
}
.hero-tabs a {
    flex: 1 1 0;
    min-width: 112px;
    padding: 12px 18px;
    border-radius: 999px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.hero-tabs a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 14px 34px rgba(75, 0, 216, .34), 0 10px 28px rgba(255, 122, 26, .24);
}
.hero-tabs a:not(.active):hover {
    color: #ffffff;
    background: rgba(255,255,255,.08);
    transform: translateY(-1px);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}
.btn.primary {
    background: linear-gradient(135deg, var(--purple), var(--neon), var(--cyan));
    box-shadow: 0 16px 42px rgba(75, 0, 216, .34);
}
.btn.ghost, .btn.tiny {
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--white);
}
.btn.tiny { min-height: 40px; padding: 10px 12px; font-size: 14px; }

.hero-orbit {
    position: relative;
    display: grid;
    min-height: 460px;
    place-items: center;
}
.main-card {
    width: min(420px, 100%);
    padding: 34px;
    text-align: center;
    transform: rotate(-2deg);
}
.main-card strong { display: block; font-size: 34px; line-height: 1.05; }
.mini-bars { display: grid; gap: 12px; margin-top: 28px; }
.mini-bars span {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.mini-bars span:nth-child(2) { width: 78%; }
.mini-bars span:nth-child(3) { width: 58%; }
.float-chip {
    position: absolute;
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    box-shadow: var(--shadow);
    font-weight: 900;
    animation: float 4s ease-in-out infinite;
}
.chip-a { top: 35px; left: 20px; }
.chip-b { right: 10px; top: 110px; animation-delay: .6s; }
.chip-c { bottom: 50px; left: 80px; animation-delay: 1.1s; }
@keyframes float { 50% { transform: translateY(-16px); } }

.glass-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}
.stats, .service-grid, .project-grid, .pricing-grid, .blog-grid, .team-grid, .testimonial-track {
    display: grid;
    gap: 18px;
}
.stats { grid-template-columns: repeat(4, 1fr); padding-top: 10px; }
.stat-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
}
.stat-card strong { display: block; font-size: 40px; line-height: 1; }
.stat-card span, .price-card small, .project-card span, .post-card span, .team-card span { color: var(--cyan); font-weight: 800; }
.section-head { margin-bottom: 34px; }
.agency-story {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}
.agency-story-copy p {
    max-width: 640px;
    font-size: 18px;
}
.agency-points {
    display: grid;
    gap: 14px;
}
.agency-point {
    padding: 22px;
}
.agency-point strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
}
.agency-point p {
    margin: 0;
}
.process-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.process-step {
    position: relative;
    min-height: 210px;
    padding: 24px;
    overflow: hidden;
}
.process-step span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    font-weight: 900;
}
.process-step h3 {
    color: #ffffff;
}
.process-step p {
    margin: 0;
}
.home-cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: clamp(26px, 4vw, 44px);
    border-color: rgba(109, 27, 255, .38);
    background:
        radial-gradient(circle at 78% 16%, rgba(255, 122, 26, .22), transparent 30%),
        linear-gradient(135deg, rgba(109, 27, 255, .18), rgba(255,255,255,.04));
}
.home-cta-band h2 {
    margin-bottom: 10px;
}
.home-cta-band p {
    max-width: 760px;
    margin: 0;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .project-card, .price-card, .post-card, .team-card, blockquote, .newsletter, .contact-form { padding: 24px; }
.post-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    background: var(--card);
}
.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    font-weight: 900;
}
.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
ul { margin: 16px 0 0; padding-left: 18px; color: #cbd5e1; }
li { color: var(--white); }
li + li { margin-top: 7px; }
.filter-row { margin-bottom: 22px; }
.filter-row button {
    padding: 10px 14px;
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    cursor: pointer;
}
.filter-row button.active { background: var(--purple); color: #ffffff; }
.project-grid, .pricing-grid, .blog-grid, .team-grid { grid-template-columns: repeat(3, 1fr); }
.project-img {
    display: grid;
    height: 170px;
    margin-bottom: 18px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(0,0,0,.25);
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-link-wrap {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.project-link-wrap .project-img {
    transition: transform .25s ease, border-color .25s ease;
}
.project-link-wrap:hover .project-img {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, .75);
}
.project-card h3 a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.project-card h3 a:hover {
    color: var(--orange);
}
.project-open-link {
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 14px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    font-weight: 900;
    text-decoration: none;
}
.price-card { position: relative; }
.price-card.popular { border-color: rgba(255, 122, 26, .62); }
.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cyan);
    color: #06111f;
    font-size: 12px;
    font-weight: 900;
}
.price-card strong { display: block; margin: 10px 0; font-size: 34px; }
.compare { margin-top: 22px; padding: 24px; }
.compare-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.compare-table span { padding: 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--white); }
.about, .contact, .faq-newsletter {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: start;
}
.contact {
    position: relative;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}
.contact-page {
    overflow: visible;
}
.contact-page .contact {
    align-items: start;
    padding-top: 154px;
    padding-bottom: 118px;
}
.contact::before {
    content: "";
    position: absolute;
    inset: 28px -8vw auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 27, 255, .28), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}
.contact-copy h2 {
    max-width: 520px;
    color: var(--white);
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: .95;
}
.contact-copy > p {
    max-width: 510px;
    color: #d4d4d8;
    font-size: 17px;
}
.contact-methods {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}
.contact-method {
    position: relative;
    display: grid;
    gap: 2px;
    min-height: 56px;
    padding-left: 72px;
    color: #d4d4d8;
    font-weight: 700;
}
.contact-method span {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
        rgba(2,3,5,.62);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-method svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}
.contact-method strong {
    color: var(--white);
    font-size: 17px;
}
.contact-method:hover { color: var(--cyan); }
.contact-method:hover span {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--purple), var(--orange));
    transform: translateY(-2px);
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-card { padding: 22px; color: var(--white); font-weight: 900; }
.blog-tools {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 14px;
    margin-bottom: 18px;
    align-items: center;
}
.blog-tools span { color: var(--muted); }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--white);
    background: rgba(255,255,255,.06);
    font: inherit;
}
textarea { resize: vertical; }
select option {
    color: #111827;
    background: #ffffff;
}
.team-card img { width: 96px; height: 96px; margin-bottom: 18px; border-radius: 50%; background: var(--card); }
.team-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.team-socials a {
    color: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    background: rgba(255,255,255,.06);
}
.testimonial-track { grid-template-columns: repeat(3, 1fr); }
blockquote { margin: 0; }
cite { color: var(--white); font-style: normal; font-weight: 900; }
strong, h1, h2 { color: var(--text-purple); }
h3, summary, .eyebrow, .stat-card span, .price-card small, .project-card span, .post-card span, .team-card span { color: var(--cyan); }
label, small { color: var(--white); }
cite span { display: block; color: var(--muted); font-size: 13px; }
.map { display: grid; min-height: 180px; margin-top: 18px; place-items: center; color: var(--muted); }
.contact-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: clamp(26px, 4vw, 48px);
    border-color: rgba(109, 27, 255, .42);
    background:
        radial-gradient(circle at 20% 0%, rgba(109, 27, 255, .22), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    box-shadow: 0 30px 90px rgba(75, 0, 216, .24), var(--shadow);
}
.contact-form::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 8px;
    pointer-events: none;
}
.form-field {
    display: grid;
    gap: 9px;
}
.form-field label {
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}
.form-field label span {
    color: var(--neon);
}
.form-field input, .form-field select, .form-field textarea {
    min-height: 52px;
    border-color: rgba(109, 27, 255, .34);
    background: rgba(0,0,0,.22);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: 0;
    border-color: var(--neon);
    box-shadow: 0 0 0 4px rgba(109, 27, 255, .16);
}
.form-wide, .contact-form .alert, .contact-form button { grid-column: 1 / -1; }
.contact-form button {
    min-height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 18px 40px rgba(75, 0, 216, .3), 0 14px 34px rgba(255, 122, 26, .18);
}
.package-hint {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.package-hint span {
    padding: 7px 10px;
    color: var(--white);
    background: rgba(255, 122, 26, .12);
    border: 1px solid rgba(255, 122, 26, .24);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.alert { padding: 12px 14px; border-radius: 8px; font-weight: 800; }
.alert.success { background: rgba(34,197,94,.18); color: #bbf7d0; }
.alert.error { background: rgba(239,68,68,.18); color: #fecaca; }
.faq-list { display: grid; gap: 12px; }
details { padding: 18px; }
summary { cursor: pointer; font-weight: 900; }
.newsletter input { margin: 8px 0 12px; }
.footer {
    position: relative;
    overflow: hidden;
    padding: 72px clamp(18px, 5vw, 96px) 28px;
    border-top: 1px solid rgba(255, 122, 26, 0.22);
    background:
        radial-gradient(circle at 50% 8%, rgba(75, 0, 216, .22), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(255, 122, 26, .16), transparent 28%),
        linear-gradient(135deg, #08090d 0%, #141519 46%, #050606 100%);
}
.footer-wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background:
        linear-gradient(32deg, transparent 16%, rgba(255,255,255,.045) 16.4%, rgba(255,255,255,.02) 36%, transparent 36.4%),
        linear-gradient(151deg, transparent 45%, rgba(255,122,26,.06) 45.5%, rgba(75,0,216,.1) 64%, transparent 64.5%);
}
.footer-top, .footer-cols, .footer-bottom {
    position: relative;
    z-index: 1;
    width: min(100%, 1740px);
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-top h3 { color: var(--white); }
.footer-top p { max-width: 560px; margin-bottom: 0; }
.footer-logo {
    display: grid;
    place-items: center;
}
.footer-logo img {
    width: 260px;
    max-height: 86px;
    object-fit: contain;
}
.footer-idea { text-align: right; }
.footer-idea p { margin-left: auto; }
.footer-cols {
    display: grid;
    grid-template-columns: .8fr .8fr 1.25fr 1.25fr;
    gap: clamp(22px, 4vw, 86px);
    padding: 42px 0 52px;
}
.footer-col {
    display: grid;
    align-content: start;
    gap: 13px;
}
.footer-col strong {
    margin-bottom: 2px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-col a, .footer-col p {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 700;
}
.footer-col a:hover { color: var(--cyan); }
.footer-accent, .footer-col a.footer-accent, .footer-office small {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-contact a {
    position: relative;
    display: grid;
    gap: 2px;
    min-height: 54px;
    padding-left: 64px;
}
.footer-contact span {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
        rgba(2,3,5,.62);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.footer-contact svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}
.footer-contact a:hover span {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--purple), var(--orange));
    transform: translateY(-2px);
}
.footer-contact small {
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-office p { max-width: 420px; margin: 0; }
.footer-office .btn {
    width: fit-content;
    margin-top: 8px;
    border: 1px solid rgba(109, 27, 255, .65);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--neon));
    box-shadow: 0 14px 34px rgba(75, 0, 216, .34);
}
.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; font-size: 14px; }
.footer-social {
    position: absolute;
    left: 50%;
    top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
    transform: translateX(-50%);
}
.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #ffffff !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
        rgba(2,3,5,.65);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer-social svg path {
    fill: currentColor;
}
.footer-social a:hover {
    border-color: var(--orange);
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    transform: translateY(-3px);
}
.cookie {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 45;
    display: none;
    max-width: 390px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(7,8,22,.92);
    backdrop-filter: blur(14px);
}
.cookie.is-visible { display: flex; }
.cookie button { border: 0; border-radius: 8px; padding: 10px 12px; background: var(--cyan); color: #06111f; font-weight: 900; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .site-header {
        top: 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        margin-top: 12px;
        margin-bottom: -88px;
        padding: 10px 12px 10px 20px;
        border-radius: 999px;
    }
    .brand img {
        width: 184px;
        max-height: 58px;
    }
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .mobile-header-actions .nav-icon,
    .mobile-header-actions .theme-toggle {
        width: 42px;
        min-width: 42px;
        height: 42px;
        background: rgba(255,255,255,.06);
    }
    .nav-toggle {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255,255,255,.065);
    }
    .nav-toggle span {
        width: 20px;
        margin: 0;
        transition: transform .2s ease, opacity .2s ease;
    }
    .nav-toggle span:last-child { width: 15px; margin-left: 5px; }
    body.menu-open .nav-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
    body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.menu-open .nav-toggle span:last-child { width: 20px; margin-left: 0; transform: translateY(-7px) rotate(-45deg); }
    .nav {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: 100dvh;
        padding: 88px 26px 34px;
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        background:
            radial-gradient(circle at 18% 70%, rgba(255,122,26,.13), transparent 30%),
            radial-gradient(circle at 78% 14%, rgba(109,27,255,.14), transparent 28%),
            linear-gradient(150deg, rgba(10,10,15,.98), rgba(4,5,9,.99));
        backdrop-filter: blur(22px);
    }
    .mobile-menu-close {
        position: absolute;
        top: 24px;
        right: 26px;
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 50%;
        color: #ffffff;
        background: rgba(255,255,255,.08);
        font-size: 34px;
        line-height: 1;
    }
    .nav > a:not(.nav-cta) {
        padding: 16px 6px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        color: #ffffff;
        font-size: 17px;
        font-weight: 900;
    }
    .nav .nav-actions {
        display: none;
    }
    .nav-cta {
        justify-content: center;
        margin: 30px 0 24px;
        padding: 15px 20px;
        text-align: center;
        background: linear-gradient(135deg, var(--purple), var(--orange));
        box-shadow: 0 18px 40px rgba(255,122,26,.22);
    }
    .mobile-menu-contact {
        display: grid;
        gap: 18px;
        padding-top: 24px;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .mobile-menu-contact a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: rgba(255,255,255,.66);
        font-size: 14px;
        font-weight: 800;
    }
    .mobile-menu-contact svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }
    .nav.is-open { display: flex; }
    .hero, .about, .contact, .faq-newsletter { grid-template-columns: 1fr; }
    .inner-page > .section:first-child {
        padding-top: 142px;
    }
    .contact-page .contact {
        padding-top: 142px;
        padding-bottom: 84px;
    }
    .service-hero { padding-top: 132px; }
    .hero-tabs {
        position: relative;
        left: auto;
        bottom: auto;
        justify-self: center;
        width: max-content;
        max-width: min(100%, 760px);
        margin-top: 18px;
        overflow-x: auto;
        justify-content: center;
        transform: none;
        scrollbar-width: none;
    }
    .hero-tabs.reveal,
    .hero-tabs.reveal.is-visible {
        transform: none;
    }
    .hero-tabs a {
        flex: 0 0 auto;
        min-width: 132px;
    }
    .hero-tabs::-webkit-scrollbar { display: none; }
    .service-grid, .project-grid, .pricing-grid, .blog-grid, .team-grid, .testimonial-track { grid-template-columns: repeat(2, 1fr); }
    .stats, .compare-table { grid-template-columns: repeat(2, 1fr); }
    .agency-story, .home-cta-band { grid-template-columns: 1fr; }
    .process-strip { grid-template-columns: repeat(2, 1fr); }
    .footer-top, .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-logo { justify-content: start; }
    .footer-idea { text-align: left; }
    .footer-idea p { margin-left: 0; }
}

@media (max-width: 640px) {
    .section { width: min(100% - 28px, 1180px); padding: 62px 0; }
    .site-header {
        width: min(100% - 24px, 1400px);
        padding: 10px 10px 10px 18px;
    }
    .brand img { width: 168px; }
    .mobile-header-actions .nav-icon,
    .mobile-header-actions .theme-toggle {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
    .nav-toggle {
        width: 42px;
        height: 42px;
    }
    .nav {
        padding: 84px 26px 32px;
    }
    h1 { font-size: 42px; letter-spacing: -0.025em; }
    h2 { font-size: 32px; }
    .inner-page > .section:first-child {
        padding-top: 126px;
    }
    .contact-page .contact {
        padding-top: 126px;
        padding-bottom: 70px;
    }
    .contact-copy h2 {
        font-size: 42px;
    }
    .service-hero {
        min-height: auto;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 118px 18px 62px;
    }
    .service-hero .hero-content h1 {
        max-width: 100%;
        font-size: 36px;
        line-height: 1.13;
    }
    .service-hero .hero-content p {
        max-width: 100%;
        font-size: 15px;
    }
    .hero-bg-card { width: 100vw; }
    .card-one { right: -22vw; top: 132px; }
    .card-two, .card-three { display: none; }
    .hero-tabs {
        min-height: 54px;
        width: min(100%, 560px);
        max-width: 100%;
        padding: 6px;
        border-radius: 999px;
        justify-content: flex-start;
    }
    .hero-tabs a {
        min-width: 128px;
        padding: 11px 16px;
        font-size: 12px;
    }
    .hero-orbit { min-height: 340px; }
    .float-chip { width: 64px; height: 64px; }
    .service-grid, .project-grid, .pricing-grid, .blog-grid, .team-grid, .testimonial-track, .stats, .why-grid, .blog-tools, .contact-form, .compare-table, .footer, .footer-cols, .process-strip { grid-template-columns: 1fr; }
    .home-cta-band .btn { width: 100%; }
    .footer { padding-top: 54px; }
    .footer-top { grid-template-columns: 1fr; gap: 20px; }
    .footer-logo { justify-content: start; }
    .footer-logo img { width: 220px; }
    .footer-cols { gap: 28px; padding: 34px 0; }
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        text-align: center;
        padding-top: 22px;
    }
    .footer-social {
        position: static;
        transform: none;
    }
    .cookie { right: 18px; }
}

/* Solid brand purple buttons */
.btn,
.btn.primary,
.nav-cta,
.contact-form button,
.footer-office .btn,
.newsletter button,
.filter-row button.active,
.hero-tabs a.active,
.cookie button,
.mobile-menu .nav-cta {
    background: var(--purple) !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: rgba(109, 27, 255, .8) !important;
    box-shadow: 0 16px 38px rgba(75, 0, 216, .34) !important;
}

.btn:hover,
.btn.primary:hover,
.nav-cta:hover,
.contact-form button:hover,
.footer-office .btn:hover,
.newsletter button:hover,
.filter-row button.active:hover,
.hero-tabs a.active:hover,
.cookie button:hover,
.mobile-menu .nav-cta:hover {
    background: var(--neon) !important;
    background-image: none !important;
    color: #ffffff !important;
}

.btn.ghost,
.btn.tiny:not(.primary),
.filter-row button:not(.active) {
    background: rgba(75, 0, 216, .12) !important;
    background-image: none !important;
    border-color: rgba(109, 27, 255, .38) !important;
    color: var(--white) !important;
    box-shadow: none !important;
}
