  
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #000;
      --dark: #050810;
      --dark2: #090d1a;
      --dark3: #0d1224;
      --blue-deep: #0a1a3a;
      --blue-mid: #1a3a7a;
      --blue-brand: #1e6fff;
      --blue-bright: #3d9fff;
      --cyan: #00d4ff;
      --cyan-dim: rgba(0,212,255,0.12);
      --white: #f5f8ff;
      --white2: #c8d8f5;
      --muted: #667799;
      --border: rgba(30,111,255,0.18);
      --border2: rgba(0,212,255,0.15);
      --glow: rgba(0,212,255,0.35);
      --font-head: 'Bebas Neue', sans-serif;
      --font-body: 'Outfit', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --nav-h: 76px;
      --radius: 12px;
      --radius-lg: 20px;
      --t: 260ms cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    body {
      font-family: var(--font-body);
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--blue-brand); border-radius: 2px; }

    /* ── NAV (idêntico ao index) ── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      transition: background var(--t), border-color var(--t);
    }
    .nav.scrolled {
      background: rgba(5,8,16,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: -0.01em;
    }
    .logo-mark {
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-text-con { color: var(--white); }
    .logo-text-nexu { color: var(--blue-brand); }
    .logo-text-s { color: var(--cyan); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-link {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      transition: color var(--t), background var(--t);
    }
    .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
    .nav-link.active { color: var(--cyan); }

    .btn-nav {
      padding: 10px 22px;
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 600;
      background: var(--blue-brand);
      color: #fff;
      transition: all var(--t);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .btn-nav:hover {
      background: var(--blue-bright);
      box-shadow: 0 0 24px rgba(30,111,255,0.5);
      transform: translateY(-1px);
    }

    #menuClose { display: none; }

    .mobile-link.active { color: var(--cyan); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
    }
    .ham-line {
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all var(--t);
      transform-origin: center;
    }
    .hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open .ham-line:nth-child(2) { opacity: 0; }
    .hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(5,8,16,0.98);
      backdrop-filter: blur(24px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transform: translateX(100%);
      transition: transform 400ms cubic-bezier(0.4,0,0.2,1);
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-link {
      font-family: var(--font-body);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--muted);
      transition: color var(--t);
      padding: 10px 40px;
      letter-spacing: -0.02em;
    }
    .mobile-link:hover { color: var(--cyan); }

    /* ── Botões reutilizáveis ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      border-radius: var(--radius);
      font-size: 0.9375rem;
      font-weight: 600;
      background: var(--blue-brand);
      color: #fff;
      transition: all var(--t);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      opacity: 0;
      transition: opacity var(--t);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(30,111,255,0.5); }
    .btn-primary:hover::before { opacity: 1; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 35px;
      border-radius: var(--radius);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--white2);
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      transition: all var(--t);
    }
    .btn-ghost:hover { color: var(--cyan); border-color: var(--border2); background: rgba(0,212,255,0.05); }

    /* ── FOOTER (idêntico ao index) ── */
    .footer {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      padding: 64px 32px 32px;
    }
    .footer-inner { max-width: 1280px; margin: 0 auto; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-brand p {
      font-size: 0.875rem;
      color: var(--muted);
      margin: 16px 0 24px;
      max-width: 240px;
      line-height: 1.75;
    }
    .f-social { display: flex; gap: 10px; }
    .f-soc-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: all var(--t);
    }
    .f-soc-btn:hover { border-color: var(--border2); color: var(--cyan); background: var(--cyan-dim); }
    .f-col-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
      font-family: var(--font-mono);
    }
    .f-links { display: flex; flex-direction: column; gap: 10px; }
    .f-link { font-size: 0.875rem; color: var(--muted); transition: color var(--t); }
    .f-link:hover { color: var(--cyan); }
    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.8rem; color: var(--muted); }
    .f-bot-links { display: flex; gap: 20px; }
    .f-bot-links a { font-size: 0.8rem; color: var(--muted); transition: color var(--t); }
    .f-bot-links a:hover { color: var(--white2); }

    /* ── Animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ════════════════════════════════════
       PAGE HERO
    ════════════════════════════════════ */
    .page-hero {
      min-height: 58vh;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: var(--nav-h) 32px 80px;
      text-align: center;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(30,111,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,111,255,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }
    .hero-glow-l {
      position: absolute;
      width: 600px; height: 600px;
      top: -80px; left: -200px;
      background: radial-gradient(circle, rgba(30,111,255,0.18) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(50px);
    }
    .hero-glow-r {
      position: absolute;
      width: 500px; height: 500px;
      bottom: -80px; right: -100px;
      background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(50px);
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .page-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border: 1px solid var(--border2);
      border-radius: 999px;
      background: rgba(0,212,255,0.06);
      color: var(--cyan);
      font-size: 0.75rem;
      font-family: var(--font-mono);
      font-weight: 500;
      letter-spacing: 0.08em;
      margin-bottom: 32px;
      animation: fadeUp 0.6s ease both;
    }
    .eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      animation: blink 2s ease-in-out infinite;
    }
    .page-title {
      font-family: var(--font-head);
      font-size: clamp(3.5rem, 10vw, 8.5rem);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 8px;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .page-title .grad {
      background: linear-gradient(90deg, var(--blue-brand) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-subtitle {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--white2);
      max-width: 580px;
      line-height: 1.8;
      margin-top: 28px;
      font-weight: 300;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    /* ════════════════════════════════════
       SECTION SHARED
    ════════════════════════════════════ */
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--cyan);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .section-label::before {
      content: '';
      width: 22px; height: 1px;
      background: var(--cyan);
    }
    .section-heading {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 16px;
    }
    .section-heading .grad {
      background: linear-gradient(90deg, var(--blue-brand), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-desc {
      font-size: 1.0625rem;
      color: var(--white2);
      font-weight: 300;
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 64px;
    }

    /* ════════════════════════════════════
       WHY CONEXUSCRIPT
    ════════════════════════════════════ */
    .why-section {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 100px 32px;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .why-card {
      background: rgba(9,13,26,0.6);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: all var(--t);
    }
    .why-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(30,111,255,0.04) 0%, transparent 60%);
      border-radius: inherit;
      opacity: 0;
      transition: opacity var(--t);
    }
    .why-card:hover { border-color: var(--border2); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,255,0.07); }
    .why-card:hover::after { opacity: 1; }
    .why-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius);
      background: rgba(30,111,255,0.1);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cyan);
      margin-bottom: 20px;
      transition: all var(--t);
      position: relative;
      z-index: 1;
    }
    .why-card:hover .why-icon { background: rgba(0,212,255,0.15); border-color: var(--border2); box-shadow: 0 0 20px rgba(0,212,255,0.15); }
    .why-card-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
    .why-card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; }

    /* ════════════════════════════════════
       MAIN SERVICES (ACCORDION)
    ════════════════════════════════════ */
    .services-section {
      background: var(--dark);
      padding: 100px 32px;
    }
    .services-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .service-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color var(--t);
      background: rgba(9,13,26,0.4);
    }
    .service-item:hover { border-color: rgba(30,111,255,0.3); }
    .service-item.open { border-color: var(--border2); }

    .service-item-header {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 28px 32px;
      cursor: pointer;
      transition: background var(--t);
      user-select: none;
    }
    .service-item-header:hover { background: rgba(255,255,255,0.02); }

    .service-item-num {
      font-family: var(--font-head);
      font-size: 1.75rem;
      letter-spacing: 0.02em;
      background: linear-gradient(135deg, var(--blue-brand), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      flex-shrink: 0;
      min-width: 48px;
    }
    .service-item-icon {
      width: 48px; height: 48px;
      border-radius: 10px;
      background: rgba(30,111,255,0.1);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cyan);
      flex-shrink: 0;
      transition: all var(--t);
    }
    .service-item.open .service-item-icon { background: rgba(0,212,255,0.15); border-color: var(--border2); box-shadow: 0 0 16px rgba(0,212,255,0.15); }
    .service-item-info { flex: 1; }
    .service-item-name { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .service-item-tagline { font-size: 0.8125rem; color: var(--muted); }
    .service-item-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      flex-shrink: 0;
      margin-right: 16px;
    }
    .s-tag {
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(30,111,255,0.08);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.7rem;
      font-family: var(--font-mono);
      font-weight: 500;
      white-space: nowrap;
    }
    .service-item-chevron {
      color: var(--muted);
      transition: transform var(--t), color var(--t);
      flex-shrink: 0;
    }
    .service-item.open .service-item-chevron { transform: rotate(180deg); color: var(--cyan); }

    .service-item-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
    }
    .service-item.open .service-item-body { max-height: 900px; }

    .service-item-body-inner {
      padding: 0 32px 36px 100px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      border-top: 1px solid var(--border);
      padding-top: 32px;
    }

    .service-body-text p { font-size: 0.9375rem; color: var(--white2); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
    .service-features-title {
      font-size: 0.72rem;
      font-family: var(--font-mono);
      color: var(--cyan);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .service-features-list { display: flex; flex-direction: column; gap: 10px; }
    .service-features-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--white2);
      line-height: 1.55;
    }
    .feature-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--cyan);
      flex-shrink: 0;
      margin-top: 8px;
    }
    .service-tech-stack { display: flex; flex-direction: column; gap: 8px; }
    .tech-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: var(--radius);
      background: rgba(9,13,26,0.8);
      border: 1px solid var(--border);
      font-size: 0.8rem;
      color: var(--white2);
      font-family: var(--font-mono);
      transition: all var(--t);
    }
    .tech-chip:hover { border-color: var(--border2); color: var(--cyan); }
    .tech-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-brand); flex-shrink: 0; }

    /* ════════════════════════════════════
       TEAM
    ════════════════════════════════════ */
    .team-section {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      padding: 100px 32px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 64px;
    }
    .team-card {
      background: rgba(9,13,26,0.6);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: all var(--t);
    }
    .team-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue-brand), var(--cyan));
      opacity: 0;
      transition: opacity var(--t);
    }
    .team-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,212,255,0.06); }
    .team-card:hover::before { opacity: 1; }
    .team-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 20px;
      border: 2px solid rgba(30,111,255,0.3);
    }
    .team-name { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .team-role { font-size: 0.8125rem; font-family: var(--font-mono); color: var(--cyan); margin-bottom: 10px; }
    .team-company {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      color: var(--muted);
      padding: 4px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(30,111,255,0.05);
      margin-bottom: 20px;
    }
    .team-bio { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
    .team-skills { display: flex; flex-wrap: wrap; gap: 8px; }
    .skill-chip {
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(30,111,255,0.08);
      border: 1px solid var(--border);
      font-size: 0.7rem;
      color: var(--muted);
      font-family: var(--font-mono);
      transition: all var(--t);
    }
    .skill-chip:hover { color: var(--cyan); border-color: var(--border2); }

    /* ════════════════════════════════════
       TECH STACK
    ════════════════════════════════════ */
    .tech-section {
      background: var(--dark);
      padding: 100px 32px;
      border-top: 1px solid var(--border);
    }
    .tech-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 64px;
    }
    .tech-cat-card {
      background: rgba(9,13,26,0.5);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: all var(--t);
    }
    .tech-cat-card:hover { border-color: var(--border2); box-shadow: 0 10px 40px rgba(0,0,0,0.2), 0 0 20px rgba(0,212,255,0.05); }
    .tech-cat-title {
      font-size: 0.7rem;
      font-family: var(--font-mono);
      color: var(--cyan);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .tech-cat-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .tech-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .tech-pill {
      padding: 6px 14px;
      border-radius: var(--radius);
      background: rgba(30,111,255,0.07);
      border: 1px solid var(--border);
      font-size: 0.8rem;
      color: var(--white2);
      font-family: var(--font-mono);
      transition: all var(--t);
      cursor: default;
    }
    .tech-pill:hover { background: rgba(0,212,255,0.1); border-color: var(--border2); color: var(--cyan); }

    /* ════════════════════════════════════
       CTA FINAL
    ════════════════════════════════════ */
    .cta-section {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      padding: 100px 32px;
    }
    .cta-box {
      max-width: 780px;
      margin: 0 auto;
      background: rgba(9,13,26,0.8);
      border: 1px solid var(--border2);
      border-radius: var(--radius-lg);
      padding: 80px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 80px rgba(30,111,255,0.08);
    }
    .cta-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(30,111,255,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-box h2 {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 20px;
      position: relative; z-index: 1;
    }
    .cta-box p {
      font-size: 1rem;
      color: var(--white2);
      font-weight: 300;
      max-width: 440px;
      margin: 0 auto 40px;
      line-height: 1.75;
      position: relative; z-index: 1;
    }
    .cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative; z-index: 1;
    }

    /* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
    @media (max-width: 1024px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .tech-categories { grid-template-columns: repeat(2, 1fr); }
      .service-item-tags { display: none; }
      .service-item-body-inner { padding-left: 32px; }
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 900px) {
      .team-grid { grid-template-columns: 1fr; }
      .service-item-body-inner { grid-template-columns: 1fr; gap: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .why-section, .services-section, .team-section, .tech-section, .cta-section { padding: 64px 20px; }
      .page-hero { padding: var(--nav-h) 20px 60px; }
      .cta-box { padding: 48px 28px; }
    }
    @media (max-width: 640px) {
      .why-grid { grid-template-columns: 1fr; }
      .tech-categories { grid-template-columns: 1fr; }
      .service-item-header { padding: 20px; gap: 14px; }
      .service-item-num { display: none; }
      .service-item-body-inner { padding: 20px 20px 28px; }
      .cta-actions { flex-direction: column; }
      .cta-actions a { justify-content: center; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer { padding: 48px 20px 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .nav-inner { padding: 0 20px; }
    }
    @media (max-width: 480px) {
      .page-hero { min-height: 50vh; }
    }
  