:root {
    --bg: #f4f8fc;
    --bg-soft: #e8f0f9;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #e2eaf4;
    --surface-light: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --heading: #0f172a;
    --accent: #f97316;
    --accent-strong: #ea580c;
    --accent-soft: rgba(249, 115, 22, 0.14);
    --highlight: #facc15;
    --success: #22c55e;
    --border: rgba(148, 163, 184, 0.22);
    --shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
    --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 20%),
        radial-gradient(circle at left top, rgba(14, 165, 233, 0.14), transparent 28%),
        linear-gradient(180deg, #f9fcff 0%, #eef5fb 22%, #f8fbfe 44%, #f6f7fb 100%);
    color: #0f172a;
}

body.modal-open {
    overflow: hidden;
}

body.admin-body,
body.admin-auth-body {
    background: #f1f5f9;
    color: #0f172a;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section--dark {
    color: var(--text);
}

.section--light {
    background: #f8fbfe;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header h2,
.section-header h1,
.page-hero h1,
.hero-copy h1,
.cta-banner h2,
.admin-title,
.product-summary h1 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.section-header p,
.page-hero p,
.hero-copy p,
.product-summary p,
.copy-muted {
    margin: 0;
    color: var(--text-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.18);
    background: rgba(249, 115, 22, 0.08);
    color: #c2410c;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: white;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.button--dark {
    background: #0f172a;
    color: white;
}

.button--ghost {
    background: transparent;
    color: inherit;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.button--small {
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
}

.button--full {
    width: 100%;
}

.button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.button-icon--whatsapp {
    color: #16a34a;
}

.grid {
    display: grid;
    gap: 1.4rem;
}

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

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

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

.topbar {
    background: rgba(255, 247, 237, 0.96);
    color: #7c2d12;
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
    font-size: 0.9rem;
}

.topbar .container,
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar .container {
    padding: 0.8rem 0;
}

.topbar-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.site-header .container {
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 800;
}

.brand img {
    width: 46px;
    height: 46px;
}

.brand small {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    color: #475569;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    color: #ea580c;
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.nav-actions .button {
    min-height: 56px;
    padding: 0.92rem 1.35rem;
    font-size: 0.98rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    box-shadow: none;
}

.nav-actions .button--secondary {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #0f172a;
}

.nav-actions .button--secondary:hover {
    background: linear-gradient(180deg, #ffffff, #eef4fb);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.nav-actions .button--primary {
    background: linear-gradient(135deg, #ff7a18 0%, #f97316 48%, #ea580c 100%);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
}

.nav-actions .button--primary:hover {
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.3);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: white;
}

.hero {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    color: #0f172a;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.10), transparent 28%),
        linear-gradient(140deg, rgba(249, 115, 22, 0.08), transparent 35%, rgba(250, 204, 21, 0.08));
    pointer-events: none;
}

.page-home .topbar {
    display: none;
}

.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.page-home .site-header .container {
    padding: 1.65rem 0 0.9rem;
}

.page-home .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.page-home .site-header.is-scrolled .container {
    padding: 1rem 0;
}

.page-home .brand,
.page-home .nav-menu {
    text-shadow: 0 10px 24px rgba(255, 255, 255, 0.35);
}

.page-home .button--secondary {
    background: rgba(255, 255, 255, 0.84);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 0.98;
    color: #0f172a;
}

.hero-copy p {
    margin-top: 1.25rem;
    font-size: 1.08rem;
    max-width: 58ch;
}

.hero-actions,
.inline-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.hero-points,
.trust-list,
.product-trust-list,
.contact-list,
.page-benefits {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-points span,
.trust-list li,
.product-trust-list li,
.contact-list li,
.page-benefits li {
    position: relative;
    padding-left: 1.2rem;
    color: #475569;
}

.hero-points span::before,
.trust-list li::before,
.product-trust-list li::before,
.contact-list li::before,
.page-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--highlight);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
}

.hero-form-card,
.card,
.product-summary,
.panel,
.contact-card,
.cta-banner,
.filter-bar,
.table-card,
.admin-card,
.modal-panel,
.service-detail,
.process-card,
.client-tile,
.industry-card,
.product-gallery,
.specs-card {
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.hero-form-card {
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-form-card h3,
.contact-card h3,
.product-summary h3,
.modal-panel h3,
.admin-card h3,
.panel h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-heading);
}

.hero-form-card p,
.contact-card p,
.modal-panel p,
.admin-card p,
.panel p {
    margin: 0 0 1rem;
    color: #64748b;
}

.form-grid {
    display: grid;
    gap: 0.9rem;
}

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

label {
    display: grid;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 0.92rem 1rem;
    background: white;
    color: #0f172a;
}

.hero-form-card input,
.hero-form-card textarea,
.hero-form-card select,
.modal-panel input,
.modal-panel textarea,
.modal-panel select,
.site-footer input,
.site-footer textarea,
.site-footer select {
    background: #fff;
    border-color: rgba(148, 163, 184, 0.22);
    color: #0f172a;
}

.hero-form-card input::placeholder,
.hero-form-card textarea::placeholder,
.modal-panel input::placeholder,
.modal-panel textarea::placeholder {
    color: #94a3b8;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.flash-stack {
    position: sticky;
    top: 5.6rem;
    z-index: 39;
}

.flash {
    margin: 1rem auto 0;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    width: min(calc(100% - 2rem), var(--container));
    font-weight: 700;
}

.flash--success {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.flash--error {
    background: rgba(239, 68, 68, 0.12);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cards,
.products-grid,
.clients-grid,
.process-grid,
.industries-grid,
.admin-stats,
.admin-grid {
    display: grid;
    gap: 1.4rem;
}

.cards,
.products-grid,
.clients-grid,
.industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.client-tile,
.process-card,
.industry-card,
.product-card,
.service-detail,
.admin-card,
.table-card,
.contact-card,
.panel,
.specs-card {
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(250, 204, 21, 0.18));
    font-family: var(--font-heading);
    font-weight: 800;
    color: #9a3412;
}

.card h3,
.product-card h3,
.client-tile h3,
.process-card h3,
.industry-card h3,
.service-detail h3,
.product-summary h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
}

.card p,
.product-card p,
.client-tile p,
.process-card p,
.industry-card p,
.service-detail p,
.product-summary p,
.panel p,
.specs-card p {
    margin: 0;
    color: #475569;
}

.service-meta,
.product-meta,
.inline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.badge,
.filter-pill,
.product-price,
.admin-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-weight: 800;
    font-size: 0.82rem;
}

.badge,
.filter-pill,
.admin-pill {
    background: #eff6ff;
    color: #1d4ed8;
}

.product-price {
    background: var(--accent-soft);
    color: #c2410c;
}

.product-card {
    display: grid;
    overflow: hidden;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.product-card__image {
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: #e2e8f0;
}

.product-card__body {
    padding: 1.4rem;
    display: grid;
    gap: 0.9rem;
}

.product-card__body .button {
    width: fit-content;
}

.client-tile {
    text-align: center;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.client-tile strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #0f172a;
}

.process-card {
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: attr(data-step);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(249, 115, 22, 0.12);
}

.cta-banner {
    padding: 2rem;
    background: linear-gradient(135deg, #fff7ed, #ffffff 52%, #eff6ff 100%);
    color: #0f172a;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.12);
}

.cta-banner p {
    color: #64748b;
}

.page-hero {
    padding: 3.8rem 0 3rem;
    color: #0f172a;
}

.page-hero__panel {
    padding: 2.2rem;
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 2rem;
    align-items: center;
}

.filter-bar {
    padding: 1.2rem;
    display: grid;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.filter-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) auto;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: 1.7rem;
}

.product-gallery {
    padding: 1rem;
}

.product-gallery__main {
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 18px;
    background: #e2e8f0;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.gallery-thumb {
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.gallery-thumb.is-active {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-summary {
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
}

.product-summary h1 {
    font-size: clamp(2rem, 4vw, 2.9rem);
}

.product-summary__cta,
.mobile-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.specs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 1.6rem;
    margin-top: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    text-align: left;
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table th {
    width: 44%;
    color: #475569;
    font-weight: 800;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 1.5rem;
}

.contact-map {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 18px;
}

.site-footer {
    background: linear-gradient(180deg, #eef5fb 0%, #e2ebf4 100%);
    color: #1e293b;
    padding: 4rem 0 6.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 1fr);
    gap: 1.5rem;
}

.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    color: #0f172a;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
    color: #475569;
}

.footer-links,
.contact-list,
.product-trust-list,
.page-benefits,
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li,
.contact-list li + li,
.product-trust-list li + li,
.page-benefits li + li,
.trust-list li + li {
    margin-top: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    margin-top: 2rem;
    padding-top: 1.3rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-bar {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 45;
    width: min(calc(100% - 1rem), 520px);
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.mobile-bar .button {
    width: 100%;
    padding-inline: 0.7rem;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    place-items: center;
    padding: 1rem;
}

.modal.is-active {
    display: grid;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
}

.modal-panel {
    position: relative;
    width: min(100%, 620px);
    padding: 1.6rem;
    background: linear-gradient(180deg, #0f172a, #111827);
    color: white;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: white;
}

.lead-modal-panel {
    width: min(100%, 980px);
    padding: 0;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.2), transparent 30%),
        linear-gradient(145deg, #091222 0%, #0f1b30 48%, #0b1323 100%);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-modal-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.lead-modal-aside {
    padding: 2rem;
    color: #e2e8f0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(15, 23, 42, 0));
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.16);
    color: #fdba74;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lead-modal-aside h2 {
    margin: 1rem 0 0.8rem;
    color: white;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.4vw, 2.55rem);
    line-height: 1.02;
}

.lead-modal-aside p {
    margin: 0;
    color: rgba(226, 232, 240, 0.84);
    font-size: 1rem;
    line-height: 1.7;
}

.lead-modal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.lead-modal-pills span {
    padding: 0.62rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.84rem;
    font-weight: 700;
}

.lead-modal-points {
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.lead-modal-points li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(226, 232, 240, 0.86);
    line-height: 1.6;
}

.lead-modal-points li::before {
    content: '';
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.lead-modal-form-card {
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.lead-modal-form-card h3 {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-size: 1.7rem;
}

.lead-modal-form-card p {
    margin: 0 0 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.lead-modal-form-card label {
    color: #334155;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lead-modal-form-card input,
.lead-modal-form-card textarea,
.lead-modal-form-card select {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lead-modal-form-card input:focus,
.lead-modal-form-card textarea:focus,
.lead-modal-form-card select:focus {
    outline: none;
    border-color: rgba(249, 115, 22, 0.42);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.lead-modal-form-card textarea {
    min-height: 138px;
}

.lead-modal-form-card .button--primary {
    margin-top: 0.35rem;
    padding-block: 1.05rem;
}

.lead-modal-panel .modal-close {
    top: 1.1rem;
    right: 1.1rem;
    background: rgba(239, 68, 68, 0.10);
    border-color: rgba(239, 68, 68, 0.22);
    color: #dc2626;
    font-size: 1.45rem;
    line-height: 1;
}

.lead-modal-panel .modal-close:hover {
    background: rgba(239, 68, 68, 0.16);
    color: #b91c1c;
}

.thank-you-modal-panel {
    width: min(100%, 560px);
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.2), transparent 34%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 28%),
        linear-gradient(145deg, #091222 0%, #0f1b30 52%, #0b1323 100%);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.thank-you-modal__badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.thank-you-modal-panel h2 {
    margin: 1rem 0 0.7rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    line-height: 1.05;
}

.thank-you-modal-panel p {
    margin: 0;
    color: rgba(226, 232, 240, 0.84);
    font-size: 1rem;
    line-height: 1.75;
}

.thank-you-modal__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.thank-you-modal-close {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.thank-you-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
}

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

.admin-sidebar {
    background: #0f172a;
    color: white;
    padding: 1.5rem;
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.admin-sidebar a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: #cbd5e1;
}

.admin-sidebar a.is-active,
.admin-sidebar a:hover {
    background: rgba(249, 115, 22, 0.12);
    color: white;
}

.admin-main {
    padding: 1.8rem;
}

.admin-flash-stack {
    position: sticky;
    top: 1rem;
    z-index: 25;
}

.admin-flash-stack .flash {
    width: 100%;
    margin: 0 0 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-title {
    font-size: 2rem;
}

.admin-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    text-align: left;
    padding: 1rem 0.8rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.table th {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.admin-form {
    display: grid;
    gap: 1.1rem;
}

.admin-link-strong {
    color: #0f172a;
    font-weight: 800;
}

.admin-link-strong:hover {
    color: #ea580c;
}

.admin-message-preview {
    max-width: 280px;
    color: #475569;
    line-height: 1.55;
    white-space: normal;
}

.admin-detail-stack {
    display: grid;
    gap: 1.4rem;
}

.admin-detail-section h3 {
    margin: 0 0 0.85rem;
    font-family: var(--font-heading);
}

.admin-detail-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.admin-message-card {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: 1rem 1.1rem;
    color: #0f172a;
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: break-word;
}

.admin-detail-table th {
    width: 28%;
}

.admin-spec-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
}

.admin-image-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-image-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.8rem;
    background: #fff;
}

.admin-image-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.admin-upload-preview,
.admin-empty-state {
    margin-top: 0.55rem;
    font-size: 0.95rem;
}

.admin-auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18), transparent 25%), #0b1220;
}

.admin-auth-card {
    width: min(100%, 460px);
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.empty-state {
    padding: 2rem;
    border-radius: var(--radius);
    background: white;
    text-align: center;
    color: #64748b;
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero__grid,
    .product-detail,
    .specs-layout,
    .contact-layout,
    .footer-grid,
    .admin-shell,
    .cta-banner,
    .grid--4,
    .process-grid,
    .cards,
    .products-grid,
    .clients-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

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

    .product-gallery__thumbs,
    .admin-image-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 780px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(9, 17, 31, 0.98);
        box-shadow: var(--shadow);
    }

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

    .nav-actions {
        display: none;
    }

    .form-grid--2,
    .filter-row,
    .admin-spec-row,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .topbar .container,
    .site-header .container,
    .section-header,
    .admin-header,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 4.4rem 0;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-copy h1,
    .page-hero h1,
    .product-summary h1 {
        font-size: 2.3rem;
    }

    .mobile-bar {
        display: grid;
    }
}

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

    .section {
        padding: 3.6rem 0;
    }

    .hero-form-card,
    .card,
    .contact-card,
    .panel,
    .cta-banner,
    .modal-panel,
    .service-detail,
    .product-summary,
    .product-gallery,
    .specs-card,
    .admin-card,
    .table-card,
    .page-hero__panel {
        padding: 1.2rem;
    }

    .product-gallery__thumbs,
    .admin-image-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .lead-modal-aside {
        padding: 1.35rem 1.2rem 0.4rem;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lead-modal-form-card {
        padding: 1.2rem;
    }

    .stats-grid,
    .grid--2,
    .grid--3,
    .admin-stats {
        grid-template-columns: 1fr;
    }
}


.product-gallery__main {
    cursor: zoom-in;
}

.product-gallery__hint {
    margin: 0.85rem 0 0;
    color: #64748b;
    font-size: 0.92rem;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    place-items: center;
    padding: 1rem;
}

.image-lightbox.is-active {
    display: grid;
}

.image-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.82);
}

.image-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    display: grid;
    place-items: center;
}

.image-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 4rem);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
    background: #fff;
}

.image-lightbox__close {
    position: absolute;
    top: -0.5rem;
    right: -0.25rem;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
}


.product-summary {
    color: #0f172a;
}

.product-summary h1 {
    color: #0f172a;
}

.product-summary p {
    color: #475569;
}

.product-summary .button--ghost {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.14);
}

