:root {
  --primary: #2563eb;
  --primary-hover: #1e40af;
  --accent: #06b6d4;

  --text: #0f172a;
  --text-light: #64748b;

  --bg: rgba(255, 255, 255, 0.78);
  --bg-solid: #ffffff;
  --border: rgba(15, 23, 42, 0.08);

  --shadow: 0 0.5em 2em rgba(15, 23, 42, 0.08);
  --shadow-cta: 0 0.75em 2em rgba(37, 99, 235, 0.22);

  --radius: 0.9em;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1em;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 30%),
    radial-gradient(circle at right, rgba(6, 182, 212, 0.10), transparent 25%),
    #f8fbff;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  backdrop-filter: blur(0.9em);
  -webkit-backdrop-filter: blur(0.9em);
  transition: all 0.5s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border-bottom: 0.0625em solid var(--border);
}

/* HEADER INNER */
.header-inner {
  width: min(92%, 78em);
  margin-left: auto;
  margin-right: auto;
  height: 5em;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;

  position: relative;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 2.5em;
  width: auto;
  padding-top: 0.65em;
}

/* CENTER GROUP */
.header-center {
  display: flex;
  align-items: center;
  gap: 2.5em;
  margin-left: auto;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 2.2em;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1em;
  display: inline-block;
  transition: all 0.35s ease;
}

.nav a:hover {
  color: var(--primary);
  transform: translateY(-0.1em);
}

/* CTA */
.cta-btn {
  padding: 0.8em 1.4em;
  border-radius: 999em;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9em;
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
  transition: all 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-0.1em);
  box-shadow: 0 1em 2.4em rgba(37, 99, 235, 0.28);
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 0.3em;
  cursor: pointer;
  padding: 0.4em;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 1.6em;
  height: 0.12em;
  background: var(--text);
  border-radius: 999em;
  transition: all 0.5s ease;
}

/* HAMBURGER ACTIVE */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(0.42em) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-0.42em) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8em 0 4em;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.95));
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(92%, 78em);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4em;
}

.hero-content {
  max-width: 42em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.7em 1em;
  border-radius: 999em;
  background: rgba(255, 255, 255, 0.75);
  border: 0.0625em solid rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92em;
  box-shadow: 0 0.6em 2em rgba(15, 23, 42, 0.06);
  margin-bottom: 1.5em;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.45em;
}

.hero h1 span, .modernapisgradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 38em;
  margin-bottom: 2em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 2.2em;
}

.hero-btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999em;
  padding: 1em 1.5em;
  transition: all 0.35s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  box-shadow: 0 1em 2.2em rgba(37, 99, 235, 0.25);
}

.hero-btn.primary:hover {
  transform: translateY(-0.12em);
  box-shadow: 0 1.2em 2.6em rgba(37, 99, 235, 0.3);
}

.hero-btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border: 0.0625em solid var(--border);
  box-shadow: 0 0.8em 2em rgba(15, 23, 42, 0.06);
}

.hero-btn.secondary:hover {
  transform: translateY(-0.12em);
  border-color: rgba(37, 99, 235, 0.18);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.stat-box {
  background: rgba(255, 255, 255, 0.75);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.1em;
  padding: 1em 1.2em;
  min-width: 10.5em;
  box-shadow: 0 0.9em 2em rgba(15, 23, 42, 0.05);
}

.stat-box strong {
  display: block;
  font-size: 0.98em;
  margin-bottom: 0.25em;
}

.stat-box span {
  color: var(--text-light);
  font-size: 0.92em;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 34em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-card {
  position: relative;
  width: 100%;
  max-width: 29em;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(1em);
  -webkit-backdrop-filter: blur(1em);
  border: 0.0625em solid rgba(255, 255, 255, 0.7);
  border-radius: 1.8em;
  box-shadow: 0 2em 4em rgba(15, 23, 42, 0.12);
  overflow: hidden;
  transform: translateY(-1.5em);
}

.card-top {
  display: flex;
  gap: 0.45em;
  padding: 1em 1.2em;
  border-bottom: 0.0625em solid rgba(15, 23, 42, 0.06);
}

.card-top span {
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.35);
}

.card-body {
  padding: 2em;
  padding-bottom: 4em;
}

.card-label {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.1em;
}

.card-body h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

.card-body p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5em;
}

.mini-features {
  display: grid;
  gap: 0.9em;
}

.mini-features div {
  display: flex;
  align-items: center;
  gap: 0.7em;
  background: #f8fbff;
  border: 0.0625em solid rgba(15, 23, 42, 0.05);
  border-radius: 0.9em;
  padding: 0.9em 1em;
  font-weight: 700;
}

.mini-features i {
  color: var(--primary);
}

