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

:root {
  --bg: #07090d;
  --panel: #0f131a;
  --panel2: #151a24;
  --text: #f7f8fc;
  --muted: #929bad;
  --line: #242b38;
  --accent: #6c63ff;
  --accent2: #9a8cff;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(108, 99, 255, 0.14), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(154, 140, 255, 0.08), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

/* NAVIGÁCIA */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 13, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: white;
  text-shadow: 0 0 24px rgba(108, 99, 255, 0.18);

}

.logo span {
  background: linear-gradient(90deg, #7b6cff, #b89cff, #d2c1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #cbd0da;
  font-size: 14px;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

/* TLAČIDLÁ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6c63ff, #8b74ff);
  color: white;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.22);
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(108, 99, 255, 0.34);
}

.btn-small {
  padding: 10px 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: #6c63ff;
}

/* HERO */

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent2);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
  max-width: 760px;
  color: white;
}

h1 span,
h2 span {
  background: linear-gradient(90deg, #8b7cff, #c1aaff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  margin: 26px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #c6ccd7;
  font-size: 13px;
}

/* MOCKUP */

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -70px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.26), transparent 62%);
  filter: blur(20px);
  z-index: -1;
}

.browser {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #0e1118;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(108, 99, 255, 0.08);
}

.browser-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #151922;
  border-bottom: 1px solid var(--line);
}

.browser-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #596173;
}

.browser-url {
  margin-left: 9px;
  background: #0c0f15;
  color: #6f7787;
  border: 1px solid #242936;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 10px;
  flex: 1;
  text-align: center;
}

.mock-site {
  min-height: 410px;
  background:
    radial-gradient(circle at 70% 20%, rgba(108, 99, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #12151d, #0b0d12);
  padding: 24px;
  color: white;
}

.mock-nav {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #aeb5c3;
}

.mock-content {
  padding: 95px 20px 20px;
}

.mock-content small {
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: 1px;
}

.mock-content h3 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -1.8px;
  max-width: 390px;
  margin: 12px 0;
  color: white;
}

.mock-content p {
  color: #8f97a6;
  font-size: 13px;
}

.mock-content button {
  margin-top: 20px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #6c63ff, #8b74ff);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
}

/* SEKCIE */

.section {
  padding: 110px 0;
}

.section-dark {
  background: rgba(13, 16, 22, 0.9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 50px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: white;
}

.section-head p,
.pricing p,
.contact p {
  color: var(--muted);
  margin-top: 18px;
}

/* KARTY */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 18px;
  min-height: 220px;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 99, 255, 0.5);
}

.card .icon {
  color: var(--accent2);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 50px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: white;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* PORTFÓLIO */

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.project {
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    #0f131a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.28),
    0 0 60px rgba(108,99,255,0.05);
  transition: 0.3s ease;
}

.project:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.55);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.38),
    0 0 80px rgba(108,99,255,0.12);
}

.project-image {
  height: 380px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(108,99,255,0.38), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(154,140,255,0.10), transparent 35%),
    linear-gradient(145deg, #1b2030, #090b10 70%);
}


.project-overlay {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 34px;
}

.project-overlay span {
  font-size: 11px;
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: 1px;
}

.project-overlay h3 {
  font-size: 27px;
  margin-top: 6px;
  color: white;
}

.project-info {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.project-info p {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent2);
}

.coming {
  display: grid;
  place-items: center;
  min-height: 440px;
  background: linear-gradient(145deg, #141821, #0d0f14);
}

.coming-inner {
  text-align: center;
  padding: 30px;
}

.coming span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--accent2);
  font-weight: 800;
}

.coming h3 {
  font-size: 25px;
  margin: 10px 0;
  color: white;
}

.coming p {
  color: var(--muted);
}

/* CENA */

.pricing {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(108, 99, 255, 0.12), transparent 35%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 45px;
}

.price-list {
  display: grid;
  gap: 14px;
  color: #cbd1dc;
}

/* POSTUP */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 28px;
  border-left: 1px solid var(--line);
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #8b74ff);
  margin-bottom: 25px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

