:root {
    --ink: #06111f;
    --text: #23324d;
    --muted: #64748b;
    --blue: #075fe4;
    --blue-dark: #083a9d;
    --cyan: #12b7d6;
    --green: #13a66b;
    --amber: #f59f24;
    --rose: #e84d6b;
    --bg: #f6f9fe;
    --surface: rgba(255, 255, 255, .84);
    --surface-strong: rgba(255, 255, 255, .96);
    --line: rgba(148, 163, 184, .24);
    --line-strong: rgba(76, 126, 194, .28);
    --shadow: 0 22px 58px rgba(15, 35, 70, .11);
    --shadow-strong: 0 34px 90px rgba(7, 95, 228, .20);
    --radius: 8px;
    --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: Inter, Manrope, Arial, sans-serif;
    background:
        linear-gradient(115deg, rgba(7, 95, 228, .08), transparent 30%),
        linear-gradient(245deg, rgba(18, 183, 214, .09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.center { text-align: center; margin-top: 34px; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    color: var(--blue);
    background: #fff;
    transition: opacity .36s ease, visibility .36s ease;
}
.page-loader span {
    width: 48px;
    height: 48px;
    border: 3px solid #d9e8ff;
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .75s linear infinite;
}
.page-loader strong { font-weight: 900; }
.page-loader.loaded { opacity: 0; visibility: hidden; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .54);
    backdrop-filter: blur(24px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
    border-color: var(--line);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
}
.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-family: Manrope, Inter, sans-serif;
    font-weight: 900;
    line-height: 1.02;
    white-space: nowrap;
}
.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border: 1px solid rgba(7, 95, 228, .10);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 95, 228, .16);
}
.brand span { display: grid; gap: 2px; font-size: 15px; }
.brand small {
    display: block;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.nav-links {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}
.nav-primary {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}
.nav-primary > a,
.mega-trigger {
    position: relative;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 10px 11px;
    border-radius: var(--radius);
    color: #35445c;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-primary > a::after,
.mega-trigger::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.nav-primary > a:hover,
.mega-trigger:hover,
.nav-primary .active {
    color: var(--blue);
    background: rgba(237, 246, 255, .92);
}
.nav-primary > a:hover::after,
.mega-trigger:hover::after,
.nav-primary .active::after { transform: scaleX(1); }
.has-mega { position: relative; }
.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: min(720px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(26px);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-copy {
    min-height: 100%;
    padding: 22px;
    display: grid;
    align-content: end;
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(145deg, rgba(7, 95, 228, .96), rgba(6, 17, 31, .96) 62%, rgba(18, 183, 214, .82)),
        linear-gradient(90deg, rgba(255, 255, 255, .16), transparent);
}
.mega-copy span { color: #cbe6ff; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.mega-copy strong { margin-top: 10px; font-size: 25px; line-height: 1.15; }
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.mega-grid a {
    min-height: 112px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(247, 251, 255, .98), rgba(255, 255, 255, .96));
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mega-grid a:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 18px 40px rgba(7, 95, 228, .12); }
.mega-grid i,
.admin-sidebar nav a i,
.admin-stat i,
.icon-badge,
.mini-card > span {
    display: inline-grid;
    place-items: center;
    font-style: normal;
    font-weight: 900;
}
.mega-grid i {
    width: 34px;
    height: 34px;
    margin-bottom: 11px;
    border-radius: var(--radius);
    color: var(--blue);
    background: #edf6ff;
}
.mega-grid strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 5px; }
.mega-grid span { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 650; }
.header-tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-tools a,
.language-switcher {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--blue);
    background: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 900;
}
.language-switcher { width: 68px; padding: 0 9px; }
.menu-toggle,
.mobile-quote { display: none; }
.menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    height: 2px;
    width: 100%;
    border-radius: 8px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark) 58%, var(--cyan));
    box-shadow: 0 17px 36px rgba(7, 95, 228, .26);
}
.btn-primary:hover { box-shadow: 0 22px 54px rgba(7, 95, 228, .32); }
.btn-soft {
    color: var(--blue);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(15, 35, 70, .06);
}
.btn-light { color: var(--blue); background: #fff; }
.full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.section-pattern { position: relative; overflow: hidden; }
.section-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 95, 228, .055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 228, .055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}
.muted-section {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .62);
}
.hero,
.careers-hero {
    position: relative;
    padding: 106px 0 44px;
}
.hero-aura {
    position: absolute;
    inset: 12% 0 auto;
    height: 420px;
    z-index: -1;
    background:
        linear-gradient(100deg, transparent 4%, rgba(7, 95, 228, .14), rgba(18, 183, 214, .12), transparent 88%);
    filter: blur(36px);
    animation: auraSweep 9s ease-in-out infinite alternate;
}
.hero-grid,
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 62px;
    align-items: center;
}
.hero-copy h1,
.page-hero h1 {
    margin: 14px 0 20px;
    color: var(--ink);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.01;
    font-weight: 900;
}
.hero-copy h1 {
    background: linear-gradient(112deg, #06111f 0%, #075fe4 58%, #087f8f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-copy p,
.page-hero p,
.split p,
.section-heading p {
    color: var(--muted);
    line-height: 1.76;
    font-size: 16px;
}
.hero-copy p { max-width: 650px; font-size: 18px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 0 0 5px rgba(18, 183, 214, .13);
}
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.hero-proof span {
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 34px rgba(15, 35, 70, .06);
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}
.hero-proof strong { color: var(--blue); }
.hero-visual { position: relative; min-height: 490px; }
.dashboard-mockup {
    position: relative;
    min-height: 450px;
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, .96), rgba(238, 247, 255, .88)),
        linear-gradient(100deg, rgba(7, 95, 228, .18), rgba(18, 183, 214, .13));
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(20px);
    animation: floaty 6s ease-in-out infinite;
}
.dashboard-mockup::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: var(--radius);
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, .36), transparent 42%);
}
.mockup-bar {
    position: relative;
    z-index: 1;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.mockup-bar span:nth-child(2) { background: var(--amber); }
.mockup-bar span:nth-child(3) { background: var(--green); }
.mockup-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}
.mockup-kpi,
.mockup-chart,
.mockup-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 14px 34px rgba(15, 35, 70, .07);
}
.mockup-kpi { min-height: 134px; padding: 18px; }
.mockup-kpi small { color: var(--muted); font-weight: 850; }
.mockup-kpi strong { display: block; margin-top: 10px; color: var(--ink); font-size: 31px; font-weight: 900; }
.mockup-kpi i {
    display: block;
    width: 86%;
    height: 9px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.mockup-kpi.accent i { width: 62%; background: linear-gradient(90deg, var(--green), var(--cyan)); }
.mockup-chart {
    grid-column: span 2;
    height: 180px;
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 18px;
}
.mockup-chart span,
.admin-mini-chart i,
.preview-chart i {
    flex: 1;
    min-height: 36px;
    border-radius: var(--radius) var(--radius) 3px 3px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    animation: pulseBar 2.4s ease-in-out infinite;
}
.mockup-chart span:nth-child(2n),
.admin-mini-chart i:nth-child(2n),
.preview-chart i:nth-child(2n) { animation-delay: -.8s; }
.mockup-list { grid-column: span 2; min-height: 112px; padding: 18px; }
.mockup-list b { display: block; margin-bottom: 12px; color: var(--ink); }
.mockup-list em {
    display: block;
    height: 12px;
    margin: 10px 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(7, 95, 228, .16), rgba(18, 183, 214, .10));
}
.mockup-list em:nth-child(3) { width: 82%; }
.mockup-list em:nth-child(4) { width: 64%; }
.float-card,
.floating-chip {
    position: absolute;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    color: var(--blue);
    font-weight: 900;
}
.float-card { padding: 14px 16px; font-size: 21px; }
.float-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
.float-card.top { right: -8px; top: 56px; }
.float-card.bottom { left: -8px; bottom: 78px; }
.floating-chip { padding: 10px 13px; font-size: 12px; }
.chip-one { left: 28px; top: 10px; animation: floaty 5s ease-in-out infinite; }
.chip-two { right: 26px; bottom: 22px; animation: floaty 5s ease-in-out infinite reverse; }
.trusted {
    margin-top: 38px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 18px 44px rgba(15, 35, 70, .07);
    text-align: center;
}
.trusted span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.logo-marquee { overflow: hidden; margin-top: 16px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-marquee div {
    width: max-content;
    display: flex;
    gap: 46px;
    color: #475569;
    font-weight: 900;
    animation: marquee 18s linear infinite;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
}
.stats-strip div {
    padding: 25px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong { display: block; color: var(--blue); font-size: 29px; font-weight: 900; }
.stats-strip span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 850; }

.section-heading {
    width: min(780px, calc(100% - 40px));
    margin: 0 auto 38px;
    text-align: center;
}
.section-heading h2,
.split h2,
.article h1,
.cta-section h2 {
    margin: 10px 0;
    color: var(--ink);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
}
.card-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.feature-card,
.mini-card,
.blog-card,
.portfolio-card,
.tech-card,
.testimonial-card,
.panel,
.job-card,
.admin-panel,
.login-card,
.image-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.feature-card,
.mini-card,
.blog-card,
.portfolio-card,
.tech-card {
    position: relative;
    min-height: 100%;
    padding: 25px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card::before,
.mini-card::before,
.blog-card::before,
.portfolio-card::before,
.tech-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
    transform: scaleX(.28);
    transform-origin: left;
    transition: transform .24s ease;
}
.feature-card:hover,
.mini-card:hover,
.blog-card:hover,
.portfolio-card:hover,
.tech-card:hover,
.job-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-strong);
}
.feature-card:hover::before,
.mini-card:hover::before,
.blog-card:hover::before,
.portfolio-card:hover::before,
.tech-card:hover::before { transform: scaleX(1); }
.icon-badge,
.mini-card > span {
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--blue);
    background: linear-gradient(135deg, #edf6ff, #fff);
    font-size: 12px;
}
.feature-card h3,
.mini-card h3,
.blog-card h3,
.portfolio-card h3,
.tech-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 18px; line-height: 1.25; }
.feature-card p,
.mini-card p,
.blog-card p,
.portfolio-card p,
.tech-card p { margin: 0; color: var(--muted); line-height: 1.68; font-size: 14px; }
.feature-card em { display: inline-block; margin-top: 16px; color: var(--blue); font-style: normal; font-weight: 900; }
.two-cards,
.three-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}
.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.image-card,
.panel,
.testimonial-card { padding: 27px; }
.image-card img { width: 100%; }
.stars {
    display: inline-flex;
    padding: 8px 10px;
    margin-bottom: 14px;
    border-radius: var(--radius);
    color: #854d0e;
    background: #fff7ed;
    font-size: 12px;
    font-weight: 900;
}
.testimonial-card p { color: var(--text); line-height: 1.72; }
.testimonial-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.page-hero {
    position: relative;
    padding: 92px 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(7, 95, 228, .10), transparent 32%),
        linear-gradient(250deg, rgba(18, 183, 214, .12), transparent 36%),
        rgba(255, 255, 255, .72);
}
.page-hero .container { width: min(900px, calc(100% - 40px)); }
.check-list { display: grid; gap: 12px; margin-top: 22px; }
.check-list span {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: #334155;
    font-weight: 850;
}
.faq { width: min(880px, calc(100% - 40px)); }
.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 35, 70, .05);
}
.faq-item button {
    width: 100%;
    padding: 18px;
    text-align: left;
    border: 0;
    background: #fff;
    color: var(--ink);
    font-weight: 900;
}
.faq-item p { display: none; padding: 0 18px 18px; margin: 0; color: var(--muted); line-height: 1.7; }
.faq-item.open p { display: block; }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}
.tech-card {
    min-height: 142px;
    display: grid;
    place-items: center;
    text-align: center;
}
.tech-card span { color: var(--blue); font-size: 29px; font-weight: 900; }
.tech-preview {
    background:
        linear-gradient(120deg, rgba(237, 246, 255, .84), rgba(255, 255, 255, .94)),
        linear-gradient(90deg, rgba(19, 166, 107, .08), transparent);
}
.floating-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.floating-tech-grid span {
    min-height: 84px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .84);
    color: var(--blue);
    font-weight: 900;
    box-shadow: var(--shadow);
    animation: floaty 5s ease-in-out infinite;
}
.floating-tech-grid span:nth-child(2n) { animation-delay: -1.8s; }
.portfolio-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.portfolio-shot,
.blog-thumb,
.article-hero {
    height: 182px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 900;
    background:
        linear-gradient(135deg, rgba(7, 95, 228, .94), rgba(6, 17, 31, .84) 56%, rgba(18, 183, 214, .72)),
        linear-gradient(45deg, rgba(255, 255, 255, .28), transparent);
}
.filter-row,
.blog-toolbar,
.admin-actions,
.admin-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.filter-row { justify-content: center; }
.filter-row button,
.filter-row a,
.pagination a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 15px;
    background: #fff;
    color: #334155;
    font-weight: 900;
}
.filter-row .active,
.pagination .active { color: #fff; background: var(--blue); border-color: var(--blue); }
.link-button { color: var(--blue); border: 0; background: transparent; padding: 0; font-weight: 900; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    place-items: center;
    padding: 18px;
    background: rgba(6, 17, 31, .58);
}
.modal.open { display: grid; }
.modal > div {
    position: relative;
    width: min(540px, 100%);
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-strong);
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
}