.floating-box {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.1em;
  background: rgba(255, 255, 255, 0.92);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 999em;
  box-shadow: 0 1em 2.5em rgba(15, 23, 42, 0.08);
  font-weight: 700;
  font-size: 0.92em;
}

.floating-box i {
  color: var(--primary);
}

.floating-one {
  top: 0;
  right: 0;
}

.floating-two {
  bottom: 0.5em;
  left: 0;
}

/* LAPTOP */
@media (max-width: 75em) {
  .header-inner {
    width: min(94%, 68em);
  }

  .hero-container {
    width: min(94%, 68em);
    gap: 2.5em;
  }

  .header-center {
    gap: 1.8em;
  }

  .nav {
    gap: 1.5em;
  }

  .nav a {
    font-size: 0.96em;
  }

  .cta-btn {
    padding: 0.78em 1.2em;
    font-size: 0.88em;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
  }
}

/* TABLET */
@media (max-width: 56.25em) {
  .header-inner {
    width: min(92%, 100%);
    height: 4.9em;
    gap: 1em;
  }

  .logo img {
    height: 2.25em;
    padding-top: 0.55em;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-center {
    position: absolute;
    top: calc(100% + 0.8em);
    left: 0;
    right: 0;

    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.4em;

    padding: 1.35em;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(1em);
    -webkit-backdrop-filter: blur(1em);

    border: 0.0625em solid var(--border);
    border-radius: 1.2em;
    box-shadow: 0 1em 2.2em rgba(15, 23, 42, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1em);
    transition: all 0.5s ease;
    z-index: 1001;
  }

  .header-center.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15em;
  }

  .nav a {
    width: 100%;
    font-size: 1em;
    font-weight: 700;
  }

  .cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 0.95em;
    padding: 0.95em 1.2em;
  }

  .hero {
    min-height: auto;
    padding: 8em 0 4em;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.8em;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }

  .stat-box {
    min-width: 0;
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    width: 100%;
    justify-content: center;
  }

  .main-card {
    max-width: 100%;
    transform: none;
  }

  .card-body {
    padding-bottom: 2em;
  }

  .floating-one,
  .floating-two {
    position: static;
    margin-top: 1em;
  }

  .floating-box {
    width: fit-content;
    max-width: 100%;
  }

  .services-section,
  .process-section,
  .why-section {
    padding-top: 1em;
    padding-bottom: 4.5em;
  }

  .services-grid,
  .process-grid,
  .why-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 2.2em;
  }

  .cta-box {
    padding: 3em 1.2em;
    border-radius: 1.5em;
  }
}

/* MOBILE */
@media (max-width: 30em) {
  .header-inner {
    height: 4.6em;
  }

  .logo img {
    height: 2.05em;
  }

  .header-center {
    top: calc(100% + 0.65em);
    padding: 1.15em;
    border-radius: 1em;
  }

  .nav {
    gap: 1em;
  }

  .nav a {
    font-size: 0.98em;
  }

  .cta-btn {
    font-size: 0.92em;
  }

  .hero {
    padding: 7.2em 0 3.2em;
  }

  .hero-badge {
    font-size: 0.82em;
    padding: 0.65em 0.9em;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.75;
  }

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

  .hero-btn {
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    width: 100%;
    padding: 0.95em 1em;
  }

  .hero-visual {
    gap: 0.2em;
  }

  .main-card {
    border-radius: 1.4em;
  }

  .card-top {
    padding: 0.9em 1em;
  }

  .card-body {
    padding: 1.25em;
    padding-bottom: 1.4em;
  }

  .card-body h3 {
    font-size: 1.35rem;
  }

  .mini-features div {
    font-size: 0.92em;
    padding: 0.85em 0.9em;
  }

  .floating-box {
    font-size: 0.86em;
    padding: 0.85em 1em;
  }

  .section-heading h2,
  .why-content h2,
  .cta-box h2 {
    font-size: 1.9rem;
  }

  .service-card,
  .process-card,
  .why-card-inner {
    padding: 1.3em;
  }

  .why-item {
    padding: 1em;
  }

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

  .cta-actions .hero-btn {
    width: 100%;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
  }
}