.product-summary .product-trust-list li {
    color: #94a3b8;
}


.product-summary ul.product-trust-list li {
    color: #64748b;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: center;
}

.about-hero__copy,
.certificate-showcase__copy {
    display: grid;
    gap: 1rem;
}

.about-hero__visual img,
.about-showcase__panel img,
.portfolio-wall__item img,
.certificate-showcase__visual img {
    width: 100%;
    display: block;
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

.about-showcase,
.portfolio-wall,
.certificate-showcase {
    display: grid;
    gap: 1.25rem;
}

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

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

.certificate-showcase {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: start;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-card,
.certificate-item {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.brand-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
    animation: brandCardReveal 0.6s ease both;
}

.brand-card::after {
    content: '';
    position: absolute;
    inset: -40% auto auto -20%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 68%);
    opacity: 0;
    transition: opacity 0.32s ease, transform 0.4s ease;
    transform: translate3d(-12px, 8px, 0);
    pointer-events: none;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(249, 115, 22, 0.22);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.brand-card:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.brand-card__mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.brand-card:hover .brand-card__mark {
    transform: translateY(-3px) scale(1.08) rotate(-6deg);
    background: linear-gradient(145deg, #fff7ed, #ffedd5);
    color: #ea580c;
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.18);
}

.brand-card strong,
.certificate-item h3 {
    color: #0f172a;
}

.brand-card p,
.certificate-item p {
    margin: 0.3rem 0 0;
    color: #64748b;
}

.brand-grid .brand-card:nth-child(2n) {
    animation-delay: 0.08s;
}

.brand-grid .brand-card:nth-child(3n) {
    animation-delay: 0.14s;
}

.brand-grid .brand-card:nth-child(4n) {
    animation-delay: 0.2s;
}

@keyframes brandCardReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-list {
    display: grid;
    gap: 0.9rem;
}

.certificate-item {
    padding: 1.1rem 1.2rem;
}

@media (max-width: 940px) {
    .about-hero,
    .about-showcase,
    .portfolio-wall,
    .certificate-showcase,
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage premium hero and transparent-to-solid navbar overrides */
.site-header,
.site-header .container {
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

.nav-toggle {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: #0f172a;
}

.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.page-home .site-header .container {
    padding: 1.2rem 1rem 0.9rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(12px);
}

.page-home .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.page-home .site-header.is-scrolled .container {
    padding: 1rem 0;
    background: transparent;
    border-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.page-home .nav-menu a,
.page-home .brand,
.page-home .brand small {
    color: #0f172a;
}

.page-home .nav-menu a:hover,
.page-home .nav-menu a.is-active {
    color: #ea580c;
}

.page-home .button--secondary {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.page-home .button--primary {
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.page-home .nav-actions {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42));
    border-color: rgba(255, 255, 255, 0.48);
}

.page-home .site-header.is-scrolled .nav-actions {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.96));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.page-home .hero {
    min-height: 760px;
    padding-top: 9.8rem;
    background:
        linear-gradient(180deg, #f8fbfe 0%, #eef5fb 76%, #f8fbfe 100%),
        url('../images/banner/homepage-banner.jpg') right 9% top 130px / 380px auto no-repeat;
    overflow: hidden;
}

.page-home .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248, 250, 252, 0.97) 0%, rgba(248, 250, 252, 0.92) 24%, rgba(248, 250, 252, 0.78) 44%, rgba(248, 250, 252, 0.34) 68%, rgba(248, 250, 252, 0.08) 100%);
    pointer-events: none;
}

.page-home .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 16%, rgba(249, 115, 22, 0.16), transparent 16%),
        radial-gradient(circle at 8% 84%, rgba(14, 165, 233, 0.12), transparent 24%),
        repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.035) 0 1px, transparent 1px 118px),
        linear-gradient(140deg, rgba(249, 115, 22, 0.04), transparent 35%, rgba(250, 204, 21, 0.05));
    pointer-events: none;
}