/* KONTAKT */

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.contact-box {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.contact-box a {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.contact-box small {
  color: #737b89;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

/* ANIMÁCIE */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* MOBIL */

@media (max-width: 900px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 75px 0;
  }

  h1 {
    letter-spacing: -2.5px;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .project-grid,
  .pricing,
  .contact {
    grid-template-columns: 1fr;
  }

  .project-info {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    gap: 45px;
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-points {
    gap: 10px;
    flex-direction: column;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .pricing {
    padding: 28px;
  }

  .project-image {
    height: 310px;
  }

  .mock-content {
    padding: 70px 8px 10px;
  }

  .mock-content h3 {
    font-size: 29px;
  }

  .footer-inner {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .project-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-image {
  height: auto;
  overflow: hidden;
}
}.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: top center;
}

.project-image {
  height: 500px;
}


.fitness-project .project-image {
  height: auto !important;
  background: #000 !important;
  padding: 0 !important;
}

.fitness-project .project-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: initial !important;
  margin: 0 !important;
}/* ===== NOVÉ PORTFÓLIO KARTY ===== */

.portfolio-card {
  display: grid !important;
  grid-template-columns: 38% 62%;
  align-items: stretch;
  min-height: 330px;
  padding: 12px;
  border: 1px solid rgba(139, 92, 246, 0.65);
  border-radius: 22px;
  overflow: hidden;
  background: #0d1119;
}

.portfolio-card-text {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.portfolio-card-text span {
  color: #9b7cff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.portfolio-card-text h3 {
  color: white;
  font-size: 36px;
  margin: 18px 0 12px;
}

.portfolio-card-text p {
  color: #a8adba;
  font-size: 16px;
  line-height: 1.6;
  max-width: 340px;
}

.portfolio-card-text .text-link {
  margin-top: 18px;
  color: #9b7cff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.portfolio-card-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
}

.portfolio-card-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 14px;
}/* PORTFOLIO – rovnaká veľkosť oboch kariet */

.portfolio-card {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: 35% 65% !important;
  min-height: 430px !important;
  margin: 40px 0 !important;
}

.portfolio-card-text {
  width: auto !important;
  padding: 45px !important;
}

.portfolio-card-preview {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.portfolio-card-preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.project-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  width: 100% !important;
}
.portfolio-card {
  grid-template-columns: 34% 66% !important;
  min-height: 360px !important;
}

.portfolio-card-preview img {
  object-fit: contain !important;
  object-position: center !important;
  background: #000;
}
#portfolio .section-head {
  margin-bottom: 38px;
}

#portfolio .section-head h2 {
  max-width: 620px;
}

#portfolio .section-head p {
  max-width: 520px;
}

.project-grid {
  gap: 18px !important;
}

.portfolio-card {
  box-shadow:
    0 18px 50px rgba(0,0,0,0.28),
    0 0 35px rgba(108,99,255,0.04);
}
.portfolio-card {
  margin: 0 !important;
}
.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 15px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6c63ff, #8b6cff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(108, 99, 255, 0.35);
}
.price-note {
  font-size: 13px;
  color: #73798a;
  margin-top: 14px;
  line-height: 1.5;
  max-width: 520px;
}
@media (max-width: 700px) {

  .portfolio-card {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 12px !important;
  }

  .portfolio-card-text {
    padding: 24px 20px !important;
  }

  .portfolio-card-text h3 {
    font-size: 30px !important;
  }

  .portfolio-card-text p {
    max-width: 100% !important;
  }

  .portfolio-card-text .text-link {
    margin-top: 22px !important;
  }

  .portfolio-card-preview {
    width: 100% !important;
    height: auto !important;
  }

  .portfolio-card-preview img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;

}
}
    /* KRYVEX kontaktný formulár */
.contact-form {
  width: 100%;
max-width: 760px;
  margin: 40px auto 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(155, 124, 255, 0.25);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #9b7cff;
  box-shadow: 0 0 0 3px rgba(155, 124, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777b89;
}

.form-group:has(textarea) {
  grid-column: 1 / -1;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
  justify-self: start;
}

@media (max-width: 700px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .form-group:has(textarea),
  .contact-form .btn {
    grid-column: auto;
  }
}
#kontakt .contact {
  display: block;
}

#kontakt .contact-form {
  width: min(760px, 100%);
  margin: 40px auto 0;
}

