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

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

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: #1b1f2a;
  background: radial-gradient(circle at top left, #f5f9ff 0%, #f0f4ff 50%, #eef3ff 100%);
  line-height: 1.6;
}

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

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

.site-header {
  padding: 28px 6vw 60px;
  background: linear-gradient(160deg, #f9fbff 0%, #eff5ff 55%, #e6efff 100%);
  border-bottom: 1px solid rgba(64, 105, 191, 0.08);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 6vw;
  background: rgba(249, 251, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(64, 105, 191, 0.08);
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(45, 91, 209, 0.2);
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2d5bd1;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: #1c2d5a;
  letter-spacing: 0.4px;
}

.logo span {
  font-weight: 600;
  color: #3d7af2;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #5f6b7d;
}

.nav-links a {
  padding: 8px 6px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2d5bd1;
}

.nav-links .is-active {
  color: #2d5bd1;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d5bd1, #3d7af2);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(45, 91, 209, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(45, 91, 209, 0.28);
}

.btn.ghost {
  background: transparent;
  color: #2d5bd1;
  border: 1px solid rgba(45, 91, 209, 0.3);
  box-shadow: none;
}

.hero {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero-text .eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3d7af2;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  color: #1c2d5a;
  margin-bottom: 18px;
}

.hero-text .lead {
  font-size: 18px;
  color: #5f6b7d;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 360px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(61, 122, 242, 0.16), rgba(45, 91, 209, 0.02));
  box-shadow: 0 25px 60px rgba(31, 62, 138, 0.12);
  overflow: hidden;
}

.hero-visual .panel {
  position: absolute;
  inset: 40px 50px auto auto;
  width: 220px;
  height: 140px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(61, 122, 242, 0.2);
  box-shadow: 0 18px 40px rgba(41, 90, 187, 0.2);
}

.hero-visual .card {
  position: absolute;
  left: 38px;
  bottom: 36px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(61, 122, 242, 0.16);
  box-shadow: 0 16px 32px rgba(41, 90, 187, 0.16);
}

.hero-visual .small {
  width: 120px;
  height: 80px;
}

.hero-visual .medium {
  width: 160px;
  height: 110px;
  left: 160px;
  bottom: 90px;
}

.hero-visual .chip {
  position: absolute;
  width: 90px;
  height: 26px;
  border-radius: 999px;
  background: rgba(61, 122, 242, 0.25);
  right: 60px;
  bottom: 40px;
}

.hero-visual .chip.alt {
  background: rgba(61, 122, 242, 0.5);
  right: 90px;
  bottom: 90px;
}

.section {
  padding: 80px 6vw;
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  color: #1c2d5a;
  margin-bottom: 12px;
}

.section-header p {
  color: #5f6b7d;
  font-size: 17px;
}

.about {
  background: #ffffff;
  border-radius: 24px;
  margin: 0 6vw;
  padding: 60px 6vw;
  box-shadow: 0 25px 60px rgba(31, 62, 138, 0.12);
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-grid h3 {
  color: #1c2d5a;
  margin-bottom: 12px;
}

.about-grid p {
  color: #5f6b7d;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.about-text h2 {
  font-size: 32px;
  color: #1c2d5a;
  margin-bottom: 16px;
}

.about-text p {
  color: #5f6b7d;
  margin-bottom: 16px;
}

.about-image {
  min-height: 520px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(61, 122, 242, 0.22), rgba(45, 91, 209, 0.08));
  box-shadow: 0 25px 60px rgba(31, 62, 138, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.12);
}

.service-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.product-section.reverse {
  direction: rtl;
}

.product-section.reverse .product-content,
.product-section.reverse .product-visual {
  direction: ltr;
}

.product-visual {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(45, 91, 209, 0.22), rgba(61, 122, 242, 0.08));
  box-shadow: 0 25px 60px rgba(31, 62, 138, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.12);
}

.product-visual.alt {
  background: linear-gradient(135deg, rgba(27, 31, 42, 0.08), rgba(45, 91, 209, 0.22));
}

.product-content h3 {
  font-size: 22px;
  color: #1c2d5a;
  margin-bottom: 12px;
}

.product-content p {
  color: #5f6b7d;
  margin-bottom: 12px;
}

.product-content ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.product-content ul li {
  padding-left: 20px;
  position: relative;
  color: #1c2d5a;
}

.product-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d7af2;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 32px;
}

.service-card h3 {
  font-size: 22px;
  color: #1c2d5a;
  margin-bottom: 12px;
}

.service-card p {
  color: #5f6b7d;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-card ul li {
  padding-left: 20px;
  position: relative;
  color: #1c2d5a;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d7af2;
}