.page-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 2.6rem;
    align-items: start;
}

.page-home .hero-copy {
    max-width: 660px;
    padding-top: 1.2rem;
}

.page-home .hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    line-height: 0.94;
}

.page-home .hero-copy p {
    max-width: 54ch;
    font-size: 1.12rem;
    color: #475569;
}

.page-home .hero-points {
    max-width: 620px;
}

.page-home .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
}

.page-home .stat-card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.page-home .stat-card strong {
    color: #0f172a;
}

.page-home .stat-card span {
    color: #64748b;
}

.page-home .hero-form-card {
    position: relative;
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(22px);
}

.page-home .hero-form-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, #f97316, #facc15, #0ea5e9);
}

.page-home .hero-form-card h3 {
    font-size: 1.45rem;
    color: #0f172a;
}

.page-home .hero-form-card p {
    color: #64748b;
}

.equipment-slider {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.equipment-slider__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: equipmentSlider 38s linear infinite;
}

.equipment-slider:hover .equipment-slider__track {
    animation-play-state: paused;
}

.equipment-slide {
    width: 280px;
    flex: 0 0 280px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.equipment-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.14);
    border-color: rgba(249, 115, 22, 0.18);
}

.equipment-slide__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #eff6ff, #fff7ed);
}

.equipment-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-slide__body {
    padding: 1rem 1.05rem 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.equipment-slide__body strong {
    font-family: var(--font-heading);
    color: #0f172a;
    font-size: 1rem;
}

.equipment-slide__body span {
    color: #64748b;
    font-size: 0.92rem;
}

@media (max-width: 940px) {
    .page-home .hero-grid {
        grid-template-columns: 1fr;
    }

    .page-home .hero-copy h1 {
        max-width: 10ch;
    }
}

@media (max-width: 780px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        color: #334155;
        border: 1px solid rgba(148, 163, 184, 0.16);
    }

    .page-home .site-header .container,
    .page-home .site-header.is-scrolled .container {
        border-radius: 22px;
        padding-inline: 0.9rem;
    }

    .page-home .hero {
        min-height: auto;
        padding-top: 8.6rem;
    }

    .page-home .hero::before {
        background:
            linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.88) 34%, rgba(248, 250, 252, 0.72) 56%, rgba(248, 250, 252, 0.54) 100%);
    }

    .page-home .hero {
        background:
            linear-gradient(180deg, #f8fbfe 0%, #eef5fb 76%, #f8fbfe 100%),
            url('../images/banner/homepage-banner.jpg') center top 118px / 220px auto no-repeat;
    }

    .equipment-slide {
        width: 240px;
        flex-basis: 240px;
    }
}

