

    :root {
      --navy: #0a0f1e;
      --navy-mid: #0d1528;
      --navy-light: #112040;
      --teal: #00c9b1;
      --teal-glow: rgba(0,201,177,0.15);
      --teal-dim: #008f7e;
      --white: #e8f0fe;
      --muted: #7a90b0;
      --card-bg: #0e1a35;
      --border: rgba(0,201,177,0.2);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--navy); color: var(--white); font-family: 'Exo 2', sans-serif; font-weight: 300; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4; pointer-events: none; z-index: 9999;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 36px;
      background: rgba(10,15,30,0.92); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border); transition: padding 0.3s;
    }
    nav.scrolled { padding: 8px 36px; }
    .nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .nav-logo img {
      height: 68px; width: auto; object-fit: contain;
    }
    .nav-links { display: flex; gap: 18px; list-style: none; }
    .nav-links a {
      font-family: 'Rajdhani', sans-serif; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 1px; color: var(--muted); text-decoration: none;
      text-transform: uppercase; position: relative; transition: color 0.3s; white-space: nowrap;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--teal); transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: transparent; border: 1px solid var(--teal); color: var(--teal) !important;
      padding: 8px 20px; border-radius: 2px; font-family: 'Rajdhani', sans-serif;
      font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 2px;
      cursor: pointer; text-decoration: none; transition: background 0.3s, box-shadow 0.3s !important;
    }
    .nav-cta:hover { background: var(--teal-glow) !important; box-shadow: 0 0 20px rgba(0,201,177,0.3); }

    /* HERO */
    #home {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; padding: 120px 60px 60px; overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(0,201,177,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,201,177,0.04) 1px, transparent 1px);
      background-size: 50px 50px; animation: gridPulse 8s ease-in-out infinite;
    }
    @keyframes gridPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
    .hero-glow {
      position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,201,177,0.12) 0%, transparent 70%);
      top: 50%; right: 5%; transform: translateY(-50%);
      animation: floatGlow 6s ease-in-out infinite;
    }
    @keyframes floatGlow { 0%, 100% { transform: translateY(-50%) scale(1); } 50% { transform: translateY(-53%) scale(1.05); } }
    .hero-content { position: relative; z-index: 2; max-width: 720px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--teal-glow); border: 1px solid var(--border);
      padding: 6px 16px; border-radius: 2px;
      font-family: 'Share Tech Mono', monospace; font-size: 0.72rem;
      color: var(--teal); letter-spacing: 2px; margin-bottom: 28px;
      animation: fadeUp 0.8s ease forwards;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal); animation: blink 1.5s infinite;
    }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
    .hero-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 700; line-height: 1; letter-spacing: 2px;
      animation: fadeUp 0.8s ease 0.1s both;
    }
    .hero-title .line-teal { color: var(--teal); }
    .hero-tagline {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(0.95rem, 2vw, 1.35rem);
      font-weight: 500; letter-spacing: 5px; text-transform: uppercase;
      color: var(--teal); margin-top: 14px; opacity: 0.9;
      animation: fadeUp 0.8s ease 0.15s both;
    }
    .hero-desc {
      margin-top: 24px; font-size: 1.05rem; color: var(--muted);
      line-height: 1.8; max-width: 540px;
      animation: fadeUp 0.8s ease 0.2s both;
    }
    .hero-buttons {
      margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap;
      animation: fadeUp 0.8s ease 0.3s both;
    }
    .btn-primary {
      background: var(--teal); color: var(--navy); padding: 14px 36px;
      border: none; border-radius: 2px; font-family: 'Rajdhani', sans-serif;
      font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      cursor: pointer; text-decoration: none; transition: box-shadow 0.3s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { box-shadow: 0 0 30px rgba(0,201,177,0.5); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent; color: var(--teal); padding: 14px 36px;
      border: 1px solid var(--border); border-radius: 2px;
      font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
      text-decoration: none; transition: border-color 0.3s, background 0.3s; display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--teal); background: var(--teal-glow); }
    .hero-stats { margin-top: 60px; display: flex; gap: 48px; animation: fadeUp 0.8s ease 0.4s both; }
    .stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--teal); line-height: 1; }
    .stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    /* SECTIONS */
    section { padding: 100px 60px; position: relative; }
    .section-label { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--teal); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
    .section-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: 1px; line-height: 1.1; }
    .section-divider { width: 60px; height: 2px; background: var(--teal); margin: 20px 0 40px; }

    /* ABOUT */
    #about { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: center 25%; border-radius: 2px; }
    .about-img-wrap::before { content: ''; position: absolute; inset: -2px; border: 1px solid var(--teal); border-radius: 2px; top: 12px; left: 12px; z-index: -1; }
    .about-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(transparent, var(--navy-mid)); }
    .about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 20px; font-size: 0.97rem; }
    .about-features { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: 1px; }
    .about-feature::before { content: '▸'; color: var(--teal); font-size: 0.9rem; }

    /* SERVICES */
    #services { background: var(--navy); }
    .services-inner { max-width: 1200px; margin: 0 auto; }
    .services-header { text-align: center; margin-bottom: 60px; }
    .services-header .section-divider { margin: 20px auto 0; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
    .service-card {
      background: var(--card-bg); border: 1px solid var(--border); border-radius: 2px;
      padding: 36px 28px; position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; cursor: default;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--teal); transform: scaleX(0); transition: transform 0.4s ease;
    }
    .service-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,201,177,0.1); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon { width: 52px; height: 52px; background: var(--teal-glow); border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.5rem; }
    .service-title { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; color: var(--white); margin-bottom: 12px; }
    .service-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.8; }
    .service-num { position: absolute; bottom: 20px; right: 20px; font-family: 'Share Tech Mono', monospace; font-size: 2.5rem; color: rgba(0,201,177,0.07); font-weight: 700; line-height: 1; }

    /* PRICING */
    #pricing { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .pricing-inner { max-width: 1200px; margin: 0 auto; }
    .pricing-header { text-align: center; margin-bottom: 60px; }
    .pricing-header .section-divider { margin: 20px auto 0; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
    .pricing-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 2px; padding: 40px 32px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
    .pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
    .pricing-card.featured { border-color: var(--teal); box-shadow: 0 0 40px rgba(0,201,177,0.15); transform: scale(1.03); }
    .pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
    .pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--navy); font-family: 'Rajdhani', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; padding: 4px 16px; border-radius: 1px; }
    .plan-name { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
    .plan-price { font-family: 'Rajdhani', sans-serif; font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
    .plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--teal); }
    .plan-period { font-size: 0.8rem; color: var(--muted); margin-top: 4px; margin-bottom: 24px; letter-spacing: 1px; }
    .plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
    .plan-features { list-style: none; margin-bottom: 32px; }
    .plan-features li { font-size: 0.87rem; color: var(--muted); padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .plan-features li.unavailable { opacity: 0.35; text-decoration: line-through; }
    .plan-features li.unavailable::before { content: '×'; color: var(--muted); }

    /* PORTFOLIO */
    #portfolio { background: var(--navy); }
    .portfolio-inner { max-width: 1200px; margin: 0 auto; }
    .portfolio-header { text-align: center; margin-bottom: 60px; }
    .portfolio-header .section-divider { margin: 20px auto 0; }
    .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .portfolio-card { position: relative; overflow: hidden; border-radius: 2px; border: 1px solid var(--border); aspect-ratio: 4/3; cursor: pointer; }
    .portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .portfolio-card:hover img { transform: scale(1.08);  }
    .portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(10,15,30,0.95)); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
    .portfolio-tag { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--teal); letter-spacing: 3px; margin-bottom: 6px; }
    .portfolio-title { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; }

    /* TESTIMONIALS */
    #testimonials { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .testimonials-inner { max-width: 1200px; margin: 0 auto; }
    .testimonials-header { text-align: center; margin-bottom: 60px; }
    .testimonials-header .section-divider { margin: 20px auto 0; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 2px; padding: 32px; position: relative; transition: border-color 0.3s; }
    .testimonial-card:hover { border-color: var(--teal); }
    .quote-icon { font-family: 'Rajdhani', sans-serif; font-size: 4rem; color: var(--teal); line-height: 0.8; margin-bottom: 16px; opacity: 0.4; }
    .testimonial-text { font-size: 0.9rem; color: var(--muted); line-height: 1.85; font-style: italic; margin-bottom: 24px; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
    .author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-glow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; color: var(--teal); flex-shrink: 0; }
    .author-name { font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 1px; }
    .author-role { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; }
    .stars { color: var(--teal); font-size: 0.8rem; letter-spacing: 3px; margin-top: 2px; }

    /* CONTACT */
    #contact { background: var(--navy); }
    .contact-inner { max-width: 1200px; margin: 0 auto; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
    .contact-info h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
    .contact-info p { color: var(--muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: 36px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
    .contact-icon { width: 40px; height: 40px; background: var(--teal-glow); border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .contact-detail-label { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--teal); letter-spacing: 3px; margin-bottom: 4px; }
    .contact-detail-val { font-size: 0.9rem; color: var(--white); }
    .contact-form { display: flex; flex-direction: column; gap: 20px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label { font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; color: var(--teal); letter-spacing: 3px; text-transform: uppercase; }
    .form-group input, .form-group textarea, .form-group select { background: var(--card-bg); border: 1px solid var(--border); border-radius: 2px; padding: 14px 16px; color: var(--white); font-family: 'Exo 2', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s; resize: vertical; }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); }
    .form-group select option { background: var(--navy); }
    .form-group textarea { min-height: 140px; }

    /* FOOTER */
    footer { background: #070c18; border-top: 1px solid var(--border); padding: 60px 60px 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
    .footer-brand p { color: var(--muted); font-size: 0.85rem; line-height: 1.8; margin-top: 16px; max-width: 280px; }
    .footer-logo-img { height: 58px; width: auto; }
    .footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
    .footer-col ul li a:hover { color: var(--teal); }

    /* Footer "Connect" list — icon + label */
    .connect-list li a {
      display: flex; align-items: center; gap: 12px;
    }
    .connect-list .ci-icon {
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; width: 30px; height: 30px;
      background: var(--teal-glow); border: 1px solid var(--border); border-radius: 50%;
      font-size: 0.85rem; transition: background 0.3s, border-color 0.3s;
    }
    .connect-list li a:hover .ci-icon { background: rgba(0,201,177,0.28); border-color: var(--teal); }
    .connect-list li a span:last-child { word-break: break-word; }
    .footer-bottom { max-width: 1200px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); }
    .footer-bottom span { font-family: 'Share Tech Mono', monospace; }

    /* REVEAL (progressive enhancement: only hides content once JS confirms it can reveal it again) */
    html.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
    html.js .reveal.visible { opacity: 1; transform: none; }

    /* Focus visibility */
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid var(--teal); outline-offset: 3px;
    }

    /* MOBILE */
    /* Nav switches to the hamburger menu well above the general 900px
       content breakpoint: with all 10 links + the CTA button, the full
       horizontal nav needs ~1270px of space and would otherwise overflow
       and clip the "Book a Consultation" button on ordinary 1024–1200px
       laptop screens. */
    @media (max-width: 1300px) {
      nav { padding: 12px 20px; }
      nav.scrolled { padding: 8px 20px; }
      .nav-logo img { height: 50px; }
      .nav-links { display: none; }
    }
    @media (max-width: 900px) {
      section { padding: 70px 20px; }
      #home { padding: 100px 20px 60px; }
      .hero-stats { gap: 24px; }
      .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .services-grid { grid-template-columns: 1fr; }
      .pricing-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: none; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 50px 20px 24px; }
    }
  
  /* Nav CTA button */
  .nav-cta-btn {
    background: #00c9b1;
    color: #0a0f1e !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-cta-btn:hover { background: #00f0d4; transform: translateY(-1px); }

  /* Hero trust strip */
  .hero-trust-strip {
    font-size: 0.8rem;
    color: #4a6070;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    font-family: 'Share Tech Mono', monospace;
  }
  .hero-trust-strip span { color: #00c9b1; margin: 0 2px; }

  /* FAQ */
  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item { background: #0d1528; border: 1px solid #1a2a40; border-radius: 8px; overflow: hidden; }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    color: #fff; padding: 20px 24px; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; font-family: 'Exo 2', sans-serif;
  }
  .faq-q:hover { color: #00c9b1; }
  .faq-arrow { color: #00c9b1; font-size: 0.75rem; flex-shrink: 0; transition: transform 0.3s; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    max-height: 0; overflow: hidden; padding: 0 24px;
    color: #8899aa; font-size: 0.9rem; line-height: 1.8;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }


  /* ── Portfolio Modal ───────────────────────────────────────── */
  .port-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,10,20,0.92);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
    backdrop-filter: blur(6px);
  }
  .port-modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
  .port-modal {
    background: #0d1528;
    border: 1px solid #1e3050;
    border-radius: 12px;
    max-width: 780px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.3s ease;
  }
  @keyframes modalIn {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .port-modal-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .port-modal-body { padding: 36px 40px 40px; }
  .port-modal-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: #00c9b1;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  .port-modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .port-modal-desc {
    color: #8899aa;
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 28px;
  }
  .port-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .port-modal-block {
    background: #071020;
    border: 1px solid #1a2a40;
    border-radius: 8px;
    padding: 18px 20px;
  }
  .port-modal-block h4 {
    color: #00c9b1;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 10px;
  }
  .port-modal-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .port-modal-block ul li {
    color: #aabbcc;
    font-size: 0.88rem;
    padding: 4px 0;
    border-bottom: 1px solid #0e1e30;
  }
  .port-modal-block ul li:last-child { border-bottom: none; }
  .port-modal-block ul li::before { content: "→ "; color: #00c9b1; }
  .port-modal-cta {
    display: inline-block;
    background: #00c9b1;
    color: #0a0f1e;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  .port-modal-cta:hover { background: #00f0d4; }
  .port-modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #1e3050;
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
  }
  .port-modal-close:hover { background: #00c9b1; color: #0a0f1e; }
  .portfolio-card { cursor: pointer; }
  .portfolio-card:hover .portfolio-overlay { background: linear-gradient(transparent 20%, rgba(0,201,177,0.15) 60%, rgba(10,15,30,0.97)); }
  @media(max-width:600px) {
    .port-modal-grid { grid-template-columns: 1fr; }
    .port-modal-img { height: 220px; }
    .port-modal-body { padding: 24px 20px 28px; }
    .port-modal-title { font-size: 1.4rem; }
  }


  .project-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .project-price-card {
    background: #0d1528;
    border: 1px solid #1a2a40;
    border-radius: 8px;
    padding: 26px 22px;
    transition: border-color 0.25s, transform 0.25s;
  }
  .project-price-card:hover {
    border-color: #00c9b1;
    transform: translateY(-3px);
  }
  .ppc-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .ppc-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-family: 'Exo 2', sans-serif;
  }
  .ppc-price {
    color: #00c9b1;
    font-weight: 800;
    font-size: 1.05rem;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 6px;
  }
  .ppc-desc {
    color: #8899aa;
    font-size: 0.82rem;
    line-height: 1.6;
  }



/* ── MULTI-PAGE NAV ACTIVE STATE ─────────────────────────────── */
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }

/* ── MOBILE HAMBURGER MENU ───────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-burger span {
  width: 24px; height: 2px; background: var(--teal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1300px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: #070c18; border-left: 1px solid var(--border);
    padding: 100px 32px 32px; transition: right 0.35s ease; z-index: 1050;
  }
  .nav-links.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.5); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 16px 0; font-size: 0.95rem; color: var(--white); }
  .nav-links a:active { color: var(--teal); }
  .nav-cta-btn { display: none; }
  .nav-links .mobile-cta {
    display: block; margin-top: 20px; text-align: center;
    background: #00c9b1; color: #0a0f1e; padding: 12px; border-radius: 4px;
    font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 1px;
    text-decoration: none; text-transform: uppercase; font-size: 0.85rem;
  }
  .nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    /* Lives inside <nav> so it stacks in the same local context as
       .nav-links (1050) and .nav-burger (1100) — it must rank below both,
       or it will visually sit on top of the open menu and swallow every
       tap meant for it. */
    z-index: 1020;
  }
  .nav-overlay.open { display: block; }
}

