:root {
    color-scheme: dark;
    --bg: #050505;
    --bg-soft: #0b0b0f;
    --panel: #101117;
    --panel-strong: #151722;
    --text: #ffffff;
    --muted: #838282;
    --muted-strong: #d9d8d8;
    --line: rgba(255, 255, 255, 0.12);
    --blue: #FF751F;
    --violet: #838282;
    --cyan: #FF751F;
    --green: #838282;
    --amber: #FF751F;
    --brand-orange: #FF751F;
    --brand-gray: #838282;
    --solid-accent: #FF751F;
    --radius: 14px;
    --shadow: 0 22px 70px rgba(2, 6, 23, 0.18);
    --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 0;
    border: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(5, 5, 5, 0.82);
    padding: 6px max(18px, calc((100vw - 1180px) / 2));
    backdrop-filter: blur(18px);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-logo {
    display: block;
    width: 86px;
    height: 50px;
    border-radius: 0;
    object-fit: contain;
    object-position: left;
}

.site-header .brand-logo {
    width: 116px;
    height: 66px;
    filter: grayscale(1);
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 10px 32px rgba(255, 117, 31, 0.28);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    padding: 11px 12px;
    color: var(--muted-strong);
    font-size: 0.92rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav svg,
.button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.site-nav .nav-cta,
.button-primary {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 16px 42px rgba(255, 117, 31, 0.28);
}

.site-nav .nav-cta:hover,
.button-primary:hover {
    background: #e76514;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 0;
    background: #ffffff;
}

.section {
    padding: clamp(72px, 8vw, 112px) 0;
    background: #ffffff;
    color: #0f172a;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
}

.section-muted {
    background: #f3f4f6;
    color: #0f172a;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: min(860px, calc(100vh - 40px));
    margin-top: -72px;
    padding: clamp(132px, 14vw, 176px) 0 clamp(72px, 8vw, 108px);
}

.hero-wave-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.two-column {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    font-size: clamp(3rem, 6.5vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    max-width: none;
    margin-bottom: 28px;
}

.hero-accent {
    color: var(--cyan);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-end;
    text-align: right;
}

.hero-stat strong {
    display: block;
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-stat span {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

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

h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    font-size: 0.97rem;
    line-height: 1.7;
}

.hero-copy p,
.section-copy p,
.final-cta p {
    color: var(--muted-strong);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.section .section-copy p,
.section .section-heading p {
    color: #475569;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0 22px;
    font-weight: 900;
    line-height: 1.1;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

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

@media (max-width: 1500px) {
    .hero-stats {
        gap: 28px;
    }
}

.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.hero-metric {
    border: 1px solid rgba(255, 117, 31, 0.28);
    border-radius: 10px;
    background: rgba(255, 117, 31, 0.08);
    padding: 18px;
}

.hero-metric span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-metric strong {
    display: block;
    margin-top: 6px;
    color: var(--brand-orange);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
}

.section-lead {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
}

.support-grid,
.services-grid,
.site-portfolio-grid,
.differentials-grid,
.clients-grid,
.principles-grid,
.footer-grid {
    display: grid;
    gap: clamp(16px, 2vw, 22px);
}

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

.about-contact-panel {
    margin-top: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: clamp(18px, 2.4vw, 24px);
    box-shadow: var(--shadow);
}

.about-contact-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
}

.about-contact-head span {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-contact-head strong {
    display: block;
    color: #111827;
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    line-height: 1.1;
}

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

.about-contact-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #111827;
    padding: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 117, 31, 0.55);
    background: #fff7ed;
}

.about-contact-card svg {
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    padding: 11px;
}

.about-contact-card strong,
.about-contact-card small {
    display: block;
}

.about-contact-card strong {
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.2;
}

.about-contact-card small {
    margin-top: 4px;
    color: #475569;
    font-weight: 700;
    line-height: 1.35;
}

.about-contact-primary {
    border-color: rgba(255, 117, 31, 0.46);
    background: #FF751F;
    color: #ffffff;
}

.about-contact-primary:hover {
    background: #e76514;
}

.about-contact-primary svg {
    background: #ffffff;
    color: #FF751F;
}

.about-contact-primary strong,
.about-contact-primary small {
    color: #ffffff;
}

.support-card,
.service-card,
.client-card,
.principle-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: clamp(20px, 2.5vw, 26px);
    box-shadow: var(--shadow);
}

.card-icon,
.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 10px;
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 117, 31, 0.2);
}

.card-icon svg,
.service-icon svg,
.differential-card svg,
.site-footer svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.2;
}