@media (hover: hover) {
    .page-home .card,
    .page-home .industry-card,
    .page-home .client-tile,
    .page-home .process-card,
    .page-home .product-card,
    .page-home .stat-card {
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
        transform: translateY(0);
        will-change: transform;
    }

    .page-home .card:hover,
    .page-home .industry-card:hover,
    .page-home .client-tile:hover,
    .page-home .process-card:hover,
    .page-home .product-card:hover,
    .page-home .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
        border-color: rgba(249, 115, 22, 0.16);
    }

    .page-home .process-card::before {
        transition: color 0.28s ease, transform 0.28s ease;
    }

    .page-home .process-card:hover::before {
        color: rgba(249, 115, 22, 0.22);
        transform: scale(1.06);
    }

    .page-home .filter-pill {
        transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
        border: 1px solid transparent;
    }

.page-home .filter-pill:hover {
        transform: translateY(-4px) scale(1.03);
        background: linear-gradient(135deg, #fff7ed, #eff6ff);
        color: #c2410c;
        border-color: rgba(249, 115, 22, 0.18);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
    }
}

/* Final compact admin auth layout override */
.admin-auth-wrap {
    padding: 0.8rem;
}

.admin-auth-shell {
    width: min(100%, 980px);
    min-height: min(calc(100vh - 1.6rem), 560px);
    grid-template-columns: minmax(280px, 0.84fr) minmax(380px, 1.16fr);
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.11);
}