.hero-content,
.hero-visual {
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* INDEX HERO MOBILE FIX */
@media (max-width: 56.25em) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .main-card {
    width: 100%;
    max-width: 32em;
    margin: 0 auto;
    transform: none;
  }

  .card-body {
    padding-bottom: 1.8em;
  }

  .floating-one,
  .floating-two {
    position: static;
    margin-top: 1em;
  }

  .floating-box {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 30em) {
  .hero {
    padding: 7.1em 0 3.2em;
  }

  .hero-container {
    width: min(94%, 100%);
    gap: 2em;
  }

  .hero-content {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    align-items: stretch;
  }

  .main-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 1.25em;
  }

  .card-top {
    padding: 0.85em 1em;
  }

  .card-body {
    padding: 1.15em;
    padding-bottom: 1.25em;
  }

  .card-body h3 {
    font-size: 1.28rem;
    line-height: 1.2;
  }

  .card-body p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .mini-features {
    gap: 0.75em;
  }

  .mini-features div {
    padding: 0.8em 0.9em;
    font-size: 0.9rem;
  }

  .floating-box {
    font-size: 0.84rem;
    padding: 0.8em 0.95em;
    align-self: flex-start;
  }

  .floating-two {
    margin-top: 0.75em;
  }
}

/* SECTIONS */
.section-container {
  width: min(92%, 78em);
  margin: 0 auto;
}

.section-heading {
  max-width: 42em;
  margin-bottom: 3em;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.65em 1em;
  border-radius: 999em;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1em;
}

.section-badge.light {
  background: rgba(37, 99, 235, 0.08);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* SERVICES */
.services-section {
  padding: 6em 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
}

.service-card {
  background: rgba(255, 255, 255, 0.78);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.6em;
  box-shadow: 0 1em 2.2em rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-0.35em);
  box-shadow: 0 1.5em 2.8em rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.16);
}

.service-icon {
  width: 3.2em;
  height: 3.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.1em;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6em;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.75;
}

/* PROCESS */
.process-section {
  padding: 2em 0 6em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2em;
}

.process-card {
  background: #ffffff;
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.6em;
  box-shadow: 0 1em 2em rgba(15, 23, 42, 0.04);
}

.process-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}

.process-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.6em;
}

.process-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* WHY */
.why-section {
  padding: 2em 0 6em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2em;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
  letter-spacing: -0.03em;
}

.why-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2em;
  max-width: 40em;
}

.why-list {
  display: grid;
  gap: 1em;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 1.1em 1.2em;
  background: rgba(255, 255, 255, 0.75);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.1em;
  box-shadow: 0 0.8em 2em rgba(15, 23, 42, 0.04);
}

.why-item i {
  width: 2em;
  height: 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.why-item strong {
  display: block;
  margin-bottom: 0.25em;
}

.why-item span {
  color: var(--text-light);
  line-height: 1.65;
}

.why-card {
  display: flex;
  justify-content: center;
}

.why-card-inner {
  width: 100%;
  max-width: 30em;
  padding: 2em;
  border-radius: 1.8em;

  /* NOV GRADIENT (light, modern) */
  background: linear-gradient(135deg, var(--primary), var(--accent));

  color: #ffffff;
  box-shadow: 0 1.8em 4em rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

/* subtle glow efekt */
.why-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent 40%);
  pointer-events: none;
}

.mini-tag {
  display: inline-block;
  padding: 0.55em 0.9em;
  border-radius: 999em;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1.2em;
}

.why-card-inner h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

.why-card-inner p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.why-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}

.why-highlights div {
  padding: 0.8em 1em;
  border-radius: 999em;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 0.92rem;
}

/* CTA SECTION */

.cta-section {
  padding: 0 0 6em;
}

.cta-box {
  text-align: center;
  padding: 4em 1.5em;
  border-radius: 2em;
  background-image: url(Images/ozadjecta.png);
  background-size: cover;
  box-shadow: 0 1.5em 3.5em rgba(15, 23, 42, 0.08);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.45em;
  letter-spacing: -0.03em;
  color: var(--text);
}

.cta-box p {
  max-width: 38em;
  margin: 0 auto 1.8em;
  color: var(--text-light);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta-actions .hero-btn.primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #ffffff;
  box-shadow: 0 1em 2.4em rgba(37, 99, 235, 0.22);
}

.cta-actions .hero-btn.primary:hover {
  transform: translateY(-0.12em);
  box-shadow: 0 1.2em 2.8em rgba(37, 99, 235, 0.28);
}

/* SECONDARY BUTTON */
.hero-btn.secondary.white {
  background: #ffffff;
  color: var(--text);
  border: 0.0625em solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 0.8em 2em rgba(15, 23, 42, 0.06);
}

.hero-btn.secondary.white:hover {
  transform: translateY(-0.12em);
  border-color: rgba(37, 99, 235, 0.18);
}

/* FOOTER */
/* FOOTER */
.footer {
  position: relative;
  overflow: hidden;
  padding: 4em 0 1.5em;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.08)
  );
  border-top: 0.0625em solid rgba(15, 23, 42, 0.06);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 35%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 1;
  width: min(92%, 78em);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2em;
}

