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

:root {
  --ink: #1e232b;
  --slate: #5d6470;
  --cloud: #f5f6f8;
  --accent: #ff8a3d;
  --accent-dark: #e36f28;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(30, 35, 43, 0.18);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--cloud) 100%);
  line-height: 1.6;
}

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

.section {
  padding: 90px 8vw;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.section-head p {
  color: var(--slate);
  margin-top: 10px;
}

.hero {
  padding: 36px 8vw 80px;
  background: radial-gradient(circle at top, #ffffff 0%, #f4f6f9 60%, #e9eef4 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--slate);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--accent);
}

.subhead {
  font-size: 1.1rem;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 26px 0 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: inline-block;
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.tagline {
  margin-top: 10px;
  color: var(--slate);
  font-style: italic;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 12px;
}

.hero-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.hero-stat {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.hero-stat strong {
  font-size: 1.6rem;
}

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

.demo-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.demo-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.thumb-barber {
  background-image: linear-gradient(135deg, #0b0b0b, #b89c4a);
}

.thumb-uslugi {
  background-image: linear-gradient(135deg, #0e4bd9, #ff7a00);
}

.thumb-restauracja {
  background-image: linear-gradient(135deg, #f7efe4, #0f6b52);
}

.thumb-budowlana {
  background-image: linear-gradient(135deg, #2e3c55, #ff7a2f);
}

.thumb-landing {
  background-image: linear-gradient(135deg, #f5f0ea, #c59d5f);
}

.thumb-photographer {
  background-image: linear-gradient(135deg, #2c3e50, #3498db);
}

.thumb-infobiz {
  background-image: linear-gradient(135deg, #ff6b35, #f7931e);
}

.thumb-videographer {
  background-image: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.demo-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.demo-body p {
  color: var(--slate);
  margin: 0;
}

.demo-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

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

.process-step {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 138, 61, 0.15);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 70px 8vw;
  background: #1e232b;
  color: #f5f6f8;
}

.footer h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

.footer a {
  color: #f5f6f8;
}

.footer-actions {
  display: flex;
  gap: 12px;
  margin: 16px 0 6px;
  flex-wrap: wrap;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .section {
    padding: 84px 7vw;
  }

  .hero {
    padding: 32px 7vw 72px;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 6vw;
  }

  .hero {
    padding: 28px 6vw 64px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 520px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 12px;
  }

  .footer {
    padding: 56px 6vw;
  }
}
