:root {
    --primary: #0a192f;
    --secondary: #172a45;
    --accent: #64ffda;
    --accent-dim: rgba(100, 255, 218, 0.1);
    --text-main: #ccd6f6;
    --text-gray: #8892b0;
    --bg: #0a192f;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    --radius: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text-main);
    cursor: default;
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border: 2px solid var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--primary);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .container { padding: 0 5vw; }
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.nav-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.mobile-toggle i { width: 32px; height: 32px; }

.logo a { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; display: block; object-fit: contain; transition: var(--transition); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; color: var(--text-gray); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-active {
    color: var(--accent);
    font-weight: 700;
    position: relative;
}
.nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-admin {
    display: flex;
    align-items: center;
}
.nav-admin i {
    width: 20px;
    height: 20px;
}

.lang-switch {
    align-items: center;
    display: flex; gap: 0.5rem; font-size: 0.85rem;
    border: 1px solid rgba(136, 146, 176, 0.4);
    padding: 0.25rem 0.6rem; border-radius: 4px;
}
.lang-switch a.active { color: var(--accent); font-weight: 700; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: var(--transition);
}
.btn-primary {
    background: var(--accent); color: var(--primary);
    border: 1px solid var(--accent);
}
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-ghost {
    background: transparent; color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent-dim); }
/* Legacy .btn alias */
.btn:not(.btn-primary):not(.btn-ghost) { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn:not(.btn-primary):not(.btn-ghost):hover { background: var(--accent-dim); }

.spin { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.btn-success {
    background: #2ecc71 !important;
    border-color: #2ecc71 !important;
    color: white !important;
}
.btn-error {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
    color: white !important;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
    min-height: 85vh;
    display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(135deg, rgba(10,25,47,0.92) 0%, rgba(23,42,69,0.88) 100%),
                url('/assets/img/hero.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(100,255,218,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(100,255,218,0.1);
    border: 1px solid rgba(100,255,218,0.3);
    color: var(--accent);
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-badge i { width: 14px; height: 14px; }

.hero h1 {
    font-size: 4.2rem; font-weight: 800;
    max-width: 750px; line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #8892b0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem; color: var(--text-main);
    max-width: 560px; margin-bottom: 2.5rem; opacity: 0.85;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── HIGHLIGHTS STRIP ─────────────────────────────────────── */
.highlights-strip {
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--secondary);
    border-radius: var(--radius);
    margin: 2rem 0;
    overflow: hidden;
}
.highlight-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(100,255,218,0.1);
    transition: background 0.2s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(100,255,218,0.05); }
.highlight-item i { color: var(--accent); width: 28px; height: 28px; }
.highlight-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-main); text-align: center; }

/* ─── SECTIONS ─────────────────────────────────────────────── */
section { padding: 4rem 0; max-width: 1200px; margin: 0 auto; }

.section-title {
    font-size: 2.5rem; color: var(--white);
    line-height: normal; margin-bottom: 0.75rem; position: relative;
    text-align: left;
}
.section-title::after {
    content: ''; display: block;
    width: 52px; height: 4px;
    background: var(--accent); border-radius: 2px;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

/* ─── HOME PILLARS ─────────────────────────────────────────── */
.intro-text {
    font-size: 1.1rem; color: var(--text-gray);
    max-width: 700px; margin-bottom: 3rem;
}
.pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.pillar-card {
    background: var(--secondary);
    padding: 2.5rem 2rem; border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}
.pillar-card:hover {
    border-color: rgba(100,255,218,0.25);
    transform: translateY(-6px);
}
.pillar-icon {
    width: 52px; height: 52px;
    background: rgba(100,255,218,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.pillar-icon i { color: var(--accent); width: 24px; height: 24px; }
.pillar-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.75rem; }

@media screen and (max-width: 768px) {
    .pillar-card {
        text-align: center;
    }

    .pillar-icon {
        margin: auto auto 1.25rem;
    }
}

/* ─── FEATURED IMAGE / QUOTE ──────────────────────────────── */
#featured-image {
    padding: 0;
    max-width: none;
    width: 100%;
    margin: 5rem 0;
}
.featured-img-wrapper {
    width: 100%; height: 440px;
    background: linear-gradient(rgba(10,25,47,0.7), rgba(10,25,47,0.7)),
                url('/assets/img/office.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
}
.featured-img-overlay blockquote {
    text-align: center; max-width: 600px; padding: 0 2rem;
}
.featured-img-overlay blockquote i {
    color: var(--accent); width: 36px; height: 36px; margin-bottom: 1rem;
}
.featured-img-overlay blockquote p {
    font-size: 1.4rem; font-weight: 600; color: var(--white); font-style: italic;
}

/* ─── SERVICES ─────────────────────────────────────────────── */
.services-header { margin-bottom: 3rem; }
.services-subtitle { color: var(--text-gray); font-size: 1.1rem; margin-top: 0.5rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card--wide { grid-column: span 1; }

.service-card {
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex; flex-direction: column;
    overflow: hidden;
    height: 100%;
}
.service-card-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--secondary), transparent);
}
.service-card-content {
    padding: 1.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}
.service-card:hover {
    border-color: rgba(100,255,218,0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon {
    width: 48px; height: 48px;
    background: rgba(100,255,218,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.25rem;
    border: 1px solid rgba(100,255,218,0.2);
}
.service-icon i { color: var(--accent); width: 24px; height: 24px; }

.service-card h3 { color: var(--white); line-height: normal; font-size: 1.25rem; }
.service-card p { color: var(--text-gray); font-size: 0.95rem; flex: 1; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.service-tags span {
    font-size: 0.75rem; font-weight: 600;
    color: var(--accent);
    background: rgba(100,255,218,0.08);
    border: 1px solid rgba(100,255,218,0.2);
    padding: 0.2rem 0.6rem; border-radius: 100px;
}

/* ─── METHODOLOGY ─────────────────────────────────────────── */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.method-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.05);
    transition: var(--transition);
    margin-top: 1.5rem;
    text-align: center;
}

.method-card:hover {
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-5px);
}

.method-number {
    position: absolute;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.2);
}

.method-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.25rem;
}