.footer-logo {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.8em;
}

.footer-brand p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 15em;
}

.footer-links h4 {
  margin-bottom: 1em;
  font-size: 1rem;
  color: var(--text);
}

.footer-links a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.85em;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(0.2em);
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.social-links i {
  width: 1.2em;
  text-align: center;
  color: var(--primary);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(92%, 78em);
  margin: 2.2em auto 0;
  padding-top: 1.2em;
  border-top: 0.0625em solid rgba(15, 23, 42, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.2em;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 75em) {
  .footer-container {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (max-width: 56.25em) {
  .footer {
    padding: 3.5em 0 1.4em;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2em 1.5em;
  }
}

@media (max-width: 30em) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
  }
}

/* RESPONSIVE EXTRA */
@media (max-width: 75em) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 56.25em) {
  .services-section,
  .process-section,
  .why-section {
    padding-top: 1em;
    padding-bottom: 4.5em;
  }

  .services-grid,
  .process-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 2.2em;
  }

  .cta-box {
    padding: 3em 1.2em;
    border-radius: 1.5em;
  }
}

@media (max-width: 30em) {
  .section-heading h2,
  .why-content h2,
  .cta-box h2 {
    font-size: 1.9rem;
  }

  .service-card,
  .process-card,
  .why-card-inner {
    padding: 1.3em;
  }

  .why-item {
    padding: 1em;
  }

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

  .cta-actions .hero-btn {
    width: 100%;
    text-align: center;
  }
}

.odmikodfooterja
{
  padding-bottom: 5.5em;
}

/* CENIK CSS */
/* PRICING HERO */
.pricing-hero {
  padding-top: 8em;
  padding-bottom: 2.5em;
}

/* PRICING SECTION */
.pricing-section {
  padding: 2em 0 6em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2em;
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.6em;
  box-shadow: 0 1.2em 2.8em rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-0.45em);
  box-shadow: 0 1.8em 3.4em rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
}

.pricing-card.featured {
  border: 0.09375em solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 1.6em 3.4em rgba(37, 99, 235, 0.10);
}

.pricing-badge {
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 0.9em;
  border-radius: 999em;
  background: rgba(37, 99, 235, 0.10);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-label {
  display: inline-block;
  margin-bottom: 1em;
  padding: 0.55em 0.9em;
  border-radius: 999em;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-top h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.55em;
}

.pricing-top p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.8em;
}

.pricing-price {
  margin-bottom: 1.8em;
}

.pricing-price .price {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.25em;
}

.pricing-price small {
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 0.95em;
  margin-bottom: 2em;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  color: var(--text);
  line-height: 1.6;
}

.pricing-features i {
  color: var(--primary);
  margin-top: 0.2em;
  flex-shrink: 0;
}

.pricing-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999em;
  padding: 1em 1.3em;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  transition: all 0.35s ease;
}

.pricing-btn:hover {
  transform: translateY(-0.12em);
  background: rgba(37, 99, 235, 0.12);
}

.featured-btn {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #ffffff;
  box-shadow: 0 1em 2.2em rgba(37, 99, 235, 0.22);
}

.featured-btn:hover {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  box-shadow: 0 1.2em 2.6em rgba(37, 99, 235, 0.28);
}

/* PRICING INFO */
.pricing-info-section {
  padding: 0 0 6em;
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
}

.pricing-info-card {
  background: rgba(255, 255, 255, 0.78);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.6em;
  box-shadow: 0 1em 2.2em rgba(15, 23, 42, 0.05);
}

.pricing-info-card i {
  width: 3em;
  height: 3em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  margin-bottom: 1em;
}

.pricing-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55em;
}

.pricing-info-card p {
  color: var(--text-light);
  line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 75em) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 50em;
    margin: 0 auto;
  }

  .pricing-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56.25em) {
  .pricing-section {
    padding: 1em 0 4.5em;
  }

  .pricing-card {
    padding: 1.5em;
  }

  .pricing-price .price {
    font-size: 2.2rem;
  }

  .pricing-info-section {
    padding-bottom: 4.5em;
  }
}

@media (max-width: 30em) {
  .pricing-top h2 {
    font-size: 1.35rem;
  }

  .pricing-badge {
    position: static;
    margin-bottom: 1em;
  }
}

/*KOONTAKT CSS */
/* CONTACT HERO */
.contact-hero {
  padding-top: 8em;
  padding-bottom: 2.5em;
}

/* CONTACT SECTION */
.contact-section {
  padding: 2em 0 6em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6em;
  align-items: start;
}

/* FORM CARD */
.contact-form-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.8em;
  padding: 2em;
  box-shadow: 0 1.2em 2.8em rgba(15, 23, 42, 0.05);
}

