:root {
      --primary: #4DA07A;
      --primary-dark: #3a8a65;
      --dark: #0b0f14;
      --white: #ffffff;
      --gray: #f5f6fa;
      --text: #2c3340;
      --text-light: #6b7280;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Georgia', serif;
      background: var(--white);
      color: var(--text);
    }

    

    /* HERO */
    .service-hero {
      margin-top: 0;
      background: var(--dark);
      padding: 80px 32px 64px;
      position: relative;
      overflow: hidden;
    }

    .service-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(77,160,122,0.15) 0%, transparent 60%);
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(77,160,122,0.2);
      color: var(--primary);
      font-family: system-ui, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 999px;
      margin-bottom: 24px;
    }

    .service-hero h1 {
      font-size: clamp(36px, 5vw, 64px);
      color: white;
      font-weight: 700;
      line-height: 1.15;
      max-width: 700px;
      margin-bottom: 20px;
    }

    .service-hero p.lead {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      max-width: 580px;
      line-height: 1.7;
      font-family: system-ui, sans-serif;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .stat {
      display: flex;
      flex-direction: column;
    }

    .stat-num {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
    }

    .stat-label {
      font-family: system-ui, sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      margin-top: 4px;
    }

    /* MAIN CONTENT */
    .content-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* POPIS */
    .service-desc {
      padding: 80px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .service-desc h2 {
      font-size: 36px;
      color: var(--dark);
      margin-bottom: 20px;
      line-height: 1.25;
    }

    .service-desc p {
      font-family: system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 16px;
    }

    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-family: system-ui, sans-serif;
      font-size: 15px;
      color: var(--text);
      padding: 16px 20px;
      background: var(--gray);
      border-radius: 12px;
      border-left: 3px solid var(--primary);
    }

    .service-list li span.icon {
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* SEGMENTY */
    .segments {
      background: var(--gray);
      padding: 80px 0;
    }

    .segments .content-wrap {
      padding: 0 32px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-family: system-ui, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .segments h2 {
      font-size: 32px;
      color: var(--dark);
      margin-bottom: 48px;
    }

    .segments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .segment-card {
      background: white;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .segment-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }

    .segment-icon {
      width: 48px;
      height: 48px;
      background: rgba(77,160,122,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .segment-card h3 {
      font-size: 18px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .segment-card p {
      font-family: system-ui, sans-serif;
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* PROC MY */
    .why-us {
      padding: 80px 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .why-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 28px;
      border: 1px solid #e8eaed;
      border-radius: 16px;
      transition: border-color 0.2s;
    }

    .why-item:hover { border-color: var(--primary); }

    .why-num {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary);
      opacity: 0.3;
      line-height: 1;
      flex-shrink: 0;
    }

    .why-item h3 {
      font-size: 17px;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .why-item p {
      font-family: system-ui, sans-serif;
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* FAQ */
    .faq {
      background: var(--dark);
      padding: 80px 0;
    }

    .faq .section-label { color: var(--primary); }

    .faq h2 {
      font-size: 32px;
      color: white;
      margin-bottom: 48px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 24px 0;
      font-family: system-ui, sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-q .arrow {
      width: 28px;
      height: 28px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
      font-style: normal;
    }

    .faq-item.is-open .faq-q .arrow {
      transform: rotate(45deg);
      background: var(--primary);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-item.is-open .faq-a { max-height: 300px; }

    .faq-a p {
      font-family: system-ui, sans-serif;
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      padding-bottom: 24px;
    }

    /* FORMULÁŘ */
    .contact-section {
      padding: 80px 0;
      background: var(--gray);
    }

    .contact-section .section-label { color: var(--primary); }

    .contact-section h2 {
      font-size: 32px;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .contact-section .sub {
      font-family: system-ui, sans-serif;
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 40px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .contact-form-wrap form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-form-wrap input,
    .contact-form-wrap textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #dde1e7;
      border-radius: 10px;
      font-family: system-ui, sans-serif;
      font-size: 15px;
      background: white;
      transition: border-color 0.2s;
      outline: none;
    }

    .contact-form-wrap input:focus,
    .contact-form-wrap textarea:focus {
      border-color: var(--primary);
    }

    .contact-form-wrap textarea { resize: vertical; min-height: 120px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .btn-submit {
      background: var(--primary);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 999px;
      font-family: system-ui, sans-serif;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: filter 0.2s;
      align-self: flex-start;
    }

    .btn-submit:hover { filter: brightness(1.1); }

    .contact-info-side {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .info-block h3 {
      font-size: 14px;
      font-family: system-ui, sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-light);
      margin-bottom: 8px;
    }

    .info-block p, .info-block a {
      font-family: system-ui, sans-serif;
      font-size: 16px;
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
    }

    .regions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }

    .region-tag {
      background: rgba(77,160,122,0.1);
      color: var(--primary);
      font-family: system-ui, sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 999px;
    }

    .form-status { margin-top: 12px; font-family: system-ui, sans-serif; font-size: 14px; }
    .form-status.success { color: var(--primary); }
    .form-status.error { color: #e53e3e; }
    .hp { display: none; }

    /* FOOTER */
    .page-footer {
      background: var(--dark);
      padding: 32px;
      text-align: center;
      font-family: system-ui, sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }

    .page-footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
    .page-footer a:hover { color: var(--primary); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .service-desc { grid-template-columns: 1fr; gap: 40px; }
      .segments-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 32px; }
      .page-nav .nav-inner { padding: 0 16px; }
      .content-wrap { padding: 0 20px; }
    }
  
    .hero-back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-family: system-ui, sans-serif;
      font-size: 14px;
      font-weight: 600;
      margin-top: 20px;
      margin-bottom: -12px;
      transition: color 0.2s;
    }
    .hero-back-link:hover { color: #4DA07A; }