body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#0f172a;
    color:white;
    line-height:1.6;
}

/* ================= HEADER ================= */

header{
    padding:30px 20px;
    text-align:center;
    background:linear-gradient(180deg,#111827,#0f172a);
}

/* ================= BUTTON ================= */

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 35px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-size:18px;
    transition:0.2s;
}

.btn:hover{
    opacity:0.9;
}

/* ================= SECTIONS ================= */

section{
    padding:70px 20px;
    max-width:1100px;
    margin:auto;
}

h2{
    font-size:34px;
    margin-bottom:30px;
}

/* ================= SITE CARDS ================= */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
}

.card{
    background:#1e293b;
    padding:20px;
    border-radius:14px;
    border:1px solid #334155;
    display:flex;
    flex-direction:column;
    position:relative;
    transition:0.2s;
}

.card:hover{
    transform:translateY(-4px);
    border-color:#3b82f6;
}

.card h3{
    margin-top:0;
    margin-bottom:8px;
    font-size:18px;
}

.card p{
    font-size:14px;
    color:#cbd5e1;
    margin:6px 0;
    line-height:1.4;
}

.card h2{
    font-size:22px;
    margin:12px 0;
}

.card .btn{
    margin-top:auto;
    padding:10px 18px;
    font-size:14px;
    border-radius:10px;
}

.card .badge{
    display:inline-flex;
    align-items:center;
    font-size:12px;
    font-weight:600;
    color:#7CFFB2;
    background:rgba(124,255,178,0.10);
    padding:5px 10px;
    border-radius:999px;
    margin:8px 0;
    width:fit-content;
    border:1px solid rgba(124,255,178,0.25);
}

.card.popular{
    border:1px solid #2563eb;
    transform:scale(1.04);
    box-shadow:0 10px 30px rgba(37,99,235,0.25);
}

.badge-pop{
    position:absolute;
    top:-10px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:white;
    font-size:12px;
    font-weight:600;
    padding:5px 12px;
    border-radius:999px;
    box-shadow:0 6px 18px rgba(37,99,235,0.35);
    border:1px solid rgba(255,255,255,0.2);
}

/* ================= ADMIN LAYOUT ================= */

.admin-wrap{
    max-width:720px;
    margin:30px auto;
    padding:15px;
}

.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.top a{
    background:#ef4444;
    color:white;
    padding:8px 14px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
}

.panel{
    margin-bottom:18px;
}

.panel h2{
    font-size:18px;
    margin-bottom:12px;
    color:#cbd5e1;
}

.cabinet-box{
    background:#111827;
    border:1px solid #1e293b;
    border-radius:16px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* ================= FORMS ================= */

form{
    max-width:500px;
    margin-bottom:20px;
}

input,
textarea{
    display:block;
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border-radius:8px;
    border:none;
    background:#1e293b;
    color:white;
}

textarea{
    min-height:100px;
    resize:vertical;
}

form button{
    display:block;
    width:100%;
    padding:10px;
    background:#2563eb;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

form button:hover{
    opacity:0.9;
}

/* ================= ADMIN CARD ================= */

.admin-card{
    background:#1e293b;
    border:1px solid #334155;
    border-radius:12px;
    padding:14px;
    margin-top:10px;
    display:flex;
    flex-direction:column;
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

.admin-card p{
    color:#cbd5e1;
    white-space:pre-line;
}

.admin-card a{
    color:#60a5fa;
}

.admin-card a:hover{
    text-decoration:underline;
}

.card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    padding-top:10px;
    border-top:1px solid #334155;
}

.small{
    color:#94a3b8;
    font-size:12px;
    max-width:70%;
    word-break:break-word;
}

.del{
    background:#ef4444;
    color:white;
    padding:6px 12px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    white-space:nowrap;
    flex-shrink:0;
}

/* ================= INFO BLOCK ================= */

.info{
    background:#111827;
    border-radius:18px;
    padding:35px;
    border:1px solid #1e293b;
}

/* ================= LOGO ================= */

.logo{
    max-width:260px;
    width:100%;
    height:auto;
    margin-bottom:8px;
}

.logo-text{
    font-size:20px;
    font-weight:700;
    color:#fff !important;
    margin-right:15px;
}

/* ================= FOOTER ================= */

footer{
    text-align:center;
    padding:35px;
    color:#94a3b8;
    border-top:1px solid #1e293b;
    margin-top:40px;
}

/* ================= STATUS ================= */

.status{
    margin-top:20px;
    color:#cbd5e1;
}

/* ================= TOP BUTTON ================= */

#topBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:white;
    font-size:24px;
    cursor:pointer;
    display:none;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    transition:0.2s;
    z-index:999;
}

#topBtn:hover{
    opacity:0.9;
    transform:translateY(-2px);
}