.contact-form-heading {
  margin-bottom: 1.6em;
}

.contact-form-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 0.4em;
  letter-spacing: -0.03em;
}

.contact-form-heading p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 42em;
}

/* FORM */
.contact-form {
  display: grid;
  gap: 1.2em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55em;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 0.0625em solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1em;
  padding: 1em 1.05em;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 0.25em rgba(37, 99, 235, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 10em;
}

.form-submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1em 1.5em;
  border: none;
  border-radius: 999em;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 1em 2.2em rgba(37, 99, 235, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.form-submit-btn:hover {
  transform: translateY(-0.12em);
  box-shadow: 0 1.2em 2.6em rgba(37, 99, 235, 0.28);
}

/* RIGHT SIDE */
.contact-info-wrap {
  display: grid;
  gap: 1.2em;
}

.main-info-card {
  padding: 2em;
  border-radius: 1.8em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 1.6em 3.5em rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.main-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 40%);
  pointer-events: none;
}

.main-info-card > * {
  position: relative;
  z-index: 1;
}

.main-info-card h3 {
  font-size: 1.85rem;
  line-height: 1.18;
  margin-bottom: 0.65em;
}

.main-info-card p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 1.6em;
}

.contact-points {
  display: grid;
  gap: 1em;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.9em;
  padding: 1em 1.05em;
  background: rgba(255, 255, 255, 0.14);
  border: 0.0625em solid rgba(255, 255, 255, 0.18);
  border-radius: 1.1em;
}

.contact-point i {
  width: 2.2em;
  height: 2.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.contact-point strong {
  display: block;
  margin-bottom: 0.15em;
  font-size: 0.98rem;
}

.contact-point span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* MINI CARDS */
.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

.contact-mini-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.4em;
  box-shadow: 0 1em 2em rgba(15, 23, 42, 0.05);
}

.contact-mini-card i {
  width: 2.8em;
  height: 2.8em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9em;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  margin-bottom: 1em;
}

.contact-mini-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.45em;
}

.contact-mini-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 75em) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56.25em) {
  .contact-section {
    padding: 1em 0 4.5em;
  }

  .contact-form-card,
  .main-info-card {
    padding: 1.5em;
  }

  .form-grid,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-btn {
    width: 100%;
  }
}

@media (max-width: 30em) {
  .main-info-card h3 {
    font-size: 1.5rem;
  }

  .contact-form-heading h2 {
    font-size: 1.65rem;
  }
}

/*REFERENCE CSS*/
/* REFERENCES HERO */
.references-hero {
  padding-top: 8em;
  padding-bottom: 2.5em;
}

/* REFERENCES SECTION */
.references-section {
  padding: 2em 0 4.5em;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4em;
}

.reference-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.6em;
  padding: 1.7em;
  box-shadow: 0 1.1em 2.6em rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: translateY(-0.35em);
  box-shadow: 0 1.6em 3em rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
}

.featured-reference {
  border: 0.09375em solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 1.5em 3em rgba(37, 99, 235, 0.08);
}

/* IMAGE */
.reference-image {
  position: relative;
  width: 100%;
  height: 14.5em;
  border-radius: 1.2em;
  overflow: hidden;
  margin-bottom: 1.2em;
  background: #e2e8f0;
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reference-card:hover .reference-image img {
  transform: scale(1.06);
}

.reference-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 55%,
    rgba(15, 23, 42, 0.16)
  );
  pointer-events: none;
}

.reference-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(0.35em);
  -webkit-backdrop-filter: blur(0.35em);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(0.5em);
  transition: all 0.35s ease;
  z-index: 2;
}

.reference-card:hover .reference-overlay {
  opacity: 1;
  transform: translateY(0);
}

.reference-image-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.reference-top {
  display: flex;
  align-items: center;
  gap: 0.6em;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.reference-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 0.9em;
  border-radius: 999em;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.reference-tag.light {
  background: rgba(6, 182, 212, 0.10);
  color: #0891b2;
}

.reference-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.55em;
}

.reference-card p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.25em;
}

.reference-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1.5em;
}

.reference-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.reference-meta i {
  color: var(--primary);
}

.reference-actions {
  margin-top: auto;
}

.reference-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.95em 1.3em;
  border-radius: 999em;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-weight: 800;
  transition: all 0.35s ease;
}

.reference-btn:hover {
  transform: translateY(-0.12em);
  background: rgba(37, 99, 235, 0.12);
}

.reference-btn.primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #ffffff;
  box-shadow: 0 1em 2.2em rgba(37, 99, 235, 0.22);
}

.reference-btn.primary:hover {
  box-shadow: 0 1.2em 2.6em rgba(37, 99, 235, 0.28);
}