.support-card h3,
.principle-card h2 {
    margin-top: 18px;
}

.support-card p,
.service-card p,
.client-card p,
.principle-card p {
    color: #475569;
    line-height: 1.7;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Who we serve */
.who-we-serve {
    background: #FF751F;
}

.who-we-serve .section-heading {
    color: #ffffff;
}

.who-we-serve .section-heading h2 {
    color: #ffffff;
}

.who-we-serve .section-heading .eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.who-we-serve .section-heading .eyebrow::before {
    background: rgba(255, 255, 255, 0.85);
}

.who-we-serve .section-lead {
    color: rgba(255, 255, 255, 0.82);
}

.who-we-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.who-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 0;
    padding: 24px 22px 28px;
    border-radius: 18px;
    background: #ffffff;
}

.who-card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FF751F;
    color: #ffffff;
    flex-shrink: 0;
    margin-bottom: 18px;
}

.who-card-icon svg {
    width: 24px;
    height: 24px;
}

.who-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: #0f172a;
    text-align: center;
}

.who-card p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.media-showcase {
    margin-top: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: clamp(18px, 2.5vw, 26px);
    box-shadow: var(--shadow);
}

.media-heading {
    max-width: 680px;
    margin-bottom: 22px;
}

.media-heading h3 {
    margin: 10px 0 0;
    font-size: 1.2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

.video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #020617;
    object-fit: cover;
}


.video-card-thumb {
    cursor: pointer;
}

.video-card-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    transition: background 0.2s ease;
}

.video-card-thumb:hover .video-card-play {
    background: rgba(0, 0, 0, 0.5);
}

.video-card-play svg {
    width: 54px;
    height: 54px;
    color: #ffffff;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.6));
    transition: transform 0.2s ease;
}

.video-card-thumb:hover .video-card-play svg {
    transform: scale(1.1);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.92);
    padding: 24px;
}

.video-modal[hidden] {
    display: none;
}

.video-modal-player {
    width: min(420px, 92vw);
    max-height: 88vh;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.video-modal-close {
    position: fixed;
    top: 18px;
    right: 18px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
}

.video-modal-close svg {
    width: 22px;
    height: 22px;
}

.video-placeholder {
    display: grid;
    min-height: 220px;
    grid-column: 1 / -1;
    place-items: center;
    padding: 28px;
    text-align: center;
}

.video-placeholder svg {
    width: 38px;
    height: 38px;
    color: var(--blue);
}

.video-placeholder p {
    max-width: 360px;
    margin: 0;
    color: #64748b;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.gallery-strip figure {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    margin: 0;
    border-radius: 10px;
    background: #111827;
}

.gallery-strip img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

.gallery-placeholder {
    display: grid;
    place-items: center;
    padding: 18px;
    color: #ffffff;
    text-align: center;
}

.gallery-placeholder svg {
    width: 30px;
    height: 30px;
}

.gallery-placeholder figcaption {
    font-weight: 800;
}

.site-portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-project-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: clamp(18px, 2.4vw, 24px);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 117, 31, 0.28);
    box-shadow: 0 24px 62px rgba(255, 117, 31, 0.12);
}

.site-project-image {
    display: block;
    overflow: hidden;
    margin: -8px -8px 18px;
    border-radius: 10px;
    background: #0f172a;
}

.site-project-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.site-project-card:hover .site-project-image img {
    transform: scale(1.04);
}

.site-project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.site-project-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 10px;
    background: var(--blue);
    color: #ffffff;
}

.site-project-icon svg {
    width: 22px;
    height: 22px;
}

.site-project-stack {
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background: #eff6ff;
    color: #FF751F;
    padding: 7px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.site-project-card h3 {
    margin-bottom: 12px;
    font-size: 1.18rem;
}

.site-project-card p {
    color: #475569;
    line-height: 1.7;
}

.site-project-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--blue);
    font-weight: 900;
}

.site-project-card a svg {
    width: 17px;
    height: 17px;
}

.service-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.client-card:hover,
.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 117, 31, 0.28);
    box-shadow: 0 24px 62px rgba(255, 117, 31, 0.12);
}

.service-card h3 {
    margin: 20px 0 10px;
}