.admin-auth-showcase {
    gap: 0.75rem;
    padding: 1.15rem;
}

.admin-auth-showcase::after {
    right: -90px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-width: 8px;
}

.admin-auth-showcase__brand img {
    width: 42px;
    height: 42px;
}

.admin-auth-showcase__brand {
    gap: 0.75rem;
}

.admin-auth-showcase__brand small {
    font-size: 0.66rem;
}

.admin-auth-kicker {
    font-size: 0.64rem;
    padding: 0.34rem 0.66rem;
}

.admin-auth-showcase__copy h1 {
    margin: 0.45rem 0;
    max-width: 8ch;
    font-size: clamp(1.55rem, 2vw, 2.2rem);
    line-height: 1.02;
}

.admin-auth-showcase__copy p {
    max-width: 34ch;
    font-size: 0.82rem;
    line-height: 1.45;
}

.admin-auth-video {
    max-width: 250px;
    padding: 0.55rem;
    border-radius: 18px;
}

.admin-auth-video__thumb {
    border-radius: 14px;
}

.admin-auth-video__meta {
    margin-top: 0.45rem;
}

.admin-auth-video__meta strong {
    font-size: 0.8rem;
}

.admin-auth-video__meta span {
    font-size: 0.72rem;
}

.admin-auth-panel {
    padding: 1rem 1.4rem;
}