/* ================= NAV ================= */

nav{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1100px;
    margin:0 auto;
    padding:15px 20px;
}

.nav-wrap{
    background:#111827;
    border-bottom:1px solid #1e293b;
}

.nav-left,
.nav-right{
    display:flex;
    align-items:center;
    gap:10px;
}

nav a{
    color:#cbd5e1;
    text-decoration:none;
    padding:8px 14px;
    border-radius:10px;
    transition:.2s;
}

nav a:hover{
    background:#1e293b;
    color:#fff;
}

.user-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:700;
}

/* ================= TIMELINE ================= */

.timeline{
    position:relative;
    margin-top:30px;
    padding-left:35px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:10px;
    top:0;
    bottom:0;
    width:2px;
    background:#334155;
}

.item{
    position:relative;
    margin-bottom:25px;
    padding-left:30px;
}

.dot{
    position:absolute;
    left:0;
    top:18px;
    width:12px;
    height:12px;
    background:#2563eb;
    border-radius:50%;
}

.content{
    background:#1e293b;
    border:1px solid #334155;
    border-radius:16px;
    padding:18px 20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
    transition:0.2s;
}

.content:hover{
    transform:translateY(-2px);
    border-color:#3b82f6;
}

.content h3{
    margin:0 0 10px 0;
    font-size:20px;
}

.content p{
    margin:0;
    color:#cbd5e1;
    line-height:1.6;
    white-space:normal;
}

.meta{
    margin-bottom:10px;
}

.date{
    display:inline-block;
    font-size:12px;
    color:#cbd5e1;
    background:#0f172a;
    padding:4px 10px;
    border-radius:999px;
    border:1px solid #334155;
}

/* ================= PRICING ================= */

#pricing{
    padding:50px 20px;
}

#pricing h2{
    font-size:28px;
    margin-bottom:25px;
}

.features-list{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:10px 0 15px;
}

.features-list span{
    font-size:11px;
    color:#cbd5e1;
    background:#0f172a;
    border:1px solid #334155;
    padding:4px 8px;
    border-radius:999px;
}

.features-list span.feature-active{
    background:#2563eb;
    border-color:#2563eb;
    color:white;
}

.contact{
    text-align:center;
    font-size:12px;
    color:#94a3b8;
    margin-top:10px;
}

/* ================= PLATFORMS ================= */

.platforms{
    text-align:center;
}

.platform-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-top:25px;
}

.platform{
    display:flex;
    align-items:center;
    gap:8px;
    background:#1e293b;
    border:1px solid #334155;
    border-radius:12px;
    padding:10px 16px;
    color:#cbd5e1;
    font-size:14px;
    transition:0.2s;
}

.platform:hover{
    border-color:#3b82f6;
    transform:translateY(-2px);
}

.platform i{
    color:#3b82f6;
    font-size:18px;
}

/* ================= HERO ================= */

.hero{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    padding:60px 20px;
}

