/* ===================================================================
   Nexus Dev Studio - Design Imersiv Premium
   Glassmorphism avansat  Particule Canvas Mov/Aurii  Cursor Personalizat
   Font Awesome  Carduri Servicii cu Pret Taiat & Reducere
   Fundal cu Orb-uri decorative si Grid subtil
   =================================================================== */

/* ---------- CSS VARIABLES ----------------------------------------- */
:root {
    --primary: #0a1628;
    --primary-light: #162040;
    --primary-glass: rgba(10, 22, 40, 0.85);
    --accent: #c8963e;
    --accent-glow: rgba(200, 150, 62, 0.5);
    --accent-light: #e0b860;
    --purple: #7c3aed;
    --purple-glow: rgba(124, 58, 237, 0.45);
    --purple-light: #a78bfa;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --text-dark: #1e293b;
    --bg-deep: #060b14;
    --bg-card: rgba(15, 25, 50, 0.45);
    --bg-card-hover: rgba(20, 32, 64, 0.62);
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-glass-hover: rgba(255, 255, 255, 0.14);
    --border-accent: rgba(200, 150, 62, 0.22);
    --border-purple: rgba(124, 58, 237, 0.18);
    --success: #22c55e;
    --danger: #ef4444;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-glass: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.03);
    --shadow-glow-purple: 0 0 60px rgba(124, 58, 237, 0.25);
    --shadow-glow-accent: 0 0 60px rgba(200, 150, 62, 0.25);
    --shadow-glow-mixed: 0 0 80px rgba(160, 100, 200, 0.2);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --max-width: 1240px;
}

/* ---------- RESET ------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg-deep);
    overflow-x: hidden;
    cursor: none;
    position: relative;
    min-height: 100vh;
}

/* ---------- FUNDAL DECORATIV: ORB-URI & GRID ---------------------- */
/* Orb-uri mari cu blur - mov si auriu */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(140px);
    opacity: 0.28;
    will-change: transform;
}
.bg-orb--purple {
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(124,58,237,0.5) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: orbFloatPurple 18s ease-in-out infinite;
}
.bg-orb--gold {
    width: 60vw;
    height: 60vw;
    max-width: 750px;
    max-height: 750px;
    background: radial-gradient(circle, rgba(200,150,62,0.4) 0%, transparent 70%);
    bottom: -12%;
    right: -8%;
    animation: orbFloatGold 22s ease-in-out infinite;
}
@keyframes orbFloatPurple {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(4%, -3%) scale(1.06); }
    50% { transform: translate(-2%, 2%) scale(0.95); }
    75% { transform: translate(3%, 1%) scale(1.04); }
}
@keyframes orbFloatGold {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-3%, 2%) scale(1.05); }
    50% { transform: translate(2%, -4%) scale(0.93); }
    75% { transform: translate(-1%, -2%) scale(1.07); }
}

/* Grid subtil pe fundal */
.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ---------- CANVAS PARTICLES BACKGROUND --------------------------- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ---------- CUSTOM CURSOR ---------------------------------------- */
.cursor {
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: -11px;
    left: -11px;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, border-color 0.3s, background 0.3s;
    mix-blend-mode: difference;
    will-change: transform;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-light);
    border-radius: 50%;
    position: fixed;
    top: -3px;
    left: -3px;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.08s ease, background 0.3s;
    will-change: transform;
}
.cursor.hover {
    transform: scale(1.8);
    border-color: var(--purple-light);
    background: rgba(124, 58, 237, 0.12);
    backdrop-filter: blur(2px);
}
.cursor-dot.hover {
    transform: scale(0.6);
    background: var(--purple-light);
}

/* Fallback cursor pentru touch devices */
@media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
}

/* ---------- GLASS OVERLAY PENTRU SECTIUNI ------------------------ */
.glass-bg {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
}