.service-extra {
    font-weight: 700;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 18px 0 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: #334155;
    font-size: 0.94rem;
    line-height: 1.45;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--blue);
}

.differentials-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.differential-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
}

.differential-card span {
    color: var(--cyan);
    font-weight: 900;
}

.differential-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.differential-top svg {
    color: var(--cyan);
}

.differential-card p {
    margin: 20px 0 0;
    color: var(--muted-strong);
    line-height: 1.55;
}

.clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.client-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.client-avatar {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #111827;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 900;
}

.client-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
    background: #f1f5f9;
}

.client-image-button {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}

.client-image-button span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    background: rgba(5, 5, 5, 0.72);
    color: #ffffff;
    padding: 7px 9px;
    font-size: 0.75rem;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.client-image-button:hover span,
.client-image-button:focus-visible span {
    opacity: 1;
}

.client-image-button span svg {
    width: 15px;
    height: 15px;
}

.client-avatar svg {
    width: 18px;
    height: 18px;
    margin-left: -4px;
    opacity: 0.76;
}

.client-card h3 {
    margin-bottom: 8px;
}

.client-card span,
.client-card a {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
}

.client-card span {
    color: #334155;
}

.client-card a {
    margin-top: 8px;
    color: var(--blue);
}

.client-card p {
    margin-top: 14px;
}

.principles-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.principle-card h2 {
    font-size: 1.8rem;
}

.final-cta {
    padding: clamp(72px, 8vw, 112px) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 34px;
    align-items: start;
}

.final-cta-inner {
    max-width: 860px;
}

.final-cta .eyebrow {
    justify-content: flex-start;
}

.final-cta .eyebrow::before {
    display: block;
}

.final-cta h2 {
    margin-top: 14px;
}

.final-cta p {
    max-width: 720px;
}

.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.budget-form {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: clamp(20px, 3vw, 28px);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(18px);
}

.budget-form h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.budget-form p {
    color: var(--muted-strong);
    line-height: 1.6;
}

.budget-form label {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    padding: 14px 14px;
    outline: none;
}

.budget-form select option {
    color: #0f172a;
}

.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(255, 117, 31, 0.16);
}

.checkbox-field {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-field input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    cursor: pointer;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

.checkbox-field span {
    flex: 1 1 auto;
    color: var(--muted-strong);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.5;
}

.budget-form button {
    width: 100%;
    margin-top: 20px;
}

.form-feedback {
    margin: 14px 0 0;
    border: 1px solid rgba(255, 117, 31, 0.28);
    border-radius: 10px;
    background: rgba(255, 117, 31, 0.1);
    padding: 12px;
    color: #dff7ff;
}

.form-feedback-success {
    border-color: rgba(34, 197, 94, 0.42);
    background: rgba(34, 197, 94, 0.14);
    color: #dcfce7;
}

.form-feedback-error {
    border-color: rgba(248, 113, 113, 0.46);
    background: rgba(248, 113, 113, 0.14);
    color: #fee2e2;
}

.form-feedback a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: underline;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #050505;
    color: var(--text);
    padding: 54px 0 28px;
}

.footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
}

.site-footer p,
.site-footer a,
.site-footer span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    line-height: 1.7;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 12px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp i {
    font-size: 2rem;
    line-height: 1;
}

.lgpd-banner {
    position: fixed;
    right: 18px;
    bottom: 10px;
    left: 18px;
    z-index: 70;
    display: grid;
    max-width: 980px;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(5, 5, 5, 0.94);
    padding: 18px;
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(18px);
}

.lgpd-banner[hidden] {
    display: none;
}

.lgpd-banner strong {
    display: block;
    margin-bottom: 6px;
}

.lgpd-banner p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.5;
}

.lgpd-actions {
    display: flex;
    gap: 10px;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.86);
    padding: 24px;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox img {
    display: block;
    max-width: min(1120px, 94vw);
    max-height: 86vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.image-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
}

.image-lightbox-close svg {
    width: 24px;
    height: 24px;
}

.site-footer p {
    display: block;
}

.footer-cnpj {
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.site-footer h3 {
    color: #ffffff;
}

.footer-bottom {
    width: min(1160px, calc(100% - 32px));
    margin: 34px auto 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    color: var(--muted);
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.admin-login-page,
.admin-panel-page {
    min-height: 100vh;
    background: #050505;
    color: #ffffff;
}

.admin-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 260px minmax(0, 1fr);
    transition: grid-template-columns 0.22s ease;
}

.admin-shell.is-sidebar-collapsed {
    grid-template-columns: 86px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    border-right: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.92);
    padding: 18px;
    backdrop-filter: blur(18px);
}

