: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: #eef2f7;
}

.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: 24px;
    padding: 24px;
    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: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.admin-menu a,
.admin-sidebar-actions a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #dbeafe;
    border-radius: 8px;
    font-weight: 800;
}

.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: 76px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 16px 28px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.admin-top span,
.admin-top strong {
    display: block;
}

.admin-top span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-top strong {
    font-size: 22px;
}

.admin-user-pill {
    padding: 9px 13px;
    color: #17594f;
    background: #dff7f1;
    border-radius: 999px;
    font-weight: 900;
}

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

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

.admin-page-head h1 {
    margin-bottom: 10px;
    font-size: clamp(32px, 4vw, 46px);
}

.admin-page-head p {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
}

.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);
}

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:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92));
    border-bottom: 1px solid rgba(16, 24, 40, .08);
    box-shadow: 0 10px 32px rgba(16, 24, 40, .08);
    backdrop-filter: blur(16px);
}

.top-strip {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 50%, rgba(94, 234, 212, .34), transparent 26%),
        radial-gradient(circle at 82% 44%, rgba(219, 39, 119, .36), transparent 24%),
        linear-gradient(90deg, #071b2c 0%, #0f766e 48%, #1d4ed8 72%, #be123c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .12), inset 0 -1px 0 rgba(255, 255, 255, .20);
    backdrop-filter: blur(14px);
}

.top-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .18) 20%, transparent 38%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 38px);
    opacity: .70;
    pointer-events: none;
}

.top-strip::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background:
        linear-gradient(90deg, #5eead4 0%, #60a5fa 46%, #f472b6 100%);
    opacity: 1;
}

.top-strip-inner {
    position: relative;
    z-index: 1;
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    font-size: 13px;
    font-weight: 850;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .18);
}

.top-strip-inner > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.top-strip-inner > span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #5eead4;
    box-shadow: 0 0 0 6px rgba(94, 234, 212, .16), 0 0 18px rgba(94, 234, 212, .68);
}

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

.top-strip-inner a {
    position: relative;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px 0 28px;
    color: #ffffff;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .20);
    font-weight: 850;
    text-shadow: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.top-strip-inner a::before {
    content: "•";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 9px;
    height: 9px;
    display: grid;
    place-items: center;
    margin-top: -5px;
    color: #5eead4;
    font-size: 18px;
    line-height: 1;
}

.top-strip-inner a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .24);
    border-color: rgba(255, 255, 255, .38);
}

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

.nav-shell::before {
    content: "";
    position: absolute;
    inset: 10px 0;
    z-index: -1;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .76));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 16px 38px rgba(16, 24, 40, .09);
    backdrop-filter: blur(18px);
}

.brand {
    padding: 6px 14px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(15, 39, 66, .96), rgba(15, 118, 110, .82));
    box-shadow: 0 12px 28px rgba(16, 24, 40, .12);
}

.brand {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
}

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

.brand-mark {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 8px;
    font-weight: 800;
}

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

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    color: #344054;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .86));
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .08);
    backdrop-filter: blur(18px);
}

.main-nav a {
    position: relative;
    overflow: hidden;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 8px;
    border-bottom: 0;
    color: #344054;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .55px;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: none;
    transition: transform .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.main-nav a::before {
    content: "";
    position: absolute;
    inset: auto 10px 7px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(.28);
    transform-origin: left;
    opacity: .55;
    transition: transform .18s ease, opacity .18s ease;
}

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

.main-nav a.active,
.main-nav a:hover {
    color: #ffffff;
    background:
        linear-gradient(135deg, #0f766e, #2563eb);
    box-shadow: 0 12px 26px rgba(37, 99, 235, .18);
    text-shadow: none;
    transform: translateY(-2px);
}

.main-nav a.active::before,
.main-nav a:hover::before {
    transform: scaleX(1);
    opacity: .95;
}

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

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

.cart-pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: #ffd166;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 209, 102, .28);
    border-radius: 8px;
    font-weight: 900;
}

.nav-cta,
.button {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

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

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

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

.nav-cta,
.button.primary {
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .28), transparent 22%),
        linear-gradient(135deg, var(--teal), #16a34a);
    box-shadow: 0 12px 30px rgba(15, 118, 110, .32);
}

.nav-cta {
    min-height: 48px;
    padding-inline: 18px;
    border-color: rgba(255, 255, 255, .18);
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
    gap: 10px;
}

.nav-cta-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #0f766e;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, .18), 0 8px 18px rgba(0, 0, 0, .18);
}

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

.nav-cta:hover .nav-cta-icon,
.nav-cta:focus-visible .nav-cta-icon {
    color: #0f2742;
    background: #ffd166;
}

.button.ghost {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button.light {
    color: var(--navy);
    background: #fff;
}

.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: 24px 0 44px;
    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: 10px;
    padding: 26px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.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;
    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));
}

.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;
}

.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);
}

.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;
}

.compact-deal strong {
    font-size: 25px;
    line-height: 1.08;
}

.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 {
    margin-bottom: 30px;
}

.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;
}

#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);
}

.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(255, 255, 255, .58);
    backdrop-filter: blur(14px);
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.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::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::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(-4px);
    box-shadow: 0 24px 60px rgba(16, 24, 40, .13);
}

.proof-badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    color: #0f2742;
    background: #ffd166;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.proof-card cite {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 7px 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 999px;
    font-style: normal;
    font-weight: 900;
}

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;
}

.product-card-visual {
    margin: 0 22px 18px;
    border-radius: 12px;
    aspect-ratio: 1.8;
}

.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.035);
}

.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;
    box-shadow: none;
}

.admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.admin-card-head h2 {
    margin: 0;
    font-size: 24px;
}

.admin-card-head span,
.empty-state {
    color: var(--muted);
}

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

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

th,
td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 13px;
}

td small {
    display: block;
    max-width: 520px;
    color: var(--muted);
}

.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;
}

.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: minmax(150px, .7fr) minmax(130px, .6fr) minmax(240px, 1fr);
    align-items: end;
}

.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-product-list div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.admin-product-list span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.cta-band {
    padding: 58px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #0f4f57);
}

.cta-band .eyebrow,
.cta-band p {
    color: rgba(255, 255, 255, .78);
}

.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;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .45;
    pointer-events: none;
}

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

.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, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
    box-shadow: 0 22px 54px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .16);
    backdrop-filter: blur(16px);
}

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

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

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

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

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

.footer-brand-block p {
    max-width: 620px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .76);
}

.footer-note {
    max-width: 640px;
    padding: 16px;
    border: 1px solid rgba(94, 234, 212, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .22), rgba(37, 99, 235, .10));
}

.footer-note span,
.footer-links span,
.footer-contact-card span {
    margin-bottom: 4px;
    color: #5eead4;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-note strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.35;
}

.footer-links a,
.footer-contact-card a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    font-weight: 650;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.footer-links a::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5eead4, #60a5fa);
    box-shadow: 0 0 0 5px rgba(94, 234, 212, .08);
}

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

.footer-whatsapp {
    color: #dff7f1 !important;
    background: linear-gradient(135deg, rgba(22, 163, 74, .30), rgba(15, 118, 110, .18)) !important;
}

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

.footer-bottom span {
    color: rgba(255, 255, 255, .62);
    font-weight: 600;
}

.narrow {
    max-width: 760px;
}

@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 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .store-heading {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .admin-dashboard {
        padding: 18px;
    }

    .admin-page-head,
    .admin-top {
        flex-direction: column;
        align-items: stretch;
    }

    .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,
    .metric-list,
    .admin-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;
    }

    .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;
    }
}
