:root {
    --bg: #f5f8fb;
    --surface: #ffffff;
    --surface-alt: rgba(255, 255, 255, 0.78);
    --text: #11314a;
    --muted: #5f7487;
    --heading: #071c2d;
    --navy: #08253c;
    --petrol: #10465f;
    --cyan: #1ec8d4;
    --cyan-soft: rgba(30, 200, 212, 0.14);
    --border: rgba(8, 37, 60, 0.1);
    --shadow: 0 20px 60px rgba(8, 37, 60, 0.12);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(30, 200, 212, 0.12), transparent 26%),
        linear-gradient(180deg, #eef5f9 0%, #f8fbfd 40%, #f3f7fa 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
textarea { resize: vertical; min-height: 140px; }

.card,
.feature,
.content-card,
.contact-card,
.admin-card,
.cover-image,
.icon,
.btn,
.site-nav a,
.footer-brand img,
.brand img,
.scroll-top {
    transition:
        transform .28s cubic-bezier(.2,.8,.2,1),
        box-shadow .28s cubic-bezier(.2,.8,.2,1),
        background-color .28s ease,
        border-color .28s ease,
        color .28s ease,
        filter .28s ease,
        opacity .28s ease;
}

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

.topbar {
    background: linear-gradient(90deg, var(--navy), #0a314d);
    color: rgba(255,255,255,.82);
    font-size: .92rem;
}

.topbar-inner,
.nav-wrap,
.footer-bottom,
.footer-grid,
.hero-actions,
.hero-stats,
.feature-grid,
.cards-grid,
.split-grid,
.cta-panel,
.admin-stats,
.timeline,
.quote-highlights { display: flex; gap: 1rem; }

.topbar-inner,
.nav-wrap,
.footer-bottom { align-items: center; justify-content: space-between; }

.topbar-inner { min-height: 42px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(245, 248, 251, 0.88);
    border-bottom: 1px solid rgba(8, 37, 60, 0.08);
}

.nav-wrap { min-height: 82px; }
.brand,
.footer-brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand strong,
.footer-brand strong { display: block; font-size: 1.1rem; color: var(--heading); }
.brand span,
.footer-brand span { display: block; color: var(--muted); font-size: .86rem; }

.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a { color: var(--text); font-weight: 600; }
.site-nav a:hover { color: var(--petrol); transform: translateY(-1px); }
.site-nav a.active { color: var(--petrol); }
.nav-cta { margin-left: .5rem; }
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--navy);
    border-radius: 99px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: 0 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(8,37,60,.15); }
.btn-primary { background: linear-gradient(135deg, var(--petrol), var(--cyan)); color: #fff; }
.btn-secondary { background: rgba(8,37,60,.06); color: var(--navy); border-color: rgba(8,37,60,.08); }
.btn-light { background: #fff; color: var(--navy); }

.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: var(--cyan-soft);
    color: var(--petrol);
    font-weight: 700;
    font-size: .9rem;
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
}
h1, h2, h3, h4 { color: var(--heading); margin: 0 0 1rem; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--muted); line-height: 1.72; }