label { display: grid; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 900; }
input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; line-height: 1.62; }
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(7, 95, 228, .55);
    box-shadow: 0 0 0 4px rgba(7, 95, 228, .10);
    background: #fff;
}
.form-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-grid { align-items: start; }
.form-card { display: grid; gap: 16px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.alert,
.toast {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 850;
}
.success { color: #047857; background: #ecfdf5; border-color: #bbf7d0; }
.error { color: #b91c1c; background: #fef2f2; border-color: #fecaca; }
.runtime-toast {
    position: fixed;
    right: 22px;
    top: 96px;
    z-index: 120;
    max-width: min(360px, calc(100vw - 44px));
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
}
.runtime-toast.show { opacity: 1; transform: translateY(0); }
.map-card iframe {
    width: 100%;
    height: 360px;
    margin-top: 22px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.blog-toolbar { justify-content: space-between; align-items: center; }
.blog-toolbar input { min-width: 260px; }
.pagination { display: flex; gap: 10px; margin-top: 24px; }

.article,
.legal,
.application-shell { width: min(900px, calc(100% - 40px)); }
.article-body { color: var(--text); line-height: 1.8; }
.timeline { display: grid; gap: 16px; }
.timeline div {
    padding: 20px;
    border-left: 3px solid var(--blue);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.jobs-list { display: grid; gap: 16px; }
.job-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 24px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 850; }
.job-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.job-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}
.sticky-panel { position: sticky; top: 100px; }

.cta-section {
    position: relative;
    overflow: hidden;
    margin-block: 22px 92px;
    padding: 46px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #06111f 62%, #087f8f);
    box-shadow: var(--shadow-strong);
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 42px;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; max-width: 760px; }
.cta-section p { max-width: 680px; color: #dceeff; line-height: 1.7; }
.site-footer {
    padding: 72px 0 0;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .8fr 1fr 1.1fr;
    gap: 30px;
}
.site-footer h4 { margin: 0 0 12px; color: var(--ink); }
.site-footer p,
.site-footer a {
    display: block;
    margin: 8px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.footer-brand span { color: var(--ink); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.social-row a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: #edf6ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}
.newsletter-card {
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #f6faff, #fff);
}
.newsletter-card form { display: grid; gap: 10px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}
.footer-bottom a { display: inline; }
.whatsapp-float,
.back-to-top {
    position: fixed;
    right: 22px;
    z-index: 40;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 12px;
    font-weight: 900;
}
.whatsapp-float { bottom: 24px; color: #fff; background: var(--green); }
.back-to-top {
    bottom: 78px;
    color: var(--blue);
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.sticky-quote {
    position: fixed;
    right: 22px;
    bottom: 132px;
    z-index: 40;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 14px 10px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--shadow);
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.admin-login-redesign {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(7, 95, 228, .12), transparent 34%),
        linear-gradient(250deg, rgba(18, 183, 214, .14), transparent 34%),
        #f7fbff;
}
.login-bg-shape {
    position: fixed;
    inset: auto auto 6% 4%;
    width: 42vw;
    height: 34vh;
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 95, 228, .12), rgba(18, 183, 214, .10));
    filter: blur(44px);
    animation: auraSweep 8s ease-in-out infinite alternate;
}
.login-bg-shape.shape-b { inset: 6% 4% auto auto; }
.login-shell {
    width: min(1180px, 100%);
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 24px;
    align-items: stretch;
}
.login-visual {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    padding: 40px;
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 95, 228, .96), rgba(6, 17, 31, .96) 58%, rgba(8, 127, 143, .94)),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, .16));
    box-shadow: var(--shadow-strong);
}
.login-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, #000, transparent 96%);
}
.login-visual > * { position: relative; z-index: 1; }
.login-brand { color: #fff; }
.login-brand small { color: #bfdbfe; }
.login-dashboard-preview {
    margin: 62px 0 34px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
    backdrop-filter: blur(16px);
}
.preview-top { display: flex; gap: 8px; margin-bottom: 18px; }
.preview-top span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .72); }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.preview-grid div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .13);
}
.preview-grid strong { display: block; font-size: 24px; }
.preview-grid small { color: #dbeafe; }
.preview-chart {
    height: 190px;
    display: flex;
    align-items: end;
    gap: 16px;
    padding: 26px 12px 0;
}
.preview-chart i { background: linear-gradient(180deg, #fff, #93c5fd); }
.preview-chart i:nth-child(1) { height: 42%; }
.preview-chart i:nth-child(2) { height: 76%; }
.preview-chart i:nth-child(3) { height: 58%; }
.preview-chart i:nth-child(4) { height: 92%; }
.preview-chart i:nth-child(5) { height: 64%; }
.login-floating-card {
    position: absolute;
    right: 30px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 900;
    animation: floaty 5s ease-in-out infinite;
}
.login-floating-card.card-a { top: 150px; }
.login-floating-card.card-b { bottom: 190px; right: 70px; animation-delay: -1.5s; }
.login-visual h2 {
    max-width: 560px;
    margin: 0 0 16px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
}
.login-visual p { max-width: 560px; color: #dbeafe; line-height: 1.8; }
.premium-login-card {
    width: 100%;
    align-self: center;
    padding: 40px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 28px 80px rgba(15, 35, 70, .13);
    backdrop-filter: blur(24px);
}
.login-logo-mark img {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    object-fit: contain;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 38px rgba(7, 95, 228, .18);
}
.premium-login-card h1 {
    margin: 8px 0;
    color: var(--ink);
    font-family: Manrope, Inter, sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 900;
}
.premium-login-card p { color: var(--muted); line-height: 1.7; }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 78px; }
.toggle-password {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    border-radius: var(--radius);
    padding: 8px 10px;
    background: #edf6ff;
    color: var(--blue);
    font-weight: 900;
}
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 8px 0 18px;
}
.remember-me,
.checkbox {
    display: flex !important;
    align-items: center;
    gap: 9px !important;
    margin: 0 !important;
    font-size: 13px;
}
.remember-me input,
.checkbox input { width: auto; min-height: auto; }
.login-options a { color: var(--blue); font-size: 13px; font-weight: 900; }
.field-error { display: none; color: #dc2626; font-size: 12px; }
label.invalid input { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, .10); }
label.invalid .field-error { display: block; }
.login-submit.loading { pointer-events: none; opacity: .82; }
.login-submit.loading span::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: -2px;
}
.login-hint { font-size: 12px; text-align: center; }

.admin-body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    background:
        linear-gradient(120deg, rgba(7, 95, 228, .08), transparent 32%),
        linear-gradient(250deg, rgba(18, 183, 214, .10), transparent 32%),
        #f7fbff;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, .88);
    box-shadow: 18px 0 50px rgba(15, 35, 70, .07);
    backdrop-filter: blur(24px);
}
.admin-sidebar-head { display: flex; align-items: center; gap: 12px; }
.admin-logo {
    flex: 1;
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(7, 95, 228, .09);
    border-radius: var(--radius);
    background: #edf6ff;
    color: var(--blue) !important;
    font-weight: 900;
}
.admin-logo img { width: 42px; height: 42px; object-fit: contain; border-radius: var(--radius); background: #fff; }
.admin-logo span { display: grid; gap: 2px; color: var(--ink); }
.admin-logo small { color: var(--blue); font-size: 10px; text-transform: uppercase; }
.admin-collapse {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.admin-collapse span {
    width: 18px;
    height: 2px;
    border-radius: 6px;
    background: var(--blue);
}
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: #334155;
    font-size: 14px;
    font-weight: 850;
    transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.admin-sidebar nav a:hover {
    color: var(--blue);
    border-color: var(--line);
    background: linear-gradient(135deg, #eef6ff, #fff);
    transform: translateX(2px);
}
.admin-sidebar nav a i,
.admin-stat i {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f1f7ff;
    color: var(--blue);
    font-size: 11px;
}
.admin-sidebar nav a span { display: grid; gap: 2px; }
.admin-sidebar nav a small { color: var(--muted); font-size: 11px; font-weight: 750; }
.admin-sidebar nav a.active {
    color: var(--blue);
    border-color: var(--line-strong);
    background: linear-gradient(135deg, #eef6ff, #fff);
    box-shadow: inset 3px 0 0 var(--blue), 0 12px 24px rgba(7, 95, 228, .08);
}
body.admin-collapsed { grid-template-columns: 96px minmax(0, 1fr); }
body.admin-collapsed .admin-sidebar { padding-inline: 14px; }
body.admin-collapsed .admin-logo span,
body.admin-collapsed .admin-sidebar nav a span { display: none; }
body.admin-collapsed .admin-sidebar nav a,
body.admin-collapsed .admin-logo { justify-content: center; }
.admin-main {
    min-width: 0;
    padding: 30px;
    overflow: auto;
}
.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}
.admin-top h1 {
    margin: 6px 0 0;
    color: var(--ink);
    font-family: Manrope, Inter, sans-serif;
    font-size: 34px;
    font-weight: 900;
}
.admin-user-pill {
    display: grid;
    gap: 2px;
    min-width: 220px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.admin-user-pill span { font-weight: 900; color: var(--ink); }
.admin-user-pill small { color: var(--muted); }
.admin-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
    padding: 30px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #06111f 62%, #087f8f);
    box-shadow: var(--shadow-strong);
}
.admin-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 44px 44px;
}
.admin-hero-panel > * { position: relative; z-index: 1; }
.admin-hero-panel .eyebrow { color: #dbeafe; }
.admin-hero-panel h2 {
    margin: 8px 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 900;
}
.admin-hero-panel p { max-width: 680px; color: #dbeafe; line-height: 1.7; }
.admin-mini-chart {
    height: 180px;
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .12);
}
.admin-mini-chart i { background: linear-gradient(180deg, #fff, #93c5fd); }
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.admin-stat {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.admin-stat::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.admin-stat:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-strong); }
.admin-stat i { width: 42px; height: 42px; margin-bottom: 12px; }
.admin-stat span { color: var(--muted); font-weight: 900; }
.admin-stat strong {
    display: block;
    margin-top: 8px;
    color: var(--blue);
    font-size: 34px;
    font-weight: 900;
}
.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 20px;
}
.admin-panel {
    min-width: 0;
    margin-bottom: 20px;
    padding: 22px;
    overflow-x: auto;
}
.admin-panel h2 { margin: 0 0 16px; color: var(--ink); font-size: 20px; }
.admin-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
}
.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}
.admin-table th {
    position: sticky;
    top: 0;
    color: #475569;
    background: #f8fbff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.admin-table a { color: var(--blue); font-weight: 900; }
.admin-table .danger { color: #dc2626; }
.admin-table tbody tr { transition: background .18s ease; }
.admin-table tbody tr:hover { background: #f8fbff; }
.table-search {
    max-width: 340px;
    margin-bottom: 14px;
    background: #f8fbff;
}
.status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 900;
}
.status.active,
.status.published { color: #047857; background: #ecfdf5; }
.status.inactive,
.status.draft { color: #b91c1c; background: #fef2f2; }
.activity-list { display: grid; gap: 12px; margin-bottom: 22px; }
.activity-list div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbff;
}
.activity-list strong { display: block; color: var(--ink); }
.activity-list span { color: var(--muted); font-size: 13px; }
.admin-form { display: grid; gap: 16px; }
.admin-filter { align-items: end; }
.admin-filter input,
.admin-filter select { width: auto; min-width: 220px; }
.drop-zone {
    margin-bottom: 18px;
    padding: 22px;
    border: 1.5px dashed #bcd8ff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f8fbff, #fff);
    color: var(--muted);
}
.drop-zone strong { display: block; color: var(--blue); margin-bottom: 4px; }
.rich-editor { min-height: 220px; background-color: #fff; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes pulseBar {
    0%, 100% { opacity: .84; transform: scaleY(.96); }
    50% { opacity: 1; transform: scaleY(1.04); }
}
@keyframes auraSweep {
    0% { transform: translate3d(-2%, -2%, 0) scale(1); opacity: .72; }
    100% { transform: translate3d(2%, 3%, 0) scale(1.04); opacity: 1; }
}

@media (max-width: 1180px) {
    .header-tools { display: none; }
    .nav-primary > a,
    .mega-trigger { padding-inline: 8px; font-size: 12px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
    .menu-toggle { display: inline-flex; }
    .nav-links {
        position: fixed;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        max-height: calc(100vh - 104px);
        overflow: auto;
        padding: 16px;
        border: 1px solid var(--line-strong);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .96);
        box-shadow: var(--shadow-strong);
        backdrop-filter: blur(24px);
    }
    .nav-links.open { display: block; }
    .nav-primary {
        display: grid;
        align-items: stretch;
        gap: 6px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    .nav-primary > a,
    .mega-trigger { width: 100%; min-height: 46px; justify-content: space-between; padding: 14px; font-size: 14px; }
    .mobile-quote { display: inline-flex !important; width: 100%; margin-top: 12px; }
    .nav-cta { display: none; }
    .has-mega { width: 100%; }
    .mega-menu {
        position: static;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        margin-top: 8px;
    }
    .mega-grid { grid-template-columns: 1fr; }
    .hero-grid,
    .split,
    .contact-grid,
    .job-detail-grid,
    .admin-grid,
    .login-shell { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; }
    .card-grid,
    .service-grid,
    .portfolio-grid,
    .blog-grid,
    .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-strip,
    .admin-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-body,
    body.admin-collapsed { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: sticky;
        z-index: 70;
        height: auto;
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .admin-sidebar nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
    .admin-sidebar nav a { justify-content: center; }
    .admin-sidebar nav a span { display: grid !important; }
    body.admin-collapsed .admin-logo span { display: grid; }
    .admin-main { padding: 24px; }
    .admin-hero-panel { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .container,
    .section-heading,
    .page-hero .container,
    .legal,
    .article,
    .application-shell { width: min(100% - 28px, var(--container)); }
    .section { padding: 64px 0; }
    .navbar { min-height: 72px; }
    .brand img { width: 38px; height: 38px; }
    .brand span { font-size: 13px; }
    .brand small { font-size: 9px; }
    .hero,
    .careers-hero { padding: 64px 0 30px; }
    .hero-grid { gap: 34px; }
    .dashboard-mockup { min-height: auto; padding: 12px; }
    .mockup-grid,
    .mockup-chart,
    .mockup-list { grid-column: auto; }
    .mockup-grid { grid-template-columns: 1fr; }
    .float-card,
    .floating-chip { position: static; display: inline-block; margin: 8px 8px 0 0; }
    .card-grid,
    .service-grid,
    .mini-grid,
    .portfolio-grid,
    .blog-grid,
    .tech-grid,
    .floating-tech-grid,
    .stats-strip,
    .form-grid,
    .two-cards,
    .three-cols,
    .footer-grid,
    .admin-stat-grid { grid-template-columns: 1fr; }
    .stats-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
    .stats-strip div:last-child { border-bottom: 0; }
    .job-card { align-items: flex-start; flex-direction: column; }
    .footer-bottom { flex-direction: column; }
    .cta-section { padding: 30px 20px; }
    .sticky-quote { display: none; }
    .admin-login-redesign { padding: 14px; }
    .login-visual { display: none; }
    .premium-login-card { padding: 24px 18px; }
    .premium-login-card h1 { font-size: 32px; }
    .login-options { align-items: flex-start; flex-direction: column; }
    .admin-top { align-items: flex-start; flex-direction: column; }
    .admin-user-pill { width: 100%; }
    .admin-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-sidebar nav a { justify-content: flex-start; }
    .admin-main { padding: 18px 14px; }
    .admin-hero-panel { padding: 22px; }
    .admin-filter input,
    .admin-filter select { width: 100%; min-width: 0; }
}

@media (max-width: 460px) {
    .nav-links { left: 14px; right: 14px; }
    .admin-sidebar nav { grid-template-columns: 1fr; }
    .admin-user-pill { display: none; }
    .btn { width: 100%; }
    .social-row .btn,
    .social-row a { width: 36px; }
    .hero-proof span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
