:root {
    --ink: #101828;
    --muted: #667085;
    --line: #e4e7ec;
    --paper: #ffffff;
    --soft: #f6f8fb;
    --navy: #16324f;
    --teal: #0f766e;
    --blue: #2563eb;
    --red: #c2415b;
    --amber: #c57a24;
    --shadow: 0 18px 55px rgba(16, 24, 40, .11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

.admin-body {
    background: #f5f7fa;
}

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

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
    color: #dbeafe;
    background:
        linear-gradient(180deg, #0f2742, #0b1728);
    box-shadow: 16px 0 40px rgba(16, 24, 40, .12);
}

.admin-logo {
    display: grid;
    gap: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-logo img {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
}

.admin-logo span {
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.admin-menu {
    display: grid;
    gap: 8px;
}

.admin-menu a,
.admin-sidebar-actions a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #dbeafe;
    border-radius: 6px;
    font-weight: 600;
    gap: 10px;
}

.admin-menu a:hover,
.admin-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.admin-sidebar-actions {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.admin-sidebar-actions a {
    color: #bfdbfe;
    background: rgba(255, 255, 255, .06);
}

.admin-main {
    min-width: 0;
}

.admin-top {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 12px 28px;
    background: #fff;
    border-bottom: 3px solid #0f766e;
}

.admin-top-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.admin-top-brand img {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    padding: 6px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .36), transparent 28%),
        linear-gradient(135deg, #0f2742, #0f766e);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 39, 66, .14);
}

.admin-top-brand div {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.admin-top-brand span {
    display: block;
    color: #0f766e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-top-brand strong {
    display: block;
    overflow: hidden;
    color: #1e293b;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-user-pill {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: #334155;
    background: rgba(15,118,110,.08);
    border: 1px solid rgba(15,118,110,.12);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.admin-dashboard {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.admin-page-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.admin-page-head h1 {
    margin-bottom: 6px;
}

.admin-page-head p {
    max-width: 680px;
    color: var(--muted);
    margin-top: 2px;
}

.dashboard-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
    gap: 22px;
    align-items: stretch;
    padding: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 209, 102, .24), transparent 24%),
        radial-gradient(circle at 22% 18%, rgba(94, 234, 212, .24), transparent 24%),
        linear-gradient(135deg, #071b2c, #0f2742 54%, #0f766e);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .16);
}

.dashboard-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .42;
    pointer-events: none;
}

.dashboard-hero > * {
    position: relative;
    z-index: 1;
}

.dashboard-hero .eyebrow {
    color: #5eead4;
}

.dashboard-hero h1 {
    max-width: 760px;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
}

.dashboard-hero p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.dashboard-focus-card {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
}

.dashboard-focus-card span {
    color: #ffd166;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-focus-card strong {
    color: #fff;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
}

.dashboard-focus-card p {
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    font-weight: 700;
}

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

.admin-stats.dashboard-stats div {
    position: relative;
    min-height: 100px;
    display: grid;
    align-content: start;
    gap: 6px;
    background: #fff;
    border: 1px solid rgba(16,24,40,.07);
    border-left: 4px solid;
    border-radius: 12px;
    padding: 18px 18px 18px 16px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 6px 12px rgba(16,24,40,.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.admin-stats.dashboard-stats div:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,24,40,.08);
}

.admin-stats.dashboard-stats div:nth-child(1) { border-left-color: #f59e0b; }
.admin-stats.dashboard-stats div:nth-child(2) { border-left-color: #3b82f6; }
.admin-stats.dashboard-stats div:nth-child(3) { border-left-color: #10b981; }
.admin-stats.dashboard-stats div:nth-child(4) { border-left-color: #8b5cf6; }
.admin-stats.dashboard-stats div:nth-child(5) { border-left-color: #0f766e; }
.admin-stats.dashboard-stats div:nth-child(6) { border-left-color: #ef4444; }

.admin-stats.dashboard-stats span {
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    order: 0;
}

.admin-stats.dashboard-stats strong {
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 26px;
    font-weight: 750;
    line-height: 1.1;
    order: 1;
}

.admin-stats.dashboard-stats div:nth-child(1) strong { color: #d97706; }
.admin-stats.dashboard-stats div:nth-child(2) strong { color: #2563eb; }
.admin-stats.dashboard-stats div:nth-child(3) strong { color: #059669; }
.admin-stats.dashboard-stats div:nth-child(4) strong { color: #7c3aed; }
.admin-stats.dashboard-stats div:nth-child(5) strong { color: #0f766e; }
.admin-stats.dashboard-stats div:nth-child(6) strong { color: #dc2626; }

.admin-stats.dashboard-stats small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 450;
    order: 2;
}

.admin-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
    gap: 18px;
    align-items: start;
}

.admin-overview-grid .primary-panel {
    grid-row: span 3;
}

.admin-card.dashboard-panel {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 6px 12px rgba(16,24,40,.04);
}

.admin-card.dashboard-panel .admin-card-head {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(16, 24, 40, .06);
}

.admin-card.dashboard-panel .admin-card-head a {
    color: #0f766e;
    font-size: 13px;
    font-weight: 600;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(15, 39, 66, .94), rgba(11, 23, 40, .94)),
        radial-gradient(circle at 70% 28%, rgba(15, 118, 110, .45), transparent 30%);
}

.admin-login-card {
    width: min(960px, 100%);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
    gap: 28px;
    align-items: center;
    padding: 30px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.admin-login-card p {
    color: rgba(255, 255, 255, .76);
}

.admin-login-card .contact-form {
    color: var(--ink);
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 28px;
}

.admin-login-card .admin-login-info {
    position: relative;
    z-index: 1;
}

.admin-login-features {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.admin-login-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease, transform .15s ease;
}

.admin-login-features div:hover {
    background: rgba(255,255,255,.14);
    transform: translateX(4px);
}

.admin-login-features div span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: 16px;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 8px;
}

.auth-form-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    color: #0f766e;
    background: linear-gradient(135deg, rgba(15,118,110,.10), rgba(37,99,235,.08));
    border: 1.5px solid rgba(15,118,110,.14);
    border-radius: 14px;
}

.auth-form-icon svg {
    width: 26px;
    height: 26px;
}

.auth-form-header h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
    color: #1d2f45;
}

.auth-form-header p {
    margin: 0;
    color: #98a2b3;
    font-size: 14px;
    font-weight: 500;
}

.admin-login-card .auth-form .button.primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 15px;
}

.admin-login-card .auth-form .form-hint {
    text-align: center;
    font-size: 12px;
    color: #98a2b3;
}

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

.brand-word {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
    text-transform: lowercase;
    white-space: nowrap;
    vertical-align: -.04em;
}

.brand-word-b,
.brand-word-t {
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.brand-word-b {
    color: #0b7de3;
}

.brand-word-t {
    color: #ff9f1c;
}

.brand-word-bilisim {
    display: inline-block;
    color: #1e88ff;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.site-footer .brand-word-bilisim,
.cta-band .brand-word-bilisim,
.admin-body .brand-word-bilisim {
    color: #53a6ff;
}

.eyebrow .brand-word,
.command-topbar .brand-word,
.admin-top .brand-word {
    font-size: 1.22em;
    vertical-align: -.08em;
}

.command-topbar .brand-word {
    margin-right: 3px;
}

.container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(16, 24, 40, .06);
    box-shadow: 0 6px 24px rgba(16, 24, 40, .05);
}

/* ---- Top Strip ---- */

.top-strip {
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0a1e30, #0c3b44);
    border-bottom: 1px solid rgba(94, 234, 212, .06);
}

.top-strip-inner {
    position: relative;
    z-index: 1;
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15px;
}

.top-strip-inner > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

.top-strip-inner > span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 8px rgba(45, 212, 191, .4);
}

.top-strip-inner div {
    display: flex;
    gap: 6px;
    align-items: center;
}

.top-strip-inner a {
    position: relative;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px 0 22px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    font-weight: 500;
    font-size: 11px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.top-strip-inner a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3px;
    border-radius: 50%;
    background: #2dd4bf;
}

.top-strip-inner a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .13);
    border-color: rgba(94, 234, 212, .15);
}

/* ---- Nav Shell ---- */

.nav-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* ---- Brand ---- */

.brand {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
    padding: 4px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(15, 39, 66, .92), rgba(15, 118, 110, .75));
    box-shadow: 0 4px 16px rgba(16, 24, 40, .08);
    transition: box-shadow .25s ease;
}

.brand:hover {
    box-shadow: 0 6px 20px rgba(16, 24, 40, .14);
}

.brand-logo {
    display: block;
    width: auto;
    height: 52px;
    max-width: 240px;
    object-fit: contain;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #0f2742, #0f766e);
    border-radius: 6px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: #94a3b8;
    font-size: 12px;
}

/* ---- Main Navigation ---- */

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(16, 24, 40, .06), inset 0 1px 0 rgba(255, 255, 255, .95);
}

.main-nav a {
    position: relative;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 9px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15px;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all .22s ease;
}

.main-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #0d9488);
    border-color: rgba(15, 118, 110, .4);
    box-shadow: 0 4px 14px rgba(15, 118, 110, .28), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.main-nav a:hover:not(.active) {
    color: #0f766e;
    background: rgba(15, 118, 110, .06);
    border-color: rgba(15, 118, 110, .12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 24, 40, .05);
}

/* ---- Nav Actions ---- */

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-pill {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #b45309;
    background: rgba(251, 191, 36, .12);
    border: 1px solid rgba(251, 191, 36, .2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.cart-pill:hover {
    background: rgba(251, 191, 36, .2);
    border-color: rgba(251, 191, 36, .35);
    transform: translateY(-1px);
}

.nav-cta {
    position: relative;
    overflow: hidden;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #059669);
    box-shadow: 0 4px 14px rgba(15, 118, 110, .25);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-120%);
    transition: transform .45s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, .35);
}

.nav-cta:hover::after {
    transform: translateX(120%);
}

.nav-cta-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #0f766e;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    flex: 0 0 auto;
}

.nav-cta-icon svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-cta:hover .nav-cta-icon {
    color: #0f2742;
    background: #fcd34d;
}

/* ---- Base Button Styles ---- */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 30px 0 58px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 10%, rgba(255, 209, 102, .26), transparent 20%),
        radial-gradient(circle at 72% 54%, rgba(15, 118, 110, .60), transparent 28%),
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .32), transparent 26%),
        linear-gradient(135deg, #071b2c 0%, #0d1b2a 48%, #053b46 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .34;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -150px -8%;
    height: 280px;
    background: radial-gradient(ellipse at center, rgba(255, 209, 102, .28), transparent 62%);
    pointer-events: none;
}

.hero > .container::before {
    content: "";
    position: absolute;
    right: 18%;
    top: 32px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02));
    box-shadow: 0 24px 80px rgba(15, 118, 110, .24);
    pointer-events: none;
}

.hero-grid,
.product-hero-grid,
.split-grid,
.contact-grid,
.detail-grid,
.cta-grid,
.footer-grid,
.auth-grid {
    display: grid;
    gap: 38px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .82fr);
    align-items: center;
}

.hero > .container {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(42px, 5.8vw, 70px);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    max-width: 800px;
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.09;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 23px;
    line-height: 1.18;
}

.text-accent,
.text-warm {
    position: relative;
    display: inline-block;
    z-index: 0;
    font-weight: 900;
}

.text-accent {
    color: #5eead4;
}

.text-warm {
    color: #ffd166;
}

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

.section .text-warm {
    color: #c2415b;
}

.text-accent::after,
.text-warm::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .04em;
    height: .18em;
    background: currentColor;
    opacity: .18;
    border-radius: 999px;
    z-index: -1;
}

.hero-copy p,
.product-hero p,
.split-grid p,
.contact-grid p,
.auth-grid p,
.admin-topbar p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.hero-copy p strong,
.split-grid p strong {
    color: inherit;
    font-weight: 900;
}

.hero-copy p strong {
    color: #ffffff;
}

