@charset "utf-8";
/* CSS Document */
:root {
      --bg: #07090d;
      --panel: #111722;
      --panel-soft: #171f2e;
      --text: #f5f7fa;
      --muted: #a7b0bf;
      --accent: #ff7a1a;
      --accent-blue: #1e9bff;
      --line: rgba(255,255,255,0.12);
      --shadow: 0 20px 60px rgba(0,0,0,0.35);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10;
      background: rgba(7, 9, 13, 0.82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      max-width: 1180px;
      margin: auto;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-blue));
      display: grid;
      place-items: center;
      font-weight: 900;
      color: white;
      box-shadow: 0 0 30px rgba(255,122,26,0.35);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 14px;
    }

    .menu a:hover { color: var(--text); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: 0.2s;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      color: #111;
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,122,26,0.25); }

    .btn-secondary {
      border-color: var(--line);
      color: var(--text);
      background: rgba(255,255,255,0.04);
    }

    .hero {
      min-height: 100vh;
      padding: 140px 22px 70px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 70% 30%, rgba(30,155,255,0.22), transparent 33%),
        radial-gradient(circle at 22% 70%, rgba(255,122,26,0.22), transparent 36%),
        linear-gradient(120deg, rgba(7,9,13,0.94), rgba(7,9,13,0.76)),
        url('images/background.avif');
      background-size: cover;
      background-position: center;
    }

    .hero-inner {
      max-width: 1180px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 50px;
    }

    .eyebrow {
      color: var(--accent);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 2.5px;
      font-size: 13px;
      margin-bottom: 16px;
    }

    h1 {
      font-size: clamp(44px, 7vw, 82px);
      line-height: 0.95;
      margin: 0 0 22px;
      letter-spacing: -3px;
    }

    .hero p {
      max-width: 660px;
      color: var(--muted);
      font-size: 19px;
      margin-bottom: 30px;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-card {
      background: rgba(17,23,34,0.78);
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 28px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .hero-card h3 { margin-top: 0; font-size: 22px; }

    .quick-list { display: grid; gap: 14px; }
    .quick-item {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
    }
    .quick-item strong { display: block; color: var(--text); }
    .quick-item span { color: var(--muted); font-size: 14px; }

    section { padding: 90px 22px; }
    .container { max-width: 1180px; margin: auto; }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 36px;
    }

    .section-head h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1;
      margin: 0;
      letter-spacing: -1.8px;
    }

    .section-head p { color: var(--muted); max-width: 520px; margin: 0; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .service {
      background: linear-gradient(180deg, var(--panel-soft), var(--panel));
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 26px;
      min-height: 245px;
      position: relative;
      overflow: hidden;
    }

    .service:before {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(255,122,26,0.25), transparent 70%);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(255,122,26,0.12);
      color: var(--accent);
      font-size: 24px;
      margin-bottom: 24px;
    }

    .service h3 { margin: 0 0 12px; font-size: 22px; }
    .service p { color: var(--muted); margin: 0; }

    .stats {
      background: linear-gradient(135deg, #0b1018, #131b28);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 30px;
      background: rgba(255,255,255,0.04);
    }

    .stat strong {
      display: block;
      font-size: 42px;
      line-height: 1;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .stat span { color: var(--muted); }

    .work-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      grid-auto-rows: 260px;
      gap: 18px;
    }

    .work {
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      position: relative;
      background: #222;
	  padding-left: 20px;
      padding-top: 20px;
    }

    .work.large { grid-row: span 2; }

    .work div {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
      display: flex;
      align-items: flex-end;
      padding: 24px;
      font-weight: 800;
      font-size: 22px;
    }

    .work:nth-child(1) { background: linear-gradient(135deg, #202a38, #0a0d12); }
    .work:nth-child(2) { background: linear-gradient(135deg, #2a1d12, #0a0d12); }
    .work:nth-child(3) { background: linear-gradient(135deg, #102030, #0a0d12); }
    .work:nth-child(4) { background: linear-gradient(135deg, #272727, #0a0d12); }
    .work:nth-child(5) { background: linear-gradient(135deg, #1d2835, #0a0d12); }



    .about-panel {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
      background: linear-gradient(135deg, rgba(255,122,26,0.12), rgba(30,155,255,0.10));
      border: 1px solid var(--line);
      border-radius: 34px;
      padding: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .about-panel:after {
      content: 'V';
      position: absolute;
      right: 30px;
      bottom: -90px;
      font-size: 260px;
      font-weight: 900;
      color: rgba(255,255,255,0.035);
      line-height: 1;
    }

    .about-title {
      position: relative;
      z-index: 1;
    }

    .about-title h2 {
      font-size: clamp(36px, 5vw, 64px);
      line-height: 0.95;
      margin: 0 0 20px;
      letter-spacing: -2px;
    }

    .about-title .orange { color: var(--accent); }

    .about-copy {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: 18px;
    }

    .about-copy p { margin-top: 0; }

    .about-highlight {
      color: var(--accent);
      font-weight: 800;
      font-size: 21px;
      line-height: 1.4;
      margin-top: 22px;
    }

    .industries {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .pill {
      padding: 13px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      color: var(--muted);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 24px;
      align-items: start;
    }

    .contact-info, form {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .contact-info h2 { margin-top: 0; font-size: 40px; line-height: 1; }
    .contact-info p { color: var(--muted); }

    form { display: grid; gap: 14px; }

    input, textarea, select {
      width: 100%;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(17,23,34,0.78);
      color: var(--text);
      font: inherit;
    }

    textarea { min-height: 140px; resize: vertical; }

    footer {
      border-top: 1px solid var(--line);
      padding: 28px 22px;
      color: var(--muted);
    }

    footer .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 920px) {
      .hero-inner, .contact-wrap, .about-panel { grid-template-columns: 1fr; }
      .services-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
      .work.large { grid-row: span 1; }
      .menu { display: none; }
      .section-head { align-items: start; flex-direction: column; }
    }

    @media (max-width: 560px) {
      .services-grid, .stats-grid { grid-template-columns: 1fr; }
      .nav { padding: 14px 16px; }
      .brand span { font-size: 13px; }
      h1 { letter-spacing: -1.5px; }
    }
