:root {
    --primary-color: #101d32;
    --secondary-color: #e91e46;
    --dark-color: #293441;
    --light-color: #f7f7f7;
    --white-color: #ffffff;
    --text-color: #343434;
    --muted-color: #777777;
    --border-color: #e6e6e6;
    --success-color: #16a34a;
    --shadow-soft: 0 18px 48px rgba(16, 29, 50, 0.12);
    --shadow-card: 0 14px 35px rgba(10, 17, 28, 0.08);
    --radius-md: 14px;
    --radius-lg: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    background: var(--white-color);
}

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

a {
    text-decoration: none;
    transition: all 0.28s ease;
}

.site-body {
    padding-top: 70px;
}

.section-padding {
    padding: 96px 0;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading-left {
    max-width: none;
    margin: 0 0 28px;
    text-align: left;
}

.section-kicker,
.about-subtitle,
.personalized-subtitle,
.page-hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-title,
.page-hero-title {
    margin: 0 0 16px;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.04;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--primary-color);
}

.section-subtitle,
.page-hero-text,
.about-description,
.personalized-description {
    margin: 0;
    color: var(--muted-color);
    font-size: 1rem;
    line-height: 1.75;
}

.btn {
    border-radius: 12px;
    padding: 0.95rem 1.4rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-primary-custom,
.btn-quote,
.btn-submit {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 10px 24px rgba(233, 30, 70, 0.24);
}

.btn-primary-custom:hover,
.btn-quote:hover,
.btn-submit:hover {
    background: #c7183c;
    border-color: #c7183c;
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-whatsapp-nav {
    background: #25d366;
    border-color: #25d366;
    color: var(--white-color);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp-nav:hover {
    background: #1fb45a;
    border-color: #1fb45a;
    color: var(--white-color);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light-custom:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-outline-dark-custom {
    border: 1px solid rgba(16, 29, 50, 0.22);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-dark-custom:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 29, 50, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
    background: rgba(16, 29, 50, 0.99);
}

.main-navbar {
    min-height: 70px;
    padding: 0.55rem 0;
}

.brand-logo img,
.footer-logo img {
    width: auto;
    height: 42px;
}

.navigation-menu {
    align-items: center;
    gap: 0.5rem;
}

.navigation-menu .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.85rem 0.9rem !important;
}

.navigation-menu .nav-link:hover,
.navigation-menu .nav-link.active {
    color: var(--white-color);
}

.navbar-toggler {
    padding: 0.4rem 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero-banner {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(233, 30, 70, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%),
        linear-gradient(120deg, rgba(41, 52, 65, 0.45), transparent 45%),
        var(--primary-color);
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.55;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 62px 0 44px;
}

.hero-content {
    min-height: 320px;
    align-items: center;
}

.hero-title {
    color: var(--white-color);
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    line-height: 0.98;
    font-weight: 800;
    margin: 0 0 20px;
}

.hero-description {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 78%;
    height: 22px;
    bottom: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    filter: blur(16px);
}

.hero-product-image {
    position: relative;
    z-index: 1;
    max-height: 360px;
    width: 100%;
    object-fit: contain;
    transform: translateY(24px);
}

.products-intro {
    background: var(--white-color);
    padding: 84px 0 28px;
}

.products-section {
    padding: 20px 0 90px;
    background: var(--white-color);
}

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

.product-card {
    background: var(--white-color);
    border: 1px solid rgba(230, 230, 230, 0.72);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(16, 29, 50, 0.16);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fdfdfd 0%, #eef1f5 100%);
    aspect-ratio: 4 / 3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-card-body {
    padding: 26px 24px 28px;
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
}

.product-title {
    margin: 0 0 12px;
    font-family: 'Barlow', sans-serif;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-description {
    margin: 0 0 18px;
    color: var(--muted-color);
    line-height: 1.75;
    flex: 1;
}

.product-link {
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-link:hover {
    color: var(--primary-color);
}

.quote-cta-section {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 90px 0;
}

.quote-cta-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.quote-cta-title {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

.quote-divider {
    width: 180px;
    height: 1px;
    margin: 28px auto 34px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
}

.about-section {
    padding: 96px 0;
    background: var(--white-color);
}

.about-content {
    align-items: center;
}

.about-title,
.personalized-title,
.about-feature-title {
    font-family: 'Barlow', sans-serif;
    color: var(--primary-color);
}

.about-title,
.personalized-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.08;
}

.about-description + .about-description {
    margin-top: 14px;
}

.about-feature-list {
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.about-feature-list li {
    padding: 18px 20px;
    border-left: 3px solid var(--secondary-color);
    background: var(--light-color);
    border-radius: 0 14px 14px 0;
}

.about-feature-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-image-column {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 26px;
    min-height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.personalized-section {
    position: relative;
    overflow: hidden;
}

.personalized-image-column {
    min-height: 620px;
}

.personalized-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.personalized-content-column {
    display: flex;
    align-items: center;
    background: var(--dark-color);
}

.personalized-content {
    max-width: 620px;
    padding: 78px 70px;
}

.personalized-title,
.personalized-description,
.personalized-subtitle {
    color: var(--white-color);
}

.personalized-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.personalized-list li {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.04);
}

.final-highlight-bar {
    display: flex;
    align-items: center;
    min-height: 110px;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white-color);
}

.final-highlight-bar p {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer {
    background: #12233d;
    color: var(--white-color);
    margin-top: 0;
}

.site-footer a {
    color: inherit;
}

.footer-top-panel {
    padding: 58px 0 42px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-brand-column,
.footer-info-column,
.footer-media-column {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 46px;
}

.footer-description {
    max-width: 280px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    font-size: 0.98rem;
}

.footer-heading {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white-color);
}

.footer-heading-line {
    width: 126px;
    height: 2px;
    background: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
}

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

.footer-contact-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}

.footer-media-card {
    display: block;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.footer-media-card img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    display: block;
}

.footer-links-panel {
    margin-top: 38px;
}

.footer-links-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-links-divider {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.82);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 34px;
}

.footer-page-link {
    display: block;
    min-width: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.98rem;
    line-height: 1.4;
}

.footer-page-link:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.footer-bottom-bar {
    padding: 16px 0;
    background: #f1f1f1;
    border-top: 3px solid rgba(233, 30, 70, 0.88);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-content > * {
    flex: 1 1 0;
}

.footer-logo-small {
    margin-bottom: 0;
}

.footer-logo-small img {
    height: 34px;
}

.footer-copyright {
    margin: 0;
    color: #767676;
    font-size: 0.88rem;
    text-align: center;
}

.footer-social {
    display: inline-flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(18, 35, 61, 0.08);
    color: var(--primary-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white-color);
    font-size: 1.7rem;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.36);
    z-index: 999;
    animation: pulseWhatsapp 2.4s infinite;
}

.whatsapp-floating:hover {
    color: var(--white-color);
    transform: translateY(-4px);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.page-hero {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        linear-gradient(120deg, #12223a 0%, #263747 100%);
    color: var(--white-color);
    padding: 60px 0 84px;
}

.product-page-hero {
    position: relative;
    overflow: hidden;
}

.product-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(233, 30, 70, 0.22), transparent 26%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 22%);
    pointer-events: none;
}

.product-page-hero .container {
    position: relative;
    z-index: 1;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
}

.product-breadcrumb a,
.product-breadcrumb strong {
    color: inherit;
}

.page-hero-title,
.page-hero-text {
    color: var(--white-color);
}

.page-hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-card,
.content-card,
.admin-card,
.dashboard-stat,
.table-wrap,
.login-card {
    background: var(--white-color);
    border: 1px solid rgba(230, 230, 230, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.contact-card,
.content-card {
    padding: 34px;
}

.contact-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
}

.contact-info-list i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(233, 30, 70, 0.08);
    color: var(--secondary-color);
}

.contact-visual {
    border-radius: 26px;
    overflow: hidden;
    min-height: 100%;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.form-control,
.form-select,
.form-check-input {
    border-radius: 12px;
    border: 1px solid rgba(16, 29, 50, 0.14);
    padding: 0.95rem 1rem;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: rgba(233, 30, 70, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 70, 0.14);
}

.detail-layout {
    padding: 92px 0;
    background: #f7f7f7;
}

.product-detail-panel {
    padding: 34px;
    border-radius: 30px;
    background: var(--white-color);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(16, 29, 50, 0.06);
    margin-bottom: 44px;
}

.product-main-visual {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.product-main-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(16, 29, 50, 0.8);
    color: var(--white-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-image {
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    min-height: 420px;
    object-fit: cover;
}

.product-detail-title {
    max-width: 560px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 22px;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(16, 29, 50, 0.08);
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-description {
    color: var(--muted-color);
    line-height: 1.85;
}

.product-gallery-section {
    margin-top: 20px;
}

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

.product-gallery-thumb {
    padding: 0;
    border: 2px solid transparent;
    background: var(--white-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 28px rgba(16, 29, 50, 0.14);
    border-color: rgba(233, 30, 70, 0.55);
}

.product-contact-section {
    margin-top: 56px;
}

.product-contact-card,
.product-contact-form-card {
    min-height: 100%;
}

.product-contact-card .about-title,
.product-contact-form-card .about-title {
    max-width: 420px;
}

.admin-body {
    background: #eef2f7;
    color: var(--text-color);
}

.admin-wrapper {
    min-height: 100vh;
    padding: 40px 0 70px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-title {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 800;
}

.admin-subtitle {
    margin: 8px 0 0;
    color: var(--muted-color);
}

.admin-card,
.dashboard-stat,
.table-wrap,
.login-card {
    padding: 26px;
}

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

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

.section-editor-card {
    padding: 22px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(16, 29, 50, 0.08);
}

.section-editor-card h3 {
    margin: 12px 0 10px;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.section-editor-card p {
    margin: 0 0 12px;
    color: var(--muted-color);
    line-height: 1.7;
}

.section-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.section-shortcuts a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(16, 29, 50, 0.06);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.84rem;
}

.section-shortcuts a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.section-editor-stack {
    display: grid;
    gap: 22px;
}

.section-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-image-preview {
    width: 100%;
    max-width: 320px;
    max-height: 220px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(16, 29, 50, 0.08);
    background: #f8fafc;
}

.admin-image-preview-wide {
    max-width: 420px;
}

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

.admin-gallery-card {
    display: block;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(16, 29, 50, 0.08);
    background: #f8fafc;
}

.admin-gallery-card img {
    width: 100%;
    height: 170px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

.admin-gallery-order {
    display: block;
    margin-top: 10px;
    color: var(--muted-color);
    font-size: 0.8rem;
    font-weight: 700;
}

.dashboard-stat h2,
.dashboard-stat p {
    margin: 0;
}

.dashboard-stat h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.dashboard-stat p {
    margin-top: 10px;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 800;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.admin-nav a {
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    background: var(--white-color);
    color: var(--primary-color);
    border: 1px solid rgba(16, 29, 50, 0.1);
    font-weight: 700;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.table {
    margin: 0;
}

.table thead th {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-color);
    border-bottom-width: 1px;
}

.table td,
.table th {
    vertical-align: middle;
}

.thumb-xs {
    width: 66px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
}

.login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at top left, rgba(233, 30, 70, 0.2), transparent 32%),
        linear-gradient(135deg, #0f1b2d 0%, #293441 100%);
}

.login-card {
    width: min(100%, 460px);
}

.login-logo {
    margin-bottom: 22px;
}

.login-logo img {
    height: 52px;
}

.alert-inline {
    margin-bottom: 22px;
}

.empty-state {
    padding: 30px;
    text-align: center;
    color: var(--muted-color);
}

.lead-list {
    display: grid;
    gap: 18px;
}

.lead-card {
    padding: 22px;
    border-radius: 18px;
    background: var(--white-color);
    border: 1px solid rgba(16, 29, 50, 0.08);
}

.lead-card small {
    color: var(--muted-color);
}