.split-grid p strong {
    color: var(--ink);
}

.hero .eyebrow {
    color: #7dd3c7;
}

.hero-copy p {
    color: rgba(255, 255, 255, .78);
}

.hero-copy {
    position: relative;
    padding: 20px 0;
}

.hero-copy::after {
    content: "";
    position: absolute;
    left: -28px;
    bottom: 28px;
    width: min(74%, 520px);
    height: 220px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 16% 26%, rgba(94, 234, 212, .18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .10);
    pointer-events: none;
    z-index: -1;
    backdrop-filter: blur(8px);
}

.hero-live-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 14px 0 18px;
    padding: 8px 12px;
    color: #dff7f1;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(94, 234, 212, .26);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .15);
    font-size: 13px;
    font-weight: 900;
}

.hero-live-badge span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, .12);
    animation: livePulse 1.4s ease-in-out infinite;
}

.hero h1 {
    position: relative;
    margin-bottom: 24px;
    text-wrap: balance;
    filter: drop-shadow(0 22px 44px rgba(0, 0, 0, .24));
}

.hero h1::after {
    content: "";
    display: block;
    width: min(78%, 620px);
    height: 10px;
    margin-top: -9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5eead4, #ffd166, transparent);
    opacity: .34;
}

.hero-lead {
    position: relative;
    width: min(100%, 640px);
    max-width: 640px;
    margin-bottom: 0;
    padding: 18px 20px;
    color: rgba(255, 255, 255, .86);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
    border: 1px solid rgba(255, 255, 255, .16);
    border-left: 4px solid #5eead4;
    border-radius: 10px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.hero-lead strong {
    color: #ffd166;
}

.hero-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 640px);
    max-width: 640px;
    margin-top: 12px;
}

.hero-flow span {
    position: relative;
    overflow: hidden;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 900;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-flow span::after {
    content: "";
    position: absolute;
    inset: auto -28px -34px auto;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: rgba(255, 209, 102, .16);
}

.hero-flow span:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 209, 102, .36);
}

.hero-flow b {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: #0f2742;
    background: #ffd166;
    border-radius: 999px;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: min(100%, 640px);
    max-width: 640px;
    margin-top: 16px;
}

.hero .button.ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .24);
}

.hero-service-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-service-strip span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #dff7f1;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .28), rgba(37, 99, 235, .20));
    border: 1px solid rgba(94, 234, 212, .22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transition: transform .18s ease, color .18s ease, background .18s ease;
}

.hero-service-strip span:hover {
    transform: translateY(-3px);
    color: #0f2742;
    background: #ffd166;
}

.hero-panel,
.quote-box,
.contact-form,
blockquote,
.admin-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
    padding: 18px;
    color: var(--ink);
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 209, 102, .28), transparent 20%),
        radial-gradient(circle at 12% 88%, rgba(94, 234, 212, .22), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(246, 248, 251, .64));
    backdrop-filter: blur(18px);
}

.hero-command {
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-command::before {
    display: none;
}

.command-window {
    position: relative;
    overflow: hidden;
    min-height: 455px;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .28);
    background:
        radial-gradient(circle at 22% 16%, rgba(255, 209, 102, .32), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(94, 234, 212, .20), transparent 22%),
        linear-gradient(150deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    box-shadow: 0 34px 110px rgba(0, 0, 0, .34);
    backdrop-filter: blur(22px);
    transform-style: preserve-3d;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease, border-color .45s ease;
}

.command-window:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 234, 212, .54);
    box-shadow: 0 42px 120px rgba(0, 0, 0, .40);
}

.command-window::before {
    content: "";
    position: absolute;
    inset: -42%;
    background: conic-gradient(from 180deg, transparent, rgba(94, 234, 212, .18), transparent, rgba(255, 209, 102, .20), transparent);
    animation: commandSweep 8s linear infinite;
    opacity: .70;
    pointer-events: none;
}

.command-window > * {
    position: relative;
    z-index: 1;
}

.command-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.command-topbar .window-dots {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ffd166;
    box-shadow: 18px 0 0 #5eead4, 36px 0 0 #38bdf8;
}

.command-topbar strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin-left: 0;
    padding: 0 11px;
    color: #dff7f1;
    background: rgba(7, 27, 44, .34);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    letter-spacing: .4px;
    white-space: nowrap;
}

.command-topbar strong b {
    color: #ffd166;
    font: inherit;
}

.command-visual {
    position: relative;
    min-height: 315px;
    margin-top: 18px;
    display: grid;
    place-items: center;
}

.command-visual::before {
    content: "";
    position: absolute;
    inset: 24px 12%;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, .28);
    transform: rotate(-8deg);
    animation: orbitRing 9s linear infinite;
}

.command-visual::after {
    content: "";
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(94, 234, 212, .18), transparent 62%);
    animation: breathe 3.2s ease-in-out infinite;
}

.command-visual img {
    position: relative;
    z-index: 2;
    width: min(74%, 330px);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, .34));
    animation: floatVitrine 4.8s ease-in-out infinite;
}

.orbit-chip {
    position: absolute;
    z-index: 3;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #0f2742;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .20);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform .42s cubic-bezier(.2, .8, .2, 1),
        box-shadow .42s ease,
        filter .42s ease,
        background-color .42s ease,
        color .42s ease;
}

.orbit-chip:hover,
.orbit-chip:focus-visible,
.orbit-chip.is-active {
    transform: translateY(-3px) scale(1.045);
    filter: saturate(1.18);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .28), 0 0 0 4px rgba(255, 255, 255, .18);
}

.chip-hosting {
    left: 8px;
    top: 54px;
    background: #5eead4;
}

.chip-domain {
    right: 12px;
    top: 42px;
    background: #ffd166;
}

.chip-chat {
    left: 28px;
    bottom: 48px;
    color: #fff;
    background: #2563eb;
}

.chip-radio {
    right: 34px;
    bottom: 36px;
    color: #fff;
    background: #db2777;
}

.command-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.command-stats span {
    min-height: 70px;
    display: grid;
    align-content: center;
    padding: 12px;
    color: rgba(255, 255, 255, .76);
    background: rgba(7, 27, 44, .42);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.command-stats span:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 209, 102, .42);
}

.command-stats strong {
    display: block;
    color: #ffd166;
    font-size: 19px;
}

.command-stats em {
    color: rgba(255, 255, 255, .78);
    font-style: normal;
}

.command-live-copy {
    display: grid;
    gap: 6px;
    margin: -2px 0 12px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(7, 27, 44, .36);
    border: 1px solid rgba(255, 255, 255, .16);
}

.command-live-copy.is-changing {
    animation: liveCopySwap .34s ease;
}

.command-visual img,
.command-live-copy h2,
.command-live-copy p,
.command-stats strong,
.command-stats em {
    transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}

.command-visual img.is-switching {
    animation: none;
    opacity: 0;
    transform: translateY(8px) scale(.975);
    filter: blur(3px) drop-shadow(0 24px 36px rgba(16, 24, 40, .12));
}

.command-live-copy.is-switching h2,
.command-live-copy.is-switching p,
.command-stats.is-switching strong,
.command-stats.is-switching em {
    opacity: 0;
    transform: translateY(8px);
}

.live-dot {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5eead4;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.live-dot::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, .14);
    animation: livePulse 1.4s ease-in-out infinite;
}

.command-live-copy h2 {
    margin: 0;
    max-width: none;
    color: #ffd166;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.05;
}

.command-live-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.hero-promo {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    margin-inline: 24px;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--teal), var(--blue), var(--red), var(--amber));
}

.hero-visual-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.hero-badge {
    padding: 6px 10px;
    color: #17594f;
    background: #dff7f1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.hero-showcase-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    border-radius: 8px;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, .35), transparent 18%),
        radial-gradient(circle at 78% 28%, rgba(255, 209, 102, .48), transparent 22%),
        linear-gradient(135deg, #2563eb, #0f766e 54%, #db2777);
    box-shadow: 0 20px 54px rgba(15, 118, 110, .24);
}

.hero-showcase-card strong {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.02;
}

.hero-showcase-card em {
    max-width: 380px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .82);
    font-style: normal;
}

.showcase-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.showcase-pills b {
    padding: 7px 10px;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    font-size: 12px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 800;
}

.status-dot {
    width: 11px;
    height: 11px;
    background: #16a34a;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(22, 163, 74, .12);
}

.metric-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 26px 0;
}

.metric-list div,
.stack-card,
.contact-note,
.feature-item,
.check-list div,
.admin-stats div {
    padding: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hero-panel .metric-list div {
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, .07);
}

.metric-list strong,
.admin-stats strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.server-visual {
    position: relative;
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 22px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #101828, #1f2937);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.server-visual span {
    position: relative;
    height: 54px;
    display: block;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05)),
        #273244;
    border: 1px solid rgba(255, 255, 255, .10);
}

.server-visual span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background: #22c55e;
    border-radius: 999px;
    box-shadow: 20px 0 0 #38bdf8, 40px 0 0 #f59e0b;
}

.server-visual span::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38%;
    height: 18px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .22) 0 7px, transparent 7px 15px);
}

.promo-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 13px;
    align-items: stretch;
    margin-top: 16px;
    padding: 12px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(219, 39, 119, .96), rgba(245, 158, 11, .96)),
        #db2777;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(219, 39, 119, .22);
}

.promo-media {
    position: relative;
    min-height: 102px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, .58), transparent 15%),
        radial-gradient(circle at 72% 68%, rgba(255, 209, 102, .58), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04));
}

.promo-media::before {
    content: "PNG";
    position: absolute;
    inset: auto 10px 10px auto;
    padding: 4px 8px;
    color: rgba(255, 255, 255, .78);
    background: rgba(0, 0, 0, .22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.promo-media::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 28px;
    width: 58px;
    height: 58px;
    border: 9px solid rgba(255, 255, 255, .82);
    border-left-color: transparent;
    border-radius: 999px;
    transform: rotate(-22deg);
}

.promo-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 102px;
    display: block;
    object-fit: cover;
}

.promo-media:not(.is-empty):has(img)::before,
.promo-media:not(.is-empty):has(img)::after {
    display: none;
}

.promo-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.promo-copy small {
    width: fit-content;
    margin-bottom: 8px;
    padding: 4px 8px;
    color: #3b1026;
    background: #ffd166;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-copy strong {
    font-size: 18px;
    line-height: 1.1;
}

.promo-copy em {
    margin-top: 7px;
    color: rgba(255, 255, 255, .82);
    font-style: normal;
    font-size: 13px;
    line-height: 1.35;
}