/* ---------- NAVIGATION ------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 11, 20, 0.65);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(8, 14, 28, 0.85);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    border-bottom-color: rgba(200, 150, 62, 0.12);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.nav-logo {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    z-index: 1001;
}
.nav-logo i {
    color: var(--accent);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(200,150,62,0.4));
}
.nav-logo span {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo:hover { opacity: 0.9; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.2px;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(124,58,237,0.08);
}
.nav-links a.active {
    color: var(--accent-light);
    background: rgba(200, 150, 62, 0.08);
    box-shadow: 0 0 16px rgba(200,150,62,0.08);
}
.nav-cta {
    background: linear-gradient(135deg, var(--accent), #b8862d) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    box-shadow: 0 4px 22px rgba(200, 150, 62, 0.35);
    letter-spacing: 0.3px !important;
}
.nav-cta:hover {
    box-shadow: 0 8px 32px rgba(200, 150, 62, 0.5), 0 0 40px rgba(200,150,62,0.15) !important;
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, var(--accent-light), var(--accent)) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    z-index: 1001;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    width: 28px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5.5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5.5px);
}

/* ---------- SECTIONS --------------------------------------------- */
.section {
    padding: 100px 28px;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 14px;
    background: rgba(200, 150, 62, 0.08);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(200, 150, 62, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.section-label i { font-size: 0.7rem; }
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title .highlight {
    background: linear-gradient(135deg, var(--accent), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-dim);
    max-width: 620px;
    margin-bottom: 52px;
    line-height: 1.7;
}
.section-header--center {
    text-align: center;
}
.section-header--center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- HERO ------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.14) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(200, 150, 62, 0.12) 0%, transparent 60%),
                var(--bg-deep);
    padding: 0 28px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124,58,237,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200,150,62,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding-top: 60px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}
.hero-badge .dot {
    width: 9px;
    height: 9px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.6);
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.75); }
}
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: 22px;
    max-width: 750px;
    color: #fff;
    letter-spacing: -1px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 560px;
    margin-bottom: 38px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- BUTTONS ---------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: none;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b8862d);
    color: #fff;
    box-shadow: 0 6px 30px rgba(200, 150, 62, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 150, 62, 0.55), 0 0 50px rgba(200,150,62,0.12);
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 60%, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-primary:hover::after {
    transform: translateX(100%);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 30px rgba(124,58,237,0.1);
}
.btn-dark {
    background: var(--primary);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}
.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-purple);
}
.btn-ghost {
    background: transparent;
    color: var(--accent-light);
    border: 1px solid rgba(200, 150, 62, 0.25);
}
.btn-ghost:hover {
    background: rgba(200, 150, 62, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ---------- HERO STATS ------------------------------------------- */
.hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 60px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}
.hero-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
}

/* ---------- CUM LUCRAM ------------------------------------------- */
#cum-lucram {
    background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.06) 0%, transparent 60%);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    counter-reset: step;
}
.step-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    opacity: 0;
    transition: var(--transition);
}
.step-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition);
}
.step-card:hover::before { opacity: 1; }
.step-card:hover::after {
    top: -30%;
    right: -30%;
    opacity: 1.3;
}
.step-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-mixed);
}
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
    position: relative;
    z-index: 1;
}
.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.step-card p {
    font-size: 0.925rem;
    color: var(--text-dim);
}

/* ---------- SERVICII --------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(200,150,62,0.07) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50px, -50px);
    pointer-events: none;
    transition: var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30px, 30px);
    pointer-events: none;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-mixed);
    background: var(--bg-card-hover);
}
.service-card:hover::after {
    transform: translate(30px, -30px) scale(1.15);
}
.service-card:hover::before {
    transform: translate(-20px, 20px) scale(1.2);
}
.service-card.featured {
    border-color: var(--border-purple);
    background: rgba(20, 25, 55, 0.58);
    box-shadow: 0 0 30px rgba(124,58,237,0.08);
}
.service-card.featured::before {
    content: 'Recomandat';
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
    transform: none;
}
.service-icon {
    font-size: 2rem;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(200, 150, 62, 0.1);
    border: 1px solid rgba(200, 150, 62, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    background: rgba(200, 150, 62, 0.18);
    box-shadow: 0 0 30px rgba(200, 150, 62, 0.25);
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 0.925rem;
    color: var(--text-dim);
    line-height: 1.65;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* ---------- SERVICE PRICING -------------------------------------- */
