:root {
  --navy: #07172c;
  --ink: #10243d;
  --blue: #195780;
  --orange: #ff6534;
  --orange-dark: #d94c24;
  --mint: #5dd6a7;
  --cream: #f8faf7;
  --muted: rgba(16, 36, 61, .7);
  --line: rgba(16, 36, 61, .12);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 22px 60px rgba(6, 18, 35, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.notice {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 9px 18px;
  color: white;
  background: var(--orange);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: white;
  background: rgba(7, 23, 44, .92);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.logo {
  width: 214px;
  min-width: 180px;
  padding: 8px 0;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a {
  opacity: .76;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  opacity: 1;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang,
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: white;
  font-weight: 850;
}

.icon-button {
  display: none;
}

.cta,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  border: 0;
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 35px rgba(255, 101, 52, .25);
}

.cta:hover {
  background: var(--orange-dark);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, .28);
  color: white;
  background: rgba(255, 255, 255, .04);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, .98), rgba(7, 23, 44, .82) 48%, rgba(7, 23, 44, .34)),
    url("webresenje-hero-slika.png") center / cover;
}

.hero-inner {
  max-width: 1180px;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 44px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(93, 214, 167, .12);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  margin: 28px 0 20px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .95;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 23, 44, .7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel strong {
  display: block;
  color: var(--mint);
  font-size: 44px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.section {
  padding: clamp(62px, 9vw, 108px) clamp(20px, 5vw, 72px);
}

.section.alt {
  background: white;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .54fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

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

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 45px rgba(16, 36, 61, .08);
}

.package.support {
  min-height: auto;
  margin-top: 16px;
  color: white;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-color: rgba(255, 255, 255, .16);
}

.package.support .price {
  color: var(--mint);
}

.package.support p,
.package.support .feature-list li {
  color: rgba(255, 255, 255, .78);
}

.package.featured {
  color: white;
  background: var(--navy);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 30px 90px rgba(7, 23, 44, .26);
}

.badge {
  align-self: flex-start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: white;
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.package h3 {
  margin: 24px 0 12px;
  color: inherit;
  font-size: 25px;
}

.price {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.featured .price {
  color: var(--mint);
}

.price small {
  display: block;
  margin-top: 9px;
  color: currentColor;
  font-size: 13px;
  font-weight: 750;
  opacity: .72;
}

.package p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.featured p {
  color: rgba(255, 255, 255, .72);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(16, 36, 61, .74);
  line-height: 1.45;
}

.featured .feature-list li {
  color: rgba(255, 255, 255, .78);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
}

.package .cta,
.package .secondary-dark {
  margin-top: auto;
}

.secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  background: white;
}

.featured .secondary-dark {
  color: white;
  border-color: rgba(255, 255, 255, .24);
  background: transparent;
}

.compare {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.compare div {
  min-height: 92px;
  padding: 18px;
  background: white;
}

.compare strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.compare span {
  color: var(--muted);
  line-height: 1.45;
}

.contact-section {
  padding: clamp(62px, 9vw, 108px) clamp(20px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, .97), rgba(25, 87, 128, .9)),
    url("webresenje-hero-slika.png") center / cover;
}

.contact-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  margin: 0 auto;
}

.contact-section h2 {
  margin: 12px 0 18px;
  color: white;
  font-size: clamp(34px, 5vw, 60px);
}

.contact-section .section-copy {
  color: rgba(255, 255, 255, .76);
}

.selected-package {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 26px;
  padding: 0 14px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 23, 44, .74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 12px 13px;
  color: white;
  background: rgba(255, 255, 255, .08);
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--mint);
}

.field input[readonly] {
  color: var(--mint);
  font-weight: 850;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

.final-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 5vw, 62px) clamp(20px, 5vw, 72px);
  color: white;
  background: linear-gradient(90deg, rgba(7, 23, 44, .98), rgba(25, 87, 128, .9));
}

.final-band h2 {
  margin: 0;
  color: white;
  font-size: clamp(31px, 5vw, 54px);
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .icon-button {
    display: grid;
  }

  .hero-inner,
  .section-head,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .package-grid.two {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .notice {
    font-size: 12px;
  }

  .nav {
    min-height: 68px;
    padding: 12px 18px;
  }

  .logo {
    width: 176px;
    min-width: 150px;
  }

  .actions .cta,
  .lang {
    display: none;
  }

  h1 {
    font-size: clamp(43px, 14vw, 70px);
  }

  .compare,
  .form-grid,
  .final-band {
    grid-template-columns: 1fr;
  }

  .final-band .cta {
    width: 100%;
  }
}