.hero { padding: 78px 0 66px; overflow: hidden; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .95fr;
    gap: 2rem;
    align-items: center;
}
.hero-copy p { font-size: 1.08rem; max-width: 700px; }
.hero-panel,
.glass-card,
.card,
.stat-card,
.cta-box,
.contact-card,
.content-card,
.admin-card {
    background: var(--surface-alt);
    border: 1px solid rgba(255,255,255,.58);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-panel {
    padding: 1.4rem;
    background:
        linear-gradient(160deg, rgba(255,255,255,.88), rgba(245,252,255,.72)),
        linear-gradient(135deg, rgba(8,37,60,.92), rgba(16,70,95,.92));
}
.hero-visual {
    min-height: 520px;
    border-radius: calc(var(--radius) - 6px);
    background:
        linear-gradient(145deg, rgba(7,28,45,.86), rgba(16,70,95,.84)),
        url("../images/hero-grid.svg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(30, 200, 212, 0.18);
    filter: blur(18px);
}
.hero-visual::before { width: 180px; height: 180px; top: 12%; right: 10%; }
.hero-visual::after { width: 220px; height: 220px; bottom: 4%; left: -4%; }
.hero-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: .7rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
}
.hero-notes {
    display: grid;
    gap: 1rem;
    color: #eef8fb;
    position: relative;
    z-index: 1;
}
.hero-notes strong { font-size: 1.05rem; }
.hero-notes p { color: rgba(238,248,251,.8); margin-bottom: 0; }

.hero-actions, .hero-stats, .feature-grid, .cards-grid, .split-grid, .contact-grid, .admin-stats, .timeline, .quote-highlights {
    flex-wrap: wrap;
}

.hero-stats { margin-top: 1.75rem; }
.stat-card {
    padding: 1rem 1.15rem;
    min-width: 170px;
}
.stat-card strong { font-size: 1.7rem; color: var(--heading); display: block; margin-bottom: .35rem; }

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 2rem;
}
.section-head p { max-width: 680px; margin-bottom: 0; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem; }
.card, .content-card, .contact-card, .admin-card { padding: 1.5rem; position: relative; overflow: hidden; }
.card::before,
.admin-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 36%, transparent 64%, rgba(30,200,212,.08));
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}
.card:hover,
.feature:hover,
.content-card:hover,
.contact-card:hover,
.admin-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 26px 60px rgba(8, 37, 60, 0.16);
}
.card:hover::before,
.admin-card:hover::before { opacity: 1; }
.card .icon,
.feature .icon {
    width: 58px; height: 58px; border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(16,70,95,.16), rgba(30,200,212,.14));
    color: var(--navy); font-weight: 800; margin-bottom: 1rem;
}
.card:hover .icon,
.feature:hover .icon,
.brand:hover img,
.footer-brand:hover img {
    transform: scale(1.08);
    box-shadow: 0 16px 28px rgba(8,37,60,.18);
    filter: saturate(1.08);
}
.card ul, .content-card ul { margin: 0; padding-left: 1rem; color: var(--muted); }
.card-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    right: -32px;
    top: -36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,200,212,.22) 0%, rgba(30,200,212,0) 72%);
    transition: transform .45s ease, opacity .45s ease;
    opacity: .8;
    pointer-events: none;
}
.product-card:hover .card-orb,
.blog-card:hover .card-orb,
.category-card:hover .card-orb {
    transform: scale(1.18) translate(-8px, 10px);
    opacity: 1;
}
.product-card .badge,
.blog-card .badge,
.category-card .badge { position: relative; z-index: 1; }
.product-card .btn,
.blog-card .btn,
.category-card .btn {
    margin-top: auto;
}
.product-card,
.blog-card,
.category-card {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.product-card h3,
.blog-card h3,
.category-card h3 {
    margin-bottom: .2rem;
}
.product-card:hover .btn,
.blog-card:hover .btn,
.category-card:hover .btn {
    transform: translateY(-2px) scale(1.01);
}

.feature {
    padding: 1.4rem;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,251,255,.86));
    border: 1px solid rgba(8,37,60,.06);
    box-shadow: var(--shadow);
}

.timeline-item {
    flex: 1 1 220px;
    padding: 1.4rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(8,37,60,.08);
    position: relative;
}
.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    top: -14px;
    left: 18px;
    background: var(--navy);
    color: #fff;
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
}

.cta-panel {
    padding: 2rem;
    border-radius: var(--radius);
    align-items: center;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(8,37,60,.96), rgba(16,70,95,.92)),
        url("../images/hero-grid.svg") center/cover no-repeat;
    color: #fff;
}
.cta-panel p { color: rgba(255,255,255,.8); margin-bottom: 0; }