.method-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .methodology-grid { grid-template-columns: 1fr 1fr; gap: 4rem 2rem; }
}

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

p { line-height: 1.3; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group--icon { position: relative; }
.form-group--icon i {
    position: absolute; left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    width: 18px; height: 18px;
    pointer-events: none;
}
.form-group--textarea i { top: 1.1rem; transform: none; }

.form-group--icon input,
.form-group--icon textarea {
    width: 100%; padding: 0.9rem 1rem 0.9rem 3rem;
    background: var(--secondary);
    border: 1px solid rgba(136,146,176,0.2);
    border-radius: 8px; color: var(--white); outline: none;
    font-family: var(--font-main); font-size: 0.95rem;
    transition: border-color 0.2s;
}
.form-group--icon input:focus,
.form-group--icon textarea:focus { border-color: var(--accent); }
.form-group--icon textarea { resize: vertical; }

/* Legacy form-group */
.form-group input, .form-group textarea {
    width: 100%; padding: 1rem;
    background: var(--secondary);
    border: 1px solid rgba(136,146,176,0.2);
    border-radius: 8px; color: var(--white); outline: none;
    font-family: var(--font-main);
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }

.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
    display: flex; align-items: center; gap: 1.25rem;
    background: var(--secondary);
    padding: 1.25rem 1.5rem; border-radius: 10px;
    border: 1px solid transparent; transition: var(--transition);
    color: var(--text-main);
}
.contact-info-card:hover { border-color: rgba(100,255,218,0.3); }
.contact-info-card__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(100,255,218,0.1); border-radius: 8px;
}
.contact-info-card__icon i { color: var(--accent); width: 20px; height: 20px; }
.contact-info-card strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-card span { font-size: 0.9rem; color: var(--text-gray); }

