<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet"/>
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-dark:    #1C4443;
      --bg-darker:  #163635;
      --bg-mid:     #1f4e4d;
      --red:        #c0392b;
      --white:      #ffffff;
      --muted:      #a8d5d1;
      --border:     rgba(255,255,255,0.12);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-dark);
      color: var(--white);
      line-height: 1.6;
    }

    /* ── NAVBAR ── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(22,54,53,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--red);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 74px;
    }

    .logo img {
      height: 62px;
      filter: drop-shadow(0 0 8px rgba(0,229,204,0.4));
      transition: filter .3s;
    }
    .logo img:hover { filter: drop-shadow(0 0 16px rgba(0,229,204,0.75)); }

    nav { display: flex; gap: 2rem; align-items: center; }
    nav a {
      color: var(--muted);
      text-decoration: none; font-size: .88rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      transition: color .2s;
    }
    nav a:hover { color: var(--white); }

    .nav-cta {
      background: var(--red) !important;
      color: #fff !important;
      padding: .45rem 1.3rem; border-radius: 4px;
      font-weight: 700 !important;
      box-shadow: 0 0 14px rgba(192,57,43,0.35);
      transition: background .2s, box-shadow .2s !important;
    }
    .nav-cta:hover {
      background: var(--red) !important;
      opacity: .85;
      box-shadow: 0 0 28px rgba(192,57,43,0.6) !important;
    }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center; text-align: center;
      padding: 100px 5% 60px;
      background: linear-gradient(to bottom, rgba(22,54,53,.9) 0%, rgba(28,68,67,.8) 60%, var(--bg-dark) 100%),
            url('/resize.php?src=dilna.jpeg&w=1600&q=80') center/cover no-repeat;
    position: relative;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(192,57,43,0.18);
      border: 1px solid var(--red);
      color: var(--red);
      font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      padding: .35rem 1rem; border-radius: 20px; margin-bottom: 1.4rem;
    }

    #hero h1 {
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 900; line-height: 1.1;
    }
    #hero h1 span { color: var(--red); }

    #hero p {
      max-width: 560px; margin: 1.2rem auto 2rem;
      color: var(--muted); font-size: 1.1rem;
    }

    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: .85rem 2rem; border-radius: 5px;
      font-weight: 700; font-size: .95rem; text-decoration: none;
      transition: opacity .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 24px rgba(192,57,43,0.4);
    }
    .btn-primary:hover {
      opacity: .85;
      transform: translateY(-2px);
      box-shadow: 0 6px 32px rgba(192,57,43,0.55);
    }

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: .85rem 2rem; border-radius: 5px;
      font-weight: 700; font-size: .95rem; text-decoration: none;
      transition: background .2s, border-color .2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

    .scroll-down {
      position: absolute; bottom: 30px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
    }
    .scroll-down::after {
      content: '';
      width: 2px; height: 40px;
      background: linear-gradient(to bottom, var(--red), transparent);
      animation: scrollPulse 1.6s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:.2} }

    /* ── STATS – červený pruh, bílé písmo ── */
    .stats {
      background: var(--red);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      text-align: center;
      padding: 2.5rem 5%;
      gap: 1rem;
    }
    .stat-num {
      font-size: 2.4rem; font-weight: 900;
      color: var(--white); line-height: 1;
    }
    .stat-label {
      font-size: .85rem; color: rgba(255,255,255,0.85); margin-top: .3rem;
    }

    /* ── SECTIONS ── */
    section { padding: 90px 5%; }

    .section-tag {
      display: inline-block;
      color: var(--red); font-size: .95rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem;
    }

    h2.section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900; line-height: 1.15; margin-bottom: .6rem;
    }

    .section-lead { color: var(--muted); max-width: 520px; margin-bottom: 3rem; }

    /* ── SERVICES ── */
    #sluzby { background: var(--bg-dark); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--bg-mid);
      border-radius: 10px; overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .25s, border-color .25s, box-shadow .25s;
      display: flex; flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--red);
      box-shadow: 0 12px 40px rgba(192,57,43,0.2);
    }

    .card-img {
      width: 100%; height: 200px; object-fit: cover;
      filter: brightness(0.8) saturate(0.85);
      transition: filter .3s;
    }
    .service-card:hover .card-img { filter: brightness(0.95) saturate(1); }

    .card-body { padding: 1.5rem; flex: 1; }

    .card-icon {
      width: 50px; height: 50px;
      background: rgba(192,57,43,0.15);
      border: 1px solid var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1rem;
    }

    .card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
    .card-body p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

    .card-link {
      display: inline-flex; align-items: center; gap: .4rem;
      color: var(--red); font-size: .85rem; font-weight: 600;
      text-decoration: none; padding: 1rem 1.5rem;
      border-top: 1px solid var(--border);
      transition: gap .2s, background .2s;
    }
    .card-link:hover { gap: .8rem; background: rgba(192,57,43,0.07); }

    /* ── PNEUSERVIS ── */
    #pneuservis { background: var(--bg-darker); }

    .pneu-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }

    .pneu-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
    .pneu-list li {
      display: flex; align-items: flex-start; gap: .75rem;
      color: var(--muted); font-size: .95rem;
    }
    .pneu-list li::before {
      content: '✓';
      min-width: 24px; height: 24px;
      background: rgba(192,57,43,0.15);
      border: 1px solid var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; font-weight: 700; flex-shrink: 0;
      color: var(--red);
    }

    .pneu-img {
      width: 100%; border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
      border: 1px solid var(--border);
    }

    .pneu-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

    /* ── RYCHLOSERVIS ── */
    #rychloservis { background: var(--bg-dark); }

    .rychlo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.2rem;
    }

    .rychlo-item {
      background: var(--bg-mid);
      border-radius: 10px; padding: 1.5rem;
      border-left: 4px solid var(--red);
      transition: transform .2s, box-shadow .2s;
    }
    .rychlo-item:hover {
      transform: translateX(5px);
      box-shadow: 0 6px 28px rgba(192,57,43,0.15);
    }

    .rychlo-item h4 {
      font-size: 1rem; font-weight: 700; margin-bottom: .5rem;
      display: flex; align-items: center; gap: .6rem;
    }
    .rychlo-item h4 span { font-size: 1.3rem; }
    .rychlo-item p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

    /* ── AUTOBUSY ── */
    #autobusy { background: var(--bg-darker); }

    .bus-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }

    .bus-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

    .bus-box {
      background: var(--bg-mid);
      border-radius: 8px; padding: 1.3rem;
      border-top: 3px solid var(--red);
    }
    .bus-box h4 { font-size: .95rem; font-weight: 700; margin-bottom: .8rem; color: var(--red); }
    .bus-box ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
    .bus-box ul li { color: var(--muted); font-size: .85rem; padding-left: 1rem; position: relative; }
    .bus-box ul li::before { content: '▸'; position: absolute; left: 0; color: var(--red); }

    .bus-img {
      width: 100%; border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
      border: 1px solid var(--border);
    }

    .workshop-note {
      margin-top: 2rem;
      background: rgba(192,57,43,0.08);
      border-radius: 8px; padding: 1.2rem 1.5rem;
      border-left: 4px solid var(--red);
      color: var(--muted); font-size: .9rem; line-height: 1.7;
    }
    .workshop-note strong { color: var(--white); }

    /* ── ODTAH ── */
    #odtah {
      background:
        linear-gradient(to right, rgba(22,54,53,.98) 50%, rgba(22,54,53,.75)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
    }

    .odtah-inner { max-width: 580px; }
    .odtah-inner p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }

    .warning-box {
      background: rgba(192,57,43,0.12);
      border: 1px solid var(--red);
      border-radius: 8px; padding: 1rem 1.3rem;
      margin: 1.5rem 0;
      font-size: .9rem; color: var(--muted);
      display: flex; gap: .8rem; align-items: flex-start;
    }
    .warning-box::before { content: '⚠️'; font-size: 1.2rem; flex-shrink: 0; }

    /* ── KONTAKT ── */
    #kontakt { background: var(--bg-dark); }

    .kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
    .kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-row { display: flex; gap: 1rem; align-items: flex-start; }

    .info-icon {
      width: 44px; height: 44px; border-radius: 8px;
      background: rgba(192,57,43,0.15);
      border: 1px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .info-text h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: .2rem; }
    .info-text p, .info-text a { color: var(--muted); font-size: .95rem; text-decoration: none; }
    .info-text a:hover { color: var(--white); }

    .map-embed {
      width: 100%; height: 220px; border-radius: 10px;
      border: 1px solid var(--border); overflow: hidden; margin-top: 1.5rem;
    }
    .map-embed iframe { width: 100%; height: 100%; border: 0; }

    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      background: var(--bg-mid);
      border: 1px solid var(--border);
      border-radius: 6px;
      color: #fff; padding: .8rem 1rem; font-size: .9rem; font-family: inherit;
      transition: border-color .2s; width: 100%;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: var(--muted); }
    .contact-form select option { background: var(--bg-darker); }
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus { outline: none; border-color: var(--red); }
    .contact-form textarea { resize: vertical; min-height: 120px; }

    .contact-form button {
      background: var(--red); color: #fff;
      border: none; cursor: pointer;
      padding: .9rem; border-radius: 6px;
      font-size: .95rem; font-weight: 700; font-family: inherit;
      transition: opacity .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(192,57,43,0.3);
    }
    .contact-form button:hover {
      opacity: .85;
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(192,57,43,0.45);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-darker);
      border-top: 2px solid var(--red);
      padding: 3rem 5% 1.5rem;
    }

    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 2rem; margin-bottom: 2.5rem;
    }

    .footer-brand img { height: 70px; margin-bottom: 1rem; }
    .footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; max-width: 280px; }

    .footer-col h4 {
      font-size: .8rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .1em; color: var(--red); margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
    .footer-col ul li a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: .5rem;
    }
    .footer-bottom p { color: var(--muted); font-size: .8rem; }

    /* ── FLOATING ── */
    .float-phone {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; text-decoration: none; color: #fff;
      box-shadow: 0 6px 24px rgba(192,57,43,0.55);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 6px 24px rgba(192,57,43,0.55); }
      50%      { box-shadow: 0 6px 40px rgba(192,57,43,0.9); }
    }

    #toTop {
      position: fixed; bottom: 96px; right: 28px; z-index: 998;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg-mid); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #fff; text-decoration: none;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    #toTop.visible { opacity: 1; pointer-events: all; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .pneu-grid, .bus-grid, .kontakt-grid { grid-template-columns: 1fr; }
      .bus-cols { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 700px) {
      nav { display: none; }
      .hamburger { display: flex; }
      nav.open {
        display: flex; flex-direction: column;
        position: fixed; top: 74px; left: 0; right: 0;
        background: var(--bg-darker);
        padding: 2rem; gap: 1.5rem;
        border-bottom: 2px solid var(--red);
      }
      .form-row { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
  </style>