*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #0a1628; --accent: #00b4d8; --accent2: #0077a8;
      --light: #f4f8fb; --white: #ffffff; --text: #1e2a38;
      --muted: #5a6a7a; --nav-h: 72px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(10,22,40,0.97); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: flex-start; gap: 1.2rem; padding: 0 3rem; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
    .nav-logo img { height: 46px; filter: drop-shadow(0 0 8px rgba(0,180,216,0.4)); }
    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; margin-left: auto; }
    .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Exo 2', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.3rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
    .nav-links a:hover { color: var(--accent); border-color: var(--accent); }
    /* NAV-LEFT: Logo + Support Button */

    /* Support Button */
      50%      { box-shadow: 0 2px 20px rgba(249,115,22,0.7); }
    }

    /* Mobile support button */


    /* SOFTWARE DROPDOWN */
    .nav-dropdown-wrap { position: relative; }
    .nav-dropdown-trigger { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
    .nav-drop-arrow { font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; display: inline-block; }
    .nav-dropdown-wrap:hover .nav-drop-arrow { transform: rotate(180deg); }
    .nav-subdropdown { display: none; position: fixed; min-width: 220px; z-index: 9999; }
    .nav-subdropdown-inner { background: var(--primary); border: 1px solid rgba(0,180,216,0.25); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.45); }
    .nav-subdropdown li { list-style: none; }
    .nav-subdropdown-inner li a { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 1rem; color: rgba(255,255,255,0.8) !important; font-size: 0.85rem !important; border-bottom: none !important; white-space: nowrap; transition: background 0.15s, color 0.15s; }
    .nav-subdropdown-inner li a::before { content: '›'; color: var(--accent); font-size: 1rem; font-weight: bold; }
    .nav-subdropdown-inner li a:hover { background: rgba(0,180,216,0.15); color: var(--accent) !important; }
    .nav-subdropdown-inner li + li { border-top: 1px solid rgba(255,255,255,0.06); }

    /* Mobile submenu */
    .mobile-menu-parent { cursor: pointer; }
    .mobile-submenu { display: none; padding-left: 1.2rem; border-left: 2px solid rgba(0,180,216,0.3); margin-left: 0.2rem; }
    .mobile-submenu.open { display: block; }
    .mobile-submenu a { font-size: 0.9rem !important; padding: 0.6rem 0 !important; color: rgba(255,255,255,0.65) !important; border-bottom: none !important; letter-spacing: 0.03em !important; }
    .mobile-submenu a::before { content: '› '; color: var(--accent); }
    .mobile-submenu a:hover { color: var(--accent) !important; }

    /* Language switcher */
    .lang-switcher { position: relative; display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
    .lang-current { display: flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.6rem; border-radius: 4px; border: 1px solid rgba(0,180,216,0.3); transition: background 0.2s; }
    .lang-switcher:hover .lang-current { background: rgba(0,180,216,0.12); }
    .lang-switcher img { width: 20px; border-radius: 2px; }
    .lang-switcher span { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-family: 'Exo 2', sans-serif; font-weight: 600; }
    .lang-arrow { color: rgba(255,255,255,0.5) !important; font-size: 0.65rem !important; font-weight: normal !important; margin-left: 2px; transition: transform 0.2s; }
    .lang-switcher:hover .lang-arrow,
    .lang-switcher.open .lang-arrow { transform: rotate(180deg); }
    .lang-dropdown { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--primary); border: 1px solid rgba(0,180,216,0.25); border-radius: 8px; overflow: hidden; min-width: 150px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
    .lang-switcher:hover .lang-dropdown,
    .lang-switcher.open .lang-dropdown { display: block; }
    .lang-dropdown button { display: flex; align-items: center; gap: 0.6rem; width: 100%; padding: 0.6rem 0.9rem; color: rgba(255,255,255,0.8); background: none; border: none; cursor: pointer; font-size: 0.85rem; font-family: 'Exo 2', sans-serif; transition: background 0.15s; text-align: left; }
    .lang-dropdown button:hover { background: rgba(0,180,216,0.15); color: var(--accent); }
    .lang-dropdown button.active-lang { color: var(--accent); background: rgba(0,180,216,0.08); }
    .lang-dropdown img { width: 20px; border-radius: 2px; }

    /* Hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 26px; height: 2px; background: white; border-radius: 2px; }
    .mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 1.5rem 2rem; z-index: 99; }
    .mobile-menu.open { display: block; }
    .mobile-menu a { display: block; color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Exo 2', sans-serif; font-size: 1rem; font-weight: 500; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-transform: uppercase; letter-spacing: 0.05em; }
    .mobile-menu a:hover { color: var(--accent); }

    /* HERO */
    .hero { margin-top: var(--nav-h); position: relative; height: calc(100vh - var(--nav-h)); min-height: 480px; overflow: hidden; }
    .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
    .slide.active { opacity: 1; z-index: 2; }
    .slide-bg { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s ease; }
    .slide.active .slide-bg { transform: scale(1); }
    .slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.3) 100%); }
    .slide-content { position: absolute; bottom: 15%; left: 8%; max-width: 560px; }
    .slide-content h1 { font-family: 'Exo 2', sans-serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: white; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.4); margin-bottom: 0.8rem; }
    .slide-content p { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.88); margin-bottom: 1.6rem; font-weight: 300; }
    .btn { display: inline-block; padding: 0.75rem 2rem; background: var(--accent); color: white; text-decoration: none; font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 4px; cursor: pointer; border: none; transition: background 0.2s, transform 0.2s; }
    .btn:hover { background: var(--accent2); transform: translateY(-2px); }
    .slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
    .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; border: none; transition: background 0.3s, transform 0.3s; }
    .dot.active { background: var(--accent); transform: scale(1.3); }
    .slider-arrows { position: absolute; top: 50%; z-index: 10; width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; transform: translateY(-50%); }
    .arrow { background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.2); color: white; font-size: 1.4rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .arrow:hover { background: var(--accent); }

    /* TAGLINE */
    .tagline-bar { background: var(--accent); padding: 1.4rem 2rem; text-align: center; }
    .tagline-bar p { font-family: 'Exo 2', sans-serif; font-size: clamp(0.95rem, 2.5vw, 1.1rem); font-weight: 600; color: white; }

    /* SECTION TITLE */
    .section-title { text-align: center; margin-bottom: 3.5rem; }
    .section-title h2 { font-family: 'Exo 2', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
    .section-title p { color: var(--muted); font-size: 1.05rem; }
    .section-title .line { width: 60px; height: 3px; background: var(--accent); margin: 0.8rem auto 0; border-radius: 2px; }

    /* SERVICES CARDS */
    .services { padding: 5rem 2rem; background: var(--light); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
    .service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
    .service-card-icon { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), #1a3050); overflow: hidden; }
    .service-card-icon img { max-width: 120px; max-height: 120px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,180,216,0.3)); transition: transform 0.4s; }
    .service-card:hover .service-card-icon img { transform: scale(1.08); }
    .service-card-body { padding: 1.4rem; flex: 1; }
    .service-card-body h3 { font-family: 'Exo 2', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
    .service-card-body ul { list-style: none; padding: 0; }
    .service-card-body ul li { color: var(--muted); font-size: 0.88rem; padding: 0.18rem 0 0.18rem 1.1rem; position: relative; }
    .service-card-body ul li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
    .service-card-footer { padding: 0.8rem 1.4rem 1.2rem; }
    .service-card-footer a { font-family: 'Exo 2', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--accent); text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
    .service-card-footer a:hover { border-color: var(--accent); }

    /* DIENST DETAIL */
    .dienst-detail { background: white; }
    .dienst-item { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; border-bottom: 1px solid #edf0f4; }
    .dienst-item:last-child { border-bottom: none; }
    .dienst-item.reverse .dienst-img { order: 2; }
    .dienst-item.reverse .dienst-text { order: 1; }
    .dienst-img { border-radius: 12px; overflow: hidden; background: var(--light); display: flex; align-items: center; justify-content: center; padding: 2rem; box-shadow: 0 6px 28px rgba(0,0,0,0.08); }
    .dienst-img img { width: 100%; max-height: 300px; object-fit: contain; transition: transform 0.4s; }
    .dienst-item:hover .dienst-img img { transform: scale(1.04); }
    .dienst-nr { font-family: 'Exo 2', sans-serif; font-size: 4rem; font-weight: 800; color: var(--accent); opacity: 0.18; line-height: 1; display: block; margin-bottom: -1rem; }
    .dienst-text h2 { font-family: 'Exo 2', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
    .dienst-text .line { width: 50px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 1.2rem; }
    .dienst-text p { color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; font-size: 1rem; }
    .dienst-list { list-style: none; margin: 1rem 0 1.6rem; }
    .dienst-list li { padding: 0.35rem 0 0.35rem 1.4rem; position: relative; color: var(--text); font-size: 0.95rem; }
    .dienst-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

    /* ABOUT */
    .about { padding: 5rem 2rem; background: var(--light); }
    .about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
    .about-badge { position: absolute; bottom: -1.2rem; right: -1.2rem; background: var(--accent); color: white; border-radius: 8px; padding: 1rem 1.4rem; font-family: 'Exo 2', sans-serif; text-align: center; box-shadow: 0 4px 16px rgba(0,180,216,0.4); }
    .about-badge strong { display: block; font-size: 2rem; line-height: 1; }
    .about-badge span { font-size: 0.78rem; opacity: 0.9; }
    .about-text h2 { font-family: 'Exo 2', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
    .about-text .line { width: 50px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 1.2rem; }
    .about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
    .reach-list { list-style: none; margin-top: 0.5rem; }
    .reach-list li { padding: 0.4rem 0 0.4rem 1.4rem; position: relative; color: var(--text); font-size: 0.95rem; }
    .reach-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

    /* KONTAKT */
    .kontakt-section { padding: 5rem 2rem; background: white; }
    .kontakt-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
    .kontakt-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .kontakt-card { background: var(--light); border-radius: 10px; padding: 1.4rem; border-top: 3px solid var(--accent); }
    .kontakt-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
    .kontakt-card h4 { font-family: 'Exo 2', sans-serif; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; font-size: 0.95rem; }
    .kontakt-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
    .kontakt-card a { color: var(--accent); text-decoration: none; }
    .kontakt-form { background: var(--light); border-radius: 10px; padding: 2rem; }
    .kontakt-form h3 { font-family: 'Exo 2', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 1.4rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; font-family: 'Exo 2', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
    .form-group input, .form-group textarea { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid #dde3ea; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: var(--text); background: white; transition: border-color 0.2s; outline: none; }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
    .form-group textarea { resize: vertical; }
    .form-success { display: none; margin-top: 1rem; padding: 0.7rem 1rem; background: #e6f9f1; color: #1a7a4a; border-radius: 6px; font-size: 0.9rem; font-weight: 600; }

    /* IMPRESSUM */
    .impressum-section { padding: 5rem 2rem; background: var(--light); }
    .impressum-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .impressum-block { background: white; border-radius: 10px; padding: 1.6rem; border-left: 4px solid var(--accent); }
    .impressum-block h3 { font-family: 'Exo 2', sans-serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
    .impressum-block p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
    .impressum-block a { color: var(--accent); text-decoration: none; }

    /* FOOTER */
    footer { background: var(--primary); color: rgba(255,255,255,0.75); padding: 2.5rem 2rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
    .footer-logo img { height: 36px; opacity: 0.85; filter: brightness(1.2); }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; font-family: 'Exo 2', sans-serif; transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }
    .social-links { display: flex; gap: 0.8rem; }
    .social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; font-family: 'Exo 2', sans-serif; font-weight: 600; transition: background 0.2s, color 0.2s; }
    .social-links a:hover { background: var(--accent); color: white; border-color: var(--accent); }
    .footer-copy { width: 100%; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 0.5rem; }

    /* BACK TO TOP */
    .back-top { position: fixed; bottom: 2rem; width: 46px; height: 46px; background: var(--accent); color: white; border: none; border-radius: 50%; font-size: 1.6rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,180,216,0.4); opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, background 0.2s; z-index: 90; }
    .back-top.left { left: 1.5rem; }
    .back-top.right { right: 1.5rem; }
    .back-top.visible { opacity: 1; transform: translateY(0); }
    .back-top:hover { background: var(--accent2); transform: translateY(-3px); }

    /* COOKIE */
    .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,22,40,0.97); color: rgba(255,255,255,0.85); padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; z-index: 999; border-top: 2px solid var(--accent); font-size: 0.88rem; }
    .cookie-banner p { max-width: 700px; }
    .cookie-btns { display: flex; gap: 0.8rem; }
    .cookie-btn { padding: 0.5rem 1.2rem; border-radius: 4px; font-family: 'Exo 2', sans-serif; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: none; }
    .cookie-btn.accept { background: var(--accent); color: white; }
    .cookie-btn.settings { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 0 1rem; gap: 0.5rem; }
      .nav-logo { margin-right: auto; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      /* Lang-switcher bleibt immer sichtbar – auch wenn nav-links versteckt ist */
      .lang-switcher { margin-right: 0.4rem; }
      .lang-dropdown { right: 0; left: auto; min-width: 130px; }

      .about-inner, .dienst-item, .kontakt-inner { grid-template-columns: 1fr; gap: 2rem; }
      .dienst-item { padding: 3rem 1.5rem; }
      .dienst-item.reverse .dienst-img, .dienst-item.reverse .dienst-text { order: 0; }
      .about-badge { right: 0; bottom: 0; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .impressum-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }

      /* Hero auf kleinen Screens */
      .slide-content { left: 5%; right: 5%; max-width: 100%; }
      .hero { min-height: 420px; }

      /* Praxissoftware Section mobil */
      .dark { padding: 24px 16px !important; }
      .dark .grid { grid-template-columns: 1fr !important; gap: 12px !important; }
      .dark .cards { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }

      /* Cookie Banner */
      .cookie-banner { flex-direction: column; align-items: flex-start; }

      /* Services Grid minimal */
      .services-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .kontakt-info { grid-template-columns: 1fr; }
      .dark .cards { grid-template-columns: 1fr !important; }
      .slide-content h1 { font-size: 1.7rem; }
      .tagline-bar p { font-size: 0.9rem; }
    }

    /* =============================================
       MOBILE MENÜ – Sprachumschalter
       ============================================= */
    .mobile-lang {
      display: flex;
      gap: 0.5rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap;
    }
    .mobile-lang button {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(0,180,216,0.1);
      border: 1px solid rgba(0,180,216,0.25);
      color: rgba(255,255,255,0.8);
      padding: 0.45rem 0.85rem;
      border-radius: 6px;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      transition: background 0.15s, color 0.15s;
    }
    .mobile-lang button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
    .mobile-lang button.active-lang { background: var(--accent); color: #fff; border-color: var(--accent); }
    .mobile-lang img { width: 20px; height: 14px; border-radius: 2px; vertical-align: middle; }
/* ================================================================
   SECUREPLAN SECTION
   ================================================================ */
.secureplan-section {
  padding: 5rem 2rem;
  background: var(--primary);
  overflow: hidden;
}
.secureplan-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.secureplan-header .sp-eyebrow {
  display: inline-block;
  background: rgba(0,180,216,0.15);
  color: var(--accent);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0,180,216,0.3);
  margin-bottom: 1rem;
}
.secureplan-header h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.secureplan-header h2 span {
  color: var(--accent);
}
.secureplan-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 660px;
  margin: 0 auto 0.5rem;
  line-height: 1.7;
}
.secureplan-header .sp-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.2rem auto 0;
}

/* Screenshots carousel strip */
.sp-screens {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  align-items: start;
}
.sp-screen {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,180,216,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.sp-screen:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 2;
}
.sp-screen img {
  width: 100%;
  display: block;
}
.sp-screen-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(0deg, rgba(10,22,40,0.95) 0%, transparent 100%);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* Feature bullets */
.sp-features {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.sp-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,180,216,0.14);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  transition: background 0.2s, border-color 0.2s;
}
.sp-feature:hover {
  background: rgba(0,180,216,0.07);
  border-color: rgba(0,180,216,0.3);
}
.sp-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
.sp-feature h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.sp-feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* CTA */
.sp-cta {
  text-align: center;
}
.sp-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.btn-outline-accent {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 1rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: white;
}

/* Lightbox */
.sp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.sp-lightbox.open {
  display: flex;
  animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sp-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  cursor: default;
  animation: lbZoomIn 0.2s ease;
}
@keyframes lbZoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.sp-lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.6rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white; font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.sp-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.sp-screen { cursor: zoom-in !important; }

/* Responsive */
@media (max-width: 900px) {
  .sp-screens { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 768px) {
  .secureplan-section { padding: 3.5rem 1.2rem; }
  .sp-features { grid-template-columns: 1fr; }
  .btn-outline-accent { margin-left: 0; margin-top: 0.8rem; display: inline-block; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); z-index: 1100; align-items: center; justify-content: center; padding: 1rem;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: var(--white); border-radius: 12px; max-width: 540px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35); overflow: hidden; animation: cmFadeIn 0.25s ease;
}
@keyframes cmFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.cookie-modal-header {
  background: var(--primary); padding: 1.3rem 1.6rem; display: flex; align-items: center; justify-content: space-between;
}
.cookie-modal-header h3 { font-family: 'Exo 2', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.cookie-modal-close {
  background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 1.2rem;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: background 0.2s;
}
.cookie-modal-close:hover { background: rgba(255,255,255,0.25); }
.cookie-modal-body { padding: 1.4rem 1.6rem; }
.cookie-modal-body > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.65; }
.cookie-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 0; border-bottom: 1px solid #edf0f4;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row-text h4 { font-family: 'Exo 2', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 0.2rem; }
.cookie-row-text p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.cookie-toggle { position: relative; flex-shrink: 0; width: 44px; height: 24px; margin-top: 2px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute; inset: 0; background: #c8d0da; border-radius: 24px; cursor: pointer; transition: background 0.2s;
}
.cookie-toggle-slider::before {
  content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px;
  background: white; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--accent); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.55; cursor: not-allowed; }
