/*
Theme Name: Noman Bajwa WordPress Theme Compact
Theme URI: https://nomanbajwa.com/
Author: Noman Bajwa
Author URI: https://nomanbajwa.com/
Description: Custom WordPress portfolio theme with template header/footer, editable page content, and Contact Form 7 support.
Version: 3.1.0
Text Domain: noman-bajwa-wp-theme-compact
*/

:root {
    --bg: #050A0E;
    --bg2: #0C1419;
    --bg3: #121C22;
    --accent: #00E5A0;
    --accent2: #00B87A;
    --accent-glow: rgba(0,229,160,0.15);
    --text: #F0F4F8;
    --muted: #7A9BAD;
    --border: rgba(0,229,160,0.12);
    --border2: rgba(255,255,255,0.06);
    --card: #0D1B22;
    --card2: #111F27;
    --heading: 'Syne', sans-serif;
    --body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
  }

  ::selection { background: var(--accent); color: #000; }

  
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 2px; }

  
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 5vw;
    background: rgba(5,10,14,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border2);
    transition: background 0.3s;
  }

  .nav-logo {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent);
    color: #000 !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.2s !important;
  }

  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow) !important; }

  .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

  
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5vw 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,229,160,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,160,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  }

  .hero-blob {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,229,160,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,229,160,0.08);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
  }

  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-title {
    font-family: var(--heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  .hero-title .accent { color: var(--accent); }

  .hero-title .line2 { color: var(--muted); }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent);
    color: #000;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
  }

  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,160,0.3); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent;
    color: var(--text);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border2);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

  .hero-stats {
    display: flex; gap: 2.5rem;
  }

  .stat { }

  .stat-num {
    font-family: var(--heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .avatar-frame {
    position: relative;
    width: 320px; height: 400px;
  }

  .avatar-card {
    position: absolute; inset: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar-initials {
    font-family: var(--heading);
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
  }

  .avatar-name-card {
    position: absolute;
    bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    background: rgba(12, 20, 25, 0.9);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
    white-space: nowrap;
  }

  .avatar-name-card .name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
  }

  .avatar-name-card .role {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.06em;
  }

  .floating-badge {
    position: absolute;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
  }

  .fb-1 { top: -1rem; right: -2rem; }
  .fb-2 { bottom: 5rem; left: -2.5rem; }
  .fb-3 { top: 40%; right: -2.5rem; }

  .fb-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
  .dot-green { background: #00E5A0; }
  .dot-blue { background: #4FC3F7; }
  .dot-purple { background: #CE93D8; }

  
  section { padding: 6rem 5vw; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: var(--heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text);
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  
  #about { background: var(--bg2); }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }

  .about-skills { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

  .skill-row { }

  .skill-meta { display: flex; justify-content: space-between; margin-bottom: 0.4rem; }

  .skill-name { font-size: 0.85rem; font-weight: 500; color: var(--text); }

  .skill-pct { font-size: 0.85rem; color: var(--accent); font-weight: 600; }

  .skill-bar { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }

  .skill-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 1.5s cubic-bezier(0.25,0.46,0.45,0.94); }

  .about-right { }

  .about-text { font-size: 1rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }

  .tools-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 2rem;
  }

  .tool-pill {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    transition: border-color 0.2s, color 0.2s;
  }

  .tool-pill:hover { border-color: var(--accent); color: var(--accent); }

  
  #services { background: var(--bg); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .service-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    cursor: default;
  }

  .service-card:hover { border-color: var(--accent); transform: translateY(-4px); }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--accent-glow);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .service-card h3 {
    font-family: var(--heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

  .tag {
    background: rgba(0,229,160,0.07);
    border: 1px solid rgba(0,229,160,0.15);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
  }

  
  #portfolio { background: var(--bg2); }

  .portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
  }

  .portfolio-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
  }

  .portfolio-card:hover { border-color: var(--accent); transform: translateY(-4px); }

  .portfolio-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--bg3) 0%, rgba(0,229,160,0.06) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
  }

  .portfolio-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--card));
  }

  .portfolio-info { padding: 1.5rem; }

  .portfolio-info h3 {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
  }

  .portfolio-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  .portfolio-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.8rem;
    letter-spacing: 0.03em;
  }

  
  #process { background: var(--bg); }

  .process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem;
    margin-top: 1rem;
    position: relative;
  }

  .process-step { text-align: center; position: relative; }

  .step-num {
    font-family: var(--heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0,229,160,0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .step-icon {
    width: 56px; height: 56px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
  }

  .process-step h4 {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
  }

  .process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

  
  #resume { background: var(--bg2); }

  .resume-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

  .resume-section h3 {
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border2);
    display: flex; align-items: center; gap: 0.5rem;
  }

  .resume-items { display: flex; flex-direction: column; gap: 1.5rem; }

  .resume-item {
    padding-left: 1.5rem;
    border-left: 2px solid var(--border);
    position: relative;
  }

  .resume-item::before {
    content: '';
    position: absolute;
    left: -5px; top: 6px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
  }

  .resume-year {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
  }

  .resume-item h4 {
    font-family: var(--heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
  }

  .resume-item .company {
    font-size: 0.85rem;
    color: var(--muted);
  }

  
  #pricing { background: var(--bg); }

  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }

  .pricing-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s, transform 0.2s;
  }

  .pricing-card:hover { border-color: var(--accent); transform: translateY(-4px); }

  .pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(0,229,160,0.05) 0%, var(--card) 100%);
  }

  .featured-badge {
    position: absolute; top: -1px; right: 2rem;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .plan-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .plan-price {
    font-family: var(--heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .plan-price sup { font-size: 1.3rem; vertical-align: top; margin-top: 0.4em; }

  .plan-period {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .plan-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border2);
  }

  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }

  .plan-features li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--muted);
  }

  .plan-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  .plan-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
  }

  .plan-btn-outline { border: 1px solid var(--border2); color: var(--text); }
  .plan-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .plan-btn-filled { background: var(--accent); color: #000; }
  .plan-btn-filled:hover { box-shadow: 0 6px 24px rgba(0,229,160,0.3); transform: translateY(-1px); }

  
  #testimonials { background: var(--bg2); }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
  }

  .testimonial-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 2rem;
  }

  .testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

  .testimonial-text {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

  .t-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
  }

  .t-author-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
  }

  .t-author-role { font-size: 0.78rem; color: var(--muted); }

  
  #contact { background: var(--bg); }

  .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }

  .contact-info h3 {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
  }

  .contact-info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }

  .contact-items { display: flex; flex-direction: column; gap: 1rem; }

  .contact-item {
    display: flex; align-items: center; gap: 0.9rem;
  }

  .contact-item-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--accent-glow);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-item-text a, .contact-item-text span { font-size: 0.88rem; color: var(--muted); text-decoration: none; }
  .contact-item-text a:hover { color: var(--accent); }
  .contact-item-label { font-size: 0.7rem; color: rgba(122,155,173,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

  .social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }

  .social-btn {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

  
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

  .form-group label { font-size: 0.78rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: var(--body);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select { cursor: pointer; }
  .form-group select option { background: #121C22; }

  .form-submit {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-family: var(--body);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,160,0.3); }

  
  #clients {
    background: var(--bg3);
    padding: 1.35rem 0;
    overflow: hidden;
  }

  .marquee-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
    padding: 0 5vw;
  }

  .marquee-track {
    display: flex; gap: 1.25rem;
    animation: marquee 30s linear infinite;
    width: max-content;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .marquee-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0.6;
    padding: 0.35rem 1rem;
    border: 1px solid var(--border2);
    border-radius: 50px;
  }

  
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    padding: 3rem 5vw;
    text-align: center;
  }

  .footer-inner { max-width: 1200px; margin: 0 auto; }

  .footer-logo {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
  }

  .footer-logo span { color: var(--accent); }

  .footer-text { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }

  .footer-links {
    display: flex; justify-content: center; gap: 2rem;
    list-style: none; margin-bottom: 2rem;
  }

  .footer-links a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--accent); }

  .footer-copy { font-size: 0.78rem; color: rgba(122,155,173,0.4); }

  
  @media (max-width: 900px) {
    nav { padding: 1rem 4vw; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg2); padding: 1.5rem 4vw; border-bottom: 1px solid var(--border2); gap: 1rem; }
    .hamburger { display: flex; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-stats { gap: 1.5rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .resume-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }

    section { padding: 4rem 4vw; }
  }

  
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible { opacity: 1; transform: translateY(0); }

  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }
