  :root {
    --black: #0A0A0A;
    --off-black: #111111;
    --card-bg: #161616;
    --border: #222222;
    --white: #FFFFFF;
    --off-white: #F5F5F3;
    --muted: #888888;
    --accent: #C8F135;
    --accent-dim: rgba(200,241,53,0.12);
    --accent-border: rgba(200,241,53,0.3);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
    color: var(--white); text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted); font-size: 14px; font-weight: 500;
    text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--accent); color: var(--black);
    padding: 10px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

  /* Social icons — nav (above the fold) and footer */
  .nav-right { display: flex; align-items: center; gap: 22px; }
  .nav-socials { display: flex; align-items: center; gap: 12px; }
  .social-icon {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: color 0.2s, border-color 0.2s, transform 0.2s;
  }
  .social-icon svg { width: 16px; height: 16px; }
  .social-icon:hover { color: var(--accent); border-color: var(--accent-border); transform: translateY(-2px); }
  .footer-socials { margin-top: 16px; }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 60px 80px;
    position: relative; overflow: hidden;
  }

  /* HERO BACKGROUND IMAGE — place your image at assets/images/hero-bg.jpg */
  .hero-bg-image {
    position: absolute; inset: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover; background-position: center;
    opacity: 0.08; /* adjust opacity to taste */
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    border-radius: 100px; padding: 6px 16px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 40px; width: fit-content; position: relative;
  }
  .hero-eyebrow::before {
    content: ''; width: 7px; height: 7px;
    background: var(--accent); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }
  .hero-heading {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 800; line-height: 0.95; letter-spacing: -0.03em;
    margin-bottom: 32px; position: relative;
  }
  .hero-heading .line { display: block; overflow: hidden; }
  .hero-heading .accent-word { color: var(--accent); }
  .hero-heading .outline-word {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
  }
  .hero-sub {
    font-size: 18px; color: var(--muted);
    max-width: 500px; line-height: 1.7;
    margin-bottom: 48px; position: relative;
  }
  .hero-sub strong { color: var(--white); font-weight: 500; }
  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; position: relative; }
  .btn-primary {
    background: var(--accent); color: var(--black);
    padding: 16px 36px; border-radius: 100px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
  .btn-outline {
    border: 1px solid var(--border); color: var(--white);
    padding: 16px 36px; border-radius: 100px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--accent); background: var(--accent-dim); }
  .hero-stats {
    margin-top: 80px; position: relative;
    display: flex; gap: 60px; flex-wrap: wrap;
    padding-top: 40px; border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 800; letter-spacing: -0.03em;
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
  .hero-glow {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* ── SECTION SHARED ── */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  }
  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
    margin-bottom: 20px;
  }

  /* ── TICKER ── */
  .ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0; background: var(--off-black);
  }
  .ticker-track {
    display: flex; gap: 60px;
    animation: ticker 22s linear infinite; width: max-content;
  }
  .ticker-item {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    display: flex; align-items: center; gap: 20px;
  }
  .ticker-item::after { content: '✦'; color: var(--accent); font-size: 10px; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── ABOUT ── */
  #about { background: var(--off-black); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; margin-top: 70px;
  }
  .about-desc {
    font-size: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 32px;
  }
  .about-desc strong { color: var(--off-white); font-weight: 500; }
  .ceo-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 32px;
    display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px;
  }

  /* CEO PHOTO — place your photo at assets/images/ceo-photo.jpg */
  .ceo-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #8BC34A 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    color: var(--black); flex-shrink: 0;
    overflow: hidden;
  }
  /* When you add the photo, the <img> inside will fill this avatar */
  .ceo-avatar img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  }
  .ceo-info h4 {
    font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px;
  }
  .ceo-info p { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .ceo-info .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    border-radius: 100px; padding: 3px 10px;
    font-size: 11px; color: var(--accent); font-weight: 600; margin-top: 8px;
  }
  .team-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .team-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .team-card:hover { border-color: var(--accent-border); transform: translateY(-4px); }

  /* TEAM MEMBER PHOTOS — place photos at assets/images/team-1.jpg, team-2.jpg, team-3.jpg */
  .team-photo {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    overflow: hidden; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
  }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-card h5 {
    font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 6px;
  }
  .team-card p { font-size: 12px; color: var(--muted); }

  /* ── SERVICES ── */
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
  }
  .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.3s;
  }
  .service-card:hover { border-color: var(--accent-border); transform: translateY(-6px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { font-size: 32px; margin-bottom: 20px; }
  .service-card h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.02em;
  }
  .service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .tag {
    font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
    padding: 4px 12px; border-radius: 100px;
    background: var(--border); color: var(--muted);
  }

  /* ── PORTFOLIO ── */
  #portfolio { background: var(--off-black); }
  .portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }

  /* Grid: shorts are narrow (vertical), the landscape video spans wider */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
  }
  .portfolio-item {
    border-radius: 16px; overflow: hidden;
    background: var(--card-bg); border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

  /* Landscape video card spans 2 columns, others take 1 (vertical shorts) */
  .portfolio-item.is-wide { grid-column: span 2; }

  /* PORTFOLIO THUMBS — video players / images sit here */
  .portfolio-thumb {
    width: 100%; aspect-ratio: 16/9;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  /* Vertical shorts get a 9:16 player instead of 16:9 */
  .portfolio-thumb-vertical { aspect-ratio: 9/16; }

  .portfolio-thumb iframe {
    width: 100%; height: 100%;
    position: absolute; inset: 0; border: 0;
  }

  /* When you add an <img> or <video> inside .portfolio-thumb it fills the card */
  .portfolio-thumb img,
  .portfolio-thumb video {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
  }

  /* Fallback shown when no image/video is present */
  .portfolio-thumb .ph-fallback {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; width: 100%; height: 100%; position: relative; z-index: 1;
  }
  .portfolio-thumb .ph-icon { font-size: 36px; }
  .portfolio-thumb .ph-label {
    font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
  }

  .category-badge {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    background: var(--accent); color: var(--black);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
    pointer-events: none;
  }
  .portfolio-info { padding: 20px; }
  .portfolio-info h4 {
    font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 6px;
  }
  .portfolio-info p { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .portfolio-more {
    display: inline-block; margin-top: 12px;
    font-size: 12px; font-weight: 600; color: var(--accent);
    text-decoration: none; letter-spacing: 0.02em;
  }
  .portfolio-more:hover { text-decoration: underline; }

  /* thumb accent colors (shown behind fallback placeholder) */
  .thumb-1 { background: linear-gradient(135deg, #1a0533 0%, #2d1054 100%); }
  .thumb-2 { background: linear-gradient(135deg, #0a1f2e 0%, #143042 100%); }
  .thumb-3 { background: linear-gradient(135deg, #1a1a0a 0%, #2e2a10 100%); }
  .thumb-4 { background: linear-gradient(135deg, #0d1f0d 0%, #152415 100%); }
  .thumb-5 { background: linear-gradient(135deg, #1f0d0d 0%, #2e1515 100%); }

  /* ── PORTFOLIO CAROUSEL (Canva sample slider) ── */
  .portfolio-carousel {
    position: relative; width: 100%; aspect-ratio: 16/9;
    background: #1a1a1a; overflow: hidden;
  }
  .carousel-track {
    display: flex; height: 100%;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .carousel-slide {
    flex: 0 0 100%; height: 100%;
  }
  .carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(10,10,10,0.6); border: 1px solid var(--border);
    color: var(--white); font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 4;
    opacity: 0; transition: opacity 0.2s, background 0.2s;
  }
  .portfolio-carousel:hover .carousel-arrow { opacity: 1; }
  .carousel-arrow:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
  .carousel-prev { left: 14px; }
  .carousel-next { right: 14px; }
  .carousel-dots {
    position: absolute; bottom: 14px; left: 0; right: 0; z-index: 4;
    display: flex; justify-content: center; gap: 7px;
  }
  .carousel-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: none; padding: 0;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .carousel-dot.is-active { background: var(--accent); transform: scale(1.3); }


  /* ── TRUST ── */
  .trust-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
    align-items: start; margin-top: 64px;
  }
  .upwork-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 24px; padding: 40px;
  }
  .upwork-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
  .upwork-logo {
    background: #6FDA44; border-radius: 12px;
    padding: 8px 14px; font-weight: 800; font-size: 16px; color: #fff;
    letter-spacing: -0.5px; font-family: var(--font-display);
  }
  .upwork-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
  .upwork-header p { font-size: 13px; color: var(--muted); }

  /* UPWORK SCREENSHOT — place at assets/images/upwork-screenshot.jpg */
  .upwork-screenshot {
    width: 100%; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border); margin-bottom: 24px;
    background: var(--black);
    min-height: 120px; display: flex; align-items: center; justify-content: center;
  }
  .upwork-screenshot img { width: 100%; height: auto; display: block; }
  .upwork-screenshot .ph-msg {
    color: var(--muted); font-size: 13px; padding: 20px; text-align: center;
  }

  .upwork-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 28px; }
  .upwork-stat { background: var(--black); border-radius: 14px; padding: 18px; text-align: center; }
  .upwork-stat .val {
    font-family: var(--font-display); font-size: 26px; font-weight: 800;
    color: var(--accent); letter-spacing: -0.03em;
  }
  .upwork-stat .lbl { font-size: 11px; color: var(--muted); margin-top: 4px; }
  .upwork-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .upwork-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(111,218,68,0.1); border: 1px solid rgba(111,218,68,0.25);
    border-radius: 100px; padding: 6px 14px;
    font-size: 12px; font-weight: 600; color: #6FDA44;
  }
  .reviews-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
  .review-card {
    background: var(--black); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px;
  }

  /* CLIENT PHOTO in reviews — assets/images/client-1.jpg, client-2.jpg */
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
  .client-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--border); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
  }
  .client-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .review-stars { color: var(--accent); font-size: 13px; }
  .review-author { font-size: 13px; color: var(--white); font-weight: 600; }
  .review-text { font-size: 14px; color: var(--muted); line-height: 1.6; font-style: italic; }

  .trust-right {}
  .trust-highlights { display: flex; flex-direction: column; gap: 16px; }
  .highlight-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: border-color 0.2s;
  }
  .highlight-card:hover { border-color: var(--accent-border); }
  .highlight-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .highlight-card h4 {
    font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 4px;
  }
  .highlight-card p { font-size: 13px; color: var(--muted); }

  /* ── UPWORK CTA ── */
  #upwork-cta {
    background: var(--off-black);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 100px 60px; text-align: center;
  }
  .upwork-cta-inner { max-width: 680px; margin: 0 auto; }
  .upwork-cta-inner p { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 40px; }
  .btn-upwork {
    display: inline-flex; align-items: center; gap: 10px;
    background: #6FDA44; color: #fff;
    padding: 16px 40px; border-radius: 100px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
  }
  .btn-upwork:hover { transform: translateY(-2px); opacity: 0.9; }

  /* ── CONTACT ── */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
    margin-top: 64px; align-items: start;
  }
  .contact-info p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
  .contact-channels { display: flex; flex-direction: column; gap: 14px; }
  .channel {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 22px;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 14px; text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }
  .channel:hover { border-color: var(--accent-border); transform: translateX(6px); }
  .channel-icon { font-size: 20px; }
  .channel-details span {
    display: block; font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
  }
  .channel-details strong { color: var(--white); font-size: 14px; font-weight: 600; }
  .contact-form {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 24px; padding: 44px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%; padding: 14px 18px;
    background: var(--black); border: 1px solid var(--border);
    border-radius: 12px; color: var(--white); font-family: var(--font-body); font-size: 15px;
    transition: border-color 0.2s; outline: none; resize: none;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--accent); }
  .form-group textarea { height: 130px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit {
    width: 100%; padding: 16px;
    background: var(--accent); color: var(--black);
    border: none; border-radius: 12px; cursor: pointer;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
  }
  .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    padding: 60px 60px 40px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 32px;
  }
  .footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
  .footer-logo span { color: var(--accent); }
  .footer-tagline { font-size: 13px; color: var(--muted); margin-top: 6px; }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-size: 13px; color: var(--muted); }
  .footer-copy span { color: var(--accent); }

  /* ── ANIMATIONS ── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item.is-wide { grid-column: span 2; }
  }

  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .nav-right { gap: 14px; }
    .nav-socials { gap: 8px; }
    .social-icon { width: 30px; height: 30px; }
    .nav-cta { padding: 9px 18px; font-size: 13px; }
    section { padding: 80px 24px; }
    #home { padding: 110px 24px 60px; }
    .about-grid, .trust-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item.is-wide { grid-column: span 1; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .services-header, .portfolio-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .hero-stats { gap: 36px; }
    footer { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    #upwork-cta { padding: 70px 24px; }
  }