.cookie-modal-footer {
  padding: 1rem 1.6rem 1.4rem; display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: flex-end;
  border-top: 1px solid #edf0f4;
}
.cookie-modal-footer .cookie-btn { padding: 0.55rem 1.3rem; font-size: 0.85rem; border-radius: 6px; }
.cookie-modal-footer .cookie-btn.accept { background: var(--accent); color: #fff; border: none; }
.cookie-modal-footer .cookie-btn.accept:hover { background: var(--accent2); }
.cookie-modal-footer .cookie-btn.settings { background: transparent; color: var(--muted); border: 1px solid #c8d0da; }
.cookie-modal-footer .cookie-btn.settings:hover { border-color: var(--accent); color: var(--accent); }

/* Praxissoftware Section */
.dark{background:#03152d;color:#fff;padding:40px;font-family:Arial}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.grid img{width:100%;border-radius:12px}.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;margin-top:30px}.cards div{background:#0d223f;padding:20px;border-radius:12px}
    /* Support Button */
    .nav-support-item { list-style: none; }
    li.nav-support-item a {
      display: inline-flex !important; align-items: center;
      background: #f97316 !important; color: #fff !important;
      font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 0.42rem 1.1rem;
      border-radius: 20px; text-decoration: none !important;
      border-bottom: none !important; white-space: nowrap;
      box-shadow: 0 2px 14px rgba(249,115,22,0.5);
      animation: pulse-o 2.5s ease-in-out infinite;
    }
    li.nav-support-item a:hover {
      background: #ea6c0a !important; color: #fff !important;
      border-bottom: none !important; transform: translateY(-1px);
    }
    @keyframes pulse-o {
      0%,100% { box-shadow: 0 2px 14px rgba(249,115,22,0.4); }
      50%      { box-shadow: 0 0 24px rgba(249,115,22,0.85); }
    }
    /* Mobile support */
    .mobile-menu a[href*="agent-download"] {
      background: #f97316 !important; color: #fff !important;
      text-align: center; border-radius: 8px;
      font-weight: 800; border-bottom: none !important;
    }
    /* Flag images */
    #langFlag, .lang-dropdown img { width: 20px; height: 14px; border-radius: 2px; vertical-align: middle; }