.hero {
    min-height: 0;
    padding: 48px 0 58px;
    color: var(--ink);
    background:
        linear-gradient(120deg, #f8fbff 0%, #ffffff 46%, #eefaf7 100%);
}

.hero::before {
    opacity: .72;
    background:
        linear-gradient(rgba(15, 118, 110, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero::after,
.hero > .container::before,
.hero-copy::after {
    display: none;
}

.hero-grid {
    grid-template-columns: minmax(0, .86fr) minmax(410px, .78fr);
    gap: 44px;
    align-items: start;
}

.hero-copy {
    padding: 8px 0 0;
}

.hero .eyebrow {
    color: #0f766e;
}

.hero-live-badge {
    margin: 0 0 18px;
    color: #0f766e;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, .18);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .07);
}

.hero-live-badge span {
    background: #16a34a;
    box-shadow: 0 0 0 7px rgba(22, 163, 74, .11);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: #101828;
    font-size: clamp(40px, 4.8vw, 60px);
    line-height: 1.04;
    filter: none;
}

.hero h1::after {
    width: min(54%, 420px);
    height: 5px;
    margin-top: 16px;
    background: linear-gradient(90deg, #0f766e, #2563eb, #db2777);
    opacity: .82;
}

.hero .text-accent {
    color: #0f766e;
}

.hero .text-warm {
    color: #c2415b;
}

.hero-copy p,
.hero-copy p strong {
    color: #344054;
}

.hero-lead {
    padding: 0;
    color: #344054;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-lead strong {
    color: #0f766e;
}

.hero-flow {
    margin-top: 22px;
}

.hero-flow span {
    min-height: 62px;
    color: #344054;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(37, 99, 235, .10);
    box-shadow: 0 14px 34px rgba(16, 24, 40, .07);
}

.hero-flow span::after {
    width: 4px;
    height: auto;
    inset: 12px auto 12px 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #0f766e, #2563eb);
}

.hero-flow span:hover {
    background: #fff;
    border-color: rgba(15, 118, 110, .24);
    box-shadow: 0 18px 42px rgba(16, 24, 40, .10);
}

.hero-flow b {
    color: #0f766e;
    background: #dff7f1;
}

.hero-actions {
    margin-top: 22px;
}

.hero .button.ghost {
    color: #0f2742;
    background: #ffffff;
    border-color: rgba(16, 24, 40, .12);
}

.hero-service-strip {
    margin-top: 24px;
}

.hero-service-strip span {
    position: relative;
    overflow: hidden;
    min-height: 38px;
    padding: 0 34px 0 13px;
    color: #475467;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(248, 251, 255, .78));
    border-color: rgba(16, 24, 40, .08);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .045);
}

.hero-service-strip span:hover {
    color: #344054;
    background:
        linear-gradient(135deg, rgba(238, 250, 247, .92), rgba(248, 251, 255, .86));
    transform: translateY(-2px);
}

.hero-service-strip span::after {
    content: "★";
    position: absolute;
    top: 7px;
    right: 10px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    color: #0f766e;
    background: rgba(223, 247, 241, .86);
    border: 1px solid rgba(15, 118, 110, .14);
    border-radius: 999px;
    font-size: 9px;
    line-height: 1;
}

.hero-command {
    display: grid;
    gap: 14px;
}

.command-window {
    min-height: 438px;
    padding: 18px;
    color: var(--ink);
    border: 1px solid rgba(37, 99, 235, .12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .96));
    box-shadow: 0 28px 70px rgba(16, 24, 40, .13);
    backdrop-filter: none;
}

.command-window:hover {
    border-color: rgba(15, 118, 110, .22);
    box-shadow: 0 34px 78px rgba(16, 24, 40, .16);
}

.command-window::before {
    inset: 0;
    background:
        linear-gradient(90deg, #0f766e, #2563eb, #db2777);
    height: 5px;
    opacity: 1;
    animation: none;
}

.command-topbar {
    color: #667085;
}

.command-topbar .window-dots {
    background: #0f766e;
    box-shadow: 18px 0 0 #2563eb, 36px 0 0 #db2777;
}

.command-topbar strong {
    color: #0f766e;
    background: #eefaf7;
    border-color: rgba(15, 118, 110, .16);
}

.command-topbar strong b {
    color: #0f766e;
}

.command-visual {
    min-height: 238px;
    margin-top: 14px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #f8fbff, #eefaf7);
    border: 1px solid rgba(16, 24, 40, .08);
}

.command-visual::before {
    inset: 20px 12%;
    border-color: rgba(15, 118, 110, .18);
}

.command-visual::after {
    width: 58%;
    background: linear-gradient(135deg, rgba(15, 118, 110, .10), rgba(37, 99, 235, .08));
}

.command-visual img {
    width: min(64%, 260px);
    filter: drop-shadow(0 24px 36px rgba(16, 24, 40, .18));
}

.command-visual img.is-switching {
    animation: none;
    opacity: 0;
    transform: translateY(8px) scale(.975);
    filter: blur(3px) drop-shadow(0 24px 36px rgba(16, 24, 40, .12));
}

.orbit-chip {
    color: #101828;
    background: #ffffff;
    border-color: rgba(16, 24, 40, .10);
    box-shadow: 0 14px 30px rgba(16, 24, 40, .12);
}

.chip-hosting,
.chip-domain,
.chip-chat,
.chip-radio {
    color: #101828;
    background: #ffffff;
}

.orbit-chip.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #2563eb);
}

.command-live-copy {
    margin: 14px 0 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(248, 251, 255, .58));
    border-color: rgba(255, 255, 255, .74);
    box-shadow: 0 16px 38px rgba(16, 24, 40, .075), inset 0 1px 0 rgba(255, 255, 255, .84);
    backdrop-filter: blur(16px);
}

.live-dot {
    color: #0b7de3;
}

.live-dot::before {
    background: #ff9f1c;
    box-shadow: 0 0 0 7px rgba(255, 159, 28, .15);
}

.command-live-copy h2 {
    color: #0b7de3;
    background: linear-gradient(90deg, #0b7de3 0%, #1e88ff 42%, #ff9f1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.command-live-copy p {
    color: #344054;
    border-left: 3px solid #ff9f1c;
    padding-left: 11px;
}

.command-stats span {
    color: #667085;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(238, 250, 247, .54));
    border-color: rgba(255, 255, 255, .76);
    box-shadow: 0 14px 34px rgba(16, 24, 40, .055), inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
}

.command-stats span:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(244, 248, 255, .62));
}

.command-stats span:nth-child(3) {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(255, 246, 250, .58));
}

.command-stats span:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .70));
    border-color: rgba(15, 118, 110, .18);
}

.command-stats strong {
    color: #0b7de3;
}

.command-stats span:nth-child(2) strong {
    color: #ff9f1c;
}

.command-stats span:nth-child(3) strong {
    color: #1e88ff;
}

.command-stats em {
    color: #667085;
}

.command-live-copy.is-switching h2,
.command-live-copy.is-switching p,
.command-stats.is-switching strong,
.command-stats.is-switching em {
    opacity: 0;
    transform: translateY(8px);
}

.hero-promo {
    margin-top: 0;
    margin-inline: 10px;
    grid-template-columns: 88px minmax(0, 1fr);
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(219, 39, 119, .16);
    box-shadow: 0 18px 42px rgba(16, 24, 40, .09);
}

.hero-promo .promo-media,
.hero-promo .promo-media img {
    min-height: 88px;
}

.hero-promo .promo-copy small {
    color: #9f1239;
    background: #fff1f2;
}

.hero-promo .promo-copy em {
    color: #667085;
}

.service-ribbon {
    position: relative;
    z-index: 4;
    margin-top: -42px;
    padding-bottom: 30px;
}

.service-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-ribbon-grid a {
    position: relative;
    overflow: hidden;
    min-height: 148px;
    display: grid;
    align-content: end;
    padding: 54px 18px 18px;
    color: var(--ink);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .76);
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .46), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .22), transparent 24%),
        linear-gradient(135deg, rgba(15, 118, 110, .96), rgba(37, 99, 235, .88));
    box-shadow: 0 20px 48px rgba(16, 24, 40, .09), inset 0 1px 0 rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.service-ribbon-grid a::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #0f766e, #2563eb);
}

.service-ribbon-grid a::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .08);
    pointer-events: none;
}

.service-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #0f766e;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .74));
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .92);
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.service-icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-ribbon-grid a:hover,
.service-ribbon-grid a:focus-visible {
    transform: translateY(-7px);
    border-color: rgba(15, 118, 110, .22);
    box-shadow: 0 28px 66px rgba(16, 24, 40, .13), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.service-ribbon-grid a:hover .service-icon,
.service-ribbon-grid a:focus-visible .service-icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 38px rgba(16, 24, 40, .12), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.service-ribbon-grid a:nth-child(2) {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .46), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .20), transparent 24%),
        linear-gradient(135deg, rgba(245, 158, 11, .94), rgba(219, 39, 119, .88));
}

.service-ribbon-grid a:nth-child(2)::before {
    background: linear-gradient(180deg, #f59e0b, #db2777);
}

.service-ribbon-grid a:nth-child(2)::after {
    background: rgba(194, 65, 91, .08);
}

.service-ribbon-grid a:nth-child(2) .service-icon {
    color: #c2415b;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 241, 242, .72));
    border-color: rgba(194, 65, 91, .16);
}

.service-ribbon-grid a:nth-child(3) {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .42), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .20), transparent 24%),
        linear-gradient(135deg, rgba(37, 99, 235, .95), rgba(15, 118, 110, .88));
}

.service-ribbon-grid a:nth-child(3)::before {
    background: linear-gradient(180deg, #2563eb, #0f766e);
}

.service-ribbon-grid a:nth-child(3)::after {
    background: rgba(37, 99, 235, .08);
}

.service-ribbon-grid a:nth-child(3) .service-icon {
    color: #2563eb;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(239, 246, 255, .74));
    border-color: rgba(37, 99, 235, .16);
}

.service-ribbon-grid a:nth-child(4) {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .42), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .20), transparent 24%),
        linear-gradient(135deg, rgba(190, 18, 60, .94), rgba(245, 158, 11, .88));
}

.service-ribbon-grid a:nth-child(4)::before {
    background: linear-gradient(180deg, #be123c, #f59e0b);
}

.service-ribbon-grid a:nth-child(4)::after {
    background: rgba(190, 18, 60, .08);
}

.service-ribbon-grid a:nth-child(4) .service-icon {
    color: #be123c;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 241, 242, .72));
    border-color: rgba(190, 18, 60, .16);
}

.service-ribbon-grid span {
    position: absolute;
    top: 16px;
    left: 18px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #0f766e;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 900;
}

.service-ribbon-grid a:nth-child(2) span {
    color: #c2415b;
    border-color: rgba(194, 65, 91, .14);
}

.service-ribbon-grid a:nth-child(3) span {
    color: #2563eb;
    border-color: rgba(37, 99, 235, .14);
}

.service-ribbon-grid a:nth-child(4) span {
    color: #be123c;
    border-color: rgba(190, 18, 60, .14);
}

.service-ribbon-grid strong {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.05;
}

.service-ribbon-grid em {
    width: fit-content;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    padding: 6px 10px;
    color: #0f766e;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.service-ribbon-grid a:nth-child(2) em {
    color: #c2415b;
    background: rgba(255, 255, 255, .88);
    border-color: rgba(255, 255, 255, .36);
}

.service-ribbon-grid a:nth-child(3) em {
    color: #2563eb;
    background: rgba(255, 255, 255, .88);
    border-color: rgba(255, 255, 255, .36);
}

.service-ribbon-grid a:nth-child(4) em {
    color: #be123c;
    background: rgba(255, 255, 255, .88);
    border-color: rgba(255, 255, 255, .36);
}

.service-ribbon-grid b {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 900;
}

@keyframes commandSweep {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRing {
    to {
        transform: rotate(352deg);
    }
}

@keyframes breathe {
    50% {
        transform: scale(1.08);
        opacity: .72;
    }
}

@keyframes floatVitrine {
    50% {
        transform: translateY(-10px);
    }
}

@keyframes livePulse {
    50% {
        box-shadow: 0 0 0 11px rgba(34, 197, 94, .06);
    }
}

@keyframes liveCopySwap {
    0% {
        opacity: .68;
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-list span,
.stack-card span,
.contact-note span,
.check-list span,
.admin-stats span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 78px 0;
}

#urunler {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #eefaf7 100%);
}

#urunler .section-heading {
    max-width: 900px;
    padding: 0 0 8px;
    color: var(--ink);
}

#urunler .section-heading .eyebrow,
#urunler .section-heading h2 {
    color: var(--ink);
}

#urunler .section-heading .text-accent {
    color: #0f766e;
}

#urunler .section-heading .text-warm {
    color: #c2415b;
}

.deal-section {
    padding: 36px 0 52px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 209, 102, .30), transparent 26%),
        radial-gradient(circle at 88% 24%, rgba(15, 118, 110, .22), transparent 24%),
        linear-gradient(180deg, #f8fbff, #effaf7);
}

.deal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, .62fr) minmax(240px, .62fr);
    gap: 18px;
}

.deal-card {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 28px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 4px 14px rgba(16, 24, 40, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 66px rgba(16, 24, 40, .13);
    border-color: rgba(255, 255, 255, .5);
}

.primary-deal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
    align-items: center;
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 209, 102, .55), transparent 24%),
        radial-gradient(circle at 16% 100%, rgba(94, 234, 212, .22), transparent 26%),
        linear-gradient(135deg, #071b2c, #0f766e 46%, #2563eb);
}