.service-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.service-price-old {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.5);
    text-decoration-thickness: 2px;
    opacity: 0.7;
}
.service-price-new {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}
.service-link {
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-link i { transition: var(--transition); }
.service-link:hover {
    color: #fff;
    gap: 14px;
}
.service-link:hover i { transform: translateX(4px); }

/* ---------- PORTOFOLIU ------------------------------------------- */
#portofoliu {
    background: radial-gradient(ellipse at 50% 100%, rgba(200,150,62,0.05) 0%, transparent 60%);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.portfolio-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-mixed);
}
.portfolio-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.portfolio-card:hover .portfolio-img {
    transform: scale(1.07);
}
.portfolio-body {
    padding: 26px 28px;
}
.portfolio-tag {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    background: rgba(200, 150, 62, 0.1);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(200, 150, 62, 0.15);
}
.portfolio-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.portfolio-card p {
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* ---------- TERMENE ---------------------------------------------- */
.terms-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-card);
}
.terms-table {
    width: 100%;
    border-collapse: collapse;
}
.terms-table th {
    background: rgba(10, 22, 40, 0.7);
    color: var(--accent-light);
    padding: 18px 22px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(200, 150, 62, 0.15);
}
.terms-table td {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.925rem;
    color: var(--text-dim);
}
.terms-table tbody tr {
    transition: var(--transition-fast);
}
.terms-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}
.badge-fast {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.badge-standard {
    background: rgba(200, 150, 62, 0.1);
    color: var(--accent-light);
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    border: 1px solid rgba(200, 150, 62, 0.2);
}

/* ---------- FAQ -------------------------------------------------- */
#faq {
    background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.05) 0%, transparent 60%);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-mixed);
}
.faq-question {
    width: 100%;
    padding: 20px 28px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
    letter-spacing: 0.2px;
    cursor: none;
    font-family: inherit;
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(200, 150, 62, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(200, 150, 62, 0.2);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 28px 24px;
}
.faq-answer p {
    font-size: 0.925rem;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ---------- CONTACT ---------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.contact-info > p {
    color: var(--text-dim);
    margin-bottom: 30px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.contact-icon {
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(200, 150, 62, 0.08);
    border: 1px solid rgba(200, 150, 62, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-light);
}
.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 3px;
}
.contact-detail span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.contact-form {
    background: var(--bg-card);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 38px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 7px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(10, 20, 40, 0.55);
    color: #fff;
    outline: none;
    cursor: auto;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(15, 25, 50, 0.75);
    box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.04), var(--shadow-glow-accent);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23c8963e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: auto;
}
.form-group select option {
    background: #0a1628;
    color: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    color: var(--success);
    font-weight: 600;
    font-size: 1rem;
}

/* ---------- FOOTER ----------------------------------------------- */
.footer {
    background: rgba(6, 10, 20, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 68px 28px 32px;
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
}
.footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.footer p, .footer a {
    font-size: 0.88rem;
    line-height: 1.9;
}
.footer p { color: var(--text-dim); }
.footer a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer a:hover { color: var(--accent-light); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer-bottom {
    max-width: var(--max-width);
    margin: 44px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ---------- SCROLL TO TOP ---------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-accent);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    pointer-events: none;
    cursor: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
    transform: translateY(-4px);
}

/* ---------- ANIMATIONS ------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- GLASS DIVIDER ---------------------------------------- */
.glass-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,150,62,0.18), rgba(124,58,237,0.18), transparent);
    margin: 0 auto;
    max-width: 300px;
}

/* ===================================================================
   MEDIA QUERIES
   Strategie: Desktop-first. 
   - Stilurile de bază țintesc desktop >= 1025px
   - 1024px: tabletă landscape
   - 900px:  tabletă portrait / ecrane mici
   - 600px:  telefon landscape / tabletă mică
   - 480px:  telefon mic (portrait)
   - 1400px+: wide desktop enhancements
   =================================================================== */

/* ---------- WIDE DESKTOP (> 1400px) ------------------------------- */
@media (min-width: 1400px) {
    :root {
        --max-width: 1320px;
    }
    .hero h1 {
        max-width: 880px;
    }
    .hero p {
        max-width: 640px;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .faq-list {
        max-width: 900px;
    }
    .section {
        padding: 120px 28px;
    }
    .footer-inner {
        gap: 60px;
    }
}

/* ---------- TABLETĂ LANDSCAPE / DESKTOP MIC (≤ 1024px) ----------- */
@media (max-width: 1024px) {
    /* Navigație */
    .nav-inner {
        padding: 0 22px;
        height: 70px;
    }
    .nav-logo {
        font-size: 1.4rem;
    }
    .nav-links a {
        padding: 8px 14px;
        font-size: 0.84rem;
    }
    .nav-cta {
        padding: 10px 20px !important;
        font-size: 0.82rem !important;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 22px 80px;
    }
    .hero-content {
        padding-top: 30px;
    }
    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3rem);
        max-width: 600px;
    }
    .hero p {
        font-size: 1.05rem;
        max-width: 480px;
        margin-bottom: 30px;
    }
    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 18px;
        margin-bottom: 24px;
    }
    .hero-stats {
        gap: 36px;
        margin-top: 40px;
        padding-top: 30px;
    }
    .hero-stat h3 {
        font-size: 1.8rem;
    }

    /* Secțiuni */
    .section {
        padding: 80px 22px;
    }
    .section-title {
        font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    }
    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 40px;
    }

    /* Grid-uri */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    /* Service card */
    .service-card {
        padding: 30px 24px;
        gap: 12px;
    }
    .service-icon {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
        border-radius: 16px;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }

    /* Portfolio */
    .portfolio-img {
        height: 200px;
    }
    .portfolio-body {
        padding: 20px 22px;
    }

    /* Contact */
    .contact-grid {
        gap: 36px;
    }
    .contact-form {
        padding: 30px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer {
        padding: 52px 22px 28px;
    }

    /* Buttons */
    .btn {
        padding: 13px 26px;
        font-size: 0.88rem;
    }

    /* Tabel termene */
    .terms-table th,
    .terms-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
}