.admin-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 18px;
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 900;
    min-width: 0;
}

.admin-sidebar-logo img {
    width: 58px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    flex: 0 0 auto;
}

.admin-sidebar-logo span,
.admin-sidebar-menu a,
.admin-sidebar-footer a {
    white-space: nowrap;
}

.admin-sidebar-toggle {
    display: inline-grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
}

.admin-sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
}

.admin-sidebar-menu {
    display: grid;
    gap: 8px;
    padding: 12px 0;
}

.admin-sidebar-menu a,
.admin-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    color: var(--muted-strong);
    padding: 12px;
    font-weight: 800;
}

.admin-sidebar-menu a:hover,
.admin-sidebar-footer a:hover,
.admin-sidebar-menu a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.admin-sidebar-menu a.is-active {
    box-shadow: inset 3px 0 0 var(--cyan);
}

.admin-sidebar svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.admin-sidebar-footer {
    display: grid;
    gap: 8px;
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.admin-shell.is-sidebar-collapsed .admin-sidebar {
    padding-right: 14px;
    padding-left: 14px;
}

.admin-shell.is-sidebar-collapsed .admin-sidebar-head {
    align-items: center;
    flex-direction: column;
}

.admin-shell.is-sidebar-collapsed .admin-sidebar-logo {
    justify-content: center;
}

.admin-shell.is-sidebar-collapsed .admin-sidebar-logo span,
.admin-shell.is-sidebar-collapsed .admin-sidebar-menu a span,
.admin-shell.is-sidebar-collapsed .admin-sidebar-footer a span {
    display: none;
}

.admin-shell.is-sidebar-collapsed .admin-sidebar-menu a,
.admin-shell.is-sidebar-collapsed .admin-sidebar-footer a {
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
}

.admin-login {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.admin-card {
    width: min(440px, 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.9);
    padding: 28px;
    box-shadow: var(--shadow);
}

.admin-logo {
    display: block;
    width: 130px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 8px;
    object-fit: cover;
}

.admin-card h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.admin-card p,
.admin-empty {
    color: var(--muted-strong);
    line-height: 1.6;
}

.admin-card label {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    font-weight: 800;
}

.admin-card input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    padding: 13px 14px;
    outline: none;
}

.admin-card button {
    width: 100%;
    margin-top: 22px;
}

.admin-alert {
    border: 1px solid rgba(248, 113, 113, 0.46);
    border-radius: 10px;
    background: rgba(248, 113, 113, 0.14);
    color: #fee2e2;
    padding: 12px;
}

.admin-success {
    border: 1px solid rgba(34, 197, 94, 0.42);
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.14);
    color: #dcfce7;
    padding: 12px;
}

.admin-field-error {
    display: block;
    margin-top: 4px;
    color: #fca5a5;
    font-size: 0.82rem;
    font-weight: 600;
}

.admin-form label.has-error input,
.admin-form label.has-error textarea,
.admin-form label.has-error select {
    border-color: rgba(248, 113, 113, 0.7);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    padding: 12px max(18px, calc((100vw - 1180px) / 2));
    backdrop-filter: blur(18px);
}

.admin-topbar nav {
    display: flex;
    gap: 10px;
}

.admin-topbar nav a {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--muted-strong);
    font-weight: 800;
}

.admin-panel {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0 80px;
}

.admin-panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.admin-panel-heading span {
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-panel-heading h1 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.admin-panel-heading strong {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
}

.admin-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    background: var(--blue);
    color: #ffffff;
    padding: 12px 16px;
    font-weight: 900;
}

.admin-action-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
}

.admin-action svg {
    width: 18px;
    height: 18px;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.88);
    box-shadow: var(--shadow);
}

.admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--line);
    padding: 16px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--cyan);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--muted-strong);
    line-height: 1.5;
}

.admin-table td a,
.admin-table td span {
    display: block;
}

.admin-table td a {
    margin-top: 6px;
    color: #93c5fd;
}

.admin-actions-cell {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-actions-cell form {
    margin: 0;
}

.admin-actions-cell button {
    border: 0;
    background: transparent;
    color: #fca5a5;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0;
}

.admin-sort-list {
    display: grid;
    gap: 12px;
}

.admin-leads-list {
    display: grid;
    gap: 12px;
}

.admin-lead-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.88);
    padding: 16px;
    box-shadow: var(--shadow-dark);
}