/* REFERENCE STATS */
.references-stats-section {
  padding: 0 0 6em;
}

.references-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
}

.references-stat-card {
  background: rgba(255, 255, 255, 0.78);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.5em;
  text-align: center;
  box-shadow: 0 1em 2em rgba(15, 23, 42, 0.04);
}

.references-stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35em;
  color: var(--text);
}

.references-stat-card span {
  color: var(--text-light);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 75em) {
  .references-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56.25em) {
  .references-section {
    padding: 1em 0 4em;
  }

  .references-stats-section {
    padding-bottom: 4.5em;
  }

  .references-stats-grid {
    grid-template-columns: 1fr;
  }

  .reference-card {
    padding: 1.4em;
  }

  .reference-image {
    height: 13em;
  }
}

@media (max-width: 30em) {
  .reference-card h3 {
    font-size: 1.25rem;
  }

  .reference-meta {
    flex-direction: column;
    gap: 0.7em;
  }

  .reference-btn {
    width: 100%;
  }

  .reference-image {
    height: 11.5em;
  }
}

/*O NAS CSS*/
/* ABOUT HERO */
.about-hero {
  padding-top: 8em;
  padding-bottom: 2.5em;
}

/* ABOUT INTRO */
.about-intro-section {
  padding: 2em 0 6em;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2em;
  align-items: center;
}

.about-intro-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
  letter-spacing: -0.03em;
}

.about-intro-content p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2em;
  max-width: 40em;
}

.about-highlights {
  display: grid;
  gap: 0.9em;
  margin-top: 1.6em;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-weight: 700;
  color: var(--text);
}

.about-highlight i {
  color: var(--primary);
}

/* INTRO CARD */
.about-intro-card {
  display: flex;
  justify-content: center;
}

.about-intro-card-inner {
  width: 100%;
  max-width: 31em;
  padding: 2em;
  border-radius: 1.8em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 1.8em 4em rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.about-intro-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 40%);
  pointer-events: none;
}

.about-intro-card-inner > * {
  position: relative;
  z-index: 1;
}

.about-intro-card-inner h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

.about-intro-card-inner p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.about-mini-stats {
  display: grid;
  gap: 0.9em;
}

.about-mini-stats div {
  background: rgba(255, 255, 255, 0.16);
  border: 0.0625em solid rgba(255, 255, 255, 0.18);
  border-radius: 1em;
  padding: 0.9em 1em;
}

.about-mini-stats strong {
  display: block;
  margin-bottom: 0.2em;
}

.about-mini-stats span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

/* VALUES */
.about-values-section {
  padding: 0 0 6em;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3em;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.8);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.6em;
  box-shadow: 0 1em 2.2em rgba(15, 23, 42, 0.05);
}

.about-value-icon {
  width: 3em;
  height: 3em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  margin-bottom: 1em;
}

.about-value-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55em;
}

.about-value-card p {
  color: var(--text-light);
  line-height: 1.75;
}

/* WHY */
.about-why-section {
  padding: 0 0 6em;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2em;
  align-items: center;
}

.about-why-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
  letter-spacing: -0.03em;
}

.about-why-left p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.5em;
  max-width: 40em;
}

.about-why-list {
  display: grid;
  gap: 1em;
}

.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 1.1em 1.2em;
  background: rgba(255, 255, 255, 0.75);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.1em;
  box-shadow: 0 0.8em 2em rgba(15, 23, 42, 0.04);
}

.about-why-item i {
  width: 2em;
  height: 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.about-why-item strong {
  display: block;
  margin-bottom: 0.2em;
}

.about-why-item span {
  color: var(--text-light);
  line-height: 1.65;
}

.about-quote-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.8em;
  padding: 2em;
  box-shadow: 0 1.2em 2.8em rgba(15, 23, 42, 0.05);
}

.about-quote-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8em;
}

.about-quote-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.1em;
}

.about-quote-card strong {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* STATS */
.about-stats-section {
  padding: 0 0 6em;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.78);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.5em;
  text-align: center;
  box-shadow: 0 1em 2em rgba(15, 23, 42, 0.04);
}

.about-stat-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.35em;
  color: var(--text);
}

.about-stat-card span {
  color: var(--text-light);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 75em) {
  .about-intro-grid,
  .about-why-grid,
  .about-values-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56.25em) {
  .about-intro-section,
  .about-values-section,
  .about-why-section,
  .about-stats-section {
    padding-bottom: 4.5em;
  }

  .about-intro-card-inner,
  .about-quote-card,
  .about-value-card {
    padding: 1.5em;
  }
}

