/* ===== DESIGN TOKENS ===== */
:root {
    --c-bg: #050d18;
    --c-bg-2: #0a1628;
    --c-bg-3: #0f2040;
    --c-bg-card: #0d1b2e;
    --c-bg-card-hover: #122744;
    --c-text: #c8d6e5;
    --c-text-muted: #7a8fa6;
    --c-heading: #edf2f7;
    --c-accent: #f97316;
    --c-accent-hover: #fb923c;
    --c-accent-glow: rgba(249, 115, 22, 0.25);
    --c-whatsapp: #25d366;
    --c-whatsapp-hover: #20bd5a;
    --c-border: rgba(255, 255, 255, 0.06);
    --c-border-light: rgba(255, 255, 255, 0.1);
    --c-star: #f59e0b;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px var(--c-accent-glow);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-w: 1200px;
    --header-h: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--c-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.accent { color: var(--c-accent); }
.section { padding: 80px 0; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: var(--c-accent-glow);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--c-heading);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section__desc { color: var(--c-text-muted); max-width: 560px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--c-accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
    background: var(--c-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0 40px var(--c-accent-glow);
}
.btn--whatsapp {
    background: var(--c-whatsapp);
    color: #fff;
}
.btn--whatsapp:hover {
    background: var(--c-whatsapp-hover);
    color: #fff;
    transform: translateY(-1px);
}
.btn--outline {
    background: transparent;
    color: var(--c-heading);
    border: 1.5px solid var(--c-border-light);
}
.btn--outline:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(5, 13, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
    transition: background 0.3s;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
}
.header__logo-icon { color: var(--c-accent); display: flex; }
.header__logo-text { letter-spacing: -0.02em; }
.header__nav {
    display: flex;
    gap: 28px;
}
.header__link {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.header__link:hover, .header__link.active { color: var(--c-heading); }
.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    transition: width 0.25s ease;
}
.header__link:hover::after { width: 100%; }
.header__link--hire {
    color: var(--c-accent);
    font-weight: 600;
}
.header__link--hire:hover { color: var(--c-accent-hover); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-heading);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        var(--c-bg);
}
.hero__inner { position: relative; z-index: 1; padding: 60px 0; }
.hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-accent);
    background: var(--c-accent-glow);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--c-heading);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--c-text-muted);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero__stat { text-align: left; }
.hero__stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-heading);
    display: block;
    line-height: 1.2;
}
.hero__stat-label {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ===== SKILLS & SERVICES ===== */
.skills { background: var(--c-bg-2); }
.skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.skill-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.skill-card:hover {
    background: var(--c-bg-card-hover);
    border-color: var(--c-border-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.skill-card:hover::before { transform: scaleX(1); }
.skill-card__icon {
    color: var(--c-accent);
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
    background: var(--c-accent-glow);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.skill-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 8px;
}
.skill-card__desc {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}
.skills__note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    background: var(--c-accent-glow);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--r-md);
    padding: 16px 20px;
    color: var(--c-text);
}
.skills__note svg { color: var(--c-accent); flex-shrink: 0; }
.skills__note p { font-size: 0.9rem; }

/* ===== ABOUT ===== */
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.about__image { position: relative; }
.about__photo {
    width: 100%;
    border-radius: var(--r-xl);
    object-fit: cover;
    object-position: top;
    aspect-ratio: 3 / 4;
    display: block;
}
.about__experience-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--c-accent);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}
.about__experience-num { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.about__experience-text { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.about__text {
    color: var(--c-text);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.about__certs { margin-top: 24px; }
.about__certs-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.about__certs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about__certs-list li {
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--c-text-muted);
}
.about__certs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
}
.about__brands { margin-top: 24px; }
.about__brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    background: var(--c-bg-3);
    color: var(--c-text-muted);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--c-border);
}
.accent-tag {
    background: var(--c-accent-glow);
    color: var(--c-accent);
    border-color: rgba(249,115,22,0.3);
    font-weight: 600;
}

