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

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --orange: #f47b20;
  --orange-dark: #d4660f;
  --orange-light: #fff4ec;
  --black: #111111;
  --black-soft: #1a1a1a;
  --gray-dark: #333333;
  --gray-mid: #555555;
  --gray-light: #888888;
  --gray-border: #e5e5e5;
  --gray-bg: #f7f7f7;
  --white: #ffffff;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.03em;
  font-family: var(--font);
}
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}
h3 {
  font-size: 1rem;
  font-weight: 700;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--orange);
}
p {
  color: var(--gray-mid);
}
a {
  text-decoration: none;
  color: var(--orange);
}
a:hover {
  color: var(--orange-dark);
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 0.15s,
    opacity 0.15s;
  border: none;
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-dark);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover {
  background: var(--gray-bg);
  color: var(--black);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-border);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
}
.logo-text span {
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  color: var(--gray-mid);
  font-weight: 500;
  transition: color 0.15s;
}
.nav a:hover,
.nav a.active {
  color: var(--black);
}
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 13px !important;
}
.nav-cta:hover {
  background: var(--gray-dark) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--gray-border);
  gap: 0;
}
.mobile-nav a {
  color: var(--gray-mid);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-weight: 500;
}
.mobile-nav.open {
  display: flex;
}


/* HERO */
.hero {
  padding: 80px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  display: none;
  flex-shrink: 0;
}
.hero-text h1 {
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-link {
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hc-bar {
  background: var(--gray-bg);
  padding: 9px 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hc-dot.red {
  background: #ff5f57;
}
.hc-dot.yellow {
  background: #ffbd2e;
}
.hc-dot.green {
  background: #28ca41;
}
.hc-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hc-line {
  height: 9px;
  background: var(--gray-bg);
  border-radius: 3px;
}
.hc-line.long {
  width: 100%;
}
.hc-line.medium {
  width: 68%;
}
.hc-line.short {
  width: 42%;
}
.hc-block {
  height: 56px;
  background: var(--gray-bg);
  border-radius: var(--radius);
}
.hc-btn {
  height: 30px;
  width: 110px;
  background: var(--orange);
  border-radius: var(--radius);
}
.hero-badge {
  position: absolute;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.badge1 {
  top: 12px;
  right: -16px;
}
.badge2 {
  bottom: 12px;
  left: -16px;
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  display: none;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin-top: 12px;
  line-height: 1.75;
}

/* STATS SECTION */
.stats-section {
  width: 100%;
}

/* WHY WEB */
.why-web {
  padding: 80px 0;
}
.why-web h2 {
  margin-bottom: 12px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.stat-card {
  padding: 40px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--orange);
}
.stat-card:last-child {
  border-right: none;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.stat-num span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
}
.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* FEATURES */
.features {
  padding: 80px 0 90px;
  background: var(--black);
}
.features .section-label,
.features .section-label::before {
  color: var(--orange);
  background: var(--orange);
}
.features h2 {
  color: var(--white);
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-dark);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--black-soft);
  padding: 28px 24px;
  transition: background 0.2s;
}
.feature-card:hover {
  background: #222;
}
.feature-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.feature-card h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 14px;
}
.feature-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.65;
}

/* HOW */
.how {
  padding: 90px 0;
  border-top: 1px solid var(--gray-border);
}
.how h2 {
  margin-bottom: 40px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 28px 24px;
  border-right: 1px solid var(--gray-border);
}
.step:last-child {
  border-right: none;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* FOR WHO */
.for-who {
  padding: 90px 0;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
}
.for-who h2 {
  margin-bottom: 12px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.who-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-mid);
  text-align: center;
}
.who-item-more {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-style: italic;
}

/* CTA */
.cta-section {
  padding: 80px 0;
}
.cta-box {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 64px 60px;
  text-align: center;
}
.cta-box h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* PAGE HERO */
.page-hero {
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--gray-border);
  position: relative;
  overflow: hidden;
  background: var(--gray-bg);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-tag::before {
  display: none;
}
.page-hero {
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--gray-border);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 16px;
}
.page-hero .hero-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.75;
}