.admin-lead-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 12px;
    background: var(--blue);
    color: #ffffff;
}

.admin-lead-main {
    display: grid;
    min-width: 0;
    gap: 10px;
}

.admin-lead-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.admin-lead-title strong {
    color: #ffffff;
    font-size: 1.08rem;
}

.admin-lead-title span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.admin-lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.admin-lead-meta span,
.admin-lead-meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted-strong);
    font-size: 0.92rem;
    font-weight: 800;
}

.admin-lead-meta svg {
    width: 15px;
    height: 15px;
    color: var(--cyan);
}

.admin-lead-main p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.5;
}

.admin-lead-actions {
    justify-content: flex-end;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.78);
    padding: 24px;
}

.admin-modal[hidden] {
    display: none;
}

.admin-modal-card {
    position: relative;
    width: min(720px, 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.98);
    padding: 28px;
    box-shadow: var(--shadow-dark);
}

.admin-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
}

.admin-modal-eyebrow {
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-modal-card h2 {
    margin: 8px 48px 22px 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

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

.admin-modal-grid div {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 14px;
}

.admin-modal-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-modal-grid strong,
.admin-modal-grid p {
    color: #ffffff;
    line-height: 1.55;
}

.admin-modal-grid p {
    margin: 0;
    white-space: pre-wrap;
}

.admin-modal-full {
    grid-column: 1 / -1;
}

.admin-sort-list.has-sort-error::before {
    content: "Não foi possível salvar a nova ordem.";
    border: 1px solid rgba(248, 113, 113, 0.46);
    border-radius: 10px;
    background: rgba(248, 113, 113, 0.14);
    color: #fee2e2;
    padding: 12px;
}

.admin-sort-item {
    display: grid;
    grid-template-columns: 42px 118px minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.88);
    padding: 14px;
    box-shadow: var(--shadow-dark);
}

.admin-sort-item.is-dragging {
    opacity: 0.58;
}

.admin-drag-handle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted-strong);
    cursor: grab;
}

.admin-drag-handle:active {
    cursor: grabbing;
}

.admin-thumb {
    display: grid;
    overflow: hidden;
    width: 118px;
    aspect-ratio: 16 / 10;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted-strong);
}

.admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.admin-item-main {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.admin-item-title {
    display: grid;
    gap: 3px;
}

.admin-item-title strong {
    color: #ffffff;
    font-size: 1.02rem;
}

.admin-item-title span,
.admin-item-main small {
    color: var(--muted-strong);
}

.admin-item-main a {
    overflow: hidden;
    color: #93c5fd;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-status {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.admin-status.is-active {
    border-color: rgba(34, 197, 94, 0.36);
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
}

.admin-status.is-inactive {
    border-color: rgba(248, 113, 113, 0.34);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

.admin-row-actions {
    display: flex;
    gap: 8px;
}

.admin-row-actions form {
    margin: 0;
}

.admin-icon-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    padding: 0 12px;
    cursor: pointer;
}

.admin-icon-button svg {
    width: 16px;
    height: 16px;
}

.admin-icon-danger {
    border-color: rgba(248, 113, 113, 0.34);
    color: #fecaca;
}

.admin-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.88);
    padding: clamp(18px, 3vw, 28px);
    box-shadow: var(--shadow-dark);
}

.admin-form label {
    display: grid;
    gap: 8px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
}

.admin-form input,
.admin-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    padding: 13px 14px;
    outline: none;
}

.admin-form textarea,
.admin-form .admin-checkbox,
.admin-form .admin-image-preview,
.admin-form button {
    grid-column: 1 / -1;
}

.admin-checkbox {
    grid-template-columns: 18px 1fr;
    align-items: start;
}

.admin-image-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
}

.admin-image-preview img,
.admin-image-preview video,
.admin-image-preview div {
    display: grid;
    width: 180px;
    aspect-ratio: 16 / 9;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    object-fit: cover;
}

.admin-video-preview video {
    background: #000000;
}

.admin-image-preview span {
    color: var(--muted-strong);
    font-weight: 800;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.dashboard-stat-card,
.dashboard-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.88);
    box-shadow: var(--shadow-dark);
}

