/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --bg-primary: #06060a;
    --bg-secondary: #0a0a12;
    --bg-tertiary: #10101c;

    --gold-primary: #d4a843;
    --gold-light: #f0d78c;
    --gold-lighter: #f8efc4;
    --gold-dark: #8b7021;
    --gold-darker: #6b5518;
    --gold-glow: rgba(212, 168, 67, 0.3);
    --gold-glow-strong: rgba(212, 168, 67, 0.6);
    --gold-glow-subtle: rgba(212, 168, 67, 0.08);

    --text-primary: #f0ece4;
    --text-secondary: #a09b90;
    --text-muted: #5e5a52;

    --glass-bg: rgba(255, 255, 255, 0.025);
    --glass-border: rgba(212, 168, 67, 0.1);
    --glass-border-hover: rgba(212, 168, 67, 0.3);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --section-padding: 130px 0;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 32px;
    animation: pulse-glow 2s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px transparent); }
    50% { filter: drop-shadow(0 0 20px var(--gold-glow)); }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.preloader-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px var(--gold-glow);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 168, 67, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.15s ease;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold-primary);
    background: rgba(212, 168, 67, 0.06);
}

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

.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: orb-float 20s ease infinite;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--gold-primary), transparent 70%);
    top: -10%; right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #4a90d9, transparent 70%);
    bottom: 20%; left: -10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--gold-dark), transparent 70%);
    top: 50%; right: 20%;
    animation-delay: -14s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.9); }
    75% { transform: translate(30px, 20px) scale(1.05); }
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* Hero grid background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.06);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(6, 6, 10, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.logo-bracket { color: var(--gold-primary); }
.nav-logo:hover { color: var(--gold-primary); }

.nav-links { display: flex; gap: 4px; }

.nav-links a {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: transform var(--transition-smooth);
}

.nav-links a:hover { color: var(--gold-primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-links a.active { color: var(--gold-primary); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 6px 14px;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.lang-toggle:hover { border-color: var(--glass-border-hover); }
.lang-option { color: var(--text-muted); transition: color var(--transition-fast); }
.lang-option.active { color: var(--gold-primary); font-weight: 600; }
.lang-divider { color: var(--text-muted); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-content { text-align: center; max-width: 850px; position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 36px;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
}

.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-greeting {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-name {
    font-size: clamp(3rem, 7.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(135deg, var(--gold-lighter), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    filter: drop-shadow(0 0 40px var(--gold-glow));
}

.hero-surname {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 44px;
    min-height: 2em;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.typewriter { color: var(--gold-primary); }

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--gold-primary);
    font-weight: 300;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-darker));
    color: var(--bg-primary);
    box-shadow: 0 4px 30px var(--gold-glow);
}

.btn-primary::before { background: linear-gradient(135deg, var(--gold-light), var(--gold-primary)); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--gold-glow-strong); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--gold-glow-subtle);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.1);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
    0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.5; transform: scaleY(0.5); transform-origin: top; }
    100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero-scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
}

.section-alt { background: var(--bg-secondary); }

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    border-radius: 3px;
}

.section-subtitle {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.about-image-container { position: relative; }

.about-image {
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 60px var(--gold-glow), inset 0 0 30px rgba(0,0,0,0.3);
}

.avatar-initials {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-primary);
    letter-spacing: -2px;
}

.about-image-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    border: 1px dashed rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.about-image-ring::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow-strong);
}

