*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #050d1f;
      --navy-mid:   #071428;
      --navy-light: #0d1f3c;
      --teal:       #3d9fd3;
      --teal-bright:#4bb8e8;
      --orange:     #e05a1a;
      --orange-hi:  #f07030;
      --white:      #ffffff;
      --grey:       #b0bcd4;
      --grey-dim:   #6a7a99;
      --blue-badge: #1a4a8a;
      --glow-blue:  rgba(30,100,200,0.18);
      --glow-teal:  rgba(61,159,211,0.10);
    }

    html, body {
      width: 100%; height: 100%;
      background: var(--navy);
      font-family: 'Exo 2', 'Barlow', sans-serif;
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── BACKGROUND ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 65% 50%, rgba(20,60,140,0.55) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(10,30,80,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 90% 20%, rgba(15,40,100,0.3) 0%, transparent 60%),
        linear-gradient(160deg, #071428 0%, #050d1f 50%, #030b18 100%);
      pointer-events: none;
    }

    /* subtle grid overlay */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(61,159,211,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,159,211,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* ── WRAPPER ── */
    .page {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-rows: auto auto auto 1fr auto auto;
    }

    /* ── HEADER ── */
    header {
      padding: 32px 48px 0;
      display: flex; align-items: center;
      animation: fadeDown 0.8s ease both;
    }

    .logo-img {
      height: 110px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    /* old logo sub-elements – kept for safety, unused */
    .logo-icon, .logo-text-wrap, .logo-wordmark,
    .logo-name, .logo-divider-line, .logo-subtitle-row,
    .logo-ltd, .uk-flag, .badge { display: none; }

    /* ── MAIN CONTENT ── */
    main {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 48px;
      gap: 0;
      min-height: 0;
    }

    /* LEFT COLUMN */
    .left {
      display: flex; flex-direction: column;
      gap: 0;
      padding-right: 32px;
      animation: fadeLeft 0.9s ease 0.25s both;
    }

    /* ── DESCRIPTION (full-width centred) ── */
    .hero-desc-wrap {
      display: flex; justify-content: center;
      padding: 20px 24px 24px;
      animation: fadeDown 0.9s ease 0.2s both;
    }

    .hero-desc {
      font-family: 'Barlow', sans-serif;
      font-size: clamp(0.9rem, 1.4vw, 1.1rem);
      font-weight: 500;
      color: #dce8f8;
      line-height: 1.75;
      max-width: 860px;
      letter-spacing: 0.01em;
      text-align: center;
    }

    .robot-arm-img {
      width: 100%;
      max-width: 560px;
      object-fit: contain;
      display: block;
    }

    /* Services — strict 3×2 grid */
    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 32px 20px;
      padding: 16px 0;
      margin-left: auto;
      margin-right: -40px;
    }

    /* Services — strict 3×2 grid */
    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 42px 20px;
      padding: 16px 0;
      margin-left: auto;
      margin-right: -40px;
    }

    .service-item {
      display: flex; flex-direction: column; align-items: center;
      gap: 14px;
      text-align: center;
      transition: transform 0.25s ease;
    }

    .service-item:hover { transform: translateY(-4px); }

    .service-icon {
      width: 84px; height: 84px;
      display: flex; align-items: center; justify-content: center;
      color: var(--teal-bright);
    }

    .service-icon svg { width: 62px; height: 62px; }

    .service-label {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--grey);
      line-height: 1.4;
    }

    /* ── TAGLINE (full-width centred) ── */
    .tagline-wrap {
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
      padding: 24px 48px 40px;
      animation: fadeUp 0.9s ease 0.4s both;
    }

    .tagline-header {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--teal-bright);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .tagline-text {
      font-family: 'Barlow', sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: #dce8f8;
      letter-spacing: 0.03em;
      line-height: 1.6;
    }

    /* ── HERO CENTRE BAND ── */
    .hero-center {
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
      padding: 32px 48px 8px;
      animation: fadeDown 0.85s ease 0.1s both;
    }

    .coming-soon {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.36em;
      color: var(--teal-bright);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .hero-title {
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .hero-underline {
      width: 56px; height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-bright));
      border-radius: 2px;
    }

    .hero-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 1.32rem;
      font-weight: 500;
      color: #dce8f8;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 36px;
      letter-spacing: 0.01em;
    }

    /* Tagline — moved to .tagline-wrap full-width section */
    .tagline-section { display: none; }

    /* RIGHT COLUMN – Robot */
    .right {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      min-height: 420px;
      animation: fadeRight 1s ease 0.3s both;
    }

    /* Glow behind robot */
    .robot-glow {
      position: absolute;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(30,90,180,0.35) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .robot-svg-wrap {
      position: relative; z-index: 2;
      width: 100%; max-width: 580px;
      display: flex; justify-content: center;
      filter: drop-shadow(0 0 50px rgba(220,90,20,0.30))
              drop-shadow(0 30px 70px rgba(0,0,0,0.55));
    }

    .robot-svg-wrap img {
      width: 100%;
      max-width: 580px;
      object-fit: contain;
      display: block;
    }

    /* ── FOOTER ── */
    footer {
      padding: 28px 48px 32px;
      display: flex; align-items: center; justify-content: center; gap: 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      animation: fadeUp 0.8s ease 0.5s both;
    }

    .contact-item {
      display: flex; align-items: center; gap: 16px;
      padding: 0 40px;
    }

    .contact-icon-wrap {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid rgba(61,159,211,0.5);
      display: flex; align-items: center; justify-content: center;
      color: var(--teal-bright); flex-shrink: 0;
      background: rgba(61,159,211,0.06);
    }

    .contact-icon-wrap svg { width: 18px; height: 18px; }

    .contact-icon-wrap i { font-size: 20px; }

    .contact-item--link {
      text-decoration: none;
      transition: transform 0.25s ease;
    }

    .contact-item--link:hover { transform: translateY(-3px); }
    .contact-item--link:hover .contact-icon-wrap {
      border-color: rgba(220,232,248,0.8);
      color: #dce8f8;
    }
    .contact-item--link:hover .contact-value { color: #dce8f8; }

    .contact-info { display: flex; flex-direction: column; gap: 3px; }

    .contact-label {
      font-size: 0.70rem;
      font-weight: 600;
      color: var(--teal-bright);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .contact-value {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--grey);
    }

    .footer-divider {
      width: 1px; height: 48px;
      background: rgba(255,255,255,0.12);
      flex-shrink: 0;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeDown  { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:none; } }
    @keyframes fadeLeft  { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:none; } }
    @keyframes fadeRight { from { opacity:0; transform:translateX(30px); }  to { opacity:1; transform:none; } }
    @keyframes fadeUp    { from { opacity:0; transform:translateY(20px); }  to { opacity:1; transform:none; } }
    .robot-svg-wrap { animation: fadeRight 1s ease 0.3s both; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      header { padding: 24px 24px 0; justify-content: center; display: flex; }
      .logo-img { height: 80px; }
      .hero-center { padding: 24px 24px 4px; }
      .hero-title { font-size: 2.6rem; }
      .hero-desc-wrap { padding: 16px 24px 16px; }
      .hero-desc { font-size: 1.1rem; }
      main { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }
      .left { padding-right: 0; align-items: center; }
      .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
      }
      .right { min-height: 300px; }
      .tagline-wrap { padding: 20px 24px 8px; }
      .tagline-header { font-size: 0.85rem; }
      .tagline-text { font-size: 1rem; }
      footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 28px 24px 32px;
      }
      .contact-item { padding: 0 16px; width: 100%; max-width: 280px; }
      .footer-divider { width: 200px; height: 1px; }
    }