@media (max-width: 30em) {
  .about-intro-content h2,
  .about-why-left h2 {
    font-size: 1.9rem;
  }

  .about-intro-card-inner h3 {
    font-size: 1.45rem;
  }

  .about-quote-card p {
    font-size: 1rem;
  }
}

/* STORITVE CSS */
/* SERVICES PAGE HERO */
.services-page-hero {
  padding-top: 8em;
  padding-bottom: 2.5em;
}

/* MAIN SERVICES */
.services-page-section {
  padding: 2em 0 6em;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
}

.services-page-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.5em;
  padding: 1.7em;
  box-shadow: 0 1em 2.4em rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-page-card:hover {
  transform: translateY(-0.35em);
  box-shadow: 0 1.6em 3em rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
}

.services-page-icon {
  width: 3.2em;
  height: 3.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.services-page-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.55em;
}

.services-page-card p {
  color: var(--text-light);
  line-height: 1.75;
}

/* INCLUDED */
.services-included-section {
  padding: 0 0 6em;
}

.services-included-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2em;
  align-items: center;
}

.services-included-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
  letter-spacing: -0.03em;
}

.services-included-content p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.5em;
  max-width: 40em;
}

.services-included-list {
  display: grid;
  gap: 0.9em;
}

.services-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  color: var(--text);
  font-weight: 700;
}

.services-included-item i {
  color: var(--primary);
  margin-top: 0.2em;
}

/* INCLUDED CARD */
.services-included-card {
  display: flex;
  justify-content: center;
}

.services-included-card-inner {
  width: 100%;
  max-width: 31em;
  padding: 2em;
  border-radius: 1.8em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 1.8em 4em rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.services-included-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 40%);
  pointer-events: none;
}

.services-included-card-inner > * {
  position: relative;
  z-index: 1;
}

.services-included-card-inner h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

.services-included-card-inner p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.services-included-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}

.services-included-points div {
  padding: 0.8em 1em;
  border-radius: 999em;
  background: rgba(255, 255, 255, 0.18);
  border: 0.0625em solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.92rem;
}

/* PROCESS */
.services-process-section {
  padding: 0 0 6em;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2em;
}

.services-process-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.6em;
  box-shadow: 0 1em 2em rgba(15, 23, 42, 0.04);
}

.services-process-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}

.services-process-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.6em;
}

.services-process-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* FOR WHO */
.services-for-section {
  padding: 0 0 6em;
}

.services-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2em;
}

.services-for-card {
  background: rgba(255, 255, 255, 0.8);
  border: 0.0625em solid rgba(15, 23, 42, 0.06);
  border-radius: 1.4em;
  padding: 1.6em;
  box-shadow: 0 1em 2em rgba(15, 23, 42, 0.04);
  text-align: center;
}

.services-for-card i {
  width: 3em;
  height: 3em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  margin-bottom: 1em;
}

.services-for-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45em;
}

.services-for-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 75em) {
  .services-page-grid,
  .services-process-grid,
  .services-for-grid,
  .services-included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56.25em) {
  .services-page-section,
  .services-included-section,
  .services-process-section,
  .services-for-section {
    padding-bottom: 4.5em;
  }

  .services-page-card,
  .services-process-card,
  .services-for-card,
  .services-included-card-inner {
    padding: 1.5em;
  }
}

@media (max-width: 30em) {
  .services-included-content h2 {
    font-size: 1.9rem;
  }

  .services-included-card-inner h3 {
    font-size: 1.45rem;
  }
}

/* ZASEBNOST IN POGOJI CSS */
/* LEGAL PAGES */
.legal-hero
{
  padding-top: 8em;
}

.legal-section {
  padding: 2em 0 6em;
}

.legal-container h2 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.3rem;
}

.legal-container p {
  color: var(--text-light);
  line-height: 1.8;
}


/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(2.2em);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* DELAY VARIACIJE (bolj premium, malo daljše) */
.fade-delay-1 { transition-delay: 0.26s; }
.fade-delay-2 { transition-delay: 0.26s; }
.fade-delay-3 { transition-delay: 0.26s; }
.fade-delay-4 { transition-delay: 0.26s; }

/* MICRO ANIMATIONS */
.service-card,
.process-card,
.why-item,
.stat-box,
.references-stat-card,
.about-stat-card,
.services-page-card,
.services-for-card,
.pricing-card,
.contact-mini-card,
.reference-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover,
.process-card:hover,
.why-item:hover,
.stat-box:hover,
.references-stat-card:hover,
.about-stat-card:hover,
.services-page-card:hover,
.services-for-card:hover,
.contact-mini-card:hover {
  transform: translateY(-0.4em);
}

