
  :root {
    --green: #44FDB7;
    --dark: #0e0e0e;
    --dark2: #151515;
    --dark3: #1c1c1c;
    --gray: #888;
    --light: #f0f0f0;
    --white: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14,14,14,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(68,253,183,0.07);
    transition: background 0.3s;
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--white);
    text-decoration: none;
  }
  .logo span { color: var(--green); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }

  .nav-cta {
    background: var(--green);
    color: var(--dark) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
  }
  .nav-cta:hover { background: #fff; color: var(--dark) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 80% 50%, rgba(68,253,183,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(68,253,183,0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(68,253,183,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(68,253,183,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(68,253,183,0.1);
    border: 1px solid rgba(68,253,183,0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp 0.8s both;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    max-width: 14ch;
    animation: fadeUp 0.8s 0.1s both;
  }
  h1 em {
    font-style: normal;
    color: var(--green);
    position: relative;
  }

  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gray);
    max-width: 50ch;
    margin-top: 24px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeUp 0.8s 0.3s both;
  }

  .btn-primary {
    background: var(--green);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(68,253,183,0.35);
  }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--green); color: var(--green); }

  .hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
    animation: fadeUp 0.8s 0.4s both;
  }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
  }
  .stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 4px; letter-spacing: 0.03em; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION COMMONS ── */
  section { padding: 100px 5vw; }

  .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 20ch;
  }
  h2 span { color: var(--green); }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }
  .section-desc {
    max-width: 38ch;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  #sluzby { background: var(--dark2); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
  }

  .service-card {
    background: var(--dark3);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ── */
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: normal;
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(68,253,183,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s;
  }
  .cursor-dot.hovering { width: 6px; height: 6px; }
  .cursor-ring.hovering { width: 56px; height: 56px; border-color: var(--green); }

  /* spotlight overlay */
  #spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    background: radial-gradient(circle 280px at var(--mx,50%) var(--my,50%),
      rgba(68,253,183,0.07) 0%,
      rgba(68,253,183,0.03) 35%,
      transparent 70%);
    transition: background 0.05s;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: #222; }

  .service-icon {
    width: 52px; height: 52px;
    background: rgba(68,253,183,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; font-weight: 300; }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  .service-tag {
    font-size: 0.73rem;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(68,253,183,0.2);
    color: var(--green);
    font-weight: 500;
  }

  /* ── REFERENCE ── */
  #reference { background: var(--dark); }

  .ref-tabs {
    display: flex;
    gap: 4px;
    background: var(--dark3);
    padding: 4px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .ref-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
  }
  .ref-tab.active {
    background: var(--green);
    color: var(--dark);
    font-weight: 700;
  }

  .ref-panel { display: none; }
  .ref-panel.active { display: block; }

  .ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .ref-card {
    background: var(--dark3);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
  }
  .ref-card:hover {
    transform: translateY(-4px);
    border-color: rgba(68,253,183,0.2);
  }

  .ref-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #222;
  }

  .ref-thumb-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  }

  .ref-thumb-logo {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #232323);
    padding: 28px;
  }
  .ref-thumb-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }

  .ref-body {
    padding: 24px;
  }
  .ref-body h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .ref-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

  .ref-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.03em;
  }
  .ref-link:hover { gap: 10px; }
  .ref-link svg { transition: transform 0.2s; }
  .ref-link:hover svg { transform: translateX(3px); }

  /* ── PROCESS ── */
  #jak-pracujeme { background: var(--dark2); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
    counter-reset: step;
  }

  .process-step {
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
    counter-increment: step;
  }
  .process-step:last-child { border-right: none; }

  .process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(68,253,183,0.08);
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
  }

  .process-step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .process-step p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

  /* ── CONTACT ── */
  #kontakt {
    background: var(--dark);
    text-align: center;
  }

  .contact-box {
    max-width: 640px;
    margin: 0 auto;
    padding: 72px 48px;
    background: var(--dark3);
    border-radius: 24px;
    border: 1px solid rgba(68,253,183,0.1);
    position: relative;
    overflow: hidden;
  }
  .contact-box::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(68,253,183,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-box h2 { max-width: none; font-size: clamp(1.8rem, 5vw, 2.8rem); margin: 0 auto 16px; }
  .contact-box p { color: var(--gray); margin-bottom: 36px; }

  .contact-email {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    display: block;
    margin-bottom: 32px;
  }
  .contact-email:hover { text-decoration: underline; }

  /* ── FOOTER ── */
  footer {
    background: #0a0a0a;
    padding: 72px 5vw 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .footer-brand p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 28ch;
    font-weight: 300;
  }

  .footer-team-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 28px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(68,253,183,0.3);
    background: var(--dark3);
    display: block;
  }

  .team-card h5 {
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .team-card span {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 500;
  }

  .team-phone {
    font-size: 0.75rem;
    color: rgba(68,253,183,0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    cursor: none;
  }
  .team-phone:hover { color: var(--green); }

  .footer-company {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
  }
  .footer-company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    font-size: 0.78rem;
    color: #555;
  }
  .footer-company-info span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-company-info span:not(:last-child)::after {
    display: none;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p { font-size: 0.8rem; color: #555; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.8rem; color: #555; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--green); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: #0e0e0e;
      padding: 24px 5vw 32px;
      border-bottom: 1px solid rgba(68,253,183,0.1);
      gap: 16px;
      z-index: 99;
    }
    .nav-links.open a { font-size: 1rem; color: var(--white); }
    .hamburger { display: flex; }

    #hero { padding: 100px 5vw 60px; }
    .hero-stats { gap: 28px; }

    section { padding: 72px 5vw; }

    .section-header { flex-direction: column; align-items: flex-start; }

    .services-grid { grid-template-columns: 1fr; gap: 2px; }

    .process-steps {
      grid-template-columns: 1fr;
    }
    .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .process-step:last-child { border-bottom: none; }

    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .contact-box { padding: 44px 24px; }

    .team-phone {
    font-size: 0.75rem;
    color: rgba(68,253,183,0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    cursor: none;
  }
  .team-phone:hover { color: var(--green); }

  .footer-company {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
  }
  .footer-company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    font-size: 0.78rem;
    color: #555;
  }
  .footer-company-info span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-company-info span:not(:last-child)::after {
    display: none;
  }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

    .ref-tabs { gap: 2px; }
    .ref-tab { padding: 8px 16px; font-size: 0.82rem; }
  }

  @media (max-width: 400px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { flex-direction: row; text-align: left; }
  }

  /* ── GLOW HOVER EFFECTS ── */
  a, button, .service-card, .ref-card, .process-step, .stat-num,
  .hero-tag, .btn-primary, .btn-outline, .nav-links a {
    cursor: none;
  }

  .service-card {
    transition: background 0.3s, box-shadow 0.4s;
  }
  .service-card:hover {
    box-shadow: 0 0 40px rgba(68,253,183,0.08), inset 0 0 30px rgba(68,253,183,0.03);
  }

  .ref-card {
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.4s;
  }
  .ref-card:hover {
    box-shadow: 0 0 50px rgba(68,253,183,0.12);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 40px rgba(68,253,183,0.4), 0 0 60px rgba(68,253,183,0.15);
  }

  .btn-outline:hover {
    box-shadow: 0 0 30px rgba(68,253,183,0.1);
  }

  .process-step {
    transition: background 0.3s, box-shadow 0.3s;
  }
  .process-step:hover {
    background: rgba(68,253,183,0.03);
    box-shadow: inset 0 0 40px rgba(68,253,183,0.04);
  }

  .stat-num {
    transition: text-shadow 0.3s;
  }
  .stat-num:hover {
    text-shadow: 0 0 30px rgba(68,253,183,0.6);
  }

  .nav-links a:hover {
    text-shadow: 0 0 20px rgba(68,253,183,0.5);
  }

  .hero-tag:hover {
    box-shadow: 0 0 30px rgba(68,253,183,0.2);
  }

  .ref-tab:hover:not(.active) {
    color: var(--green);
    text-shadow: 0 0 15px rgba(68,253,183,0.4);
  }

  .ref-tab.active {
    box-shadow: 0 0 20px rgba(68,253,183,0.3);
  }

  .contact-box:hover {
    border-color: rgba(68,253,183,0.25);
    box-shadow: 0 0 80px rgba(68,253,183,0.08);
    transition: border-color 0.4s, box-shadow 0.4s;
  }

  .team-card .team-avatar {
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .team-card:hover .team-avatar {
    border-color: var(--green);
    box-shadow: 0 0 24px rgba(68,253,183,0.35);
    transform: scale(1.06);
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

/* ── CAROUSEL ── */
.carousel-wrap {
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 20px;
  cursor: grab;
  user-select: none;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .ref-card {
  flex: 0 0 300px;
  width: 300px;
  min-width: 300px;
}
.carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(68,253,183,0.3);
  background: rgba(68,253,183,0.08);
  color: var(--green);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-size: 1rem;
}
.carousel-btn:hover { background: rgba(68,253,183,0.2); border-color: var(--green); }
.ref-category-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  margin-top: 40px;
}
.ref-category-label:first-child { margin-top: 0; }
@media (max-width: 768px) {
  .carousel-track .ref-card { flex: 0 0 260px; width: 260px; min-width: 260px; }
  .carousel-nav { justify-content: center; }
}

  /* ───────────────────────────────────────────
     OBSAHOVÉ BLOKY PODSTRÁNEK SLUŽEB
     (page-online-marketing, ticket, weby, grafika)
     Vlož do WP editoru jako Vlastní HTML bloky.
  ─────────────────────────────────────────── */

  .svc-content { color: #b8b8b8; font-size: 1.05rem; line-height: 1.8; font-weight: 300; }
  .svc-content h2 { color: #fff; margin: 0 0 24px; }
  .svc-content h2 span { color: var(--green); }
  .svc-content > p { max-width: 70ch; margin-bottom: 24px; }
  .svc-content strong { color: #fff; font-weight: 600; }

  /* Úvodní lead odstavec */
  .svc-lead {
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    line-height: 1.6;
    color: #e5e5e5;
    font-weight: 300;
    max-width: 60ch;
    margin-bottom: 64px;
  }
  .svc-lead strong { color: var(--green); font-weight: 600; }

  /* Sekce uvnitř podstránky */
  .svc-block { margin: 80px 0; }
  .svc-block:first-child { margin-top: 0; }
  .svc-block-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green); margin-bottom: 16px;
  }
  .svc-block h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
    color: #fff; margin-bottom: 20px; max-width: 22ch;
  }

  /* Feature mřížka (co konkrétně děláme) */
  .svc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-top: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .svc-feature {
    background: var(--dark3);
    padding: 36px 32px;
    transition: background 0.3s;
  }
  .svc-feature:hover { background: #222; }
  .svc-feature .ico {
    width: 46px; height: 46px;
    background: rgba(68,253,183,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 22px;
  }
  .svc-feature h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: #fff; margin-bottom: 12px; letter-spacing: -0.01em;
  }
  .svc-feature p { font-size: 0.92rem; line-height: 1.7; color: var(--gray); font-weight: 300; }

  /* Číslovaný proces */
  .svc-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
  }
  .svc-step {
    border-top: 2px solid rgba(68,253,183,0.25);
    padding-top: 24px;
  }
  .svc-step .num {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem; font-weight: 800;
    color: var(--green); line-height: 1; margin-bottom: 16px;
    display: block;
  }
  .svc-step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: #fff; margin-bottom: 10px;
  }
  .svc-step p { font-size: 0.9rem; line-height: 1.7; color: var(--gray); font-weight: 300; }

  /* Odrážkový seznam s zelenými fajfkami */
  .svc-list { list-style: none; margin: 32px 0; display: grid; gap: 14px; max-width: 60ch; }
  .svc-list li {
    position: relative; padding-left: 34px;
    color: #cfcfcf; font-size: 1rem; line-height: 1.6; font-weight: 300;
  }
  .svc-list li::before {
    content: '';
    position: absolute; left: 0; top: 2px;
    width: 20px; height: 20px;
    background: rgba(68,253,183,0.12);
    border-radius: 50%;
  }
  .svc-list li::after {
    content: '';
    position: absolute; left: 7px; top: 7px;
    width: 6px; height: 9px;
    border: solid var(--green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .svc-list li strong { color: #fff; }

  /* Statistický pruh uvnitř podstránky */
  .svc-stats {
    display: flex; flex-wrap: wrap; gap: 56px;
    margin: 56px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .svc-stats .s-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem; font-weight: 800; color: var(--green); line-height: 1;
  }
  .svc-stats .s-label { font-size: 0.85rem; color: var(--gray); margin-top: 6px; }

  /* FAQ */
  .svc-faq { margin-top: 40px; max-width: 75ch; }
  .svc-faq details {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
  }
  .svc-faq summary {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 700; color: #fff;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .svc-faq summary::-webkit-details-marker { display: none; }
  .svc-faq summary::after {
    content: '+'; color: var(--green); font-size: 1.6rem; font-weight: 400;
    transition: transform 0.2s; flex-shrink: 0;
  }
  .svc-faq details[open] summary::after { transform: rotate(45deg); }
  .svc-faq details p {
    margin-top: 16px; color: var(--gray);
    font-size: 0.98rem; line-height: 1.75; font-weight: 300; max-width: 65ch;
  }

  @media (max-width: 768px) {
    .svc-stats { gap: 36px; }
    .svc-block { margin: 56px 0; }
  }

  /* ── VYPNUTÍ CUSTOM KURZORU NA DOTYKOVÝCH ZAŘÍZENÍCH ── */
  @media (hover: none), (pointer: coarse), (max-width: 1024px) {
    .cursor-dot,
    .cursor-ring,
    #spotlight { display: none !important; }
    * { cursor: auto !important; }
    .service-card { cursor: pointer !important; }
  }