.deal-kicker,
.compact-deal span {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    color: #1f2937;
    background: #ffd166;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.deal-card h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 3vw, 42px);
}

.deal-card p {
    color: rgba(255, 255, 255, .82);
}

.deal-visual {
    min-height: 190px;
    border-radius: 10px;
    overflow: hidden;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .68), transparent 15%),
        linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
    transition: transform .3s ease;
}

.deal-card:hover .deal-visual {
    transform: scale(1.02);
}

.deal-visual img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: block;
    object-fit: contain;
    padding: 12px;
}

.deal-visual.is-empty::before {
    content: "assets/img/deal-hosting.png";
    height: 100%;
    min-height: 190px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .82);
    font-weight: 900;
    text-align: center;
}

.visual-showcase-section {
    padding: 42px 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 209, 102, .30), transparent 22%),
        radial-gradient(circle at 82% 24%, rgba(37, 99, 235, .20), transparent 25%),
        radial-gradient(circle at 46% 92%, rgba(15, 118, 110, .18), transparent 28%),
        linear-gradient(180deg, #eefaf7, #f8fbff);
}

.visual-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(180px, .7fr));
    gap: 18px;
    align-items: stretch;
}

.visual-showcase-grid article,
.visual-tile {
    min-height: 230px;
    border-radius: 8px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .58);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.visual-showcase-grid article {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 209, 102, .44), transparent 22%),
        radial-gradient(circle at 92% 14%, rgba(94, 234, 212, .20), transparent 26%),
        linear-gradient(135deg, rgba(7, 27, 44, .96), rgba(15, 118, 110, .88));
}

.visual-showcase-grid article::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -64px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
}

.visual-showcase-grid article .deal-kicker,
.visual-showcase-grid article h2,
.visual-showcase-grid article p {
    position: relative;
    z-index: 1;
}

.visual-showcase-grid article h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.designed-title {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: baseline;
}

.design-word {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: .98em;
    padding: 0 .08em;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-weight: 900;
    line-height: .95;
    isolation: isolate;
}

.design-word::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .02em;
    height: .26em;
    border-radius: 999px;
    opacity: .32;
    z-index: -1;
}

.design-word.hosting {
    color: #6ee7d8;
}

.design-word.hosting::after {
    background: #6ee7d8;
}

.design-word.domain {
    color: #bfdbfe;
    font-style: italic;
}

.design-word.domain::after {
    background: #60a5fa;
}

.design-word.chat {
    color: #fecdd3;
    font-size: 1.04em;
}

.design-word.chat::after {
    background: #fb7185;
}

.design-word.radio {
    color: #fde68a;
    font-style: italic;
}

.design-word.radio::after {
    background: #f59e0b;
}

.design-rest {
    display: inline;
    color: #ffffff;
}

.visual-showcase-grid article p {
    color: rgba(255, 255, 255, .78);
}

.visual-tile {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    color: #fff;
    isolation: isolate;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.visual-tile img {
    position: absolute;
    top: 54px;
    left: 50%;
    width: min(82%, 210px);
    height: calc(100% - 112px);
    transform: translateX(-50%);
    object-fit: contain;
    object-position: top center;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .32));
    transition: transform .24s ease, filter .24s ease;
}

.visual-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(7, 27, 44, .68)),
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .28), transparent 32%);
}

.visual-tile::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    pointer-events: none;
}

.visual-tile span,
.visual-tile strong {
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.visual-tile span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    color: #0f2742;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .86);
}

.visual-tile strong {
    width: calc(100% - 30px);
    margin: 0 15px 2px;
    padding: 13px 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    font-size: 22px;
    font-weight: 750;
    line-height: 1.08;
}

.visual-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .78);
    box-shadow: 0 28px 70px rgba(16, 24, 40, .17);
}

.visual-tile:hover img {
    transform: translateX(-50%) translateY(-6px) scale(1.035);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .38));
}

.tile-hosting {
    background:
        radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .38), transparent 20%),
        radial-gradient(circle at 80% 88%, rgba(94, 234, 212, .28), transparent 28%),
        linear-gradient(135deg, #2563eb, #0f766e);
}

.tile-domain {
    background:
        radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .38), transparent 20%),
        radial-gradient(circle at 78% 88%, rgba(255, 209, 102, .26), transparent 28%),
        linear-gradient(135deg, #f59e0b, #db2777);
}

.tile-radio {
    background:
        radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .38), transparent 20%),
        radial-gradient(circle at 78% 88%, rgba(219, 39, 119, .22), transparent 28%),
        linear-gradient(135deg, #0f766e, #16a34a);
}

.voicechat-section {
    padding: 56px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 209, 102, .24), transparent 24%),
        radial-gradient(circle at 90% 12%, rgba(37, 99, 235, .18), transparent 26%),
        linear-gradient(135deg, #071b2c 0%, #0f766e 54%, #f59e0b 140%);
}

.voicechat-grid {
    display: grid;
    grid-template-columns: minmax(280px, .88fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
}

.voicechat-copy {
    position: relative;
    z-index: 2;
    color: #fff;
}

.voicechat-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: .98;
}

.voicechat-title {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: baseline;
}

.voice-word {
    position: relative;
    display: inline-flex;
    padding: 0 .08em;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-weight: 900;
    isolation: isolate;
}

.voice-word::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .03em;
    height: .24em;
    border-radius: 999px;
    opacity: .30;
    z-index: -1;
}

.voice-word.live {
    color: #fde68a;
}

.voice-word.live::after {
    background: #f59e0b;
}

.voice-word.camera {
    color: #bfdbfe;
    font-style: italic;
}

.voice-word.camera::after {
    background: #60a5fa;
}

.voice-word.mic {
    color: #99f6e4;
}

.voice-word.mic::after {
    background: #2dd4bf;
}

.voice-rest {
    color: #fff;
}

.voicechat-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.voicechat-lead {
    padding: 16px 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
}

.voicechat-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.voicechat-feature-row span {
    position: relative;
    overflow: hidden;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    color: rgba(255, 255, 255, .94);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .065));
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.voicechat-feature-row span::after {
    content: "✦";
    position: absolute;
    right: 10px;
    top: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
}

.voicechat-feature-row span {
    padding-right: 24px;
}

.voicechat-feature-row span:nth-child(1) {
    color: #99f6e4;
}

.voicechat-feature-row span:nth-child(2) {
    color: #bfdbfe;
}

.voicechat-feature-row span:nth-child(3) {
    color: #fde68a;
}

.voicechat-feature-row span:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .38);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .09));
}

.voicechat-feature-row img {
    width: 38px;
    height: 38px;
    padding: 6px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    object-fit: contain;
    flex: 0 0 auto;
}

.voicechat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button.ghost.dark {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
    backdrop-filter: blur(14px);
}

.voicechat-stage {
    position: relative;
    min-height: 520px;
}

.voicechat-stage::before {
    content: "";
    position: absolute;
    inset: 46px 7% 34px 2%;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08)),
        radial-gradient(circle at 28% 18%, rgba(255, 209, 102, .44), transparent 22%);
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
    backdrop-filter: blur(20px);
}

.voicechat-pc,
.voicechat-mobile {
    position: absolute;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.voicechat-pc {
    width: 72%;
}

.voicechat-pc-light {
    top: 34px;
    left: 0;
    z-index: 2;
}

.voicechat-pc-dark {
    right: 18px;
    bottom: 44px;
    z-index: 1;
}

.voicechat-mobile {
    width: 22%;
    max-height: 360px;
    object-fit: cover;
}

.voicechat-mobile-light {
    right: 0;
    top: 0;
    z-index: 4;
}

.voicechat-mobile-dark {
    right: 96px;
    bottom: 0;
    z-index: 3;
}

.sms-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(11, 125, 227, .18), transparent 26%),
        radial-gradient(circle at 88% 22%, rgba(255, 159, 28, .20), transparent 24%),
        linear-gradient(180deg, #f8fbff, #eefaf7);
}

.sms-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(360px, .78fr);
    gap: 36px;
    align-items: center;
}

.sms-copy h2 {
    margin-bottom: 16px;
    color: #101828;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.02;
}

.sms-copy h2 span {
    color: #0b7de3;
    background: linear-gradient(90deg, #0b7de3, #ff9f1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sms-copy p {
    max-width: 680px;
    color: #475467;
    font-size: 18px;
}

.sms-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.sms-feature-row span {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #344054;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .07);
    font-weight: 850;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sms-feature-row span:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 125, 227, .2);
    box-shadow: 0 20px 42px rgba(16, 24, 40, .1);
}

.sms-feature-row b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #0b7de3, #ff9f1c);
    border-radius: 999px;
    font-size: 12px;
}

.sms-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sms-ghost {
    color: #0b7de3;
    background: #fff;
    border-color: rgba(11, 125, 227, .16);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.sms-ghost:hover {
    background: rgba(11, 125, 227, .04);
    border-color: rgba(11, 125, 227, .28);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(11, 125, 227, .08);
}

.sms-visual {
    position: relative;
    min-height: 430px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .42), transparent 22%),
        linear-gradient(135deg, #0b7de3, #0f766e 56%, #ff9f1c);
    border: 1px solid rgba(255, 255, 255, .58);
    box-shadow: 0 28px 70px rgba(16, 24, 40, .14);
    overflow: hidden;
}

.sms-visual::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
}

.sms-phone-card {
    position: absolute;
    left: 42px;
    top: 54px;
    width: min(72%, 330px);
    padding: 24px;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .22);
    backdrop-filter: blur(18px);
}

.sms-phone-card span {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    color: #0b7de3;
    background: rgba(255, 255, 255, .88);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.sms-phone-card strong {
    display: block;
    font-size: 32px;
    line-height: 1.05;
}

.sms-phone-card p {
    margin-top: 14px;
    color: rgba(255, 255, 255, .82);
}

.sms-metric {
    position: absolute;
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    color: #101828;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .50);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.sms-metric strong {
    color: #0b7de3;
    font-size: 24px;
    line-height: 1;
}

.sms-metric span {
    color: #667085;
    font-size: 12px;
    font-weight: 850;
}

.sms-metric-one {
    right: 34px;
    top: 66px;
}

.sms-metric-two {
    right: 54px;
    bottom: 84px;
}

.sms-bubbles {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sms-bubbles span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.compact-deal {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.compact-deal::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
    transition: transform .4s ease;
}

.compact-deal:hover::after {
    transform: scale(1.4);
}

.compact-deal strong {
    font-size: 25px;
    line-height: 1.08;
    position: relative;
    z-index: 1;
}

.compact-deal p {
    position: relative;
    z-index: 1;
}

.compact-deal.orange {
    background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .48), transparent 20%),
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, .18), transparent 24%),
        linear-gradient(135deg, #db2777, #f59e0b);
}

.compact-deal.blue {
    background:
        radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .48), transparent 20%),
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, .18), transparent 24%),
        linear-gradient(135deg, #2563eb, #0f766e);
}

.section-heading {
    position: relative;
    margin-bottom: 36px;
    padding-bottom: 16px;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #0f766e, rgba(15, 118, 110, .15));
}

.section-heading h2 {
    position: relative;
    z-index: 1;
}

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

.product-card {
    min-height: 306px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
    border-radius: 10px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(7, 27, 44, .10);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
    box-shadow: 0 26px 70px rgba(7, 27, 44, .18);
}

.product-card-head {
    min-height: 150px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .34), transparent 22%),
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 96%, #111827), color-mix(in srgb, var(--accent) 58%, #101828)),
        var(--accent);
}

.product-card-head::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .20);
}