/* ===== BMW PROJECT CALLOUT ===== */
.about__bmw-project {
    margin-top: 28px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.about__bmw-photos {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}
.about__bmw-photo {
    position: relative;
    overflow: hidden;
}
.about__bmw-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about__bmw-photo--before {
    max-height: 280px;
}
.about__bmw-photo--after {
    max-height: 280px;
}
.about__bmw-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(5, 13, 24, 0.85);
    color: var(--c-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.about__bmw-label--after {
    background: rgba(249, 115, 22, 0.9);
    color: #fff;
}
.about__bmw-caption {
    padding: 16px 20px;
}
.about__bmw-caption strong {
    display: block;
    font-size: 0.85rem;
    color: var(--c-accent);
    margin-bottom: 4px;
}
.about__bmw-caption span {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery { background: var(--c-bg-2); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery__item { border-radius: var(--r-lg); overflow: hidden; }
.gallery__item--real {
    position: relative;
    background: var(--c-bg-card);
}
.gallery__item--real img,
.gallery__item--real video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery__item--real:hover img {
    transform: scale(1.03);
}
.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(5,13,24,0.95) 0%, rgba(5,13,24,0.7) 60%, transparent 100%);
}
.gallery__caption span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-heading);
}
.gallery__caption small {
    font-size: 0.75rem;
    color: var(--c-accent);
}
.gallery__placeholder {
    background: var(--c-bg-3);
    border: 2px dashed var(--c-border-light);
    border-radius: var(--r-lg);
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    transition: all 0.3s;
}
.gallery__placeholder svg { opacity: 0.3; }
.gallery__placeholder small { font-size: 0.75rem; opacity: 0.6; }
.gallery__placeholder:hover {
    border-color: var(--c-accent);
    background: var(--c-bg-card-hover);
}