/* SERVICES */
.service-main {
  padding: 90px 0;
  border-top: 1px solid var(--gray-border);
}
.service-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.service-main-text h2 {
  margin-bottom: 18px;
}
.service-main-text p {
  margin-bottom: 16px;
  font-size: 15px;
}
.check-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 14px;
  color: var(--gray-mid);
  padding-left: 22px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.price-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.pc-top {
  background: var(--black);
  padding: 28px;
  text-align: center;
}
.pc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 600;
}
.pc-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.pc-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.pc-list {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-bg);
}
.pc-item {
  font-size: 14px;
  color: var(--gray-mid);
  font-weight: 500;
}
.pc-item::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 700;
}
.price-card .btn {
  margin: 0 24px 24px;
  display: block;
  text-align: center;
  width: calc(100% - 48px);
  box-sizing: border-box;
}
.service-care {
  padding: 90px 0;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
}
.service-care h2 {
  margin-bottom: 12px;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-border);
}
.care-card {
  background: var(--white);
  padding: 24px;
}
.care-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.care-card p {
  font-size: 14px;
  color: var(--gray-light);
}
.care-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-light);
  text-align: center;
}

.service-extras {
  padding: 90px 0 40px;
  border-top: 1px solid var(--gray-border);
}
.service-extras h2 {
  margin-bottom: 32px;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.extra-item {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--gray-mid);
  font-weight: 500;
}

/* CONTACT */
.contact-section {
  padding: 90px 0;
  border-top: 1px solid var(--gray-border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 14px;
}
.contact-info > p {
  margin-bottom: 36px;
  font-size: 15px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  font-size: 18px;
  margin-top: 2px;
}
.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-value {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
}
a.contact-value {
  color: var(--orange);
}
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-link:hover {
  opacity: 0.75;
}
.contact-reassure {
  background: var(--gray-bg);
  padding: 20px;
  border-left: 3px solid var(--orange);
  margin-top: 32px;
}
.contact-reassure strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 14px;
}
.contact-reassure p {
  font-size: 13px;
  margin: 0;
}
.contact-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.cc-emoji {
  font-size: 28px;
  margin-bottom: 14px;
}
.contact-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 10px;
}
.contact-card .btn {
  margin-top: 20px;
}

/* GDPR */
.gdpr-content {
  padding: 70px 0 90px;
  border-top: 1px solid var(--gray-border);
}
.gdpr-body {
  max-width: 720px;
}
.gdpr-body h2 {
  font-size: 1.15rem;
  margin: 36px 0 12px;
}
.gdpr-body h2:first-child {
  margin-top: 0;
}
.gdpr-body p {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.75;
}
.gdpr-body ul {
  margin: 10px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gdpr-body ul li {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.65;
}
.gdpr-box {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.gdpr-box strong {
  color: var(--black);
}
.gdpr-date {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 32px;
}

/* PROVOZOVATEL */
.provozovatel {
  margin-top: 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--gray-bg);
}
.prov-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 12px;
}
.prov-item {
  font-size: 13px;
  color: var(--gray-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  gap: 12px;
}
.prov-item:last-of-type {
  border-bottom: none;
}
.prov-item span {
  font-weight: 600;
  color: var(--black);
  min-width: 60px;
}
.prov-note {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 10px;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background: var(--black);
  padding: 48px 0;
  border-top: 1px solid #222;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}
.footer-logo span {
  color: var(--orange);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #555;
  font-size: 13px;
  font-weight: 500;
}
.footer-links a:hover {
  color: #bbb;
}
.footer-copy {
  color: #444;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
  }
  .step:last-child {
    border-bottom: none;
  }
  .service-main-grid {
    grid-template-columns: 1fr;
  }
  .care-grid {
    grid-template-columns: 1fr;
  }
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 40px 24px;
  }
}
@media (max-width: 600px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .extras-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 1.9rem;
  }
}