.hero-left{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.hero-left .logo{
    max-width:260px;
    margin-bottom:6px;
}

.hero-left p{
    max-width:500px;
    margin:6px 0 12px;
    font-size:18px;
    line-height:1.5;
}

.hero-left .btn{
    margin-top:0;
}

.hero-left .platforms{
    margin-top:20px;
}

.hero-right{
    text-align:left;
}

.hero-right h2{
    margin-top:0;
    margin-bottom:20px;
}

.hero-right .timeline{
    margin-top:0;
}

/* ================= ADDONS ================= */

.addons{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:12px 0;
}

.addon{
    border:1px solid #334155;
    background:#0f172a;
    color:#cbd5e1;
    padding:8px 12px;
    border-radius:10px;
    cursor:pointer;
    transition:.2s;
}

.addon:hover{
    border-color:#2563eb;
}

.addon.active{
    background:#2563eb;
    border-color:#2563eb;
    color:white;
}

/* ================= ORDER BUTTONS ================= */

.order-btn{
    display:block;
    width:100%;
    box-sizing:border-box;
    text-align:center;
    text-decoration:none;
    background:#2563eb;
    color:#fff;
    padding:10px 15px;
    margin-top:12px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:.2s;
}

.order-btn:hover{
    opacity:.9;
}

.contact-buttons{
    display:flex;
    gap:8px;
    margin-top:12px;
}

.contact-buttons .order-btn{
    flex:1;
    margin-top:0;
}

.mail-btn{
    background:#334155;
}

/* ================= HOME LOWER SECTIONS ================= */

.section-head{
    max-width:680px;
    margin-bottom:28px;
}

.section-head h2,
.setup-copy h2{
    margin:8px 0 12px;
}

.section-head p,
.setup-copy p{
    color:#cbd5e1;
    font-size:16px;
    line-height:1.7;
    margin:0;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    width:fit-content;
    color:#7CFFB2;
    background:rgba(124,255,178,0.10);
    border:1px solid rgba(124,255,178,0.25);
    border-radius:999px;
    padding:5px 11px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.benefit-card{
    background:#111827;
    border:1px solid #263449;
    border-radius:14px;
    padding:20px;
    min-height:220px;
    transition:0.2s;
}

.benefit-card:hover{
    transform:translateY(-4px);
    border-color:#3b82f6;
    background:#162033;
}

.benefit-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#0f172a;
    border:1px solid #334155;
    color:#60a5fa;
    font-size:18px;
    margin-bottom:18px;
}

.benefit-card h3{
    margin:0 0 10px;
    font-size:18px;
}

.benefit-card p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.55;
}

.setup-section{
    max-width:1200px;
}

.setup-panel{
    display:grid;
    grid-template-columns:minmax(0,0.95fr) minmax(320px,1.05fr);
    gap:28px;
    align-items:center;
    background:#111827;
    border:1px solid #1e293b;
    border-radius:18px;
    padding:34px;
    box-shadow:0 18px 45px rgba(0,0,0,0.22);
}

.setup-copy .btn{
    margin-top:24px;
}

.setup-steps{
    display:grid;
    gap:12px;
}

.setup-step{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:16px;
    align-items:start;
    background:#0f172a;
    border:1px solid #334155;
    border-radius:14px;
    padding:16px;
}

.setup-step > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.setup-step h3{
    margin:0 0 6px;
    font-size:17px;
}

.setup-step p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.5;
}

.metrics-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    padding-top:20px;
}

.metric-card{
    background:#1e293b;
    border:1px solid #334155;
    border-radius:14px;
    padding:22px;
    text-align:center;
}

.metric-card span{
    display:block;
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1;
    margin-bottom:10px;
}

.metric-card p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
}

.status-card{
    background:#10251d;
    border-color:rgba(124,255,178,0.28);
}

.status-card span{
    color:#7CFFB2;
}

/* ================= AUTH ================= */

.auth-page{
    min-height:calc(100vh - 69px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:48px 20px;
}

.auth-shell{
    max-width:1100px;
    width:100%;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(340px,430px);
    gap:28px;
    align-items:center;
    padding:0;
}

.auth-copy{
    background:#111827;
    border:1px solid #1e293b;
    border-radius:18px;
    padding:34px;
    box-shadow:0 18px 45px rgba(0,0,0,0.22);
}

.auth-copy h1{
    margin:12px 0 14px;
    font-size:38px;
    line-height:1.12;
}

.auth-copy p{
    max-width:620px;
    margin:0;
    color:#cbd5e1;
    font-size:16px;
    line-height:1.7;
}

.auth-points{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:28px;
}

.auth-points div{
    background:#0f172a;
    border:1px solid #334155;
    border-radius:14px;
    padding:16px;
}

.auth-points i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    color:#60a5fa;
    background:#111827;
    border:1px solid #334155;
    border-radius:12px;
    margin-bottom:12px;
}

.auth-points span{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.auth-card{
    max-width:none;
    margin:0;
    background:#1e293b;
    border:1px solid #334155;
    border-radius:18px;
    padding:28px;
    box-shadow:0 18px 45px rgba(0,0,0,0.28);
}

.auth-card-head{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:22px;
}

.auth-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#7CFFB2;
    background:rgba(124,255,178,0.10);
    border:1px solid rgba(124,255,178,0.25);
    border-radius:14px;
    font-size:18px;
}

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

.auth-card p{
    margin:4px 0 0;
    color:#94a3b8;
    font-size:14px;
}