/* Leaflet Map */
#map {
    width: 100%; height: 400px; border-radius: var(--radius);
    border: 1px solid rgba(100,255,218,0.15);
    overflow: hidden; position: sticky; top: 90px;
}
.leaflet-popup-content-wrapper {
    background: #fff !important;
    color: #222 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    font-family: var(--font-main) !important;
}
.leaflet-popup-tip { background: #fff !important; }
.leaflet-popup-content b { color: var(--primary); }

/* ─── PROFILE ─────────────────────────────────────────────── */
.profile-bio-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.profile-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: -1.5rem;
}

.profile-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.profile-values-section { margin-bottom: 2rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(100, 255, 218, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.value-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.value-card__body h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: normal;
}

.value-card__body p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .profile-bio-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .profile-img { order: -1; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ─── LINKEDIN STYLE EXPERIENCE ─────────────────────────── */
.linkedin-experience {
    max-width: 900px;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
}

.exp-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(136, 146, 176, 0.15);
}

.exp-item:last-child {
    border-bottom: none;
}

.exp-logo {
    width: 56px;
    height: 56px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exp-logo i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.exp-details {
    flex: 1;
}

.exp-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.exp-company {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.exp-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.exp-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.exp-description i {
    font-style: italic;
    color: var(--white);
}

@media (max-width: 768px) {
    .exp-item { gap: 1rem; }
    .exp-logo { width: 48px; height: 48px; }
}

/* ─── EDUCATION & SKILLS ──────────────────────────────────── */
.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.education-card, .skills-card {
    background: var(--secondary);
    padding: 3rem;
    border-radius: var(--radius);
}

.edu-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.edu-item i {
    color: var(--accent);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.edu-item h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.edu-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.skills-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skills-tags span {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(100,255,218,0.08);
    text-align: center; margin-top: 2rem;
}
.footer-info { margin-bottom: 1rem; color: var(--text-gray); font-size: 0.9rem; }
.footer-social { margin-top: 1.5rem; display: flex; justify-content: center; gap: 1rem; }
.footer-social a {
    color: var(--text-gray);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    border: 1px solid rgba(100,255,218,0.1);
}
.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(100,255,218,0.1);
}
.footer-social i { width: 18px; height: 18px; }
.footer-kit-digital {
    opacity: 0.8;
    transition: var(--transition);
}
.footer-kit-digital:hover {
    opacity: 1;
}
.footer-kit-digital img {
    filter: brightness(0.9);
    height: auto;
    margin: 20px auto -20px;
    max-width: 90%;
}
.kit-desktop { display: block; max-width: 1200px; }
.kit-mobile { display: none; max-width: 100%; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        visibility: hidden;
    }
    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
    }
    .nav-links a {
        font-size: 1.5rem;
        color: var(--white);
        font-weight: 600;
    }
    .nav-admin i {
        width: 28px;
        height: 28px;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .lang-switch {
        margin-top: 1rem;
        font-size: 1.1rem;
    }

    .logo-img { height: 32px; }

    .hero { padding: 2rem; margin: 0.5rem; min-height: 70vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }

    .pillars-grid, .services-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-header p { font-size: 1.1rem !important; }
    #map { height: 300px; position: static; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 3rem 0; }

    .kit-desktop { display: none; }
    .kit-mobile { display: block; }

    .nav-overlay { display: none !important; }
}

/* ─── 404 PAGE ────────────────────────────────────────────── */
.error-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.error-code {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    color: rgba(100, 255, 218, 0.05);
    position: absolute;
    z-index: -1;
    line-height: 1;
    user-select: none;
}

.error-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.error-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.error-actions {
    display: flex; gap: 1rem; justify-content: center;
}

@media (max-width: 768px) {
    .error-actions { flex-direction: column; }
    .error-content h1 { font-size: 1.8rem; }
}