.admin-auth-panel__inner {
    width: min(100%, 420px);
}

.admin-auth-panel__top {
    margin-bottom: 0.9rem;
    font-size: 0.84rem;
}

.admin-auth-card .admin-title {
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    margin-bottom: 0.25rem;
}

.admin-auth-card .copy-muted {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.45;
}

.admin-auth-form {
    gap: 0.75rem;
}

.admin-auth-form label {
    gap: 0.3rem;
    font-size: 0.92rem;
}

.admin-auth-form input {
    min-height: 46px;
    padding: 0.8rem 1rem;
}

.admin-auth-password__toggle {
    right: 0.9rem;
    font-size: 0.88rem;
}

.admin-auth-form__row {
    font-size: 0.78rem;
}

.admin-auth-submit {
    min-height: 46px;
    font-size: 0.94rem;
}

.admin-auth-help {
    margin-top: 0.75rem;
}

.admin-auth-help p {
    font-size: 0.8rem;
}

@media (max-width: 980px) {
    .admin-auth-shell {
        width: min(100%, 920px);
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .admin-auth-showcase {
        padding-bottom: 1rem;
    }

    .admin-auth-video {
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .admin-auth-wrap {
        padding: 0.55rem;
    }

    .admin-auth-shell {
        width: 100%;
        border-radius: 22px;
    }

    .admin-auth-showcase,
    .admin-auth-panel {
        padding: 1rem;
    }

    .admin-auth-video {
        max-width: 100%;
    }
}

.admin-auth-wrap {
    min-height: 100vh;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8fafc, #eef2ff 48%, #fef2f2 100%);
    display: grid;
    place-items: center;
}

.admin-auth-shell {
    width: min(100%, 1120px);
    min-height: min(calc(100vh - 1.5rem), 720px);
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}

.admin-auth-showcase {
    position: relative;
    display: grid;
    align-content: space-between;
    gap: 0.9rem;
    padding: 1.25rem;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 18%),
        linear-gradient(180deg, #b41239 0%, #ba163f 52%, #9f0f33 100%);
}

.admin-auth-showcase::after {
    content: '';
    position: absolute;
    right: -140px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.10);
}

.admin-auth-showcase__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.admin-auth-showcase__brand img {
    width: 46px;
    height: 46px;
}

.admin-auth-showcase__brand small {
    display: block;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-auth-showcase__copy,
.admin-auth-video,
.admin-auth-logos,
.admin-auth-quote {
    position: relative;
    z-index: 1;
}

.admin-auth-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff5f7;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    font-weight: 800;
}

.admin-auth-showcase__copy h1 {
    margin: 0.7rem 0 0.55rem;
    max-width: 11ch;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.4vw, 2.55rem);
    line-height: 1.04;
}

.admin-auth-showcase__copy p {
    margin: 0;
    max-width: 40ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
}

.admin-auth-video {
    max-width: 360px;
    border-radius: 22px;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.admin-auth-video__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.16);
}

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

.admin-auth-video__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.18));
}

.admin-auth-video__meta {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.65rem;
}

.admin-auth-video__meta strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.admin-auth-video__meta span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}

.admin-auth-panel {
    display: grid;
    place-items: center;
    padding: 1.1rem 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}

.admin-auth-panel__inner {
    width: min(100%, 430px);
}

.admin-auth-panel__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #64748b;
    font-size: 0.95rem;
}

.admin-auth-panel__top a {
    color: #b41239;
    font-weight: 700;
}