.auth-error{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fecaca;
    background:rgba(239,68,68,0.12);
    border:1px solid rgba(239,68,68,0.35);
    border-radius:12px;
    padding:11px 12px;
    margin-bottom:14px;
    font-size:14px;
}

.auth-field{
    display:block;
    margin-bottom:14px;
}

.auth-field span{
    display:block;
    color:#cbd5e1;
    font-size:13px;
    font-weight:700;
    margin-bottom:7px;
}

.auth-field input{
    box-sizing:border-box;
    margin:0;
    border:1px solid #334155;
    border-radius:12px;
    background:#0f172a;
    padding:13px 14px;
    font-size:15px;
    outline:none;
    transition:0.2s;
}

.auth-field input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 3px rgba(59,130,246,0.18);
}

.auth-submit{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:6px;
    padding:13px 16px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:800;
    transition:0.2s;
}

.auth-submit:hover{
    opacity:0.9;
    transform:translateY(-2px);
}

.auth-help{
    display:flex;
    justify-content:center;
    gap:6px;
    flex-wrap:wrap;
    margin-top:16px;
    color:#94a3b8;
    font-size:13px;
}

.auth-help a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:700;
}

.auth-help a:hover{
    text-decoration:underline;
}

/* ================= ACCOUNT ================= */

.cabinet-page{
    max-width:1180px;
    margin:0 auto;
    padding:42px 20px 70px;
}

.cabinet-hero{
    max-width:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    margin:0 0 20px;
    padding:34px;
    background:#111827;
    border:1px solid #1e293b;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,0.24);
}

.cabinet-hero h1{
    margin:10px 0 8px;
    font-size:36px;
    line-height:1.15;
}

.cabinet-hero p{
    max-width:620px;
    margin:0;
    color:#cbd5e1;
    font-size:16px;
    line-height:1.7;
}

.cabinet-logout{
    display:inline-flex;
    align-items:center;
    gap:9px;
    flex-shrink:0;
    color:#fff;
    background:#ef4444;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:12px;
    padding:11px 16px;
    text-decoration:none;
    font-weight:700;
    transition:0.2s;
}

.cabinet-logout:hover{
    opacity:0.9;
    transform:translateY(-2px);
}

.cabinet-stats{
    max-width:none;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:0 0 22px;
    padding:0;
}

.cabinet-stat{
    display:flex;
    align-items:center;
    gap:14px;
    background:#1e293b;
    border:1px solid #334155;
    border-radius:14px;
    padding:18px;
}

.cabinet-stat i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#60a5fa;
    background:#0f172a;
    border:1px solid #334155;
    border-radius:12px;
    font-size:18px;
}

.cabinet-stat span{
    display:block;
    color:#94a3b8;
    font-size:13px;
}

.cabinet-stat strong{
    display:block;
    color:#fff;
    font-size:16px;
    word-break:break-word;
}

.cabinet-layout{
    max-width:none;
    display:grid;
    grid-template-columns:minmax(0,0.95fr) minmax(0,1.05fr);
    gap:22px;
    padding:0;
}

.cabinet-column{
    display:grid;
    gap:18px;
    align-content:start;
}

.cabinet-panel{
    background:#111827;
    border:1px solid #1e293b;
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 32px rgba(0,0,0,0.2);
}

.accent-panel{
    border-color:rgba(96,165,250,0.34);
}

.panel-title{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.panel-title > i{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#7CFFB2;
    background:rgba(124,255,178,0.10);
    border:1px solid rgba(124,255,178,0.25);
    border-radius:13px;
    font-size:18px;
}

.panel-title h2{
    margin:0;
    font-size:22px;
}

.panel-title p{
    margin:4px 0 0;
    color:#94a3b8;
    font-size:14px;
    line-height:1.5;
}

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

.profile-row{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:center;
    background:#0f172a;
    border:1px solid #334155;
    border-radius:12px;
    padding:12px 14px;
}

.profile-row span{
    color:#94a3b8;
    font-size:13px;
}

.profile-row strong{
    color:#fff;
    font-size:14px;
    text-align:right;
    word-break:break-word;
}

.subscription-box{
    min-height:120px;
    background:#0f172a;
    border:1px dashed #3b82f6;
    border-radius:14px;
    padding:16px;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.65;
    word-break:break-word;
}

.subscription-box a{
    color:#60a5fa;
    text-decoration:underline;
}

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

.config-item{
    display:grid;
    grid-template-columns:44px 1fr auto;
    gap:14px;
    align-items:center;
    background:#0f172a;
    border:1px solid #334155;
    border-radius:14px;
    padding:14px;
    transition:0.2s;
}

.config-item:hover{
    border-color:#3b82f6;
    transform:translateY(-2px);
}

.config-icon{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#60a5fa;
    background:#111827;
    border:1px solid #334155;
    border-radius:12px;
}

.config-info{
    min-width:0;
}

.config-info strong{
    display:block;
    color:#fff;
    font-size:14px;
    word-break:break-word;
}

.config-info span{
    display:block;
    color:#94a3b8;
    font-size:12px;
    margin-top:3px;
}

.download-btn,
.support-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    background:#2563eb;
    border-radius:11px;
    padding:10px 13px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    transition:0.2s;
}