/* ---------- TABLETĂ PORTRAIT / ECRAN MEDIU (≤ 900px) ------------- */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-inner {
        height: 68px;
        padding: 0 18px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        height: 100dvh;
        background: rgba(8, 14, 28, 0.97);
        backdrop-filter: blur(36px);
        -webkit-backdrop-filter: blur(36px);
        flex-direction: column;
        padding: 110px 36px 50px;
        transition: var(--transition);
        gap: 2px;
        border-left: 1px solid rgba(255,255,255,0.04);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 8px;
    }

    /* Hero */
    .hero {
        padding: 100px 18px 70px;
        min-height: auto;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        letter-spacing: -0.5px;
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    /* Secțiuni */
    .section {
        padding: 72px 22px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.92rem;
        margin-bottom: 36px;
    }
    .section-label {
        font-size: 0.7rem;
        padding: 5px 14px;
        letter-spacing: 2px;
    }

    /* Grid-uri: 1 coloană centrată */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 18px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 18px;
    }
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 16px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Hero stats */
    .hero-stats {
        gap: 32px;
        margin-top: 36px;
    }
    .hero-stat h3 {
        font-size: 1.6rem;
    }

    /* Hero buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Scroll to top */
    .scroll-top {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* ---------- TELEFON LANDSCAPE / TABLETĂ MICĂ (≤ 600px) ----------- */
@media (max-width: 600px) {
    .nav-inner {
        height: 64px;
        padding: 0 14px;
    }
    .nav-logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 90px 14px 56px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero-content {
        padding-top: 60px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 20px;
        flex-direction: column;
        margin-top: 28px;
        padding-top: 20px;
    }
    .hero-stat h3 {
        font-size: 1.4rem;
    }
    .hero-badge {
        font-size: 0.74rem;
        padding: 7px 16px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .section {
        padding: 56px 16px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 0.88rem;
        margin-bottom: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .step-card {
        padding: 28px 22px;
    }

    .services-grid {
        max-width: 400px;
    }
    .service-card {
        padding: 28px 22px;
    }

    .portfolio-grid {
        max-width: 400px;
    }
    .portfolio-img {
        height: 180px;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer {
        padding: 40px 16px 24px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .faq-list {
        gap: 10px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

/* ---------- TELEFOANE MICI (max-width: 480px) -------------------- */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    img, svg, video, canvas, iframe {
        max-width: 100%;
        height: auto;
    }

    .nav-inner { padding: 0 14px; height: 62px; }
    .nav-logo { font-size: 1.25rem; gap: 6px; }
    .nav-logo i { font-size: 1.3rem; }
    .hamburger span { width: 24px; height: 2px; }
    .hamburger { gap: 4px; }
    .nav-links { width: 100vw; right: -100vw; padding: 90px 22px 40px; }
    .nav-links a { font-size: 0.95rem; padding: 13px 16px; }
    .nav-cta { padding: 13px 22px !important; font-size: 0.9rem !important; }

    .hero { min-height: 100vh; min-height: 100dvh; padding: 0 14px; }
    .hero-content { padding-top: 80px; }
    .hero-badge { font-size: 0.72rem; padding: 8px 16px; gap: 7px; margin-bottom: 20px; }
    .hero-badge .dot { width: 7px; height: 7px; }
    .hero h1 { font-size: 1.7rem; letter-spacing: -0.5px; margin-bottom: 14px; word-break: break-word; }
    .hero p { font-size: 0.88rem; margin-bottom: 26px; line-height: 1.65; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; text-align: center; padding: 14px 20px; font-size: 0.88rem; }
    .hero-stats { gap: 18px; flex-direction: column; margin-top: 32px; padding-top: 24px; }
    .hero-stat h3 { font-size: 1.4rem; }
    .hero-stat p { font-size: 0.78rem; }

    .section { padding: 48px 14px; }
    .section-label { font-size: 0.68rem; padding: 5px 14px; letter-spacing: 2px; }
    .section-title { font-size: 1.5rem; margin-bottom: 10px; }
    .section-subtitle { font-size: 0.88rem; margin-bottom: 32px; }

    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-card { padding: 28px 20px; border-radius: var(--radius); }
    .step-number { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 12px; margin-bottom: 16px; }
    .step-card h3 { font-size: 1.05rem; }
    .step-card p { font-size: 0.84rem; }

    .services-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; gap: 16px; }
    .service-card { padding: 24px 18px; border-radius: var(--radius); gap: 10px; }
    .service-card.featured::before { top: 10px; right: 10px; font-size: 0.65rem; padding: 4px 10px; }
    .service-icon { width: 52px; height: 52px; font-size: 1.5rem; border-radius: 14px; }
    .service-card h3 { font-size: 1.05rem; }
    .service-card p { font-size: 0.84rem; }
    .service-pricing { gap: 8px; margin-top: 4px; }
    .service-price-old { font-size: 0.9rem; }
    .service-price-new { font-size: 1.2rem; }
    .service-discount-badge { font-size: 0.64rem; padding: 4px 10px; }
    .service-link { font-size: 0.82rem; }

    .portfolio-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; gap: 16px; }
    .portfolio-img { height: 190px; }
    .portfolio-body { padding: 18px 20px; }
    .portfolio-tag { font-size: 0.66rem; padding: 4px 10px; }
    .portfolio-card h3 { font-size: 0.98rem; }
    .portfolio-card p { font-size: 0.8rem; }

    .terms-table-wrap { border-radius: var(--radius); margin: 0 -2px; }
    .terms-table th, .terms-table td { padding: 12px 10px; font-size: 0.75rem; white-space: nowrap; }
    .terms-table th { font-size: 0.7rem; letter-spacing: 0.2px; }
    .badge-fast, .badge-standard { font-size: 0.66rem; padding: 3px 8px; }

    .faq-list { gap: 10px; }
    .faq-question { padding: 16px 18px; font-size: 0.92rem; gap: 12px; }
    .faq-icon { width: 28px; height: 28px; font-size: 1.2rem; }
    .faq-item.open .faq-answer { padding: 0 18px 18px; }
    .faq-answer p { font-size: 0.82rem; }

    .contact-grid { gap: 28px; }
    .contact-info h3 { font-size: 1.15rem; }
    .contact-info > p { font-size: 0.84rem; margin-bottom: 20px; }
    .contact-detail { gap: 12px; margin-bottom: 16px; }
    .contact-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 12px; }
    .contact-detail strong { font-size: 0.78rem; }
    .contact-detail span { font-size: 0.8rem; }
    .contact-form { padding: 20px 16px; border-radius: var(--radius); }
    .form-group { margin-bottom: 14px; }
    .form-group label { font-size: 0.74rem; margin-bottom: 5px; }
    .form-group input, .form-group select, .form-group textarea { padding: 11px 14px; font-size: 0.88rem; border-radius: 8px; }
    .form-group textarea { min-height: 110px; }
    .form-submit { padding: 13px; font-size: 0.92rem; border-radius: 50px; }

    .footer { padding: 40px 14px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer h4 { font-size: 0.92rem; margin-bottom: 12px; }
    .footer p, .footer a { font-size: 0.8rem; }
    .footer ul li { margin-bottom: 7px; }
    .footer-bottom { margin-top: 28px; padding-top: 18px; font-size: 0.7rem; }

    .scroll-top { bottom: 16px; right: 14px; width: 38px; height: 38px; font-size: 0.9rem; }
    .glass-divider { max-width: 200px; }
    .btn { padding: 13px 24px; font-size: 0.85rem; gap: 7px; }
    .btn-primary, .btn-outline, .btn-dark, .btn-ghost { width: 100%; justify-content: center; }
}

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