/* ===== GPS-TRACKING – ALL DARK MAP-CENTRIC THEME ===== */
    body { background: #030712; }

    /* HERO: Full map with overlaid content */
    .gps-hero {
      background: #030712;
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      overflow: hidden;
    }
    /* Animated map grid background */
    .gps-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(99,102,241,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.07) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .gps-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 70% at 60% 50%, rgba(99,102,241,.12) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 20% 30%, rgba(79,70,229,.1) 0%, transparent 60%);
    }
    .gps-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .gps-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(99,102,241,.15);
      border: 1px solid rgba(99,102,241,.3);
      color: #a5b4fc;
      border-radius: 99px;
      padding: .4rem 1rem;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .04em;
      margin-bottom: 1.5rem;
    }
    .gps-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #a5b4fc;
      animation: blink 1.5s infinite;
    }
    .gps-title {
      font-size: clamp(2.2rem, 3.8vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }
    .gps-grad { background: linear-gradient(135deg, #a5b4fc, #818cf8, #6366f1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .gps-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 2rem; }
    .gps-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
    .gps-btn-p {
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      color: #fff; border: none; border-radius: 10px;
      padding: .85rem 2rem; font-size: .95rem; font-weight: 700;
      text-decoration: none; display: inline-block;
      box-shadow: 0 0 30px rgba(99,102,241,.3);
    }
    .gps-btn-g {
      background: transparent; color: rgba(255,255,255,.7);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 10px; padding: .85rem 2rem;
      font-size: .95rem; font-weight: 600;
      text-decoration: none; display: inline-block;
    }

    /* Map mockup (right side) */
    .gps-map-wrap {
      position: relative;
      background: #0c0f1a;
      border-radius: 24px;
      border: 1px solid rgba(99,102,241,.25);
      overflow: hidden;
      box-shadow: 0 0 60px rgba(99,102,241,.15);
      aspect-ratio: 4/3;
    }
    .gps-map-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    /* Fake road lines */
    .gps-roads {
      position: absolute;
      inset: 0;
    }
    .gps-road {
      position: absolute;
      background: rgba(99,102,241,.12);
    }
    .gps-pin {
      position: absolute;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .gps-pin-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .gps-pin-dot-green { background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,.6); animation: blink 1.5s infinite; }
    .gps-pin-dot-amber { background: #f59e0b; box-shadow: 0 0 10px rgba(245,158,11,.6); animation: blink 2s infinite; }
    .gps-pin-label {
      background: rgba(15,23,42,.95);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 7px;
      padding: .3rem .6rem;
      font-size: .65rem;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
    }
    .gps-map-header {
      position: absolute;
      top: 0; left: 0; right: 0;
      background: rgba(3,7,18,.9);
      border-bottom: 1px solid rgba(99,102,241,.2);
      padding: .75rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 10;
    }
    .gps-map-dots { display: flex; gap: .35rem; }
    .gps-map-dot { width: 10px; height: 10px; border-radius: 50%; }
    .gps-map-title { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6); }
    .gps-map-live { display: flex; align-items: center; gap: .4rem; font-size: .65rem; font-weight: 700; color: #22c55e; }
    .gps-map-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: blink 1.5s infinite; }
    .gps-map-stats {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: rgba(3,7,18,.95);
      border-top: 1px solid rgba(99,102,241,.15);
      padding: .75rem 1rem;
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: .5rem;
      z-index: 10;
    }
    .gps-map-stat { text-align: center; }
    .gps-map-stat-val { font-size: .9rem; font-weight: 800; color: #fff; display: block; }
    .gps-map-stat-lbl { font-size: .58rem; color: rgba(255,255,255,.4); }

    /* Use cases */
    .gps-usecases { padding: 6rem 0; background: #030712; }
    .gps-sec-label { display: block; text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #818cf8; margin-bottom: .75rem; }
    .gps-sec-title { text-align: center; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
    .gps-sec-sub { text-align: center; color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto 3.5rem; font-size: .95rem; line-height: 1.7; }
    .gps-uc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .gps-uc-card {
      background: #0c0f1a;
      border: 1px solid rgba(99,102,241,.15);
      border-radius: 20px;
      overflow: hidden;
    }
    .gps-uc-top {
      padding: 1.75rem 1.75rem 1.25rem;
      border-bottom: 1px solid rgba(99,102,241,.1);
    }
    .gps-uc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .gps-uc-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: .35rem; }
    .gps-uc-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
    .gps-uc-bottom { padding: 1.25rem 1.75rem; }
    .gps-uc-feature {
      display: flex; align-items: center; gap: .6rem;
      font-size: .8rem; color: rgba(255,255,255,.6);
      padding: .3rem 0;
    }
    .gps-uc-feature::before { content: '→'; color: #818cf8; flex-shrink: 0; }

    /* DSGVO Deep Dive */
    .gps-dsgvo { padding: 6rem 0; background: #060a16; }
    .gps-dsgvo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .gps-dsgvo-left h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
    .gps-dsgvo-left > p { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 2rem; }
    .gps-dsgvo-principle { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
    .gps-dsgvo-num {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(99,102,241,.15);
      border: 1px solid rgba(99,102,241,.3);
      color: #a5b4fc;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; font-weight: 800;
      flex-shrink: 0;
    }
    .gps-dsgvo-principle h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
    .gps-dsgvo-principle p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; }
    .gps-dsgvo-right { display: flex; flex-direction: column; gap: 1rem; }
    .gps-dsgvo-card {
      background: #0c0f1a;
      border: 1px solid rgba(99,102,241,.2);
      border-radius: 16px;
      padding: 1.5rem;
    }
    .gps-dsgvo-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
    .gps-dsgvo-card-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(99,102,241,.12);
      border: 1px solid rgba(99,102,241,.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .gps-dsgvo-card h3 { font-size: .9rem; font-weight: 700; color: #fff; }
    .gps-dsgvo-card-sub { font-size: .72rem; color: #818cf8; font-weight: 600; }
    .gps-dsgvo-checks { display: flex; flex-direction: column; gap: .4rem; }
    .gps-dsgvo-check { display: flex; align-items: flex-start; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.6); }
    .gps-dsgvo-check::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }

    /* How it works - dark cards */
    .gps-how { padding: 6rem 0; background: #030712; }
    .gps-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .gps-how-card {
      background: #0c0f1a;
      border: 1px solid rgba(99,102,241,.15);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }
    .gps-how-num {
      position: absolute;
      top: -10px; right: 1rem;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(99,102,241,.07);
      line-height: 1;
    }
    .gps-how-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(79,70,229,.1));
      border: 1px solid rgba(99,102,241,.3);
      display: flex; align-items: center; justify-content: center;
      color: #a5b4fc; margin-bottom: 1.25rem;
      position: relative; z-index: 1;
    }
    .gps-how-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; position: relative; z-index: 1; }
    .gps-how-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; position: relative; z-index: 1; }
    .gps-how-detail {
      margin-top: 1rem; padding-top: 1rem;
      border-top: 1px solid rgba(99,102,241,.1);
      font-size: .78rem; color: rgba(99,102,241,.8);
      font-weight: 600;
      position: relative; z-index: 1;
    }

    /* Tech specs */
    .gps-tech { padding: 6rem 0; background: #060a16; }
    .gps-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .gps-tech-left h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
    .gps-tech-left p { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 2rem; }
    .gps-tech-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .gps-spec-box {
      background: #0c0f1a;
      border: 1px solid rgba(99,102,241,.2);
      border-radius: 14px;
      padding: 1.25rem;
    }
    .gps-spec-val { font-size: 1.6rem; font-weight: 800; color: #a5b4fc; display: block; margin-bottom: .2rem; }
    .gps-spec-lbl { font-size: .78rem; color: rgba(255,255,255,.5); }
    .gps-tech-right {
      background: #0c0f1a;
      border: 1px solid rgba(99,102,241,.2);
      border-radius: 20px;
      padding: 2rem;
    }
    .gps-tech-right h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
    .gps-tech-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
    .gps-tech-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .gps-tech-item-title { font-size: .85rem; font-weight: 600; color: #fff; margin-bottom: .15rem; }
    .gps-tech-item-sub { font-size: .75rem; color: rgba(255,255,255,.4); }

    /* CTA */
    .gps-cta {
      padding: 6rem 0;
      background: linear-gradient(135deg, #1e1b4b, #312e81, #1e1b4b);
    }
    .gps-cta-inner { text-align: center; }
    .gps-cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: .75rem; }
    .gps-cta-inner p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 2rem; }
    .gps-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .gps-cta-btn-w { background: #fff; color: #312e81; border-radius: 10px; padding: .85rem 2rem; font-size: .95rem; font-weight: 700; text-decoration: none; }
    .gps-cta-btn-o { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.3); border-radius: 10px; padding: .85rem 2rem; font-size: .95rem; font-weight: 600; text-decoration: none; }

    @media (max-width:900px) {
      .gps-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .gps-uc-grid { grid-template-columns: 1fr; }
      .gps-dsgvo-grid { grid-template-columns: 1fr; }
      .gps-how-grid { grid-template-columns: 1fr; }
      .gps-tech-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) { footer .container > div:first-child { grid-template-columns: 1fr !important; } }
