    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy:    #0A1628;
      --navy2:   #0F2044;
      --blue:    #1B4FD8;
      --cyan:    #00C2FF;
      --white:   #FFFFFF;
      --off:     #F4F7FF;
      --muted:   #7A8BAE;
      --gold:    #F5A623;
      --radius:  12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Marmelad', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      height: 76px;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid rgba(255,255,255,0.50);
      box-shadow: 0 1px 0 rgba(27,79,216,0.06), inset 0 1px 0 rgba(255,255,255,0.75);
      transition: box-shadow .3s, background .3s;
      animation: navSlideDown 0.7s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes navSlideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);     opacity: 1; }
    }

    nav.scrolled {
      background: rgba(255,255,255,0.75);
      box-shadow: 0 4px 32px rgba(10,22,40,0.10), inset 0 1px 0 rgba(255,255,255,0.85);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      z-index: 2;
    }
    .logo-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(27,79,216,0.30);
    }
    .logo-icon svg { width: 22px; height: 22px; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text span:first-child {
      font-family: 'Grenze Gotisch', cursive;
      font-weight: 900;
      font-size: 1.15rem;
      color: var(--navy);
    }
    .logo-text span:last-child {
      font-size: 0.65rem;
      font-family: 'Marmelad', sans-serif;
      font-weight: 500;
      color: var(--blue);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* ── Desktop nav links ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-family: 'Marmelad', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--navy);
      opacity: 0.72;
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: opacity .25s, color .25s;
    }
    .nav-links a svg { width: 15px; height: 15px; flex-shrink: 0; }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--blue);
      border-radius: 2px;
      transition: width .3s ease;
    }
    .nav-links a:hover { opacity: 1; color: var(--blue); }
    .nav-links a:hover::after { width: 100%; }

    .btn-quote {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      background: linear-gradient(135deg, var(--blue), #2563EB);
      color: var(--white);
      font-family: 'Marmelad', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      border-radius: 12px;
      text-decoration: none;
      letter-spacing: 0.2px;
      box-shadow: 0 4px 20px rgba(27,79,216,0.35);
      transition: transform .25s, box-shadow .25s, filter .25s;
    }
    .btn-quote:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(27,79,216,0.45);
      filter: brightness(1.08);
    }

    /* ── Hamburger ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      z-index: 102;
      background: none;
      border: none;
      outline: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .25s, width .25s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile drawer ── */
    .mobile-drawer {
      display: none;
      position: fixed;
      top: 76px;
      left: 0; right: 0;
      z-index: 99;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid rgba(27,79,216,0.10);
      box-shadow: 0 12px 40px rgba(10,22,40,0.12);
      transform: translateY(-16px);
      opacity: 0;
      pointer-events: none;
      transition: transform .38s cubic-bezier(.22,1,.36,1), opacity .32s ease;
    }
    .mobile-drawer.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .mobile-drawer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 28px 6% 32px;
    }
    .mobile-drawer .drawer-link {
      width: 100%;
      max-width: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      text-decoration: none;
      font-family: 'Marmelad', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: var(--navy);
      padding: 13px 20px;
      border-radius: 12px;
      transition: background .2s, color .2s;
    }
    .mobile-drawer .drawer-link svg { width: 17px; height: 17px; flex-shrink: 0; }
    .mobile-drawer .drawer-link:hover { background: rgba(27,79,216,0.07); color: var(--blue); }
    .mobile-drawer .drawer-divider {
      width: 100%;
      max-width: 340px;
      height: 1px;
      background: rgba(27,79,216,0.08);
      margin: 6px 0;
    }
    .mobile-drawer .btn-quote-mobile {
      width: 100%;
      max-width: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 8px;
      padding: 14px 28px;
      background: linear-gradient(135deg, var(--blue), #2563EB);
      color: var(--white);
      font-family: 'Marmelad', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 14px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(27,79,216,0.35);
      transition: transform .25s, box-shadow .25s, filter .25s;
    }
    .mobile-drawer .btn-quote-mobile:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(27,79,216,0.45);
      filter: brightness(1.07);
    }

    /* ─── HERO ───────────────────────────────── */
    .hero {
      min-height: 100vh;
      background: #EEF3FF;
      background-image:
        radial-gradient(ellipse 70% 60% at 50% 110%, rgba(27,79,216,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 90% 20%, rgba(0,194,255,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 10% 80%, rgba(27,79,216,0.08) 0%, transparent 60%),
        linear-gradient(rgba(27,79,216,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,79,216,0.04) 1px, transparent 1px);
      background-size: auto, auto, auto, 48px 48px, 48px 48px;
      display: grid;
      grid-template-columns: 1fr 340px 1fr;
      align-items: center;
      column-gap: 52px;
      padding: 110px 6% 70px;
      position: relative;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      animation: float 8s ease-in-out infinite;
    }
    .orb1 { width: 320px; height: 320px; background: rgba(27,79,216,0.12); top: -80px; right: 12%; animation-delay: 0s; }
    .orb2 { width: 200px; height: 200px; background: rgba(0,194,255,0.10); bottom: 60px; left: 5%; animation-delay: 3s; }
    .orb3 { width: 160px; height: 160px; background: rgba(245,166,35,0.08); top: 30%; left: 25%; animation-delay: 5s; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-24px); }
    }

    .hero-left {
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 0;
      animation: slideLeft .9s cubic-bezier(.22,1,.36,1) both;
      animation-delay: 0.3s;
    }
    @keyframes slideLeft {
      from { opacity: 0; transform: translateX(-60px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero-headline {
      font-family: 'Black Ops One', cursive;
      font-size: clamp(1.7rem, 2.6vw, 2.6rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--navy);
      letter-spacing: 0.5px;
      margin-bottom: 18px;
      animation: blurReveal 1.1s cubic-bezier(.22,1,.36,1) 0.55s both;
    }
    .hero-sub {
      font-family: 'Marmelad', sans-serif;
      font-size: 0.97rem;
      line-height: 1.75;
      color: var(--muted);
      max-width: 340px;
      margin-bottom: 34px;
      animation: blurReveal 1.2s cubic-bezier(.22,1,.36,1) 0.8s both;
    }
    @keyframes blurReveal {
      from { opacity: 0; filter: blur(14px); transform: translateY(8px); }
      to   { opacity: 1; filter: blur(0px);  transform: translateY(0); }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(27,79,216,0.10);
      border: 1px solid rgba(27,79,216,0.18);
      color: var(--blue);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: 'Marmelad', sans-serif;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      width: fit-content;
      margin-bottom: 22px;
    }
    .badge-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

    .hero-headline .accent {
      font-family: 'Calligraffitti', cursive;
      font-size: clamp(2rem, 3vw, 3rem);
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      line-height: 1.35;
    }

    .hero-ctas { 
      display: flex; 
      flex-wrap: wrap; 
      gap: 14px; 
      margin-bottom: 44px; 
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px;
      background: linear-gradient(135deg, var(--blue) 0%, #2563EB 100%);
      color: #fff;
      font-family: 'Marmelad', sans-serif; font-weight: 700; font-size: 0.9rem;
      border-radius: 12px; text-decoration: none;
      box-shadow: 0 6px 28px rgba(27,79,216,0.38);
      transition: transform .25s, box-shadow .25s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(27,79,216,0.45); }

  .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: transparent; border: 1.5px solid rgba(27,79,216,0.30);
  color: var(--blue);
  font-family: 'Marmelad', sans-serif; font-weight: 600; font-size: 0.9rem;
  border-radius: 12px; text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
}
.btn-ghost:hover { 
  background: rgba(27,79,216,0.06); 
  border-color: var(--blue); 
  transform: translateY(-3px); 
}

    .stats { 
      display: flex; 
      gap: 28px; 
      flex-wrap: wrap; 
    }
    .stat { display: flex; flex-direction: column; }
    .stat-num {
      font-family: 'Black Ops One', cursive; font-size: 1.55rem; font-weight: 400;
      color: var(--navy); line-height: 1; display: flex; align-items: baseline; gap: 1px;
    }
    .stat-num .suffix { color: var(--blue); }
    .stat-label { font-size: 0.72rem; color: var(--muted); font-family: 'Marmelad', sans-serif; font-weight: 500; letter-spacing: 0.4px; margin-top: 3px; }
    .stat-divider { width: 1px; background: rgba(10,22,40,0.10); align-self: stretch; }

    .hero-center {
      z-index: 2; display: flex; align-items: center; justify-content: center;
      animation: fadeUp 1s 0.2s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes fadeUp {
      from { opacity:0; transform: translateY(50px); }
      to   { opacity:1; transform: translateY(0); }
    }

    .img-wrapper { position: relative; width: 320px; height: 400px; }
    .img-wrapper::before {
      content: ''; position: absolute; inset: -14px; border-radius: 50%;
      border: 1.5px dashed rgba(27,79,216,0.25); animation: spin 18s linear infinite;
    }
    .img-wrapper::after {
      content: ''; position: absolute; inset: -28px; border-radius: 50%;
      border: 1px dashed rgba(0,194,255,0.15); animation: spin 28s linear infinite reverse;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .hero-img-bg {
      width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 24px 80px rgba(27,79,216,0.22), 0 0 0 8px rgba(27,79,216,0.06);
      position: relative; z-index: 1;
      background: linear-gradient(160deg, #D6E4FF 0%, #C5D8FF 100%);
    }
    .hero-img-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

    .float-card {
      position: absolute; z-index: 3;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-radius: 14px; padding: 11px 16px;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 32px rgba(10,22,40,0.12);
      animation: floatCard 4s ease-in-out infinite;
      white-space: nowrap;
    }
    .float-card:nth-child(2) { animation-delay: 2s; }
    .fc-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .fc-text { display: flex; flex-direction: column; }
    .fc-title { font-family: 'Marmelad', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--navy); }
    .fc-sub { font-size: 0.68rem; color: var(--muted); }
    .card-top { top: 8%; left: -24%; }
    .card-bot { bottom: 12%; right: -24%; }
    @keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

    .hero-right { z-index: 2; display: flex; flex-direction: column; gap: 18px; }

    .feature-card {
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(27,79,216,0.08); border-radius: 12px;
      padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
      box-shadow: 0 2px 16px rgba(10,22,40,0.05);
      transition: transform .25s, box-shadow .25s; cursor: default;
      opacity: 0; transform: translateX(60px);
      animation: slideRight .8s cubic-bezier(.22,1,.36,1) forwards;
    }
    .feature-card:nth-child(1) { animation-delay: 0.45s; }
    .feature-card:nth-child(2) { animation-delay: 0.65s; }
    .feature-card:nth-child(3) { animation-delay: 0.85s; }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(60px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(27,79,216,0.12); }
    .fc2-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .fc2-icon svg { width: 22px; height: 22px; }
    .fc2-title { font-family: 'Marmelad', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 4px; }
    .fc2-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; font-family: 'Marmelad', sans-serif; }

    .clients {
      margin-top: 6px; display: flex; flex-direction: column; gap: 8px;
      opacity: 0; animation: slideRight .8s cubic-bezier(.22,1,.36,1) 1.05s forwards;
    }
    .clients-label { font-size: 0.7rem; font-family: 'Marmelad', sans-serif; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
    .clients-avatars { display: flex; align-items: center; }
    .avatar {
      width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid #fff;
      margin-left: -9px; overflow: hidden; flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(10,22,40,0.15);
    }
    .avatar:first-child { margin-left: 0; }
    .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .clients-info { font-size: 0.75rem; font-family: 'Marmelad', sans-serif; color: var(--muted); margin-left: 10px; }
    .clients-info strong { color: var(--navy); font-weight: 700; }

    .scroll-hint {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      z-index: 2; opacity: 0.5;
    }
    .scroll-hint span { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-family: 'Marmelad', sans-serif; }
    .scroll-arrow { width: 20px; height: 20px; animation: bounce 1.8s infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

    /* ─── RESPONSIVE ─────────────────────────── */
    @media (max-width: 1100px) {
      .hero {
        grid-template-columns: 1fr; 
        text-align: center;
        padding: 110px 6% 70px; 
        column-gap: 0; 
        gap: 40px;
      }
      .hero-left { 
        align-items: center; 
      }
      .hero-left .hero-sub { 
        max-width: 500px; 
      }
      .hero-right { 
        align-items: center; 
      }
      .stats { 
        justify-content: center; 
      }
      .img-wrapper { width: 270px; height: 340px; }
      .card-top { left: -5%; }
      .card-bot { right: -5%; }
      .feature-card { max-width: 380px; }
    }

    /* Tablet & Mobile Specific Adjustments */
    @media (max-width: 768px) {
      nav { padding: 0 5%; }

      /* hide desktop nav + CTA */
      .nav-links { display: none !important; }
      .btn-quote  { display: none !important; }

      /* show hamburger + drawer */
      .hamburger     { display: flex; }
      .mobile-drawer { display: block; }

      /* Hero Content Centered */
      .hero-left {
        align-items: center;
        text-align: center;
      }

      /* Buttons: One per row, centered on mobile */
      .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
      }
      .hero-ctas a {
        width: 100%;
        justify-content: center;
      }

      /* Stats: Stacked vertically, one per row, centered */
      .stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
      }
      .stat-divider {
        display: none;
      }
      .stat {
        align-items: center;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero-headline { 
        font-size: 1.55rem; 
      }
    }

    /* =============== SERVICES SECTION STYLES =============== */
    .services-section {
      padding: 120px 6% 100px;
      background: #FFFFFF;
    }

    .services-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-header .badge {
      margin: 0 auto 18px;
      background: rgba(27,79,216,0.08);
      border: 1px solid rgba(27,79,216,0.2);
    }

    .section-header h2 {
      font-family: 'Black Ops One', cursive;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: #0A1628;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-header p {
      font-size: 1.05rem;
      color: #7A8BAE;
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: #FFFFFF;
      border: 1px solid rgba(27,79,216,0.08);
      border-radius: 16px;
      padding: 48px 36px 40px;
      min-height: 380px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Blue gradient for FIRST and LAST cards only */
    .service-card:nth-child(1),
    .service-card:nth-child(4) {
      background: linear-gradient(135deg, #1B4FD8, #00C2FF);
      color: white;
      border-color: rgba(255,255,255,0.25);
    }

    .service-card:nth-child(1) .service-icon,
    .service-card:nth-child(4) .service-icon {
      background: rgba(255,255,255,0.25);
      color: white;
    }

    .service-card:nth-child(1) h3,
    .service-card:nth-child(4) h3,
    .service-card:nth-child(1) p,
    .service-card:nth-child(4) p {
      color: white;
    }

    .service-card:nth-child(1) .service-link,
    .service-card:nth-child(4) .service-link {
      color: white;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #1B4FD8, #00C2FF);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 50px rgba(27,79,216,0.18);
      border-color: rgba(27,79,216,0.25);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 78px;
      height: 78px;
      background: linear-gradient(135deg, #EEF3FF, #E0ECFF);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      font-size: 36px;
      color: #1B4FD8;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      background: rgba(255,255,255,0.3);
      transform: scale(1.08);
    }

    .service-card h3 {
      font-family: 'Marmelad', sans-serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: #0A1628;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .service-card p {
      color: #7A8BAE;
      line-height: 1.65;
      font-size: 1rem;
      margin-bottom: 28px;
      flex-grow: 1;
    }

    .service-link {
      color: #1B4FD8;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
    }

    .service-link:hover {
      gap: 10px;
      color: #2563EB;
    }

    /* Mobile adjustment for services */
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
      .service-card {
        min-height: 340px;
        padding: 42px 28px 34px;
      }
    }

    /* =============== WHY CHOOSE US SECTION =============== */
    .whyus-section {
      padding: 110px 6% 100px;
      background: #F8FAFF;
    }

    .whyus-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-header .badge {
      margin: 0 auto 18px;
      background: rgba(27,79,216,0.08);
      border: 1px solid rgba(27,79,216,0.2);
    }

    .section-header h2 {
      font-family: 'Black Ops One', cursive;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: #0A1628;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-header p {
      font-size: 1.05rem;
      color: #7A8BAE;
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .whyus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .whyus-card {
      background: #FFFFFF;
      border: 1px solid rgba(27,79,216,0.08);
      border-radius: 16px;
      padding: 42px 32px;
      text-align: center;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .whyus-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .whyus-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 45px rgba(27,79,216,0.12);
      border-color: rgba(27,79,216,0.18);
    }

    .whyus-card:hover::before {
      transform: scaleX(1);
    }

    .whyus-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, #EEF3FF, #E0ECFF);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 32px;
      color: var(--blue);
      transition: all 0.3s ease;
    }

    .whyus-card:hover .whyus-icon {
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: white;
      transform: scale(1.1);
    }

    .whyus-card h3 {
      font-family: 'Marmelad', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .whyus-card p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 0.98rem;
    }

    @media (max-width: 768px) {
      .whyus-section {
        padding: 90px 5% 80px;
      }
      .whyus-grid {
        grid-template-columns: 1fr;
      }
    }
    
    /* =============== CTA / CONTACT BANNER SECTION =============== */
    .cta-section {
      padding: 100px 6%;
      background: #EEF3FF;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(27,79,216,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,79,216,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .cta-container {
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-content h2 {
      font-family: 'Black Ops One', cursive;
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      line-height: 1.15;
      margin-bottom: 20px;
      color: var(--navy);
    }

    .cta-content p {
      font-size: 1.12rem;
      color: var(--muted);
      max-width: 680px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: white;
      font-family: 'Marmelad', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 18px 42px;
      border-radius: 16px;
      text-decoration: none;
      box-shadow: 0 10px 40px rgba(27,79,216,0.45);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .cta-button:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,194,255,0.5);
    }

    .cta-button i {
      transition: transform 0.4s ease;
    }

    .cta-button:hover i {
      transform: translateX(8px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cta-section {
        padding: 90px 5%;
      }
      .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
      }
    }

    /* =============== FOOTER STYLES =============== */
    .footer {
      background: var(--navy);
      color: white;
      padding-top: 80px;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 6%;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 50px 40px;
      margin-bottom: 60px;
    }

    .footer-col h4 {
      font-family: 'Marmelad', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 22px;
      color: var(--cyan);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      margin-bottom: 20px;
    }

    .footer-logo .logo-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo .logo-text span:first-child {
      font-family: 'Grenze Gotisch', cursive;
      font-weight: 900;
      font-size: 1.35rem;
      color: white;
    }

    .footer-logo .logo-text span:last-child {
      font-size: 0.72rem;
      color: var(--cyan);
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    .footer-tagline {
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      max-width: 260px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--cyan);
      padding-left: 4px;
    }

    .footer-contact {
      list-style: none;
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      color: rgba(255,255,255,0.85);
    }

    .footer-contact i {
      color: var(--cyan);
      width: 18px;
    }

    .social-icons {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      width: 46px;
      height: 46px;
      background: rgba(255,255,255,0.08);
      color: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      transition: all 0.35s ease;
    }

    .social-icon:hover {
      background: var(--cyan);
      color: var(--navy);
      transform: translateY(-4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding: 28px 0;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
    }

    .footer-bottom .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-grid {
        gap: 40px;
      }
      .footer-bottom .footer-container {
        justify-content: center;
        text-align: center;
      }
    }