.ring-2 {
    width: 240px !important; height: 240px !important;
    animation-direction: reverse;
    animation-duration: 45s;
    border-style: dotted;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Code decoration */
.code-decoration {
    position: absolute;
    bottom: -20px;
    right: -30px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.72rem;
    z-index: 3;
    width: 260px;
    animation: float-code 6s ease infinite;
}

@keyframes float-code {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.code-header {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.code-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }

.code-content {
    padding: 12px 14px;
    font-family: var(--font-mono);
    line-height: 1.6;
    color: var(--text-secondary);
    overflow: hidden;
}

.code-keyword { color: #c678dd; }
.code-var { color: #e06c75; }
.code-prop { color: #e5c07b; }
.code-string { color: #98c379; }
.code-number { color: #d19a66; }

.about-text {
    padding: 32px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-text p:last-child { margin-bottom: 0; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-card {
    padding: 28px 16px;
    text-align: center;
}

.stat-card:hover { transform: translateY(-4px); }

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   TECH ORBIT
   ============================================ */
.tech-orbit {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto 72px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--gold-glow);
    z-index: 2;
}

.orbit-center-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bg-primary);
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(212, 168, 67, 0.12);
}

.orbit-ring-1 {
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    animation: orbit-spin 40s linear infinite;
}

.orbit-ring-2 {
    width: 310px;
    height: 310px;
    transform: translate(-50%, -50%);
    animation: orbit-spin 55s linear infinite reverse;
}

@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    color: var(--gold-primary);
    transition: all var(--transition-smooth);
    /* Position on orbit using angle var */
    transform: rotate(var(--angle)) translateX(110px) rotate(calc(-1 * var(--angle)));
}

.orbit-ring-2 .orbit-item {
    transform: rotate(var(--angle)) translateX(155px) rotate(calc(-1 * var(--angle)));
}

.orbit-item-sm { width: 36px; height: 36px; border-radius: 10px; }

.orbit-item svg { width: 20px; height: 20px; }
.orbit-item-sm svg { width: 16px; height: 16px; }

.orbit-text-icon {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.orbit-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.orbit-item:hover { border-color: var(--gold-primary); background: rgba(212, 168, 67, 0.08); }
.orbit-item:hover::after { opacity: 1; }

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skill-category { padding: 32px; }
.skill-category:hover { transform: translateY(-4px); }

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.skill-icon {
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 14px;
    color: var(--gold-primary);
}

.skill-icon svg { width: 22px; height: 22px; }

.skill-category-header h3 { font-size: 1.15rem; font-weight: 700; }

.skill-items { display: flex; flex-direction: column; gap: 22px; }

.skill-item { display: flex; flex-direction: column; gap: 8px; }

.skill-info { display: flex; justify-content: space-between; font-size: 0.88rem; }
.skill-info span:first-child { color: var(--text-secondary); font-weight: 500; }

.skill-level {
    color: var(--gold-primary);
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.skill-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--gold-glow);
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: -1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 8px var(--gold-glow-strong);
}

/* ============================================
   PROJECTS V2
   ============================================ */
.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.project-card-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.project-card-v2.reverse { grid-template-columns: 1fr 1.2fr; }
.project-card-v2.reverse .project-image-v2 { order: 2; }
.project-card-v2.reverse .project-details { order: 1; }

.project-image-v2 {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
}

.project-image-v2 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-image-v2:hover img { transform: scale(1.05); }

.project-image-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.project-year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-primary);
    background: rgba(6, 6, 10, 0.8);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.project-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(212, 168, 67, 0.06);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 168, 67, 0.12);
    transition: all var(--transition-fast);
}

.project-tag:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.3);
}

.project-title-v2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-desc-v2 {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-features-v2 { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.feature-chip svg { color: var(--gold-primary); flex-shrink: 0; }

.project-status { margin-top: 4px; }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
}

.status-badge.production {
    background: rgba(74, 222, 128, 0.08);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.15);
}