.page-hero {
    padding: 68px 0 42px;
    background:
        linear-gradient(160deg, rgba(8,37,60,.96), rgba(16,70,95,.92)),
        url("../images/hero-grid.svg") center/cover no-repeat;
    color: #fff;
}
.page-hero h1, .page-hero p { color: #fff; max-width: 760px; }
.breadcrumbs {
    display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; font-size: .92rem; color: rgba(255,255,255,.72);
}

.list-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}
.list-table th,
.list-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid rgba(8,37,60,.06);
    vertical-align: top;
}
.list-table th { background: rgba(8,37,60,.04); color: var(--heading); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .38rem .72rem;
    border-radius: 999px;
    background: rgba(16,70,95,.08);
    color: var(--petrol);
    font-size: .82rem;
    font-weight: 700;
}
.badge.success { background: rgba(16,160,105,.12); color: #167a59; }
.badge.warning { background: rgba(255,177,66,.16); color: #8b5d13; }
.badge.danger { background: rgba(231,92,92,.13); color: #b03838; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; color: var(--heading); }
input, select, textarea {
    width: 100%;
    min-height: 52px;
    padding: .9rem 1rem;
    border: 1px solid rgba(8,37,60,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    color: var(--text);
}
textarea { padding-top: 1rem; }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(30,200,212,.7);
    box-shadow: 0 0 0 4px rgba(30,200,212,.12);
}

.notice {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}
.notice.success { background: rgba(16,160,105,.1); border-color: rgba(16,160,105,.18); color: #155a42; }
.notice.error { background: rgba(231,92,92,.1); border-color: rgba(231,92,92,.18); color: #8a2f2f; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .9fr;
    gap: 1.6rem;
    padding: 76px 0 34px;
}
.site-footer { margin-top: 60px; background: linear-gradient(180deg, rgba(7,28,45,.98), rgba(7,28,45,.94)); color: #d9e8f1; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a { display: block; color: rgba(217,232,241,.8); margin-bottom: .75rem; }
.site-footer p { color: rgba(217,232,241,.72); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.09);
    min-height: 72px;
    color: rgba(217,232,241,.74);
}

.admin-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #eef4f8 0%, #f8fbfd 100%);
}
.admin-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
}
.admin-sidebar {
    background: linear-gradient(180deg, #072033 0%, #0b2e49 100%);
    color: rgba(255,255,255,.8);
    padding: 1.4rem;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .95rem 1rem;
    border-radius: 14px;
    margin-bottom: .35rem;
}
.admin-sidebar a.active,
.admin-sidebar a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { padding: 1.5rem 1.5rem 3rem; }
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.admin-card h3 { margin-bottom: .25rem; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.admin-hero-panel {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(8,37,60,.98), rgba(16,70,95,.94)),
        url("../images/hero-grid.svg") center/cover no-repeat;
    color: #fff;
    box-shadow: 0 26px 60px rgba(8,37,60,.18);
}
.admin-hero-panel h2,
.admin-hero-panel p { color: #fff; }
.admin-hero-copy p { color: rgba(255,255,255,.76); max-width: 640px; }
.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.25rem;
}
.admin-hero-metrics {
    display: grid;
    gap: .9rem;
    align-content: center;
}
.admin-mini-stat {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
}
.admin-mini-stat strong {
    display: block;
    font-size: 1.7rem;
    margin-bottom: .25rem;
}
.stat-spotlight {
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,251,255,.84));
}
.stat-kicker {
    display: inline-flex;
    margin-bottom: .9rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--petrol);
    background: rgba(30,200,212,.12);
}
.stat-spotlight h3 {
    font-size: 2rem;
}
.admin-activity-list {
    display: grid;
    gap: .9rem;
}
.admin-activity-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(8,37,60,.035);
    border: 1px solid rgba(8,37,60,.06);
}
.activity-dot {
    width: 12px;
    height: 12px;
    margin-top: .35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--petrol), var(--cyan));
    box-shadow: 0 0 0 6px rgba(30,200,212,.12);
}
.admin-sidebar .brand strong,
.admin-sidebar .brand span {
    color: #fff;
}
.admin-sidebar .brand span {
    color: rgba(255,255,255,.66);
}
.admin-sidebar::after {
    content: "";
    display: block;
    margin-top: 1.25rem;
    height: 1px;
    background: rgba(255,255,255,.08);
}
.list-table tbody tr {
    transition: background-color .22s ease, transform .22s ease;
}
.list-table tbody tr:hover {
    background: rgba(30,200,212,.045);
}
.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}
.admin-login-box {
    width: min(100%, 440px);
    padding: 2rem;
}

