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

:root {
    --green: #3ddc84;
    --green-dark: #2ab36a;
    --purple: #667eea;
    --purple-dark: #764ba2;
    --bg: #0f0f13;
    --bg-2: #16161e;
    --bg-3: #1e1e2a;
    --border: rgba(255,255,255,0.08);
    --text: #e8e8f0;
    --text-muted: #8888a0;
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--bg-2);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 56px;
    color: #fff;
}

.highlight {
    background: linear-gradient(135deg, var(--green), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), #2ab36a);
    color: #0f1a14;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 220, 132, 0.35);
}

.btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(15, 15, 19, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-android {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    overflow: visible;
    animation: androidBob 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(61, 220, 132, 0.55));
}

@keyframes androidBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.nav-logo-text {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.logo-first {
    color: #fff;
}

.logo-last {
    color: var(--green);
    animation: logoGlow 2.5s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(61, 220, 132, 0.4); }
    50%       { text-shadow: 0 0 18px rgba(61, 220, 132, 0.9), 0 0 30px rgba(61, 220, 132, 0.4); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}

.nav-links a:hover { color: #fff; }

.nav-cta {
    padding: 8px 20px;
    background: var(--green) !important;
    color: #0f1a14 !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-link {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--green); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 120px 6vw 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-about-wrap {
    position: relative;
}

.hero-bg-photo {
    position: absolute;
    inset: 0;
    background: url('../armaan-bg.jpg') center top / cover no-repeat;
    opacity: 0;
    animation: bgFadeIn 2.5s ease-out 0.5s forwards;
    mask-image: linear-gradient(to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.55) 65%,
        rgba(0,0,0,0.35) 88%,
        transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.55) 65%,
        rgba(0,0,0,0.35) 88%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

@keyframes bgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-profile {
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-dp-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2.5px solid rgba(61, 220, 132, 0.7);
    box-shadow: 0 0 0 5px rgba(61, 220, 132, 0.1), 0 0 28px rgba(61, 220, 132, 0.3);
    overflow: hidden;
    margin-bottom: 16px;
}

.hero-dp-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 18px 10px var(--bg);
    pointer-events: none;
    z-index: 1;
}

.hero-dp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
    display: block;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 10s ease-in-out infinite;
}

.blob-1 {
    width: 500px; height: 500px;
    background: var(--green);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px; height: 400px;
    background: var(--purple);
    bottom: -50px; right: 20%;
    animation-delay: 3s;
}

.blob-3 {
    width: 300px; height: 300px;
    background: #764ba2;
    top: 50%; right: -50px;
    animation-delay: 6s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(61, 220, 132, 0.1);
    border: 1px solid rgba(61, 220, 132, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-android {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

.android-icon {
    font-size: 16px;
}

.hero-name {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.hero-tagline {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 36px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-top {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Phone mockups */
.hero-phone {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    flex-shrink: 0;
}

.hero-phone--notif {
    animation-delay: 0.15s;
    align-self: center;
    margin-top: 40px;
}


.hero-phone--notif .phone-glow {
    width: 220px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(102,126,234,0.2) 0%, transparent 70%);
}

/* Glow aura behind phone */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 480px;
    background: radial-gradient(ellipse, rgba(61,220,132,0.18) 0%, rgba(102,126,234,0.12) 50%, transparent 75%);
    border-radius: 50%;
    animation: auraBreath 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes auraBreath {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}

/* Notification cards inside second phone */
.notif-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
    animation: notifSlideIn 0.5s ease-out both;
}

.notif-card:nth-child(2) { animation-delay: 0.8s; }
.notif-card:nth-child(3) { animation-delay: 1.6s; }
.notif-card:nth-child(4) { animation-delay: 2.4s; }
.notif-card:nth-child(5) { animation-delay: 3.2s; }

.notif-card--green {
    border-color: rgba(61, 220, 132, 0.3);
    background: rgba(61, 220, 132, 0.06);
}

@keyframes notifSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.notif-card-icon { font-size: 16px; flex-shrink: 0; }

.notif-card-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
}

.notif-card-text strong {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.notif-card-text span {
    font-size: 9px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Alt app UI (second phone) ---- */
.app-ui--alt {
    gap: 8px;
    padding: 4px 2px;
}

.alt-status {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: var(--text-muted);
    padding: 0 2px;
}

.alt-greeting {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 2px;
}

.alt-hello { font-size: 9px; color: var(--text-muted); }
.alt-user  { font-size: 12px; font-weight: 700; color: #fff; }

.alt-ring-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 4px auto;
}

.alt-ring { width: 80px; height: 80px; }

.alt-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.alt-ring-num { font-size: 13px; font-weight: 800; color: #fff; line-height: 1; }
.alt-ring-sub { font-size: 8px; color: var(--text-muted); }

.alt-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-3);
    border-radius: 8px;
    padding: 7px 8px;
    border: 1px solid var(--border);
}

.alt-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.alt-stat-val { font-size: 11px; font-weight: 700; color: var(--green); }
.alt-stat-lbl { font-size: 8px; color: var(--text-muted); }
.alt-stat-sep { width: 1px; height: 20px; background: var(--border); }

.alt-bars-label { font-size: 8px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; }

.alt-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.alt-bar {
    flex: 1;
    height: var(--h);
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    animation: barGrow 0.8s ease-out both;
}

.alt-bar--active { background: var(--green); }

.alt-bar:nth-child(1) { animation-delay: 0.1s; }
.alt-bar:nth-child(2) { animation-delay: 0.2s; }
.alt-bar:nth-child(3) { animation-delay: 0.3s; }
.alt-bar:nth-child(4) { animation-delay: 0.4s; }
.alt-bar:nth-child(5) { animation-delay: 0.5s; }
.alt-bar:nth-child(6) { animation-delay: 0.6s; }
.alt-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes barGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); transform-origin: bottom; }
}

.phone-frame {
    width: 240px;
    height: 480px;
    background: var(--bg-3);
    border-radius: 36px;
    border: 3px solid rgba(255,255,255,0.12);
    padding: 20px 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    animation: phoneFloat 5s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

.phone-screen {
    background: var(--bg);
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
    padding: 16px 12px;
}

.app-ui { display: flex; flex-direction: column; gap: 10px; height: 100%; position: relative; }

.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
}

.app-bar-title { font-size: 14px; font-weight: 700; color: #fff; }
.app-bar-icon { font-size: 16px; color: var(--text-muted); }

.app-card {
    background: var(--bg-3);
    border-radius: 10px;
    height: 80px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--bg-3), rgba(102,126,234,0.1));
    animation: shimmer 2s ease-in-out infinite;
}