.status-badge.completed {
    background: rgba(96, 165, 250, 0.08);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.status-dot-sm {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease infinite;
}

/* ============================================
   TIMELINE / EDUCATION
   ============================================ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold-primary), rgba(212, 168, 67, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -40px;
    top: 24px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 1px;
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 28px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--gold-dark);
    position: relative;
}

.timeline-dot.active-dot {
    border-color: var(--gold-primary);
    box-shadow: 0 0 16px var(--gold-glow);
}

.timeline-dot.active-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
}

.timeline-content {
    padding: 28px;
    margin-left: 16px;
}

.timeline-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 3px 12px;
    border-radius: 6px;
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 168, 67, 0.15);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-badge.project-badge {
    background: rgba(96, 165, 250, 0.08);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.15);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-institution {
    font-size: 0.88rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.timeline-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.timeline-highlight {
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 44px 24px;
    text-align: center;
    display: block;
    position: relative;
    overflow: hidden;
}

.contact-card:hover { transform: translateY(-8px); border-color: var(--gold-primary); }

.contact-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-smooth);
}

.contact-card:hover .contact-icon-ring {
    border-color: var(--gold-primary);
    border-style: solid;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all var(--transition-smooth);
}

.contact-card:hover .contact-icon {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: scale(1.1);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }

.contact-card p { font-size: 0.82rem; color: var(--text-muted); }

.contact-arrow {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-smooth);
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--gold-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 2;
    padding: 48px 0;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

.footer-content { text-align: center; }

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-text { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; }
.footer-year { color: var(--text-muted); font-size: 0.78rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-orbit { width: 280px; height: 280px; }
    .orbit-ring-1 { width: 180px; height: 180px; }
    .orbit-ring-2 { width: 260px; height: 260px; }
    .orbit-item { transform: rotate(var(--angle)) translateX(90px) rotate(calc(-1 * var(--angle))); }
    .orbit-ring-2 .orbit-item { transform: rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle))); }
}

@media (max-width: 768px) {
    :root { --section-padding: 90px 0; }

    /* Hide custom cursor on mobile */
    .cursor-dot, .cursor-ring { display: none; }
    body, a, button { cursor: auto; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: rgba(6, 6, 10, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.1rem; padding: 14px 32px; }
    .menu-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-image-container { display: flex; flex-direction: column; align-items: center; }
    .about-image { max-width: 260px; }
    .code-decoration { position: relative; bottom: 0; right: 0; margin-top: 16px; width: 100%; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    .skills-grid { grid-template-columns: 1fr; }
    .tech-orbit { width: 240px; height: 240px; }
    .orbit-ring-1 { width: 150px; height: 150px; }
    .orbit-ring-2 { width: 220px; height: 220px; }
    .orbit-item { width: 36px; height: 36px; transform: rotate(var(--angle)) translateX(75px) rotate(calc(-1 * var(--angle))); }
    .orbit-ring-2 .orbit-item { transform: rotate(var(--angle)) translateX(110px) rotate(calc(-1 * var(--angle))); }
    .orbit-item svg { width: 16px; height: 16px; }

    .project-card-v2 { grid-template-columns: 1fr; gap: 24px; }
    .project-card-v2.reverse { grid-template-columns: 1fr; }
    .project-card-v2.reverse .project-image-v2, .project-card-v2.reverse .project-details { order: unset; }

    .contact-grid { grid-template-columns: 1fr; max-width: 400px; }

    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }

    .timeline { padding-left: 30px; }
    .timeline-item::before { display: none; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
    .hero-name { font-size: 2.6rem; }
    .hero-surname { font-size: 1.7rem; }
    .tech-orbit { display: none; }
    .strategy-timeline { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WORK STRATEGY
   ============================================ */
.strategy-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.strategy-step {
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.strategy-step:hover { transform: translateY(-6px); }

.step-number-badge {
    position: absolute;
    top: -12px;
    right: -8px;
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(212, 168, 67, 0.06);
    line-height: 1;
    pointer-events: none;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-primary);
    transition: all var(--transition-smooth);
}

.strategy-step:hover .step-icon-wrap {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--gold-glow);
}

.step-icon-wrap svg { width: 26px; height: 26px; }

.strategy-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.strategy-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-deliverables {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step-deliverables span {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 4px 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    opacity: 0.4;
    flex-shrink: 0;
    padding: 0 4px;
    margin-top: 60px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.08);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(90deg, var(--gold-darker), var(--gold-primary), var(--gold-darker));
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card.featured .pricing-header { margin-top: 20px; }

.pricing-header { margin-bottom: 28px; }

.pricing-tier {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pricing-feature svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.pricing-feature.disabled {
    opacity: 0.35;
}

.pricing-feature.disabled svg { color: var(--text-muted); }

.pricing-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.partner-card {
    padding: 36px 24px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 380px;
    width: 100%;
}

.partner-card:hover { transform: translateY(-6px); }

.partner-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.partner-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.06);
    border: 2px dashed rgba(212, 168, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all var(--transition-smooth);
}

.partner-card:hover .partner-avatar-circle {
    border-style: solid;
    border-color: var(--gold-primary);
    background: rgba(212, 168, 67, 0.1);
    box-shadow: 0 0 24px var(--gold-glow);
}

.partner-status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f59e0b;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.partner-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.partner-role {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.partner-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.partner-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-skills span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.partner-cta {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-block;
}

.partner-cta:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

/* Partners CTA Banner */
.partners-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
    gap: 32px;
    border-color: rgba(212, 168, 67, 0.15);
}

.partners-cta:hover {
    border-color: var(--gold-primary);
}

.partners-cta-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-cta-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.partners-cta .btn { flex-shrink: 0; }

/* ============================================
   NAV LINKS OVERFLOW FIX (many links)
   ============================================ */
.nav-links a {
    padding: 8px 12px;
    font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .strategy-timeline { flex-wrap: wrap; gap: 16px; }
    .strategy-step { max-width: none; }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    .strategy-timeline { flex-direction: column; align-items: center; }
    .strategy-step { max-width: 400px; width: 100%; }
    .step-connector { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .partners-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }
    .partners-cta { flex-direction: column; text-align: center; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ============================================
   SELECTION
   ============================================ */
::selection { background: rgba(212, 168, 67, 0.3); color: var(--gold-light); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 67, 0.05);
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }
    .cookie-content {
        flex-direction: column;
        gap: 12px;
    }
    .cookie-banner .btn-sm {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PRICING ADD-ON & FAQ ACORDION
   ============================================ */

.faq-item {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border: 1px solid rgba(212, 168, 67, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeInDownFAQ 0.3s ease forwards;
}

@keyframes fadeInDownFAQ {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .pricing-addon {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .pricing-addon .addon-price {
        align-items: center;
        width: 100%;
    }
}