.admin-auth-card {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.admin-auth-card .admin-title {
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    margin-bottom: 0.35rem;
    color: #b41239;
}

.admin-auth-card .copy-muted {
    margin-bottom: 0.95rem;
    color: #64748b;
}

.admin-auth-form label {
    color: #334155;
    font-weight: 700;
}

.admin-auth-form input {
    border-radius: 999px;
    min-height: 50px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.admin-auth-password__field {
    position: relative;
}

.admin-auth-password__field input {
    padding-right: 5rem;
}

.admin-auth-password__toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #475569;
    font-weight: 700;
    cursor: pointer;
}

.admin-auth-form__row {
    display: flex;
    justify-content: flex-end;
    color: #64748b;
    font-size: 0.86rem;
}

.admin-auth-submit {
    width: 100%;
    min-height: 50px;
    font-size: 0.98rem;
    background: linear-gradient(135deg, #d72a56, #b41239);
    box-shadow: 0 18px 38px rgba(180, 18, 57, 0.22);
}

.admin-auth-help {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 0;
    color: #94a3b8;
}

.admin-auth-help span {
    flex: 1;
    height: 1px;
    background: rgba(148, 163, 184, 0.26);
}

.admin-auth-help p {
    margin: 0;
    white-space: nowrap;
    font-size: 0.94rem;
}

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

    .admin-auth-showcase {
        padding-bottom: 1.6rem;
    }
}

@media (max-width: 640px) {
    .admin-auth-wrap {
        padding: 0.7rem;
    }

    .admin-auth-shell {
        min-height: calc(100vh - 1.4rem);
        border-radius: 24px;
    }

    .admin-auth-showcase,
    .admin-auth-panel {
        padding: 1.25rem;
    }

    .admin-auth-panel__top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

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

@keyframes equipmentSlider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

body.admin-body,
body.admin-auth-body {
    --admin-accent: #16a34a;
    --admin-accent-strong: #15803d;
    --admin-accent-soft: rgba(22, 163, 74, 0.14);
    --admin-accent-glow: rgba(22, 163, 74, 0.22);
    --admin-accent-faint: rgba(22, 163, 74, 0.08);
    --admin-accent-text: #166534;
    --admin-accent-pale: #dcfce7;
}

.admin-body {
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 24%),
        linear-gradient(180deg, #f3fff7 0%, #f8fafc 42%, #eef8f2 100%);
}

.admin-auth-wrap {
    background: radial-gradient(circle at top, rgba(22, 163, 74, 0.18), transparent 25%), #0b1220;
}

.admin-sidebar::before {
    background: radial-gradient(circle, rgba(22, 163, 74, 0.28), transparent 72%);
}

.admin-brand img {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(255, 255, 255, 0.08));
}

.admin-sidebar__eyebrow {
    background: rgba(22, 163, 74, 0.12);
    color: #bbf7d0;
}

.admin-sidebar a.is-active,
.admin-sidebar a:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(255, 255, 255, 0.06));
    border-color: rgba(22, 163, 74, 0.26);
}

.admin-sidebar__card-tag {
    color: #d1fae5;
}

.admin-main::before {
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12), transparent 70%);
}

.admin-topbar__copy span {
    color: var(--admin-accent);
}

.admin-card::before,
.table-card::before,
.panel::before {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 44%, #14b8a6 100%);
}

.admin-stat strong {
    background: linear-gradient(135deg, #16a34a, #15803d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.admin-pill {
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    color: var(--admin-accent-text);
    border: 1px solid rgba(22, 163, 74, 0.14);
}

.admin-link-strong:hover {
    color: var(--admin-accent);
}

.table tbody tr:hover {
    background: rgba(22, 163, 74, 0.04);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.filter-bar select:focus,
.filter-bar input:focus {
    border-color: rgba(22, 163, 74, 0.34);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.10);
}

.admin-body .button--primary,
.admin-auth-body .button--primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 48%, #15803d 100%);
    box-shadow: 0 16px 34px rgba(22, 163, 74, 0.22);
}

.admin-body .button--primary:hover,
.admin-auth-body .button--primary:hover {
    box-shadow: 0 18px 38px rgba(22, 163, 74, 0.28);
}

.admin-body .button--ghost:hover,
.admin-auth-body .button--ghost:hover {
    border-color: rgba(22, 163, 74, 0.18);
    color: var(--admin-accent-text);
}

.admin-auth-showcase::after {
    background:
        radial-gradient(circle at center, rgba(34, 197, 94, 0.2), transparent 55%),
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 50%);
}

.admin-auth-kicker {
    color: #bbf7d0;
}

.admin-auth-card .admin-title {
    color: var(--admin-accent-text);
}

.admin-auth-panel__top a {
    color: var(--admin-accent-strong);
}

.admin-auth-submit {
    box-shadow: 0 18px 36px rgba(22, 163, 74, 0.20);
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 24%),
        linear-gradient(180deg, #fff8f1 0%, #f8fafc 42%, #eef4fb 100%);
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 0;
    background: transparent;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 24px 18px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(17, 24, 39, 0.98) 100%);
    color: #fff;
    overflow: hidden;
}

.admin-sidebar::before,
.admin-sidebar::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.admin-sidebar::before {
    width: 260px;
    height: 260px;
    top: -110px;
    right: -110px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 72%);
}

.admin-sidebar::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -90px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 72%);
}

.admin-sidebar__inner {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 48px);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 18px;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-brand img {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    padding: 11px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.08));
}

.admin-brand span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.admin-brand small {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.admin-sidebar__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 38px;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #ffd0b0;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.admin-nav {
    display: grid;
    align-content: start;
    gap: 10px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid transparent;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.admin-sidebar a.is-active,
.admin-sidebar a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.06));
    border-color: rgba(249, 115, 22, 0.26);
    transform: translateX(4px);
}

.admin-sidebar__card {
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.18);
}

.admin-sidebar__card-tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #ffd8bf;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.admin-sidebar__card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.55;
}

.admin-sidebar__card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.admin-sidebar__card .button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.admin-main {
    position: relative;
    padding: 24px;
}

.admin-main::before,
.admin-main::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.admin-main::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: 4%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.11), transparent 70%);
}

.admin-main::after {
    width: 340px;
    height: 340px;
    bottom: -120px;
    left: 10%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.09), transparent 70%);
}

.admin-main__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.1rem 1.25rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.admin-topbar__copy {
    display: grid;
    gap: 4px;
}

.admin-topbar__copy span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #ea580c;
}