.dashboard-stat-card {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.dashboard-stat-card span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted-strong);
    font-weight: 900;
}

.dashboard-stat-card strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.dashboard-stat-card a,
.dashboard-panel-heading a {
    color: #93c5fd;
    font-weight: 900;
}

.dashboard-stat-card svg {
    width: 20px;
    height: 20px;
    color: var(--cyan);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 16px;
}

.dashboard-panel {
    padding: 20px;
}

.dashboard-panel-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.dashboard-panel-heading span {
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-panel-heading h2 {
    margin: 6px 0 0;
    font-size: 1.35rem;
}

.dashboard-shortcuts,
.dashboard-leads-list {
    display: grid;
    gap: 10px;
}

.dashboard-shortcuts a,
.dashboard-leads-list a {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted-strong);
    padding: 13px;
}

.dashboard-shortcuts a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.dashboard-shortcuts svg {
    width: 18px;
    height: 18px;
    color: var(--cyan);
}

.dashboard-leads-list a {
    display: grid;
    gap: 4px;
}

.dashboard-leads-list strong {
    color: #ffffff;
}

.dashboard-leads-list span,
.dashboard-leads-list small {
    color: var(--muted-strong);
}

.admin-empty {
    margin: 0;
    padding: 28px;
}

@media (max-width: 1040px) {
    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .site-portfolio-grid,
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .gallery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 821px) and (max-width: 1100px) {
    .who-we-serve-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .admin-sidebar-menu,
    .admin-sidebar-footer {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .admin-sidebar-menu a,
    .admin-sidebar-footer a {
        white-space: nowrap;
    }

    .admin-form {
        grid-template-columns: 1fr;
    }

    .dashboard-stats,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-sort-item {
        grid-template-columns: 38px 92px minmax(0, 1fr);
    }

    .admin-lead-card {
        grid-template-columns: 52px minmax(0, 1fr);
        align-items: start;
    }

    .admin-lead-actions {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }

    .admin-status,
    .admin-row-actions {
        grid-column: 2 / -1;
    }

    .admin-row-actions {
        flex-wrap: wrap;
    }

    .site-header {
        border-radius: 0;
        min-height: 70px;
        padding-left: 4px;
    }

    .site-header .brand-logo {
        width: 126px;
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 78px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 0;
        background: rgba(5, 5, 5, 0.96);
        padding: 12px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 15px 16px;
    }

    .hero {
        min-height: auto;
        padding-top: 124px;
    }

    .section,
    .final-cta {
        padding: 70px 0;
    }

    .support-grid,
    .services-grid,
    .differentials-grid,
    .principles-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .video-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
    }

    .video-grid::-webkit-scrollbar {
        height: 4px;
    }

    .video-grid::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 999px;
    }

    .video-grid::-webkit-scrollbar-thumb {
        background: var(--brand-orange);
        border-radius: 999px;
    }

    .video-grid .video-card {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }

    .site-portfolio-grid,
    .clients-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 12px;
    }

    .site-portfolio-grid::-webkit-scrollbar,
    .clients-grid::-webkit-scrollbar {
        height: 4px;
    }

    .site-portfolio-grid::-webkit-scrollbar-track,
    .clients-grid::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 999px;
    }

    .site-portfolio-grid::-webkit-scrollbar-thumb,
    .clients-grid::-webkit-scrollbar-thumb {
        background: var(--brand-orange);
        border-radius: 999px;
    }

    .site-portfolio-grid .site-project-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        min-height: auto;
    }

    .clients-grid .client-card {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }

    .lgpd-banner {
        grid-template-columns: 1fr;
    }

    .lgpd-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
    }

    .hero-stat strong {
        font-size: 2rem;
    }

    .admin-topbar,
    .admin-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar nav {
        width: 100%;
    }

    .admin-topbar nav a {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .site-header {
        width: 100%;
        margin-top: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .about-contact-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
    }

    .button {
        min-height: 48px;
        padding-right: 16px;
        padding-left: 16px;
        text-align: center;
    }

    h1 {
        font-size: 1.7rem;
        letter-spacing: -0.02em;
    }

    h2 {
        font-size: 1.7rem;
        letter-spacing: -0.02em;
    }

    h3 {
        font-size: 1rem;
    }

    .eyebrow {
        font-size: 0.78rem;
    }

    .eyebrow::before {
        width: 22px;
    }

    .hero-panel,
    .support-card,
    .service-card,
    .client-card,
    .principle-card,
    .differential-card {
        border-radius: var(--radius);
    }

    .metric-card,
    .orbit {
        display: none;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 10px;
        width: 54px;
        height: 54px;
    }

    .lgpd-banner {
        right: 12px;
        bottom: 10px;
        left: 12px;
        padding: 14px;
    }

    .lgpd-actions .button {
        min-height: 44px;
    }

    .budget-form label {
        font-size: 0.88rem;
    }

    .admin-login {
        padding: 14px;
    }

    .admin-card {
        padding: 22px;
    }

    .admin-logo {
        width: 112px;
        height: 62px;
    }

    .admin-panel {
        width: min(100% - 24px, 1180px);
    }

    .admin-sort-item {
        grid-template-columns: 1fr;
    }

    .admin-lead-card {
        grid-template-columns: 1fr;
    }

    .admin-lead-actions {
        grid-column: auto;
    }

    .admin-lead-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-modal {
        padding: 12px;
    }

    .admin-modal-card {
        padding: 20px;
    }

    .admin-modal-grid {
        grid-template-columns: 1fr;
    }

    .admin-drag-handle {
        width: 100%;
    }

    .admin-thumb,
    .admin-image-preview img,
    .admin-image-preview video,
    .admin-image-preview div {
        width: 100%;
    }

    .admin-status,
    .admin-row-actions {
        grid-column: auto;
    }

    .admin-icon-button {
        flex: 1;
    }

    .admin-image-preview {
        align-items: stretch;
        flex-direction: column;
    }
}

