: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: rgba(255, 117, 31, 0.42);
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.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: center;
}

.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 {
    min-height: min(860px, calc(100vh - 40px));
    margin-top: -72px;
    padding: clamp(132px, 14vw, 176px) 0 clamp(72px, 8vw, 108px);
}

.hero-grid,
.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;
}

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

.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: 24px;
    font-size: clamp(2.25rem, 5.2vw, 4.4rem);
    line-height: 1.02;
    font-weight: 900;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
    font-weight: 900;
}

h3 {
    font-size: 1.08rem;
}

.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);
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.orbit-one {
    right: 8vw;
    top: 145px;
    width: 360px;
    height: 360px;
}

.orbit-two {
    right: 20vw;
    top: 245px;
    width: 210px;
    height: 210px;
}

.metric-card {
    position: absolute;
    z-index: 1;
    max-width: 170px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(16, 17, 23, 0.78);
    padding: 16px;
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(16px);
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.metric-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.28rem;
}

.metric-card-one {
    z-index: 5;
    right: max(18px, calc((100vw - 1280px) / 2));
    top: 230px;
}

.metric-card-two {
    right: max(18px, calc((100vw - 1160px) / 2));
    bottom: 82px;
}

.hero-panel {
    position: relative;
    z-index: 3;
    min-height: 410px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 17, 23, 0.86);
    padding: 28px;
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(20px);
}

.panel-topline {
    position: absolute;
    inset: 28px 28px auto;
    height: 210px;
    border-radius: 14px;
    background: #1f2937;
    opacity: 0.5;
    pointer-events: none;
}

.hero-image {
    position: relative;
    display: block;
    width: 100%;
    height: 210px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-panel p {
    margin: 28px 0 8px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel strong {
    display: block;
    max-width: 420px;
    font-size: 2rem;
    line-height: 1.08;
}

.growth-bars {
    display: grid;
    height: 96px;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 12px;
    margin-top: 32px;
}

.growth-bars span {
    height: var(--height);
    border-radius: 12px 12px 6px 6px;
    background: var(--blue);
}

@media (max-width: 1500px) {
    .metric-card {
        display: none;
    }
}

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

.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));
}

.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));
}

.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: 12px 0 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
}

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

.video-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
}

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

.video-card strong {
    display: block;
    padding: 14px;
    color: #0f172a;
}

.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 {
    grid-template-columns: 18px 1fr;
    align-items: start;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-field span {
    color: var(--muted-strong);
    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;
}

.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-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-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 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-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,
    .video-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 (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;
    }

    .brand-logo {
        width: 74px;
        height: 42px;
    }

    .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,
    .video-grid,
    .site-portfolio-grid,
    .clients-grid,
    .differentials-grid,
    .principles-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-panel {
        min-height: 340px;
    }

    .panel-topline,
    .hero-image {
        height: 180px;
    }

    .hero-panel strong {
        font-size: 1.55rem;
    }

    .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%;
    }

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

    h1 {
        font-size: 2.15rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .eyebrow {
        font-size: 0.72rem;
    }

    .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 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: #05070b;
}

.lead-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding: 18px 0;
}

.lead-page-logo img {
    display: block;
    width: 88px;
    height: 48px;
    object-fit: contain;
}

.lead-page-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
    gap: 42px;
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding: 52px 0 84px;
}

.lead-page-intro {
    position: sticky;
    top: 32px;
    align-self: start;
}

.lead-page-intro h1 {
    max-width: 560px;
    margin: 14px 0 18px;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    line-height: 0.98;
}

.lead-page-intro p {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.qualified-lead-form {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.lead-form-section {
    display: grid;
    gap: 16px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 20px;
}

.lead-form-section legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
}

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

.qualified-lead-form label,
.lead-radio-field span {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 800;
}

.qualified-lead-form input,
.qualified-lead-form select,
.qualified-lead-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: 14px 15px;
    font: inherit;
    font-weight: 700;
}

.qualified-lead-form textarea {
    resize: vertical;
}

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

.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-page-main {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }

    .lead-page-intro {
        position: static;
    }

    .lead-radio-grid,
    .lead-form-grid {
        grid-template-columns: 1fr;
    }
}

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

    .lead-page-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .qualified-lead-form,
    .lead-form-section,
    .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;
    }
}