.admin-topbar__copy strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #0f172a;
}

.admin-flash-stack {
    position: sticky;
    top: 18px;
    z-index: 10;
    margin-bottom: 1rem;
}

.admin-header {
    margin-bottom: 1.4rem;
}

.admin-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.02;
    color: #0f172a;
}

.admin-header .copy-muted {
    margin-top: 0.45rem;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.75;
    color: #5b6b82;
}

.admin-stats,
.admin-grid {
    gap: 1.5rem;
}

.admin-card,
.table-card,
.panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 30px;
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.admin-card::before,
.table-card::before,
.panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a18 0%, #f97316 42%, #38bdf8 100%);
}

.admin-card,
.table-card,
.panel,
.page-hero__panel {
    padding: 1.6rem;
}

.admin-stat strong {
    margin: 0.35rem 0 0.55rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.admin-card h3,
.panel h3 {
    color: #0f172a;
}

.table th {
    color: #607086;
}

.table td {
    color: #0f172a;
}

.table tbody tr {
    transition: background 0.25s ease, transform 0.25s ease;
}

.table tbody tr:hover {
    background: rgba(249, 115, 22, 0.04);
}

.admin-pill {
    background: linear-gradient(180deg, #fff7ed, #ffedd5);
    color: #c2410c;
    border: 1px solid rgba(249, 115, 22, 0.12);
}

.admin-form.table-card,
.admin-form .panel {
    gap: 1.25rem;
}

.admin-form label {
    color: #0f172a;
    font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.filter-bar select,
.filter-bar input {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.filter-bar select:focus,
.filter-bar input:focus {
    outline: none;
    border-color: rgba(249, 115, 22, 0.34);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.10);
}

.button--primary {
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(148, 163, 184, 0.18);
}

.inline-actions {
    gap: 0.7rem;
}

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

    .admin-sidebar {
        position: relative;
        min-height: auto;
    }

    .admin-sidebar__inner {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .admin-main {
        padding: 14px;
    }

    .admin-topbar,
    .admin-card,
    .table-card,
    .panel {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .admin-topbar {
        align-items: flex-start;
    }

    .admin-sidebar {
        padding: 14px;
    }

    .admin-brand {
        padding: 14px;
    }
}

body.admin-body,
body.admin-auth-body {
    --admin-accent: #16a34a;
    --admin-accent-strong: #15803d;
    --admin-accent-text: #166534;
}

.admin-body {
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 24%),
        linear-gradient(180deg, #f3fff7 0%, #f8fafc 42%, #eef8f2 100%);
}

.admin-auth-wrap {
    background: radial-gradient(circle at top, rgba(22, 163, 74, 0.18), transparent 25%), #0b1220;
}

.admin-sidebar::before {
    background: radial-gradient(circle, rgba(22, 163, 74, 0.28), transparent 72%);
}

.admin-brand img {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(255, 255, 255, 0.08));
}

.admin-sidebar__eyebrow {
    background: rgba(22, 163, 74, 0.12);
    color: #bbf7d0;
}

.admin-sidebar a.is-active,
.admin-sidebar a:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(255, 255, 255, 0.06));
    border-color: rgba(22, 163, 74, 0.26);
}

.admin-sidebar__card-tag {
    color: #d1fae5;
}

.admin-main::before {
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12), transparent 70%);
}

.admin-topbar__copy span {
    color: var(--admin-accent);
}

.admin-card::before,
.table-card::before,
.panel::before {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 44%, #14b8a6 100%);
}

.admin-stat strong {
    background: linear-gradient(135deg, #16a34a, #15803d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.table tbody tr:hover {
    background: rgba(22, 163, 74, 0.04);
}

.admin-pill {
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    color: var(--admin-accent-text);
    border: 1px solid rgba(22, 163, 74, 0.14);
}

.admin-link-strong:hover {
    color: var(--admin-accent);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.filter-bar select:focus,
.filter-bar input:focus {
    border-color: rgba(22, 163, 74, 0.34);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.10);
}

.admin-body .button--primary,
.admin-auth-body .button--primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 48%, #15803d 100%);
    box-shadow: 0 16px 34px rgba(22, 163, 74, 0.22);
}

.admin-body .button--primary:hover,
.admin-auth-body .button--primary:hover {
    box-shadow: 0 18px 38px rgba(22, 163, 74, 0.28);
}

.admin-body .button--ghost:hover,
.admin-auth-body .button--ghost:hover {
    border-color: rgba(22, 163, 74, 0.18);
    color: var(--admin-accent-text);
}

.admin-auth-showcase::after {
    background:
        radial-gradient(circle at center, rgba(34, 197, 94, 0.2), transparent 55%),
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 50%);
}

.admin-auth-kicker {
    color: #bbf7d0;
}

.admin-auth-card .admin-title {
    color: var(--admin-accent-text);
}

.admin-auth-panel__top a {
    color: var(--admin-accent-strong);
}

.admin-auth-submit {
    box-shadow: 0 18px 36px rgba(22, 163, 74, 0.20);
}