/* ── PAGE HEADER (inner pages) ───────────────────────────────── */
.page-header {
  position: relative;
  padding: 160px 60px 70px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .hero-grid-bg { opacity: 0.6; }
.page-header-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-breadcrumb {
  font-family: 'Share Tech Mono', monospace; font-size: 0.72rem;
  color: var(--muted); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--muted); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--teal); }
.page-breadcrumb .sep { margin: 0 8px; color: var(--border); }
.page-breadcrumb .current { color: var(--teal); }
.page-header-title {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700; color: var(--white); letter-spacing: 1px; line-height: 1.1;
}
.page-header-desc {
  margin-top: 18px; color: var(--muted); font-size: 1rem; line-height: 1.8;
}
.about-page-logo {
  height: 188px; width: auto; margin: 0 auto 28px; display: block;
}

@media (max-width: 900px) {
  .page-header { padding: 130px 20px 50px; }
  .about-page-logo { height: 134px; }
}

/* ── HOME PAGE TEASER GRIDS ──────────────────────────────────── */
.teaser-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.teaser-service-tile {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 2px;
  padding: 20px; display: flex; align-items: center; gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.teaser-service-tile:hover { border-color: var(--teal); transform: translateY(-3px); }
.teaser-service-tile .tsi { font-size: 1.4rem; }
.teaser-service-tile .tst { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--white); }

.section-cta-row { text-align: center; margin-top: 48px; }

.home-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--teal); color: var(--navy); padding: 12px 20px;
  border-radius: 2px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 1px; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

  