.product-card-head > * {
    position: relative;
    z-index: 1;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-card p {
    color: var(--muted);
}

.product-category,
.price-label {
    color: inherit;
    font-weight: 900;
    font-size: 13px;
}

.product-category {
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
}

.price-label {
    margin-top: 4px;
    color: rgba(255, 255, 255, .9);
}

.mini-feature-list {
    display: grid;
    gap: 9px;
    margin: 12px 0 22px;
    padding: 0;
    list-style: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.mini-feature-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: start;
}

.mini-feature-list li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
}

.package-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 16px;
    color: #fff;
    background: var(--accent);
    border-radius: 8px;
    font-weight: 900;
}

.card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.card-actions .package-link {
    margin-top: 0;
}

.detail-link {
    color: var(--muted);
    font-weight: 900;
    transition: color .2s ease;
}

.detail-link:hover {
    color: #0f766e;
}

#urunler .section-heading {
    margin-bottom: 36px;
}

#urunler .product-grid {
    gap: 22px;
}

#urunler .product-card {
    position: relative;
    min-height: 380px;
    border-color: color-mix(in srgb, var(--accent) 16%, var(--line));
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 68%, color-mix(in srgb, var(--accent) 7%, #f8fbff) 100%);
    box-shadow: 0 18px 46px rgba(16, 24, 40, .08);
    backdrop-filter: none;
}

#urunler .product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 42%, #ffffff));
}

#urunler .product-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
    box-shadow: 0 26px 62px rgba(16, 24, 40, .12);
}

#urunler .product-card-head {
    min-height: 164px;
    justify-content: flex-start;
    padding: 26px 24px 20px;
    color: var(--ink);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, #ffffff), #ffffff);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
}

#urunler .product-card-head::after {
    right: 24px;
    top: 24px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, #ffffff), color-mix(in srgb, var(--accent) 26%, #ffffff));
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .62);
}

#urunler .product-card-body {
    padding: 22px 24px 24px;
}

#urunler .product-card p {
    margin-bottom: 0;
    font-size: 15px;
}

#urunler .product-category {
    padding: 6px 10px;
    color: color-mix(in srgb, var(--accent) 78%, #0f2742);
    border-color: color-mix(in srgb, var(--accent) 18%, var(--line));
    background: color-mix(in srgb, var(--accent) 8%, #ffffff);
}

#urunler .product-card h3 {
    max-width: calc(100% - 58px);
    margin-bottom: 12px;
    color: #101828;
    font-size: 25px;
    line-height: 1.08;
}

#urunler .price-label {
    width: fit-content;
    margin-top: auto;
    padding: 8px 10px;
    color: #344054;
    background: #f8fbff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

#urunler .mini-feature-list {
    gap: 10px;
    margin: 18px 0 24px;
    font-weight: 750;
}

#urunler .mini-feature-list li {
    grid-template-columns: 22px 1fr;
    gap: 10px;
}

#urunler .mini-feature-list li::before {
    content: "";
    width: 22px;
    height: 22px;
    background:
        linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 52%, #ffffff));
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .72);
}

#urunler .package-link {
    background:
        linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 78%, #101828));
    box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 22%, transparent);
    transition: transform .18s ease, box-shadow .18s ease;
}

#urunler .package-link:hover,
#urunler .package-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px color-mix(in srgb, var(--accent) 28%, transparent);
}

#urunler .detail-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    color: color-mix(in srgb, var(--accent) 76%, #344054);
}

/* Product card visual refresh: remove this block to return to the previous product-card look. */
#urunler .product-card {
    min-height: 410px;
    border-color: color-mix(in srgb, var(--accent) 20%, rgba(255, 255, 255, .86));
    background:
        radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 251, 255, .86));
    box-shadow: 0 22px 58px rgba(16, 24, 40, .10), inset 0 1px 0 rgba(255, 255, 255, .86);
    backdrop-filter: blur(16px);
}

#urunler .product-card::before {
    height: 7px;
    background:
        linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 38%, #ff9f1c), color-mix(in srgb, var(--accent) 28%, #0b7de3));
}

#urunler .product-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    pointer-events: none;
}

#urunler .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 74px rgba(16, 24, 40, .15), inset 0 1px 0 rgba(255, 255, 255, .94);
}

#urunler .product-card-head {
    min-height: 172px;
    padding: 28px 24px 22px;
    background:
        radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, #ffffff), rgba(255, 255, 255, .92));
}

#urunler .product-card-head::after {
    width: 50px;
    height: 50px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .84), color-mix(in srgb, var(--accent) 22%, #ffffff));
    box-shadow: 0 12px 28px rgba(16, 24, 40, .07), inset 0 0 0 7px rgba(255, 255, 255, .66);
}

#urunler .product-category {
    color: color-mix(in srgb, var(--accent) 84%, #0f2742);
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 10px 22px rgba(16, 24, 40, .055);
}

#urunler .product-card h3 {
    font-size: 27px;
    font-weight: 850;
}

#urunler .price-label {
    color: color-mix(in srgb, var(--accent) 76%, #344054);
    background: rgba(255, 255, 255, .78);
    border-color: color-mix(in srgb, var(--accent) 16%, var(--line));
    box-shadow: 0 10px 24px rgba(16, 24, 40, .055);
}

#urunler .product-card-body {
    position: relative;
    z-index: 1;
    padding: 24px;
}

#urunler .product-card p {
    color: #475467;
    line-height: 1.62;
}

#urunler .mini-feature-list {
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
    border-radius: 8px;
    background: rgba(255, 255, 255, .56);
}

#urunler .mini-feature-list li {
    font-weight: 760;
}

#urunler .package-link {
    min-height: 46px;
    background:
        linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 58%, #0b7de3));
}

#urunler .card-actions {
    gap: 12px;
}

#urunler .detail-link {
    color: color-mix(in srgb, var(--accent) 82%, #0f2742);
}

.split-section,
.contact-section,
.admin-login-section,
.admin-section {
    background: var(--soft);
}

.vivid-section {
    color: #fff;
    background:
        radial-gradient(circle at 16% 24%, rgba(94, 234, 212, .20), transparent 24%),
        radial-gradient(circle at 84% 68%, rgba(255, 209, 102, .20), transparent 24%),
        linear-gradient(135deg, #0f2742, #14213d 54%, #0f4f57);
}

.vivid-section .eyebrow,
.vivid-section .split-grid p {
    color: rgba(255, 255, 255, .78);
}

.vivid-section .text-accent {
    color: #5eead4;
}

.vivid-section .check-list div {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vivid-section .check-list div:hover {
    transform: translateX(6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .24);
}

.vivid-check.teal {
    background: linear-gradient(135deg, #0f766e, #2563eb);
}

.vivid-check.blue {
    background: linear-gradient(135deg, #2563eb, #0f766e);
}

.vivid-check.amber {
    background: linear-gradient(135deg, #f59e0b, #be123c);
}

.vivid-section .check-list span {
    color: rgba(255, 255, 255, .78);
}

.split-grid,
.detail-grid,
.contact-grid,
.cta-grid,
.auth-grid {
    grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
    align-items: start;
}

.check-list,
.feature-grid {
    display: grid;
    gap: 14px;
}

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

.proof-section {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 209, 102, .22), transparent 24%),
        radial-gradient(circle at 84% 22%, rgba(15, 118, 110, .18), transparent 24%),
        linear-gradient(180deg, #ffffff, #eefaf7);
}

.proof-section .section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.proof-title {
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
}

.proof-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: grid;
    gap: 2px;
    min-width: 198px;
    padding: 14px 18px 14px 54px;
    color: #fff;
    background:
        radial-gradient(circle at 22px 50%, rgba(255, 255, 255, .28), transparent 18px),
        linear-gradient(135deg, #16a34a, #0f766e);
    border-radius: 999px;
    box-shadow: 0 18px 46px rgba(22, 163, 74, .30);
    font-weight: 900;
}

.whatsapp-float::before {
    content: "WA";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-top: -16px;
    color: #0f766e;
    background: #fff;
    border-radius: 999px;
    font-size: 11px;
}

.whatsapp-float span {
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.whatsapp-float strong {
    font-size: 15px;
    line-height: 1.1;
}

blockquote {
    margin: 0;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 248, 251, .98));
    box-shadow: 0 18px 48px rgba(16, 24, 40, .08);
}

.proof-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 12px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.proof-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .95;
}

.proof-card-1 {
    border-color: rgba(15, 118, 110, .18);
}

.proof-card-1::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .44), transparent 20%),
        linear-gradient(135deg, rgba(15, 118, 110, .16), rgba(37, 99, 235, .10));
}

.proof-card-2 {
    border-color: rgba(245, 158, 11, .2);
}

.proof-card-2::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .44), transparent 20%),
        linear-gradient(135deg, rgba(245, 158, 11, .18), rgba(219, 39, 119, .10));
}

.proof-card-3 {
    border-color: rgba(37, 99, 235, .18);
}

.proof-card-3::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .44), transparent 20%),
        linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(15, 118, 110, .14));
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 66px rgba(16, 24, 40, .14);
}

.proof-card-1:hover { border-color: rgba(15, 118, 110, .3); }
.proof-card-2:hover { border-color: rgba(245, 158, 11, .32); }
.proof-card-3:hover { border-color: rgba(37, 99, 235, .3); }

.proof-badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.proof-card-1 .proof-badge {
    color: #0f766e;
    background: rgba(15, 118, 110, .12);
}

.proof-card-2 .proof-badge {
    color: #b45309;
    background: rgba(245, 158, 11, .14);
}

.proof-card-3 .proof-badge {
    color: #1d4ed8;
    background: rgba(37, 99, 235, .12);
}

.proof-card p {
    color: #344054;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.proof-card cite {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 7px 14px;
    color: #fff;
    border-radius: 999px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
}

.proof-card-1 cite { background: linear-gradient(135deg, #0f766e, #0d9488); }
.proof-card-2 cite { background: linear-gradient(135deg, #d97706, #f59e0b); }
.proof-card-3 cite { background: linear-gradient(135deg, #2563eb, #3b82f6); }

blockquote p {
    color: var(--muted);
}

blockquote cite {
    color: var(--ink);
    font-style: normal;
    font-weight: 900;
}

.product-hero {
    padding: 82px 0;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, #ffffff), transparent 50%),
        linear-gradient(180deg, #f8fbff, #ffffff);
}

.quote-box {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .08);
}

.quote-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 40%, #ffffff));
}

.quote-box span {
    color: var(--muted);
    font-weight: 800;
}

.quote-box strong {
    display: block;
    margin: 10px 0;
    color: #101828;
    font-size: 30px;
    line-height: 1.1;
}

.product-side {
    display: grid;
    gap: 18px;
    align-self: start;
}

.product-hero-visual,
.product-card-visual {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, .72));
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .48)),
        color-mix(in srgb, var(--accent) 8%, #ffffff);
    box-shadow: 0 18px 44px rgba(16, 24, 40, .08);
}

.product-hero-visual {
    border-radius: 14px;
}

.product-hero-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 1.48;
    object-fit: cover;
}

.package-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 122, 61, .16), transparent 24%),
        radial-gradient(circle at 86% 20%, rgba(15, 118, 110, .16), transparent 24%),
        linear-gradient(180deg, #f6f8fb, #eef4f8);
}

.package-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .40) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .38;
    pointer-events: none;
}

.package-section > .container {
    position: relative;
    z-index: 1;
}

.section-head.centered {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 34px;
}

.section-head.centered p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.package-card {
    position: relative;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 12px;
    min-height: 100%;
    padding: 30px 22px 22px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .88));
    border: 1px solid color-mix(in srgb, var(--package-accent) 22%, var(--line));
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--package-accent), color-mix(in srgb, var(--package-accent) 36%, #ffffff));
    border-radius: 8px 8px 0 0;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--package-accent);
    box-shadow: 0 26px 70px rgba(16, 24, 40, .16);
}

.package-card.featured {
    outline: 2px solid var(--package-accent);
    transform: translateY(-10px);
}

.package-card.featured:hover {
    transform: translateY(-14px);
}

