/* ===== AUTH PAGES ===== */
.auth-page{
    background: linear-gradient(135deg, #1a2a3a 0%, #1a5276 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.auth-wrap{
    flex:1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
}
.auth-card{
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.auth-card--wide{ max-width: 640px; }
.auth-card__header{ margin-bottom: 28px; }
.auth-card__title{ font-size: 1.6rem; font-weight: 800; color: #1a1a2e; }
.auth-card__sub{ font-size: .9rem; color: #888; margin-top: 6px; }
.auth-card__sub a{ color: #1a5276; font-weight:600; }

/* ===== ROLE TABS (register) ===== */
.role-tabs{
    display: flex; gap: 8px;
    background: #f0f4f8; border-radius: 12px;
    padding: 5px; margin-bottom: 28px;
}
.role-tab{
    flex:1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 16px; border-radius: 9px;
    font-size: .9rem; font-weight: 600; color: #666;
    background: none; cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    border: none;
}
.role-tab--active{
    background: #fff; color: #1a5276;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.role-tab:hover:not(.role-tab--active){ color: #1a1a2e; }

/* ===== FORM ELEMENTS ===== */
.auth-form{ display: flex; flex-direction: column; gap: 18px; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group{ display: flex; flex-direction: column; gap: 6px; }
.form-label{ font-size: .8rem; font-weight: 600; color: #444; }
.form-input{
    padding: 11px 14px; border: 1.5px solid #dde3ea;
    border-radius: 10px; font-size: .9rem; color: #1a1a2e;
    transition: border-color .2s, box-shadow .2s;
    background: #fff; width: 100%;
}
.form-input:focus{
    border-color: #1a5276;
    box-shadow: 0 0 0 3px rgba(26,82,118,.12);
    outline: none;
}
.form-input::placeholder{ color: #aaa; }
.form-select{ appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-textarea{ resize: vertical; min-height: 90px; }
.form-forgot{ font-size: .8rem; color: #1a5276; margin-top: 4px; align-self: flex-end; }
.form-forgot:hover{ text-decoration: underline; }
.form-reset-err{ font-size: .85rem; color: #c0392b; min-height: 18px; margin-top: 6px; }
.form-hint{ display: block; font-size: .8rem; color: #666; margin-top: 5px; }
.form-check{ display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: #555; }
.form-check input[type=checkbox]{ width: 16px; height: 16px; margin-top: 2px; accent-color: #1a5276; cursor: pointer; }
.form-check a{ color: #1a5276; }
.form-divider{
    font-size: .75rem; font-weight: 600; text-transform: uppercase;
    color: #888; letter-spacing: .5px;
    border-bottom: 1px solid #eee; padding-bottom: 10px; margin: 6px 0 -6px;
}
.btn--full{ width: 100%; }
.input-wrap{ position: relative; }
.input-wrap .form-input{ padding-right: 44px; }
.input-eye{
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; cursor: pointer; color: #888; padding: 4px;
    display: flex; align-items: center;
    transition: color .2s;
}
.input-eye:hover{ color: #1a5276; }

/* Password strength */
.pw-strength{ margin-top: -6px; }
.pw-strength__bar{
    height: 4px; border-radius: 4px;
    background: #eee; overflow: hidden; margin-bottom: 4px;
}
.pw-strength__bar span{
    display: block; height: 100%; width: 0;
    border-radius: 4px; transition: width .3s, background .3s;
}
.pw-strength__label{ font-size: .75rem; color: #888; }

/* Auth divider */
.auth-divider{
    text-align: center; position: relative; margin: 20px 0 16px;
    font-size: .8rem; color: #aaa;
}
.auth-divider::before{
    content:''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: #eee;
}
.auth-divider span{ background: #fff; padding: 0 12px; position: relative; }

/* Social login */
.social-login{ display: flex; flex-direction: column; gap: 10px; }
.social-btn{
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 11px 20px; border-radius: 10px; border: 1.5px solid #dde3ea;
    font-size: .88rem; font-weight: 600; cursor: pointer;
    transition: background .2s, border-color .2s;
    background: #fff;
}
.social-btn--vk{ color: #0077ff; }
.social-btn--vk:hover{ background: #f0f5ff; border-color: #0077ff; }
.social-btn--google{ color: #333; }
.social-btn--google:hover{ background: #f8f8f8; border-color: #ccc; }

/* Contractor fields toggle */
.contractor-fields{ display: flex; flex-direction: column; gap: 18px; }

/* ===== CABINET PAGE ===== */
.cabinet-page{ background: #f0f4f8; }
.cabinet{ padding-top: 80px; min-height: 100vh; }
.cabinet__inner{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px; padding: 28px 0 40px;
    align-items: start;
}

/* Sidebar */
.cab-sidebar{
    background: #fff; border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    overflow: hidden; position: sticky; top: 88px;
}
.cab-profile{
    background: linear-gradient(135deg, #1a5276, #154360);
    padding: 28px 20px; text-align: center; color: #fff;
}
.cab-profile__avatar{
    width: 80px; height: 80px; border-radius: 50%;
    margin: 0 auto 12px; position: relative;
    overflow: hidden; border: 3px solid rgba(255,255,255,.3);
}
.cab-profile__avatar img{ width: 100%; height: 100%; object-fit: cover; }
.cab-profile__avatar-edit{
    position: absolute; inset: 0; display: flex;
    align-items: center; justify-content: center;
    background: rgba(0,0,0,.4); opacity: 0; color: #fff;
    cursor: pointer; transition: opacity .2s;
}
.cab-profile__avatar:hover .cab-profile__avatar-edit{ opacity: 1; }
.cab-profile__name{ font-size: 1.05rem; font-weight: 700; }
.cab-profile__role{ font-size: .8rem; color: rgba(255,255,255,.7); margin: 4px 0 8px; display: block; }
.cab-profile__rating{ font-size: .82rem; color: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; gap: 6px; }
.stars{ color: #ffd700; letter-spacing: 1px; }

.cab-nav{ padding: 6px 0; }
.cab-nav__item{
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; font-size: .88rem; font-weight: 500; color: #444;
    transition: background .2s, color .2s;
    cursor: pointer;
}
.cab-nav__item:hover{ background: #f0f4f8; color: #1a5276; }
.cab-nav__item--active{ background: #eaf0f6; color: #1a5276; font-weight: 600; border-right: 3px solid #1a5276; }
.cab-nav__item--danger{ color: #e74c3c; }
.cab-nav__item--danger:hover{ background: #fdf0ef; color: #c0392b; }
.cab-nav__badge{
    margin-left: auto; background: #1a5276; color: #fff;
    font-size: .72rem; font-weight: 700; padding: 2px 7px; border-radius: 20px;
}
.cab-nav__badge--new{ background: #e8740c; }
.cab-nav__divider{ height: 1px; background: #eee; margin: 6px 0; }

/* Main content */
.cab-main{ display: flex; flex-direction: column; gap: 24px; }
.cab-section{ background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.cab-section__title{ font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: #1a1a2e; }
.cab-sub-title{ font-size: 1rem; font-weight: 700; color: #1a1a2e; margin: 24px 0 12px; }

/* Stats row */
.cab-stats{
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 8px;
}
.cab-stat{
    background: #f0f4f8; border-radius: 12px; padding: 18px 16px; text-align: center;
}
.cab-stat--orange{ background: #fef3e9; }
.cab-stat--green{ background: #eafaf1; }
.cab-stat__num{ display: block; font-size: 1.8rem; font-weight: 800; color: #1a1a2e; }
.cab-stat--orange .cab-stat__num{ color: #e8740c; }
.cab-stat--green .cab-stat__num{ color: #27ae60; }
.cab-stat__lbl{ font-size: .78rem; color: #666; }

/* Activity list */
.activity-list{ display: flex; flex-direction: column; gap: 0; }
.activity-item{
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid #f0f4f8; font-size: .88rem; color: #444;
}
.activity-item:last-child{ border: none; }
.activity-item time{ display: block; font-size: .75rem; color: #aaa; margin-top: 3px; }
.activity-item--new .activity-icon{ background: #eaf0f6; }
.activity-icon{
    width: 34px; height: 34px; border-radius: 50%;
    background: #f0f4f8; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; color: #1a5276;
}
.activity-icon--msg{ background: #eaf0f6; }
.activity-icon--order{ background: #fef3e9; color: #e8740c; }
.activity-icon--review{ background: #fdf9e3; color: #e8a00c; }

/* Order cards */
.order-cards{ display: flex; flex-direction: column; gap: 12px; }
.order-card{
    border: 1.5px solid #e8edf2; border-radius: 12px;
    padding: 16px; transition: border-color .2s, box-shadow .2s;
}
.order-card:hover{ border-color: #1a5276; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.order-card__head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.order-card__date{ font-size: .78rem; color: #aaa; }
.order-card__title{ font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.order-card__meta{ font-size: .82rem; color: #888; margin-bottom: 10px; }
.order-card__footer{ display: flex; justify-content: space-between; font-size: .82rem; }
.order-card__budget{ font-weight: 600; color: #1a5276; }
.order-card__responses{ color: #e8740c; font-weight: 600; }
.order-badge{
    display: inline-block; font-size: .72rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}
.order-badge--active{ background: #eafaf1; color: #27ae60; }
.order-badge--wait{ background: #fef3e9; color: #e8740c; }

/* User avatar in header */
.user-avatar{
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; color: #fff; font-size: .88rem; font-weight: 500; padding: 6px 12px;
    border-radius: 8px; transition: background .2s;
}
.user-avatar:hover{ background: rgba(255,255,255,.1); }
.user-avatar img{ width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }

/* ===== CONTRACTOR PROFILE PAGE ===== */
.breadcrumb-wrap{ padding-top: 84px; }
.breadcrumb{
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem; color: #888; padding: 12px 0;
}
.breadcrumb a{ color: #1a5276; }
.breadcrumb a:hover{ text-decoration: underline; }
.breadcrumb span:last-child{ color: #1a1a2e; font-weight: 500; }

.contractor-page{
    display: grid; grid-template-columns: 1fr 340px; gap: 28px;
    padding-bottom: 60px; align-items: start;
}

/* Hero card */
.con-hero-card{
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-bottom: 20px;
}
.con-hero-card__cover{
    height: 140px;
    background: linear-gradient(135deg, #1a5276, #154360),
                url('../images/hero-bg.jpg') center/cover; /* reuse */
}
.con-hero-card__body{
    display: flex; align-items: flex-start; gap: 20px;
    padding: 0 24px 24px; flex-wrap: wrap;
}
.con-hero-card__avatar{
    width: 100px; height: 100px; border-radius: 14px;
    overflow: hidden; border: 4px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    margin-top: -36px; flex-shrink: 0;
}
.con-hero-card__avatar img{ width: 100%; height: 100%; object-fit: cover; }
.con-hero-card__info{ flex: 1; padding-top: 8px; min-width: 0; }
.con-hero-card__name-row{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.con-hero-card__name{ font-size: 1.4rem; font-weight: 800; color: #1a1a2e; }
.verified-badge{
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .75rem; font-weight: 600; color: #1a5276;
    background: #eaf0f6; padding: 4px 10px; border-radius: 20px;
}
.con-hero-card__desc{ font-size: .9rem; color: #555; margin: 5px 0 10px; }
.con-hero-card__meta{ display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .82rem; }
.con-rating{ color: #e8740c; font-weight: 700; font-size: .9rem; }
.con-rating__count{ font-weight: 400; color: #888; }
.con-meta-pill{
    display: flex; align-items: center; gap: 5px;
    color: #666; background: #f0f4f8; padding: 4px 10px; border-radius: 20px;
}
.con-status{ padding: 4px 10px; border-radius: 20px; font-weight: 600; font-size: .78rem; }
.con-status--online{ background: #eafaf1; color: #27ae60; }
.con-hero-card__actions{ display: flex; flex-direction: column; gap: 10px; padding-top: 18px; flex-shrink: 0; }
.fav-btn--active{ background: #fef3e9; border-color: #e8740c; color: #e8740c; }

/* Tabs */
.con-tabs{
    display: flex; gap: 2px; background: #f0f4f8;
    border-radius: 12px; padding: 5px; margin-bottom: 20px;
}
.con-tab{
    flex: 1; padding: 10px 14px; border-radius: 9px; border: none;
    font-size: .85rem; font-weight: 600; color: #666;
    background: none; cursor: pointer; transition: background .2s, color .2s;
    white-space: nowrap;
}
.con-tab--active{ background: #fff; color: #1a5276; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.con-tab-panel{ animation: fadeIn .25s; }
@keyframes fadeIn{ from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }

.con-section-title{ font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; color: #1a1a2e; }
.con-sub-title{ font-size: .95rem; font-weight: 700; color: #1a1a2e; margin: 22px 0 12px; }
.con-text{ font-size: .9rem; color: #444; line-height: 1.7; margin-bottom: 12px; }

/* Specs grid */
.specs-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #eee; border-radius: 12px; overflow: hidden; }
.spec-item{
    display: flex; justify-content: space-between; gap: 12px;
    padding: 12px 16px; font-size: .84rem; border-bottom: 1px solid #eee;
    background: #fff;
}
.spec-item:nth-child(odd){ background: #fafbfc; }
.spec-item__key{ color: #888; font-weight: 500; white-space: nowrap; }
.spec-item__val{ font-weight: 600; color: #1a1a2e; text-align: right; }
.spec-item__val--ok{ color: #27ae60; }

/* Category tags */
.cat-tags{ display: flex; flex-wrap: wrap; gap: 8px; }
.cat-tag{
    background: #eaf0f6; color: #1a5276; font-size: .82rem; font-weight: 600;
    padding: 6px 14px; border-radius: 20px;
}

/* Documents */
.docs-list{ display: flex; flex-direction: column; gap: 8px; }
.doc-item{
    display: flex; align-items: center; gap: 10px; font-size: .85rem;
    padding: 10px 14px; background: #f0f4f8; border-radius: 10px;
}
.doc-date{ margin-left: auto; font-size: .75rem; color: #888; }

/* Price table */
.price-table{ display: flex; flex-direction: column; gap: 24px; }
.price-section__title{ font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.price-tbl{ width: 100%; border-collapse: collapse; font-size: .85rem; }
.price-tbl th{ background: #f0f4f8; padding: 10px 14px; text-align: left; font-weight: 700; color: #444; }
.price-tbl td{ padding: 10px 14px; border-bottom: 1px solid #f0f4f8; color: #1a1a2e; }
.price-tbl tr:last-child td{ border: none; }
.price-tbl td:last-child{ font-weight: 700; color: #1a5276; white-space: nowrap; }
.price-note{ font-size: .8rem; color: #888; margin-top: 12px; font-style: italic; }

/* Portfolio */
.portfolio-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.portfolio-item{ background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #eee; }
.portfolio-item__img{
    height: 160px;
    background: #eaf0f6;
    background-size: cover; background-position: center;
}
.portfolio-item__img--1{ background-image: url('../images/contractor-1.jpg'); }
.portfolio-item__img--2{ background-image: url('../images/contractor-3.jpg'); }
.portfolio-item__img--3{ background-image: url('../images/contractor-2.jpg'); }
.portfolio-item__img--4{ background-image: url('../images/contractor-4.jpg'); }
.portfolio-item__body{ padding: 14px; }
.portfolio-item__body h4{ font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.portfolio-item__body p{ font-size: .78rem; color: #888; }

/* Reviews */
.reviews-header{ display: flex; gap: 32px; align-items: center; margin-bottom: 28px; padding: 20px; background: #f0f4f8; border-radius: 14px; }
.reviews-summary{ text-align: center; }
.reviews-summary__score{ font-size: 3rem; font-weight: 800; color: #1a1a2e; line-height: 1; }
.reviews-summary__stars{ color: #ffd700; font-size: 1.2rem; letter-spacing: 3px; }
.reviews-summary__count{ font-size: .8rem; color: #888; margin-top: 4px; }
.reviews-bars{ flex: 1; display: flex; flex-direction: column; gap: 6px; font-size: .8rem; }
.rbar{ display: flex; align-items: center; gap: 10px; color: #555; }
.rbar__track{ flex: 1; height: 8px; background: #dde3ea; border-radius: 4px; overflow: hidden; }
.rbar__fill{ height: 100%; background: #ffd700; border-radius: 4px; }
.rbar span:last-child{ width: 24px; text-align: right; color: #888; }
.reviews-list{ display: flex; flex-direction: column; gap: 16px; }
.review-card{
    padding: 18px; border: 1px solid #eee; border-radius: 14px; background: #fff;
}
.review-card--negative{ background: #fffbf8; border-color: #fde8d8; }
.review-card__head{ display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.review-card__avatar{
    width: 38px; height: 38px; border-radius: 50%; background: #1a5276;
    color: #fff; font-weight: 700; font-size: .85rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-card__stars{ color: #ffd700; font-size: .9rem; }
.review-card__date{ margin-left: auto; font-size: .78rem; color: #aaa; }
.review-card__tag{ font-size: .78rem; color: #888; margin-bottom: 8px; }
.review-card__text{ font-size: .88rem; color: #444; line-height: 1.6; }

/* Sidebar */
.con-sidebar{ display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.con-contact-card{ background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.con-contact-card__title{ font-size: 1rem; font-weight: 800; margin-bottom: 18px; color: #1a1a2e; }
.contact-form{ display: flex; flex-direction: column; gap: 14px; }
.contact-form__note{ font-size: .78rem; color: #888; text-align: center; margin-top: 8px; }
.con-quick-stats{
    background: linear-gradient(135deg, #1a5276, #154360); border-radius: 14px;
    padding: 18px; display: grid; grid-template-columns: repeat(3,1fr); text-align: center;
}
.cqs-item strong{ display: block; font-size: 1.4rem; font-weight: 800; color: #fff; }
.cqs-item span{ font-size: .75rem; color: rgba(255,255,255,.7); }
.con-hours{ background: #fff; border-radius: 14px; padding: 18px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.con-hours h4{ font-size: .9rem; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.con-hours ul{ display: flex; flex-direction: column; gap: 8px; }
.con-hours li{ display: flex; justify-content: space-between; font-size: .82rem; color: #555; }

/* ===== CONTRACTOR PAGE SKELETONS ===== */
/* shimmer is defined in style.css — reuse the animation here */
.con-skel {
    display: inline-block;
    background: linear-gradient(90deg,#e8edf2 25%,#f3f5f7 50%,#e8edf2 75%);
    background-size: 1200px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 6px;
    height: 16px;
}
.con-skel--avatar { width:96px; height:96px; border-radius:14px; display:block; }
.con-skel--name   { width:220px; height:26px; }
.con-skel--desc   { width:300px; height:14px; }
.con-skel--meta   { width:130px; height:14px; }
.con-skel--score  { width:64px; height:52px; border-radius:10px; }
.con-skel--stars  { width:100px; height:16px; }
.con-skel--w20    { width:20%; }
.con-skel--w40    { width:40%; }
.con-skel--w60    { width:60%; }
.con-skel--w80    { width:80%; }
.con-skel--w100   { width:100%; }
.con-skel--h14    { height:14px; }
.con-skel--h20    { height:20px; }
.con-skel--h32    { height:32px; }
.con-skel--h80    { height:80px; border-radius:10px; }
.con-skel--tag    { width:80px; height:24px; border-radius:20px; }
.con-skel--spec-key { width:55%; height:13px; }
.con-skel--spec-val { width:40%; height:13px; }
/* doc row skeleton */
.doc-item--skel   { display:flex; align-items:center; gap:10px; padding:10px 0; border-bottom:1px solid #f0f0f0; }
.doc-item--skel .con-skel { flex:1; }
/* review card skeleton */
.review-card--skel { pointer-events:none; }
.review-card--skel .review-card__avatar.con-skel { font-size:0; color:transparent; border:none; }
.review-card--skel strong,
.review-card--skel .review-card__stars,
.review-card--skel time,
.review-card--skel p { visibility:hidden; }
/* portfolio skeleton */
.portfolio-item--skel .portfolio-item__img { background:#e8edf2 !important; animation:shimmer 1.4s infinite linear; background-size:1200px 100% !important; background-image:linear-gradient(90deg,#e8edf2 25%,#f3f5f7 50%,#e8edf2 75%) !important; }
.portfolio-item--skel .portfolio-item__body h4,
.portfolio-item--skel .portfolio-item__body p { visibility:hidden; }

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px){
    .cabinet__inner{ grid-template-columns: 220px 1fr; }
    .contractor-page{ grid-template-columns: 1fr; }
    .con-sidebar{ position: static; }
}
@media(max-width: 768px){
    .cabinet__inner{ grid-template-columns: 1fr; }
    .cab-sidebar{ position: static; }
    .cab-stats{ grid-template-columns: repeat(2,1fr); }
    .form-row{ grid-template-columns: 1fr; }
    .specs-grid{ grid-template-columns: 1fr; }
    .portfolio-grid{ grid-template-columns: 1fr; }
    .con-hero-card__actions{ flex-direction: row; padding-top: 0; }
    .con-tabs{ flex-wrap: wrap; }
    .reviews-header{ flex-direction: column; gap: 16px; }
}
@media(max-width: 480px){
    .auth-card{ padding: 28px 20px; }
    .con-hero-card__body{ flex-direction: column; }
    .con-hero-card__actions{ flex-direction: column; width: 100%; }
}