.kockice {
  background: linear-gradient(145deg, rgba(61, 122, 242, 0.08), rgba(45, 91, 209, 0.03));
}

.kockice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kockica {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 28px;
}

.kockica h3 {
  color: #1c2d5a;
  margin-bottom: 12px;
}

.kockica p {
  color: #5f6b7d;
  margin-bottom: 16px;
}

.kockica a {
  color: #2d5bd1;
  font-weight: 600;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.solutions-grid span {
  background: #ffffff;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(61, 122, 242, 0.12);
  color: #1c2d5a;
  font-weight: 600;
}

.solutions-hero {
  padding-bottom: 40px;
}

.solution-block {
  padding-top: 40px;
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(31, 62, 138, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
}

.solution-text h3 {
  color: #1c2d5a;
  font-size: 26px;
  margin-bottom: 12px;
}

.solution-text p {
  color: #5f6b7d;
  margin-bottom: 12px;
}

.solution-text ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.solution-text ul li {
  padding-left: 20px;
  position: relative;
  color: #1c2d5a;
}

.solution-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d7af2;
}

.solution-visual {
  min-height: 260px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(61, 122, 242, 0.28), rgba(45, 91, 209, 0.08));
  border: 1px solid rgba(63, 105, 191, 0.12);
  box-shadow: 0 18px 40px rgba(31, 62, 138, 0.16);
}

.solutions-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.solution-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 28px;
}

.solution-card h3 {
  color: #1c2d5a;
  margin-bottom: 10px;
}

.solution-card p {
  color: #5f6b7d;
  margin-bottom: 10px;
}

.solution-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.solution-card ul li {
  padding-left: 20px;
  position: relative;
  color: #1c2d5a;
}

.solution-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d7af2;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partners-grid div {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: #1c2d5a;
}

.partners-hero {
  padding-bottom: 40px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.partner-logos span {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  color: #1c2d5a;
  font-size: 14px;
}

.partner-block {
  padding-top: 40px;
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(31, 62, 138, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
}

.partner-card.reverse {
  direction: rtl;
}

.partner-card.reverse .partner-text,
.partner-card.reverse .partner-visual {
  direction: ltr;
}

.partner-text h3 {
  color: #1c2d5a;
  font-size: 24px;
  margin-bottom: 12px;
}

.partner-text p {
  color: #5f6b7d;
  margin-bottom: 12px;
}

.partner-text ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.partner-text ul li {
  padding-left: 20px;
  position: relative;
  color: #1c2d5a;
}

.partner-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d7af2;
}

.partner-visual {
  min-height: 240px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(61, 122, 242, 0.28), rgba(45, 91, 209, 0.08));
  border: 1px solid rgba(63, 105, 191, 0.12);
  box-shadow: 0 18px 40px rgba(31, 62, 138, 0.16);
}

.partner-visual.alt {
  background: linear-gradient(140deg, rgba(26, 37, 72, 0.1), rgba(61, 122, 242, 0.3));
}

.partner-visual.dark {
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.55), rgba(45, 91, 209, 0.18));
}

.partner-visual.tall {
  min-height: 300px;
}

.partner-visual.light {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(45, 91, 209, 0.35));
}

.dark-section {
  background: linear-gradient(160deg, rgba(27, 35, 68, 0.95), rgba(17, 27, 56, 0.98));
  color: #ffffff;
}

.dark-section .partner-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-section .partner-text h3,
.dark-section .partner-text li {
  color: #ffffff;
}

.dark-section .partner-text p {
  color: rgba(255, 255, 255, 0.7);
}

.center-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.center-highlight div {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 28px;
}

.center-highlight h3 {
  color: #1c2d5a;
  margin-bottom: 10px;
}

.center-highlight p {
  color: #5f6b7d;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 62, 145, 0.12);
  border: 1px solid rgba(63, 105, 191, 0.08);
  padding: 32px;
}

.contact-card h3 {
  color: #1c2d5a;
  margin-bottom: 12px;
}

.contact-card p {
  color: #5f6b7d;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.contact-card input,
.contact-card textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(61, 122, 242, 0.2);
  font-family: inherit;
  resize: none;
}

.footer {
  padding: 50px 6vw;
  background: #1c2d5a;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-inner .logo {
  color: #ffffff;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-meta p {
  color: rgba(255, 255, 255, 0.7);
}

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

  .hero-visual {
    height: 280px;
  }

  .solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 4px;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .nav-burger {
    display: inline-flex;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

.about-grid,
.about-split,
.service-split,
.product-section,
.kockice-grid,
.center-highlight,
.contact-card,
.partner-card,
.solution-hero,
.solutions-grid-two {
  grid-template-columns: 1fr;
}

.partners-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .about {
    margin: 24px 6vw 0;
  }

  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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