.hero-btn,
.cta-btn,
.reference-btn,
.pricing-btn,
.form-submit-btn {
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn:hover,
.cta-btn:hover,
.reference-btn:hover,
.pricing-btn:hover,
.form-submit-btn:hover {
  filter: saturate(1.04);
}

.nav a,
.footer-links a,
.social-links a {
  transition:
    color 0.34s ease,
    transform 0.34s ease,
    opacity 0.34s ease;
}

.logo img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover img {
  transform: scale(1.03);
}

.service-icon,
.about-value-icon,
.services-page-icon,
.services-for-card i,
.pricing-info-card i,
.contact-mini-card i {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-icon,
.about-value-card:hover .about-value-icon,
.services-page-card:hover .services-page-icon,
.services-for-card:hover i,
.pricing-info-card:hover i,
.contact-mini-card:hover i {
  transform: translateY(-0.2em) scale(1.045);
}

/* soft pulse na badge elementih */
.hero-badge,
.section-badge,
.pricing-label,
.reference-tag,
.mini-tag {
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge:hover,
.section-badge:hover,
.pricing-label:hover,
.reference-tag:hover,
.mini-tag:hover {
  transform: translateY(-0.08em);
}

/* PARALLAX READY */
.hero-bg,
.cta-box,
.why-card-inner,
.about-intro-card-inner,
.services-included-card-inner {
  will-change: transform;
}

/* LOADER */
.site-loader {
  position: fixed;
  inset: 0;
  background: rgba(248, 251, 255, 0.96);
  backdrop-filter: blur(0.4em);
  -webkit-backdrop-filter: blur(0.4em);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
}

.loader-logo-wrap {
  animation: loaderFloat 2s ease-in-out infinite;
}

.loader-logo {
  width: 10em;
  max-width: 42vw;
  height: auto;
}

.loader-line {
  width: 7em;
  height: 0.22em;
  border-radius: 999em;
  background: rgba(37, 99, 235, 0.12);
  overflow: hidden;
  position: relative;
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999em;
  animation: loaderRun 1.55s ease-in-out infinite;
}

/* REFERENCE CARD REVEAL */
.reveal-card {
  opacity: 0;
  transform: translateY(1em) scale(0.985);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes loaderRun {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(240%);
  }
}

@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.25em);
  }
}

@media (max-width: 30em) {
  .header-inner,
  .hero-container,
  .section-container,
  .footer-container,
  .footer-bottom,
  .legal-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-process-section
  {
    padding-top: 5em;
  }

  .odmikwhy
  {
    margin-top: -5em;
  }

  .odmikcta
  {
    padding-bottom: 10em;
  }

  .odmikctastoritve
  {
    margin-top: -7em;
    margin-bottom: 8em;
  }
}


/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 1.25em;
  right: 1.25em;
  bottom: 1.25em;
  z-index: 1200;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(1.2em);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  width: min(100%, 62em);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4em;
  padding: 1.2em 1.25em;
  border-radius: 1.4em;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(1em);
  -webkit-backdrop-filter: blur(1em);
  border: 0.0625em solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1.2em 3em rgba(15, 23, 42, 0.12);
}

.cookie-banner-text {
  min-width: 0;
}

.cookie-banner-text h3 {
  font-size: 1rem;
  margin-bottom: 0.35em;
  color: var(--text);
}

.cookie-banner-text p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 42em;
}

.cookie-banner-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.cookie-banner-text a:hover {
  color: var(--primary-hover);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 999em;
  padding: 0.9em 1.25em;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.cookie-btn:hover {
  transform: translateY(-0.08em);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #ffffff;
  box-shadow: 0 0.9em 2em rgba(37, 99, 235, 0.22);
}

.cookie-btn-primary:hover {
  box-shadow: 0 1.1em 2.3em rgba(37, 99, 235, 0.28);
}

.cookie-btn-secondary {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border: 0.0625em solid rgba(37, 99, 235, 0.12);
}

.cookie-btn-secondary:hover {
  background: rgba(37, 99, 235, 0.12);
}

@media (max-width: 56.25em) {
  .cookie-banner {
    left: 0.9em;
    right: 0.9em;
    bottom: 0.9em;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1em;
    gap: 1em;
    border-radius: 1.2em;
  }

  .cookie-banner-text p {
    max-width: 100%;
    font-size: 0.93rem;
  }

  .cookie-banner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 30em) {
  .cookie-banner {
    left: 0.7em;
    right: 0.7em;
    bottom: 0.7em;
  }

  .cookie-banner-inner {
    padding: 1em;
    border-radius: 1.05em;
  }

  .cookie-banner-text h3 {
    font-size: 0.98rem;
  }

  .cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    padding: 0.9em 1.1em;
    font-size: 0.9rem;
  }
}