.download-btn:hover,
.support-btn:hover{
    opacity:0.9;
    transform:translateY(-2px);
}

.empty-state{
    text-align:center;
    background:#0f172a;
    border:1px dashed #334155;
    border-radius:14px;
    padding:34px 20px;
}

.empty-state i{
    color:#60a5fa;
    font-size:34px;
    margin-bottom:12px;
}

.empty-state h3{
    margin:0 0 8px;
    font-size:18px;
}

.empty-state p{
    margin:0 auto;
    max-width:420px;
    color:#94a3b8;
    font-size:14px;
    line-height:1.6;
}

.support-panel{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    background:#10251d;
    border-color:rgba(124,255,178,0.28);
}

.support-panel h2{
    margin:0 0 6px;
    font-size:22px;
}

.support-panel p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.55;
}

.support-btn{
    background:#229ED9;
    flex-shrink:0;
}

.account-card{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.account-card .row{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:8px 10px;
    background:#0f172a;
    border:1px solid #334155;
    border-radius:10px;
}

.account-card .row.column{
    flex-direction:column;
    align-items:flex-start;
}

.account-card .label{
    color:#94a3b8;
    font-size:13px;
}

.account-card .value{
    color:#fff;
    font-size:14px;
    word-break:break-word;
}

.account-card a{
    color:#60a5fa;
    text-decoration:underline;
}

.cabinet-grid{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:start;
}

/* ================= RESPONSIVE ================= */

@media (max-width:900px){
    .hero{
        grid-template-columns:1fr;
    }

    .hero-right{
        margin-top:30px;
    }

    .cabinet-grid{
        grid-template-columns:1fr;
    }

    .cabinet-hero{
        align-items:flex-start;
        flex-direction:column;
    }

    .cabinet-stats,
    .cabinet-layout{
        grid-template-columns:1fr;
    }

    .benefit-grid,
    .metrics-section{
        grid-template-columns:repeat(2,1fr);
    }

    .setup-panel{
        grid-template-columns:1fr;
    }

    .auth-shell{
        grid-template-columns:1fr;
    }

    .auth-points{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    nav{
        flex-direction:column;
        gap:12px;
    }

    .nav-left,
    .nav-right{
        justify-content:center;
        flex-wrap:wrap;
        width:100%;
    }

    nav a{
        padding:8px 12px;
        font-size:14px;
    }

    .user-box{
        flex-wrap:wrap;
        justify-content:center;
    }

    .benefit-grid,
    .metrics-section{
        grid-template-columns:1fr;
    }

    .setup-panel{
        padding:22px;
    }

    .setup-step{
        grid-template-columns:1fr;
    }

    .cabinet-page{
        padding:26px 14px 50px;
    }

    .cabinet-hero{
        padding:22px;
    }

    .cabinet-hero h1{
        font-size:28px;
    }

    .profile-row,
    .support-panel{
        align-items:flex-start;
        flex-direction:column;
    }

    .profile-row strong{
        text-align:left;
    }

    .config-item{
        grid-template-columns:44px 1fr;
    }

    .download-btn{
        grid-column:1 / -1;
        width:100%;
        box-sizing:border-box;
    }

    .support-btn,
    .cabinet-logout{
        width:100%;
        box-sizing:border-box;
    }

    .auth-page{
        align-items:flex-start;
        padding:26px 14px 50px;
    }

    .auth-copy,
    .auth-card{
        padding:22px;
    }

    .auth-copy h1{
        font-size:30px;
    }
}