.empty-state { padding: 2rem; text-align: center; color: var(--muted); }
.cover-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(8,37,60,.12);
}
.interactive-media:hover,
.card:hover .cover-image {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 42px rgba(8,37,60,.18);
    filter: saturate(1.05);
}
.product-meta,
.quote-highlights { margin-top: 1rem; }
.product-meta .badge { margin-right: .45rem; margin-bottom: .45rem; }

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--petrol), var(--cyan));
    color: #fff;
    box-shadow: 0 18px 30px rgba(8,37,60,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.92);
    z-index: 1200;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-top:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 24px 36px rgba(8,37,60,.24);
}
.scroll-top span {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 88px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1faa59, #25d366);
    color: #fff;
    box-shadow: 0 18px 30px rgba(17, 95, 49, 0.24);
    z-index: 1200;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 36px rgba(17, 95, 49, 0.28);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.brand img,
.footer-brand img {
    width: auto;
    height: 64px;
    object-fit: contain;
}

.brand:hover img {
    transform: none;
    box-shadow: none;
    filter: none;
}

.site-shell .card,
.site-shell .feature,
.site-shell .content-card,
.site-shell .contact-card {
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s cubic-bezier(.22,1,.36,1),
        border-color .35s ease,
        background-color .35s ease,
        filter .45s ease;
}

.site-shell .card:hover,
.site-shell .feature:hover,
.site-shell .content-card:hover,
.site-shell .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(8, 37, 60, 0.13);
}

.site-shell .btn,
.site-shell .site-nav a,
.site-shell .cover-image,
.site-shell .icon,
.site-shell .scroll-top {
    transition:
        transform .4s cubic-bezier(.22,1,.36,1),
        box-shadow .4s cubic-bezier(.22,1,.36,1),
        color .3s ease,
        background-color .3s ease,
        filter .4s ease;
}

.site-shell .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(8,37,60,.14);
}

.compact-hero {
    padding-bottom: 24px;
}

.compact-head {
    margin-bottom: 1.4rem;
}

.compact-section {
    padding-top: 66px;
    padding-bottom: 56px;
}

.premium-hero-visual {
    min-height: 460px;
    align-items: flex-end;
    justify-content: center;
}

.hero-floating-card {
    width: min(320px, 100%);
    margin-bottom: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    color: #fff;
}

.hero-floating-card.secondary {
    align-self: flex-start;
}

.hero-floating-card p,
.hero-floating-card strong {
    color: #fff;
}

.compact-stats .stat-card {
    background: rgba(255,255,255,.9);
}

.clean-list {
    display: grid;
    gap: .9rem;
    padding-left: 1.1rem;
}

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

.refined-cta {
    border: 1px solid rgba(255,255,255,.12);
}

.quote-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 1.5rem;
}

.quote-form-card,
.quote-side-card {
    padding: 2rem;
}

.quote-side-highlight {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(8,37,60,.04);
    border: 1px solid rgba(8,37,60,.08);
}

.quote-form-grid textarea {
    min-height: 180px;
}

.card-orb {
    filter: blur(.2px);
}

.site-footer .footer-brand img {
    height: 58px;
}

.admin-shell {
    background: #f7f9fb;
    color: #11283d;
}

.admin-layout {
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.admin-sidebar {
    background: #ffffff;
    color: #17354d;
    border-right: 1px solid rgba(8,37,60,.08);
    padding: 1.5rem 1.15rem;
}

.admin-sidebar::after {
    display: none;
}

.admin-sidebar .brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.4rem;
    padding: .5rem;
}

.admin-sidebar .brand img {
    height: 54px;
}

.admin-sidebar .brand strong,
.admin-sidebar .brand span {
    color: #11283d !important;
}