.lead-page {
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
}

.lead-page-site-style .site-header {
    position: sticky;
}

.lead-page-nav {
    justify-content: flex-end;
}

.lead-request-section {
    min-height: calc(100vh - 78px);
    padding-top: clamp(90px, 11vw, 140px);
}

.lead-success-card {
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(17, 18, 25, 0.86);
    box-shadow: var(--shadow);
}

label.lead-form-other,
.lead-form-other {
    display: none;
}

label.lead-form-other.is-visible,
.lead-form-other.is-visible {
    display: grid;
}

.lead-radio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lead-radio-field {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 14px;
}

.lead-radio-field div {
    display: flex;
    gap: 10px;
}

.lead-radio-field label,
.lead-consent {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-radio-field input,
.lead-consent input {
    width: auto;
}

.lead-counter,
.lead-form-examples {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.lead-form-examples {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
}

.lead-form-examples p {
    margin: 6px 0 0;
    line-height: 1.6;
}

.lead-consent {
    align-items: flex-start;
    color: var(--muted);
    line-height: 1.5;
}

.qualified-submit {
    width: 100%;
}

.button-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
}

.lead-success-page {
    display: grid;
    place-items: center;
    padding: 24px;
}

.lead-success-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(100%, 620px);
    padding: 44px;
    text-align: center;
}

.lead-success-card img {
    width: 110px;
    height: 64px;
    object-fit: contain;
}

.lead-success-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.lead-success-card h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.lead-success-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .lead-radio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .lead-success-card {
        padding: 16px;
    }
}

.admin-filter-bar {
    display: grid;
    grid-template-columns: minmax(280px, 2fr) repeat(4, minmax(150px, 1fr)) repeat(4, max-content);
    gap: 12px;
    align-items: end;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    background: rgba(12, 14, 22, 0.78);
    padding: 14px;
}

.admin-filter-bar label,
.admin-modal-status-form label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-filter-bar input,
.admin-filter-bar select,
.admin-modal-status-form select,
.admin-modal-status-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 12px 13px;
    font: inherit;
    font-weight: 700;
}

.admin-filter-bar .admin-icon-button {
    min-height: 45px;
    white-space: nowrap;
}

.admin-leads-list-rich {
    gap: 14px;
}

.admin-modal-card-wide {
    width: min(100%, 980px);
    max-height: calc(100vh - 42px);
    overflow: auto;
}

.admin-modal-status-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

.admin-pagination {
    margin-top: 22px;
}

.admin-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.admin-pagination a,
.admin-pagination li span {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
}

.admin-pagination .active span {
    background: var(--solid-accent);
}

.admin-icon-button.is-disabled {
    pointer-events: none;
    opacity: 0.45;
}

@media (max-width: 1180px) {
    .admin-filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .admin-filter-bar {
        grid-template-columns: 1fr;
    }
}