/* ===== HIRE ME ===== */
.hire {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        var(--c-bg);
}
.hire__points {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.hire__point {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: all 0.3s ease;
}
.hire__point:hover {
    border-color: var(--c-border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.hire__point-icon {
    color: var(--c-accent);
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
    background: var(--c-accent-glow);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hire__point h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 6px;
}
.hire__point p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

/* ===== ON-PAGE CV ===== */
.hire__cv {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.hire__cv-header {
    background: linear-gradient(135deg, var(--c-bg-3) 0%, rgba(249,115,22,0.08) 100%);
    padding: 28px 32px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.hire__cv-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-heading);
}
.hire__cv-header p {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    font-style: italic;
}
.hire__cv-body {
    padding: 28px 32px;
}
.hire__cv-section {
    margin-bottom: 28px;
}
.hire__cv-section:last-child {
    margin-bottom: 0;
}
.hire__cv-section h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
}
.hire__cv-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.88rem;
    gap: 16px;
}
.hire__cv-row span:first-child {
    color: var(--c-text-muted);
    flex-shrink: 0;
}
.hire__cv-row span:last-child {
    color: var(--c-heading);
    text-align: right;
}
.hire__cv-text {
    font-size: 0.9rem;
    color: var(--c-text);
    line-height: 1.6;
}
.hire__cv-subjects {
    margin-top: 16px;
}
.hire__cv-subjects h5 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hire__cv-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill {
    display: inline-block;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.82rem;
    color: var(--c-text);
}
.hire__cv-experience {
    margin-bottom: 16px;
}
.hire__cv-experience:last-child {
    margin-bottom: 0;
}
.hire__cv-experience strong {
    display: block;
    font-size: 0.92rem;
    color: var(--c-heading);
}
.hire__cv-date {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 4px;
}
.hire__cv-experience p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}
.hire__cv-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hire__cv-footer {
    background: var(--c-bg-3);
    padding: 24px 32px;
    border-top: 1px solid var(--c-border);
    text-align: center;
}
.hire__cv-footer > p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    margin-bottom: 16px;
    font-style: italic;
}
.hire__cv-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--c-bg-2); }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
}
.review-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: all 0.3s ease;
}
.review-card:hover {
    border-color: var(--c-border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-card__text {
    font-size: 0.92rem;
    color: var(--c-text);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}
.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-accent);
    flex-shrink: 0;
}
.review-card__author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--c-heading);
}
.review-card__author span {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}
.reviews__coming-soon {
    text-align: center;
    padding: 48px 20px;
    color: var(--c-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.reviews__coming-soon svg {
    color: var(--c-accent);
    opacity: 0.6;
}
.reviews__coming-soon p {
    max-width: 400px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact { background: var(--c-bg-2); }
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact__detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact__detail svg { flex-shrink: 0; margin-top: 2px; color: var(--c-accent); }
.contact__detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--c-heading);
    margin-bottom: 2px;
}
.contact__detail p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}
.contact__detail a { color: var(--c-text); }
.contact__detail a:hover { color: var(--c-accent); }
.contact__social { display: flex; gap: 12px; margin-top: 24px; }
.contact__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all 0.2s;
}
.contact__social-link:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-2px);
}
.contact__map {
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 280px;
}
.contact__map iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    padding-top: 48px;
}
.footer__inner {
    padding-bottom: 32px;
    text-align: center;
}
.footer__brand .header__logo-text {
    font-size: 1.6rem;
}
.footer__brand p {
    color: var(--c-text-muted);
    font-size: 1rem;
    margin-top: 10px;
}
.footer__powered {
    display: block;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    opacity: 0.6;
    letter-spacing: 0.04em;
}
.footer__bottom {
    border-top: 1px solid var(--c-border);
    padding: 16px 0;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-align: center;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--c-whatsapp);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .header__nav { display: none; }
    .header__burger { display: flex; }
    .header__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(5, 13, 24, 0.97);
        backdrop-filter: blur(16px);
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--c-border);
    }
    .header__nav.open .header__link {
        display: block;
        padding: 12px 16px;
        border-radius: var(--r-sm);
        font-size: 1rem;
    }
    .header__nav.open .header__link:hover { background: var(--c-bg-3); }
    .header__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .header__burger.open span:nth-child(2) { opacity: 0; }
    .header__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .about__inner { grid-template-columns: 1fr; }
    .about__image { max-width: 320px; margin: 0 auto; }
    .about__bmw-photos { grid-template-columns: 1fr 1fr; }
    .contact__inner { grid-template-columns: 1fr; }
    .contact__info { display: flex; flex-direction: column; align-items: center; }
    .contact__details { align-items: stretch; max-width: 320px; width: 100%; }
    .contact__social { justify-content: center; }
    .hero__stats { gap: 24px; }
    .hire__points { grid-template-columns: 1fr 1fr; }
    .hire__cv-body { padding: 20px; }
    .hire__cv-header { padding: 20px; }
    .hire__cv-footer { padding: 20px; }
}

@media (max-width: 600px) {
    .container { padding: 0 24px; }
    .section { padding: 56px 0; }
    .skills__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding-top: calc(var(--header-h) + 20px); padding-bottom: 40px; }
    .hero__inner { padding: 40px 0; text-align: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__cta { flex-direction: column; align-items: center; }
    .hero__cta .btn { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__stat { text-align: center; }
    .about__bmw-photos { grid-template-columns: 1fr; }
    .about__bmw-photo--before { max-height: 200px; }
    .about__bmw-photo--after { max-height: 220px; }
    .hire__points { grid-template-columns: 1fr; }
    .hire__cv-body { padding: 16px; }
    .hire__cv-header { padding: 16px; }
    .hire__cv-footer { padding: 16px; }
    .hire__cv-row {
        flex-direction: column;
        gap: 2px;
    }
    .hire__cv-row span:last-child {
        text-align: left;
    }
    .hire__cv-cta { flex-direction: column; }
    .hire__cv-cta .btn { justify-content: center; }
    .gallery__item--real img,
    .gallery__item--real video { height: 200px; }
}
