/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #f5c400;
  --yellow-dark: #d4a900;
  --yellow-light: #fff9e0;
  --dark: #111827;
  --dark-2: #1f2937;
  --dark-3: #374151;
  --mid: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--dark);
}

.btn--primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 4px 16px rgba(245,196,0,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--header {
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn--header:hover {
  background: var(--yellow-dark);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  flex-shrink: 0;
}

.logo__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.logo__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo__subtitle {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-3);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--dark);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #2d3a50 100%);
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__circle {
  width: 220px;
  height: 220px;
  color: var(--yellow);
  opacity: 0.9;
}

.hero__circle svg {
  width: 100%;
  height: 100%;
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark);
}

.section-title--left {
  text-align: left;
}

/* =============================================
   SLUZBY
   ============================================= */
.sluzby {
  padding: 90px 0;
  background: var(--light);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
}

/* =============================================
   O MNE
   ============================================= */
.o-mne {
  padding: 90px 0;
  background: var(--white);
}

.o-mne__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefits__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.benefits strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.benefits p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

.o-mne__badge {
  flex-shrink: 0;
}

.badge {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  min-width: 220px;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.badge__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge__region {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   KONTAKT
   ============================================= */
.kontakt {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.kontakt .section-title {
  color: var(--white);
}

.kontakt__desc {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

.kontakt-karta {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  color: var(--white);
}

a.kontakt-karta:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.kontakt-karta__icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.kontakt-karta__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.kontakt-karta__value {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a0f18;
  color: rgba(255,255,255,0.5);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer__credit {
  text-align: center;
  padding: 12px 0 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer__credit a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--yellow);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 64px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__visual {
    display: none;
  }

  .o-mne__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .o-mne__badge {
    display: none;
  }

  .sluzby,
  .o-mne,
  .kontakt {
    padding: 60px 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .kontakt__grid {
    grid-template-columns: 1fr;
  }
}