.app-card--sm { height: 50px; }

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.app-row { display: flex; gap: 6px; }

.app-chip {
    padding: 4px 8px;
    background: rgba(61, 220, 132, 0.15);
    border: 1px solid rgba(61, 220, 132, 0.3);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    color: var(--green);
}

.app-fab {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: #0f1a14;
    box-shadow: 0 4px 12px rgba(61, 220, 132, 0.4);
}

/* ============================================
   ABOUT
   ============================================ */
#about {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-card:hover {
    border-color: rgba(61,220,132,0.3);
    transform: translateY(-2px);
}

.about-card-icon { font-size: 24px; flex-shrink: 0; }

.about-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-card-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.about-card-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   SKILLS
   ============================================ */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.skill-group-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.skill-item {
    margin-bottom: 16px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.skill-info span:last-child { color: var(--green); }

.skill-bar {
    height: 6px;
    background: var(--bg-3);
    border-radius: 100px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--green), var(--purple));
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--green);
    color: var(--green);
}

/* ============================================
   TIMELINE / EXPERIENCE
   ============================================ */
.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--purple), transparent);
}

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

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--green);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px rgba(61,220,132,0.2);
}

.timeline-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.timeline-card:hover {
    border-color: rgba(61,220,132,0.2);
    transform: translateX(4px);
}

.timeline-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-badge {
    padding: 2px 10px;
    background: rgba(61,220,132,0.15);
    border: 1px solid rgba(61,220,132,0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
}

.timeline-role {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 14px;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 4px 12px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-card:hover {
    border-color: rgba(61,220,132,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.project-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(61,220,132,0.06), rgba(102,126,234,0.06));
    border-color: rgba(61,220,132,0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-icon { font-size: 32px; display: flex; align-items: center; }
.project-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }

.project-links { display: flex; gap: 12px; }

.project-link {
    font-size: 18px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.project-link:hover { color: var(--green); }

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.project-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.project-tech span {
    padding: 4px 12px;
    background: rgba(102,126,234,0.12);
    border: 1px solid rgba(102,126,234,0.2);
    border-radius: 100px;
    font-size: 12px;
    color: #a0a8e8;
    font-weight: 500;
}

/* ============================================
   WHAT I OFFER
   ============================================ */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    padding: 32px 28px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.offer-card:hover {
    border-color: rgba(61,220,132,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.offer-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.offer-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(61, 220, 132, 0.3);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-2);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background var(--transition);
}

.faq-q:hover { background: var(--bg-3); }

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--green);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-2);
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: -36px;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(61,220,132,0.3);
    transform: translateX(4px);
}

.contact-card-icon { font-size: 28px; }

.contact-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-card strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.contact-card span {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding: 120px 24px 80px; align-items: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .section { padding: 72px 0; }
    .hero-phone { display: none; }
    .hero-phone--notif { display: none; }
    .skills-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card--featured { grid-column: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-cards { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
    .hero-name { font-size: 36px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}