.package-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #fff;
    background: var(--package-accent);
    border-radius: 999px;
    box-shadow: 0 12px 26px color-mix(in srgb, var(--package-accent) 36%, transparent);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.package-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, .34), transparent 32%),
        var(--package-accent);
    border-radius: 16px;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--package-accent) 30%, transparent);
    font-size: 26px;
}

.package-card h3 {
    margin: 4px 0 0;
    color: #182230;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: .2px;
    text-transform: uppercase;
}

.package-card p {
    min-height: 42px;
    max-width: 220px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 5px;
    width: 100%;
    margin-top: 2px;
    color: var(--muted);
}

.package-price strong {
    color: #ff7a3d;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 10px 24px rgba(255, 122, 61, .16);
}

.package-price span {
    padding-bottom: 5px;
    color: #667085;
    font-size: 12px;
    font-weight: 900;
}

.package-discount {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    padding: 0 10px;
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(16, 185, 129, .22);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: lowercase;
}

.package-card .button {
    width: 100%;
    margin: 4px 0 8px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .30), transparent 22%),
        linear-gradient(135deg, #263447, #111827);
    box-shadow: 0 14px 30px rgba(17, 24, 39, .20);
}

.package-features {
    width: 100%;
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.package-features li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #344054;
    border-top: 1px solid rgba(16, 24, 40, .08);
    font-size: 13px;
    font-weight: 700;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: 900;
}

.product-card-visual {
    margin: 0 22px 18px;
    border-radius: 12px;
    aspect-ratio: 1.8;
    background: linear-gradient(135deg, rgba(255,255,255,.5), rgba(248,251,255,.3));
    border: 1px solid rgba(16,24,40,.06);
    transition: border-color .3s ease, background .3s ease;
    overflow: hidden;
}

.product-card:hover .product-card-visual {
    border-color: rgba(15,118,110,.14);
    background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(248,251,255,.5));
}

.product-card-visual img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    transition: transform .45s ease;
}

.product-card:hover .product-card-visual img {
    transform: scale(1.05);
}

.product-card-visual.is-empty {
    display: none;
}

.feature-item {
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 26px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(15, 118, 110, .14);
    border-color: var(--teal);
}

textarea {
    resize: vertical;
}

.alert {
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.alert.success {
    color: #14532d;
    background: #dcfce7;
}

.alert.error {
    color: #7f1d1d;
    background: #fee2e2;
}

.form-hint {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.store-shell {
    min-height: calc(100vh - 78px);
    background: var(--soft);
}

.store-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 44px 0 24px;
}

.store-heading h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(34px, 5vw, 56px);
}

.store-heading p {
    max-width: 780px;
    color: var(--muted);
}

.store-frame-wrap {
    width: min(1320px, calc(100% - 32px));
    height: min(840px, calc(100vh - 250px));
    min-height: 560px;
    margin: 0 auto 48px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.store-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.store-redirect-card {
    display: grid;
    gap: 10px;
    margin-bottom: 56px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.store-redirect-card a {
    color: var(--teal);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.store-redirect-card p {
    margin: 0;
    color: var(--muted);
}

.admin-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.admin-panels {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.admin-card {
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 4px 12px rgba(16,24,40,.04);
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.admin-card:hover {
    box-shadow: 0 4px 16px rgba(16,24,40,.08);
    border-color: rgba(15, 118, 110, .14);
    transform: translateY(-1px);
}

.admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(16, 24, 40, .06);
}

.admin-card-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 650;
    color: #1e293b;
    letter-spacing: -.2px;
}

.admin-card-head span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.admin-card-head a {
    color: #0f766e;
    font-size: 13px;
    font-weight: 600;
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 48px 20px;
    color: #98a2b3;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, .06), rgba(37, 99, 235, .04));
    border: 1.5px dashed rgba(16, 24, 40, .10);
    border-radius: 10px;
    margin: 0;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

th,
td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(16, 24, 40, .05);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

th {
    color: #718096;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .3px;
    text-transform: uppercase;
    background: rgba(248, 251, 255, .5);
}

td {
    color: #405367;
}

td small {
    display: block;
    max-width: 520px;
    color: #98a2b3;
    font-size: 12px;
    margin-top: 2px;
}

tbody tr {
    transition: background .15s ease;
}

tbody tr:hover td {
    background: rgba(15, 118, 110, .04);
}

tbody tr:last-child td {
    border-bottom: 0;
}

.status-pill {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #17594f;
    background: #dff7f1;
    font-size: 13px;
    font-weight: 800;
}

.admin-product-list {
    display: grid;
    gap: 10px;
}

.admin-product-list > div {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(15, 118, 110, .08), rgba(37, 99, 235, .06));
    border: 1px solid rgba(15, 118, 110, .14);
    border-radius: 10px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.admin-product-list > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 24, 40, .08);
    border-color: rgba(15, 118, 110, .22);
    background: linear-gradient(135deg, rgba(15, 118, 110, .11), rgba(37, 99, 235, .09));
}

.admin-product-list strong {
    display: block;
    color: #26384d;
    font-size: 15px;
    font-weight: 690;
}

.admin-product-list span {
    display: block;
    color: #718096;
    font-size: 13px;
    font-weight: 500;
}

.settings-form {
    display: grid;
    gap: 16px;
}

.settings-group {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(15, 118, 110, .18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 94% 14%, rgba(255, 209, 102, .22), transparent 24%),
        linear-gradient(135deg, rgba(15, 118, 110, .08), rgba(37, 99, 235, .06));
}

.settings-group h2 {
    margin: 0;
    font-size: 18px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

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

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

.check-control {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.check-control input {
    width: auto;
}

.toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.compact-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
}

.checkout-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.order-list {
    display: grid;
    gap: 14px;
}

.order-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.order-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.order-head small,
.order-card small {
    display: block;
    color: var(--muted);
}

.plain-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
}

.download-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.download-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.status-approved {
    color: #14532d;
    background: #dcfce7;
}

.status-rejected {
    color: #7f1d1d;
    background: #fee2e2;
}

.status-pending {
    color: #713f12;
    background: #fef3c7;
}



.admin-package-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr);
    gap: 18px;
}

.admin-package-list {
    display: grid;
    gap: 12px;
}

.admin-package-list article {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--package-accent) 10%, #ffffff), #ffffff);
    border: 1px solid color-mix(in srgb, var(--package-accent) 18%, var(--line));
    border-left: 5px solid var(--package-accent);
    border-radius: 10px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.admin-package-list article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
    border-color: color-mix(in srgb, var(--package-accent) 30%, var(--line));
}

.admin-package-list article.is-passive {
    opacity: .58;
}

.admin-package-list strong,
.admin-package-list span,
.admin-package-list small {
    display: block;
}

.admin-package-list span,
.admin-package-list small {
    color: var(--muted);
    font-size: 13px;
}

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

.analytics-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .65fr);
    gap: 18px;
}

.analytics-grid .admin-card:nth-child(5),
.analytics-grid .admin-card:nth-child(6) {
    grid-column: 1 / -1;
}

.analytics-list {
    display: grid;
    gap: 10px;
}

.analytics-list div {
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .08), rgba(37, 99, 235, .06));
    border: 1px solid rgba(15, 118, 110, .14);
    border-radius: 8px;
}

.analytics-list strong,
.analytics-list span {
    display: block;
}

.analytics-list strong {
    overflow-wrap: anywhere;
}

.analytics-list span {
    color: var(--muted);
    font-size: 13px;
}

/* Softer admin pages: shared polish for settings, products, orders, leads and reports. */
.admin-body {
    color: #334155;
    background: #f5f7fa;
}

.admin-page-head {
    padding: 12px 0 16px;
    margin-bottom: 6px;
}

.admin-page-head h1 {
    color: #1e293b;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -.3px;
}

.admin-page-head p {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.admin-body .eyebrow {
    color: #0f766e;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 4px;
}



.admin-body input,
.admin-body select,
.admin-body textarea {
    color: #475569;
    font-weight: 450;
    background: rgba(255, 255, 255, .92);
    border-color: rgba(16, 24, 40, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .80);
}

.admin-body input::placeholder,
.admin-body textarea::placeholder {
    color: #94a3b8;
}

.settings-form {
    gap: 18px;
}

.settings-group {
    gap: 16px;
    padding: 20px;
    background: rgba(15,118,110,.04);
    border-color: rgba(15, 118, 110, .1);
    box-shadow: none;
}

.settings-group h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
}

.settings-group h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .08);
}

.settings-group h2::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #ff9f1c);
    box-shadow: 0 0 0 5px rgba(15, 118, 110, .08);
}

.order-card,
.analytics-list div,
.admin-package-list article {
    background: #fff;
    border-color: rgba(16, 24, 40, .07);
    box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 4px 12px rgba(16,24,40,.04);
}

.order-head strong,
.analytics-list strong,
.admin-package-list strong,
td strong {
    color: #334155;
    font-weight: 650;
}

.order-head small,
.order-card small,
.admin-package-list span,
.admin-package-list small,
td small {
    color: #64748b;
    font-weight: 450;
}

.status-pill,
.alert {
    font-weight: 650;
}

.check-control {
    color: #475569;
    background: rgba(255, 255, 255, .86);
    border-color: rgba(16, 24, 40, .09);
    font-weight: 620;
}

.cta-band {
    padding: 64px 0;
    color: #fff;
    background: linear-gradient(135deg, #071b2c, #0f4f57);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 50%, rgba(15, 118, 110, .3), transparent 40%);
    pointer-events: none;
}

.cta-band h2 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 50%, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-band .eyebrow {
    color: #fbbf24;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.cta-band p {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.6;
}

.cta-grid {
    align-items: center;
}

.cta-grid .button {
    justify-self: end;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 58px 0 26px;
    background:
        radial-gradient(circle at 18% 18%, rgba(15, 118, 110, .34), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(219, 39, 119, .22), transparent 24%),
        linear-gradient(135deg, #071b2c, #0f2742 58%, #0b3d48);
    color: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94,234,212,.4), rgba(96,165,250,.4), transparent);
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(210px, .55fr) minmax(250px, .65fr);
    gap: 18px;
    align-items: stretch;
}

.footer-brand-block,
.footer-links,
.footer-contact-card {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
}

.footer-brand-block {
    padding: 26px;
}

.footer-links,
.footer-contact-card {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 24px;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .26));
}

.site-footer p,
.site-footer span,
.site-footer a {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.site-footer p,
.site-footer span {
    color: rgba(255, 255, 255, .7);
}

.site-footer span {
    display: block;
    font-size: 13px;
}

/* ---- Brand Block ---- */

.footer-brand-block p,
.footer-desc {
    max-width: 620px;
    margin-bottom: 18px;
    color: #fef3c7;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: .2px;
}

.footer-brand-block em,
.footer-brand-block .highlight {
    color: #fbbf24;
    font-style: normal;
    font-weight: 500;
}

.footer-desc strong {
    color: #fcd34d;
    font-weight: 600;
}

/* ---- Note Box ---- */

.footer-note {
    max-width: 640px;
    padding: 16px 18px;
    border: 1px solid rgba(94, 234, 212, .12);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .2), rgba(37, 99, 235, .08));
    transition: border-color .25s ease, box-shadow .25s ease;
}

.footer-note:hover {
    border-color: rgba(94, 234, 212, .25);
    box-shadow: 0 0 24px rgba(94, 234, 212, .06);
}

.footer-note-label {
    margin-bottom: 4px;
    color: #2dd4bf;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-note-text {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-note-text strong,
.footer-note-text em {
    color: #fbbf24;
    font-style: normal;
}

/* ---- Section Titles (Hizmetler, İletişim) ---- */

.footer-links > span,
.footer-contact-card > span {
    margin-bottom: 6px;
    color: #2dd4bf;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 6px;
}

.footer-links > span::after,
.footer-contact-card > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2dd4bf, rgba(45, 212, 191, .15));
}

/* ---- Contact Item Containers ---- */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    transition: background .2s ease, border-color .2s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(94, 234, 212, .15);
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    transition: color .2s ease, transform .2s ease;
}

.footer-contact-item:nth-child(2) .footer-contact-icon {
    color: #2dd4bf;
}