.admin-sidebar a {
    color: #17354d;
    padding: .95rem 1rem;
    border: 1px solid transparent;
    background: transparent;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.admin-sidebar a.active {
    background: rgba(30,200,212,.1);
    border-color: rgba(30,200,212,.22);
    color: #08253c;
    font-weight: 700;
}

.admin-sidebar a:hover {
    transform: none;
    box-shadow: none;
    background: rgba(8,37,60,.035);
    color: #08253c;
}

.admin-main {
    padding: 2rem 2rem 3rem;
    background: #f7f9fb;
}

.admin-topbar {
    margin-bottom: 1.6rem;
    padding: 1.2rem 1.4rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(8,37,60,.08);
    box-shadow: 0 16px 34px rgba(8,37,60,.06);
}

.admin-topbar .badge {
    background: #08253c;
    color: #ffffff;
}

.admin-card,
.admin-hero-panel {
    background: #ffffff;
    border: 1px solid rgba(8,37,60,.08);
    box-shadow: 0 16px 34px rgba(8,37,60,.06);
}

.admin-card::before,
.admin-card:hover::before {
    opacity: 0;
}

.admin-card:hover,
.admin-hero-panel:hover,
.admin-shell .content-card:hover {
    transform: none;
    box-shadow: 0 16px 34px rgba(8,37,60,.06);
}

.admin-hero-panel {
    grid-template-columns: 1.25fr .95fr;
    background: #ffffff;
    color: #11283d;
}

.admin-hero-panel h2,
.admin-hero-panel p,
.admin-mini-stat strong,
.admin-mini-stat span {
    color: #11283d;
}

.admin-mini-stat {
    background: #f8fbfd;
    border: 1px solid rgba(8,37,60,.08);
}

.stat-spotlight {
    min-height: 190px;
}

.admin-shell textarea {
    min-height: 240px;
}

.admin-shell input,
.admin-shell select,
.admin-shell textarea {
    background: #ffffff;
    color: #10283d;
    border: 1px solid rgba(8,37,60,.12);
}

.admin-shell label {
    color: #08253c;
}

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

.admin-card .form-group.full textarea,
.admin-card .form-group.full input[type="text"],
.admin-card .form-group.full input[type="email"],
.admin-card .form-group.full input[type="password"] {
    width: 100%;
}

.admin-content-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.5rem;
}

.admin-section-title {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.admin-page-nav {
    display: grid;
    gap: .55rem;
}

.admin-page-nav a {
    display: block;
    padding: .9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(8,37,60,.08);
    background: #fff;
    color: #10283d;
}

.admin-page-nav a.current {
    background: rgba(30,200,212,.1);
    border-color: rgba(30,200,212,.24);
    font-weight: 700;
}

.admin-form-panel {
    padding: 1.6rem;
}

.admin-form-panel textarea.large-editor {
    min-height: 280px;
}

.admin-form-panel textarea.code-editor {
    min-height: 210px;
    font-family: Consolas, Monaco, monospace;
    font-size: .94rem;
    line-height: 1.6;
}

.admin-table-wrap {
    overflow-x: auto;
}

.list-table {
    border: 1px solid rgba(8,37,60,.06);
}

.list-table th {
    color: #08253c;
    background: #f7fafc;
}

.list-table tbody tr:hover {
    background: #f8fbfd;
}

@media (max-width: 1080px) {
    .hero-grid,
    .feature-grid,
    .cards-grid,
    .split-grid,
    .contact-grid,
    .quote-layout,
    .footer-grid,
    .admin-layout,
    .admin-stats { grid-template-columns: 1fr; }
    .admin-layout { display: block; }
    .admin-sidebar { position: relative; height: auto; }
    .admin-hero-panel { grid-template-columns: 1fr; }
    .two-up-grid { grid-template-columns: 1fr; }
    .admin-content-shell { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 10px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow);
        border: 1px solid rgba(8,37,60,.08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: .25s ease;
    }
    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-toggle { display: inline-flex; }
    .form-grid { grid-template-columns: 1fr; }
    .section-head { align-items: start; flex-direction: column; }
    .cta-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .hero { padding-top: 52px; }
    .hero-panel, .card, .content-card, .contact-card, .admin-card { padding: 1.2rem; }
    .topbar { display: none; }
    .nav-wrap { min-height: 72px; }
    .scroll-top { right: 16px; bottom: 16px; width: 50px; height: 50px; }
    .whatsapp-float { right: 16px; bottom: 78px; width: 50px; height: 50px; }
}