.footer-contact-item:nth-child(3) .footer-contact-icon {
    color: #60a5fa;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.15);
}

/* ---- Link Items (Services & Contact) ---- */

.footer-contact-item a,
.footer-links a,
.footer-contact-card > a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    gap: 10px;
}

/* Contact-item inner links override (clean no-button look) */

.footer-contact-item a {
    min-height: unset;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-weight: 500;
    transition: color .2s ease;
}

.footer-contact-item:nth-child(2) a {
    color: #ccfbf1;
}

.footer-contact-item:nth-child(3) a {
    color: #bfdbfe;
}

.footer-contact-item a:hover {
    background: none;
    border-color: transparent;
    color: #fff;
}

.footer-links a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 auto;
    transition: transform .2s ease, box-shadow .2s ease;
}

.footer-links a:nth-child(2)::before { background: #2dd4bf; box-shadow: 0 0 0 3px rgba(45, 212, 191, .15); }
.footer-links a:nth-child(3)::before { background: #60a5fa; box-shadow: 0 0 0 3px rgba(96, 165, 250, .15); }
.footer-links a:nth-child(4)::before { background: #a78bfa; box-shadow: 0 0 0 3px rgba(167, 139, 250, .15); }
.footer-links a:nth-child(5)::before { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251, 191, 36, .15); }
.footer-links a:nth-child(6)::before { background: #fb7185; box-shadow: 0 0 0 3px rgba(251, 113, 133, .15); }

.footer-links a:nth-child(2) { color: #ccfbf1; }
.footer-links a:nth-child(3) { color: #dbeafe; }
.footer-links a:nth-child(4) { color: #ede9fe; }
.footer-links a:nth-child(5) { color: #fef3c7; }
.footer-links a:nth-child(6) { color: #ffe4e6; }

.footer-links a:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(45, 212, 191, .12);
}

.footer-links a:hover,
.footer-contact-card a:hover {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(94, 234, 212, .15);
}

/* ---- WhatsApp ---- */

.footer-whatsapp {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(22, 163, 74, .25), rgba(15, 118, 110, .15)) !important;
    border-color: rgba(22, 163, 74, .2) !important;
    color: #dff7f1 !important;
    font-weight: 700 !important;
}

.footer-whatsapp:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(22, 163, 74, .35), rgba(15, 118, 110, .22)) !important;
    border-color: rgba(22, 163, 74, .3) !important;
}

.footer-whatsapp svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #4ade80;
}

/* ---- Bottom Bar ---- */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom span {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    font-weight: 500;
}

.footer-bottom-tags {
    color: rgba(255, 255, 255, .4) !important;
    font-weight: 400 !important;
    letter-spacing: .3px;
}

.footer-bottom strong,
.footer-bottom .brand-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.footer-backtotop {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 118, 110, .85);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(94, 234, 212, .2);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}

.footer-backtotop svg {
    width: 20px;
    height: 20px;
}

.footer-backtotop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-backtotop:hover {
    background: rgba(15, 118, 110, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, .35);
}

.narrow {
    max-width: 760px;
}

/* ---- Professional Admin Additions ---- */

/* --- Duration Price Preview --- */
.price-preview-grid {
    display: grid;
    gap: 8px;
}

.price-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(15, 118, 110, .06), rgba(37, 99, 235, .04));
    border: 1px solid rgba(15, 118, 110, .10);
    transition: transform .15s ease, box-shadow .15s ease;
}

.price-preview-row:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(16, 24, 40, .06);
}

.price-preview-row.is-active {
    background: linear-gradient(135deg, rgba(15, 118, 110, .12), rgba(37, 99, 235, .08));
    border-color: rgba(15, 118, 110, .22);
}

.price-preview-label {
    color: #405367;
    font-weight: 650;
    font-size: 13px;
}

.price-preview-value {
    color: #0f766e;
    font-weight: 800;
    font-size: 15px;
}

.price-preview-savings {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    color: #14532d;
    background: rgba(34, 197, 94, .12);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* --- Duration Selector (product page) --- */
.duration-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 10px 0;
}

.duration-chip {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    border: 1.5px solid rgba(16, 24, 40, .10);
    background: rgba(255, 255, 255, .70);
    color: #667789;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s ease;
}

.duration-chip:hover {
    border-color: rgba(15, 118, 110, .24);
    color: #0f766e;
    background: rgba(255, 255, 255, .90);
}

.duration-chip.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 118, 110, .20);
}

.package-price .duration-total {
    display: block;
    color: #667789;
    font-size: 13px;
    font-weight: 600;
    margin-top: 2px;
}

/* --- Admin inline form group --- */
.inline-form {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(16, 24, 40, .06);
}

.dashboard-charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.dashboard-chart-card .admin-card-head {
    margin-bottom: 14px;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 200px;
}

.chart-container.tall-chart {
    height: 260px;
}

.chart-container.small-chart {
    height: 130px;
}

.funnel-container {
    display: grid;
    gap: 8px;
    padding: 8px 0;
}

.funnel-container.wide {
    gap: 10px;
    padding: 10px 0;
}

.funnel-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    background: rgba(15,118,110,.06);
    border: 1px solid rgba(15,118,110,.1);
    border-radius: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.funnel-step:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.1);
}

.funnel-step.is-final {
    background: rgba(15,118,110,.1);
    border-color: rgba(15, 118, 110, .18);
}

.funnel-label {
    color: #475569;
    font-weight: 600;
    font-size: 12px;
}

.funnel-value {
    color: #0f766e;
    font-weight: 700;
    font-size: 13px;
}

.order-filter-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    color: #667789;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(16, 24, 40, 0.10);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 620;
    text-decoration: none;
    transition: all 0.15s ease;
}

.filter-chip:hover {
    color: #1d2f45;
    background: rgba(255, 255, 255, 0.90);
    border-color: rgba(15, 118, 110, 0.25);
}

.filter-chip.active {
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    border-color: transparent;
}

.filter-chip.pending.active { background: linear-gradient(135deg, #d97706, #f59e0b); }
.filter-chip.approved.active { background: linear-gradient(135deg, #059669, #10b981); }
.filter-chip.rejected.active { background: linear-gradient(135deg, #dc2626, #ef4444); }

.search-input {
    min-width: 240px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.order-amount {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.10);
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
}

.order-head-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.order-note {
    margin: 4px 0 0;
    padding: 10px;
    color: #667789;
    background: rgba(255, 209, 102, 0.12);
    border: 1px solid rgba(255, 209, 102, 0.20);
    border-radius: 6px;
    font-size: 13px;
    font-style: italic;
}

.order-stats-breakdown {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(16, 24, 40, 0.07);
    border-radius: 8px;
}

.breakdown-item span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667789;
    font-size: 13px;
}

.breakdown-item strong {
    color: #1d2f45;
    font-size: 15px;
}

.breakdown-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.breakdown-dot.pending { background: #fbbf24; }
.breakdown-dot.approved { background: #34d399; }
.breakdown-dot.rejected { background: #fca5a5; }
.breakdown-dot.total { background: linear-gradient(135deg, #0f766e, #2563eb); }

/* ============================================================
   PROFESSIONAL ADMIN ENHANCEMENTS (v2)
   ============================================================ */

/* --- Sidebar Icons --- */
.admin-menu .menu-icon,
.admin-sidebar-actions .menu-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    opacity: .7;
    transition: opacity .2s ease;
}

.admin-menu a:hover .menu-icon,
.admin-menu a.active .menu-icon,
.admin-sidebar-actions a:hover .menu-icon {
    opacity: 1;
}

.admin-menu a,
.admin-sidebar-actions a {
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    transition: background .2s ease, color .2s ease, transform .15s ease;
}

.admin-menu a:hover {
    transform: translateX(4px);
}

.admin-menu a.active {
    background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
    box-shadow: inset 2px 0 0 #5eead4;
}

/* --- Sidebar Mobile Toggle --- */
.admin-menu-toggle {
    display: none;
    position: fixed;
    z-index: 30;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    padding: 8px;
    color: #1d2f45;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(16,24,40,.12);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(16,24,40,.10);
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease;
}

.admin-menu-toggle:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,24,40,.14);
}

.admin-menu-toggle svg {
    width: 24px;
    height: 24px;
    display: block;
}

.admin-sidebar-close {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.admin-sidebar-close:hover {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(7,27,44,.54);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .3s ease;
}

.admin-sidebar-overlay.is-visible {
    opacity: 1;
}

@media (max-width: 1040px) {
    .admin-menu-toggle {
        display: block;
    }
    .admin-sidebar-close {
        display: block;
    }
    .admin-sidebar-overlay {
        display: block;
        pointer-events: none;
    }
    .admin-sidebar-overlay.is-visible {
        pointer-events: auto;
    }
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(.2,.8,.2,1);
    }
    .admin-sidebar.is-open {
        transform: translateX(0);
    }
    .admin-body .admin-main {
        margin-left: 0;
    }
    .admin-top {
        padding-left: 68px;
    }
}

/* --- Enhanced Status Pills --- */
.status-pill {
    min-height: 26px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    text-transform: uppercase;
    border-radius: 6px;
}

/* --- Better Form Inputs --- */
.admin-body input,
.admin-body select,
.admin-body textarea {
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 450;
    color: #475569;
    border-radius: 8px;
    border: 1.5px solid rgba(16,24,40,.08);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.admin-body input:hover,
.admin-body select:hover,
.admin-body textarea:hover {
    border-color: rgba(15,118,110,.18);
    background: #fff;
}

.admin-body input:focus,
.admin-body select:focus,
.admin-body textarea:focus {
    border-color: #0f766e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(15,118,110,.08);
    background: #fff;
}

.admin-body label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.admin-body .form-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #98a2b3;
}

.admin-body .check-control {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(16,24,40,.08);
    background: rgba(255,255,255,.7);
    transition: border-color .2s ease, background .2s ease;
    font-size: 13px;
    color: #475569;
    font-weight: 450;
}

.admin-body .check-control:hover {
    border-color: rgba(15,118,110,.18);
    background: #fff;
}

.admin-body .check-control input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0f766e;
}

/* --- Better Buttons --- */
.button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s ease;
}

.button.primary {
    background: #0f766e;
    box-shadow: 0 4px 16px rgba(15,118,110,.2);
    border: none;
    color: #fff;
}

.button.primary:hover {
    background: #0d9488;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15,118,110,.28);
}

.button.primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(15,118,110,.16);
}

.button.ghost {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    background: rgba(255,255,255,.8);
    border: 1.5px solid rgba(16,24,40,.08);
    color: #475569;
    transition: all .2s ease;
}

.button.ghost:hover {
    background: #fff;
    border-color: rgba(15,118,110,.18);
    color: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16,24,40,.08);
}

.button.light {
    background: #fff;
    color: #0f2742;
    border: 1px solid rgba(16,24,40,.08);
}

.button.light:hover {
    background: #f8fafc;
    border-color: rgba(15,118,110,.18);
    color: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16,24,40,.08);
}

.compact-button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
}

/* --- Enhanced Dashboard Stats --- */
.admin-stats.dashboard-stats div {
    position: relative;
    border-radius: 12px;
    padding: 18px 18px 18px 16px;
    border: 1px solid rgba(16,24,40,.07);
    border-left: 4px solid;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.admin-stats.dashboard-stats div:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,24,40,.08);
}

.admin-stats.dashboard-stats div:nth-child(1) { border-left-color: #f59e0b; }
.admin-stats.dashboard-stats div:nth-child(2) { border-left-color: #3b82f6; }
.admin-stats.dashboard-stats div:nth-child(3) { border-left-color: #10b981; }
.admin-stats.dashboard-stats div:nth-child(4) { border-left-color: #8b5cf6; }
.admin-stats.dashboard-stats div:nth-child(5) { border-left-color: #0f766e; }
.admin-stats.dashboard-stats div:nth-child(6) { border-left-color: #ef4444; }

.admin-stats.dashboard-stats strong {
    font-size: 26px;
    font-weight: 750;
    line-height: 1.1;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
}

.admin-stats.dashboard-stats div:nth-child(1) strong { color: #d97706; }
.admin-stats.dashboard-stats div:nth-child(2) strong { color: #2563eb; }
.admin-stats.dashboard-stats div:nth-child(3) strong { color: #059669; }
.admin-stats.dashboard-stats div:nth-child(4) strong { color: #7c3aed; }
.admin-stats.dashboard-stats div:nth-child(5) strong { color: #0f766e; }
.admin-stats.dashboard-stats div:nth-child(6) strong { color: #dc2626; }

.admin-stats.dashboard-stats span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #64748b;
}

.admin-stats.dashboard-stats small {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 450;
}

/* --- Analytics Stats Cards --- */
.analytics-stats div {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(16,24,40,.07);
    background: #fff;
    box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 4px 12px rgba(16,24,40,.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.analytics-stats div:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16,24,40,.08);
}

.analytics-stats strong {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.analytics-stats span {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    margin-top: 4px;
}

/* --- Enhanced Order Cards --- */
.order-card {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(16,24,40,.07);
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.86));
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16,24,40,.08);
    border-color: rgba(15,118,110,.12);
}

.order-head strong {
    font-size: 15px;
    font-weight: 700;
    color: #1d2f45;
}

.order-card .plain-list li {
    padding: 6px 0;
    font-size: 13px;
    color: #4a5a6e;
    border-bottom: 1px solid rgba(16,24,40,.04);
}

.order-card .plain-list li:last-child {
    border-bottom: 0;
}

.order-card .settings-form.inline-form {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(16,24,40,.06);
}

.order-card textarea {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    min-height: 50px;
}

/* --- Funnel Enhancements --- */
.funnel-step {
    border-radius: 8px;
    min-height: 40px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.funnel-step:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(15,118,110,.1);
}

.funnel-label {
    font-weight: 600;
    font-size: 12px;
}

.funnel-value {
    font-weight: 700;
    font-size: 13px;
}

/* --- Filter Chips --- */
.filter-chip {
    min-height: 30px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 650;
    border-radius: 8px;
    transition: all .2s ease;
}

.filter-chip.active {
    font-weight: 700;
}

/* --- Search Input --- */
.search-input {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 450;
    color: #475569;
    border-radius: 8px;
    border: 1.5px solid rgba(16,24,40,.08);
    background: rgba(255,255,255,.7);
    transition: all .2s ease;
}

.search-input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15,118,110,.08);
    background: #fff;
}

/* --- Admin Page Head Enhanced --- */
.admin-page-head {
    margin-bottom: 8px;
}

.admin-page-head h1 {
    font-weight: 650;
}

/* --- Settings Group Enhancements --- */
.settings-group {
    border-radius: 12px;
    padding: 22px;
}

/* --- Dashboard Hero Enhancements --- */
.dashboard-hero {
    border-radius: 14px;
    padding: 32px;
}

.dashboard-hero h1 {
    font-weight: 850;
    letter-spacing: -.5px;
}

.dashboard-focus-card {
    border-radius: 12px;
    padding: 24px;
}

.dashboard-focus-card strong {
    font-size: 32px;
}

/* --- Analytics List Enhancements --- */
.analytics-list div {
    border-radius: 10px;
    padding: 14px 16px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.analytics-list div:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16,24,40,.05);
}

/* --- Scrollbar Styling --- */
.admin-body ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.admin-body ::-webkit-scrollbar-track {
    background: transparent;
}

.admin-body ::-webkit-scrollbar-thumb {
    background: rgba(16,24,40,.16);
    border-radius: 999px;
}

.admin-body ::-webkit-scrollbar-thumb:hover {
    background: rgba(16,24,40,.24);
}

/* --- Alert Enhancements --- */
.alert {
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

/* --- Empty State --- */
.empty-state {
    padding: 32px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #98a2b3;
    background: rgba(248,251,255,.5);
    border-radius: 10px;
    border: 1px dashed rgba(16,24,40,.08);
}

/* --- Dashboard Charts Row Refinements --- */
.dashboard-charts-row {
    margin-top: 22px;
    gap: 18px;
}

.dashboard-chart-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.dashboard-chart-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(16,24,40,.08);
}

/* --- Order Filter Bar Refinements --- */
.order-filter-bar {
    gap: 6px;
}

/* --- Dashboard Overview Grid Refinements --- */
.admin-overview-grid {
    gap: 18px;
}

/* --- Responsive Tweaks for Mobile Admin --- */
@media (max-width: 1040px) {
    .admin-stats.dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .analytics-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-overview-grid {
        grid-template-columns: 1fr;
    }
    .admin-overview-grid .primary-panel {
        grid-row: auto;
    }
    .admin-package-layout {
        grid-template-columns: 1fr;
    }
    .dashboard-charts-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .admin-stats.dashboard-stats {
        grid-template-columns: 1fr;
    }
    .analytics-stats {
        grid-template-columns: 1fr;
    }
    .admin-dashboard {
        padding: 14px;
    }
    .dashboard-hero {
        padding: 22px;
    }
    .dashboard-hero h1 {
        font-size: 28px;
    }
    .admin-page-head {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-card {
        padding: 18px;
    }
    .form-grid.two,
    .form-grid.three {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */

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

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

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

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

    .main-nav {
        display: none;
    }

    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .hero-grid,
    .product-hero-grid,
    .split-grid,
    .contact-grid,
    .detail-grid,
    .cta-grid,
    .footer-grid,
    .auth-grid,
    .admin-topbar {
        grid-template-columns: 1fr;
    }

    .deal-grid,
    .primary-deal,
    .visual-showcase-grid,
    .voicechat-grid,
    .sms-grid,
    .service-ribbon-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .service-ribbon {
        margin-top: 0;
        padding: 20px 0;
        background: #f8fbff;
    }

    .hero-promo {
        margin-inline: 0;
    }

    .voicechat-stage {
        min-height: 460px;
    }

    .voicechat-pc {
        width: 78%;
    }

    .voicechat-mobile {
        width: 23%;
    }

    .hero {
        min-height: 0;
    }

    .hero-copy::after {
        width: 100%;
        left: 0;
    }

    .hero-flow {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .command-window {
        min-height: 420px;
    }

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

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

    .dashboard-hero,
    .admin-overview-grid {
        grid-template-columns: 1fr;
    }

    .admin-overview-grid .primary-panel {
        grid-row: auto;
    }

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

    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid .button {
        justify-self: start;
    }

    .store-heading {
        grid-template-columns: 1fr;
    }

    .dashboard-hero,
    .admin-overview-grid {
        grid-template-columns: 1fr;
    }

    .admin-overview-grid .primary-panel {
        grid-row: auto;
    }

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

    .dashboard-charts-row {
        grid-template-columns: 1fr;
    }

    .chart-container.tall-chart {
        height: 200px;
    }

    .search-input {
        min-width: 160px;
    }
}

@media (max-width: 640px) {
    .admin-dashboard {
        padding: 18px;
    }

    .dashboard-hero {
        padding: 22px;
    }

    .dashboard-hero h1 {
        font-size: 34px;
    }

    .dashboard-actions .button {
        width: 100%;
    }

    .admin-page-head,
    .admin-top {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-top-brand {
        align-items: flex-start;
    }

    .admin-top-brand span,
    .admin-top-brand strong {
        white-space: normal;
    }

    .admin-user-pill {
        justify-content: center;
    }

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

    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-shell {
        min-height: 68px;
    }

    .nav-cta {
        display: none;
    }

    .top-strip {
        display: none;
    }

    .brand small {
        display: none;
    }

    .brand-logo {
        height: 46px;
        max-width: 190px;
    }

    .hero-service-strip span {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
        text-align: center;
    }

    .hero-live-badge {
        align-items: flex-start;
        border-radius: 8px;
    }

    .hero-lead {
        padding: 15px;
    }

    .promo-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .promo-media,
    .promo-media img {
        min-height: 104px;
    }

    .hero,
    .section,
    .product-hero,
    .voicechat-section {
        padding: 52px 0;
    }

    .command-window {
        min-height: 360px;
        padding: 14px;
    }

    .command-visual {
        min-height: 245px;
    }

    .command-visual img {
        width: min(66%, 230px);
    }

    .orbit-chip {
        min-height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }

    .chip-hosting {
        left: 0;
        top: 38px;
    }

    .chip-domain {
        right: 0;
        top: 34px;
    }

    .chip-chat {
        left: 6px;
        bottom: 34px;
    }

    .chip-radio {
        right: 8px;
        bottom: 28px;
    }

    .command-stats {
        grid-template-columns: 1fr;
    }

    .service-ribbon-grid a {
        min-height: 96px;
    }

    h1 {
        font-size: 39px;
    }

    h2 {
        font-size: 30px;
    }

    .product-grid,
    .testimonial-grid,
    .package-grid,
    .metric-list,
    .admin-stats,
    .analytics-stats,
    .admin-stats.dashboard-stats,
    .voicechat-feature-row,
    .sms-feature-row {
        grid-template-columns: 1fr;
    }

    .voicechat-stage {
        min-height: 390px;
    }

    .sms-section {
        padding: 52px 0;
    }

    .sms-visual {
        min-height: 520px;
    }

    .sms-phone-card {
        left: 18px;
        right: 18px;
        top: 28px;
        width: auto;
    }

    .sms-metric-one {
        left: 18px;
        right: auto;
        top: 300px;
    }

    .sms-metric-two {
        right: 18px;
        bottom: 96px;
    }

    .sms-bubbles {
        left: 18px;
        right: 18px;
        bottom: 28px;
    }

    .voicechat-stage::before {
        inset: 32px 0 32px 0;
    }

    .voicechat-pc {
        width: 88%;
    }

    .voicechat-pc-light {
        top: 18px;
    }

    .voicechat-pc-dark {
        right: 0;
        bottom: 72px;
    }

    .voicechat-mobile {
        width: 28%;
        max-height: 250px;
    }

    .voicechat-mobile-light {
        top: 178px;
    }

    .voicechat-mobile-dark {
        right: 54px;
    }

    .store-frame-wrap {
        width: min(100% - 20px, 1320px);
        height: 680px;
        min-height: 680px;
    }

    .promo-card {
        grid-template-columns: 1fr;
    }

    .form-grid.two,
    .form-grid.three,
    .card-actions {
        grid-template-columns: 1fr;
    }

    .order-head,
    .download-row {
        flex-direction: column;
        align-items: stretch;
    }

    .order-head-right {
        flex-wrap: wrap;
    }

    .order-filter-bar {
        flex-wrap: wrap;
    }

    .funnel-container.wide {
        gap: 6px;
    }

    .site-footer {
        padding: 42px 0 22px;
    }

    .footer-brand-block,
    .footer-links,
    .footer-contact-card {
        padding: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 46px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-live-badge {
        align-items: center;
        width: 100%;
        border-radius: 8px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.02;
    }

    .hero h1::after {
        width: 62%;
        margin-top: 12px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-flow span {
        min-height: 56px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .command-window {
        min-height: 0;
        padding: 14px;
    }

    .command-visual {
        min-height: 230px;
    }

    .command-live-copy h2 {
        font-size: 24px;
    }

    .command-stats {
        grid-template-columns: 1fr;
    }

    .hero-promo {
        margin-inline: 0;
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .hero-promo .promo-media,
    .hero-promo .promo-media img {
        min-height: 82px;
    }
}

/* --- Settings Page Specific Styles --- */
.admin-dashboard .admin-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 4px 12px rgba(16,24,40,.04);
}

.admin-dashboard .admin-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16,24,40,.08);
    border-color: rgba(15, 118, 110, .12);
}

.admin-dashboard .admin-card-head h2 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 650;
}

.admin-dashboard .admin-card-head span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.admin-dashboard .admin-card-head {
    border-bottom: 1px solid rgba(16, 24, 40, .06);
    padding-bottom: 14px;
    margin-bottom: 16px;
}
