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

:root {
  --t950: #061514;
  --t900: #0A2E2B;
  --t800: #0D8B7A;
  --t700: #0AA090;
  --t400: #1DC8B0;
  --t200: #7ADDD4;
  --t100: #B8EEE9;
  --t50: #F0FAF9;
  --off: #F5FAF9;
  --white: #FFFFFF;
  --dark: #0A2E2B;
  --mid: #2D5A54;
  --light: #7ABFB8;
  --rsm: 6px;
  --rmd: 10px;
  --rlg: 16px;
  --rxl: 24px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

.lp {
  color: var(--t800);
  text-decoration: underline;
  text-underline-offset: 3px
}

.lp:hover {
  color: var(--t700)
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 21, 20, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 200, 176, .1)
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #4A9E94;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, background .15s;
  text-decoration: none
}

.nav-link:hover,
.nav-item.open>.nav-link {
  color: #D4F2ED;
  background: rgba(29, 200, 176, .06)
}

.nav-arrow {
  width: 14px;
  height: 14px;
  stroke: #4A9E94;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s, stroke .15s;
  flex-shrink: 0
}

.nav-item.open .nav-arrow {
  transform: rotate(180deg);
  stroke: #D4F2ED
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0A2E2B;
  border: 0.5px solid rgba(29, 200, 176, .15);
  border-radius: 10px;
  padding: 6px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200
}

.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13px;
  color: #7ABFB8;
  transition: background .15s, color .15s;
  text-decoration: none;
  white-space: nowrap
}

.drop-item:hover {
  background: rgba(29, 200, 176, .1);
  color: #D4F2ED
}

.drop-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0D8B7A;
  flex-shrink: 0
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--t800);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--rsm);
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none
}

.nav-cta:hover {
  background: var(--t700)
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round
}

/* HERO */
.hero {
  background: var(--t950);
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 64px);
  align-items: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: 30% center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 21, 20, .92) 0%, rgba(6, 21, 20, .75) 55%, rgba(6, 21, 20, .25) 100%);
  z-index: 1;
}

.hero-left {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--t800);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--t400)
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  color: #E8F8F6;
  line-height: 1.13;
  letter-spacing: -.03em;
  margin-bottom: 18px
}

.hero h1 em {
  font-style: normal;
  color: var(--t400)
}

.hero-sub {
  font-size: 15px;
  color: #E8F8F6;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 32px
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--t800);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--rmd);
  margin-bottom: 14px;
  transition: background .15s;
  letter-spacing: -.01em
}

.hero-phone:hover {
  background: var(--t700)
}

.hero-phone svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0
}

.hero-phone-sub {
  font-size: 12px;
  color: #E8F8F6;
  margin-bottom: 32px
}

.hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0
}

.hbadge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #E8F8F6;
  padding: 6px 20px;
  border-right: 0.5px solid rgba(29, 200, 176, .2)
}

.hbadge:first-child {
  padding-left: 0
}

.hbadge:last-child {
  border-right: none
}

.hbadge-dot {
  display: none
}


/* STATS */
.stats {
  background: var(--t900);
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(29, 200, 176, .08)
}

.stat-item:last-child {
  border-right: none
}

.stat-n {
  font-size: 38px;
  font-weight: 600;
  color: var(--t400);
  letter-spacing: -.04em;
  line-height: 1
}

.stat-l {
  font-size: 11px;
  color: #4A9E94;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4
}

/* WAVE PRELAZI */


/* SEKCIJE */
.sw-off {
  background: var(--off)
}

.sw-white {
  background: var(--white)
}

.sw-dark {
  background: var(--t950)
}

.sw-900 {
  background: var(--t900)
}

.section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto
}

.s-eye {
  font-size: 11px;
  font-weight: 500;
  color: var(--t800);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px
}

.s-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 12px
}

.s-title-light {
  color: #E8F8F6
}

.s-sub {
  font-size: 15px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px
}

.s-sub-light {
  color: #4A9E94
}

.s-sub a.lp {
  font-size: 15px
}

/* KAKO FUNKCIONIŠE */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.how-card {
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rlg);
  padding: 26px;
  transition: border-color .2s, transform .2s
}

.how-card:hover {
  border-color: var(--t800);
  transform: translateY(-2px)
}

.how-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.how-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0A2E2B;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.how-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px
}

.how-card p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.65
}

/* PRIMENA */
.primena-tabs {
  width: 100%
}

.ptab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 28px
}

.ptab-btn {
  background: #F0FAF9;
  border: 0.5px solid #B8EEE9;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #4A9E94;
  cursor: pointer;
  transition: all .15s
}

.ptab-btn.active {
  background: #0D8B7A;
  border-color: #0D8B7A;
  color: #fff
}

.ptab-btn:hover:not(.active) {
  background: #D8F5EF;
  color: #0A2E2B
}

.ptab-content {}

.ptab-hidden {
  display: none
}

.primena-intro {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px
}

.sub-h {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 8px
}

.sub-intro {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px
}

.prob-list {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.prob-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--rmd);
  border: 0.5px solid transparent;
  transition: background .15s, border-color .15s
}

.prob-item:hover {
  background: var(--t50);
  border-color: var(--t100)
}

.prob-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.prob-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0A2E2B;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.prob-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px
}

.prob-text span {
  font-size: 13px;
  color: var(--mid)
}

.sectors-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sector-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 0.5px solid #D8EFEB;
  border-radius: var(--rmd);
  transition: border-color .15s, transform .15s;
  text-decoration: none
}

.sector-card:hover {
  border-color: var(--t800);
  transform: translateX(3px)
}

.sector-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sector-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0A2E2B;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sector-card strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  display: block;
  margin-bottom: 1px
}

.sector-card span {
  font-size: 12.5px;
  color: var(--mid)
}

.sarrow {
  margin-left: auto;
  color: #B8EEE9;
  font-size: 16px;
  flex-shrink: 0
}

/* O NAMA */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.about-img {
  background: var(--t50);
  border-radius: var(--rxl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--t100)
}

.about-img span {
  font-size: 13px;
  color: var(--light);
  text-align: center;
  padding: 20px;
  line-height: 1.6
}

.about-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px
}

.about-text p:last-child {
  margin-bottom: 0
}

.about-text strong {
  color: var(--dark);
  font-weight: 500
}

.stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px
}

.stat-mini {
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rmd);
  padding: 16px
}

.stat-mini-n {
  font-size: 26px;
  font-weight: 600;
  color: var(--t800);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px
}

.stat-mini-l {
  font-size: 11px;
  color: var(--mid);
  line-height: 1.4
}

.caps-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px
}

.caps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px
}

.cap-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rmd)
}

.cap-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cap-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0A2E2B;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.cap-item strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 5px
}

.cap-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65
}

.about-closing {
  margin-top: 10px;
  padding: 14px 18px;
  background: var(--t50);
  border: 0.5px solid var(--t100);
  border-radius: var(--rmd);
  font-size: 13.5px;
  color: var(--t900);
  line-height: 1.65
}

/* CENOVNIK */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.price-card {
  border: 0.5px solid rgba(29, 200, 176, .15);
  border-radius: var(--rlg);
  padding: 32px;
  background: var(--t900)
}

.price-card.feat {
  border-color: var(--t800);
  border-width: 1.5px
}

.feat-tag {
  display: inline-block;
  background: var(--t800);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px
}

.price-type {
  font-size: 15px;
  font-weight: 500;
  color: var(--t100);
  margin-bottom: 2px
}

.price-note {
  font-size: 12px;
  color: #4A9E94;
  margin-bottom: 16px
}

.price-amt {
  font-size: 48px;
  font-weight: 600;
  color: var(--t400);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px
}

.price-amt sup {
  font-size: 22px;
  font-weight: 500;
  vertical-align: super
}

.price-amt sub {
  font-size: 14px;
  font-weight: 400;
  color: #4A9E94
}

.price-coverage {
  font-size: 13px;
  color: #4A9E94;
  margin-top: 6px
}

.price-desc {
  font-size: 13px;
  color: #4A9E94;
  line-height: 1.65;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0.5px solid rgba(29, 200, 176, .1)
}

.disc-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--t900);
  border: 0.5px solid rgba(29, 200, 176, .15);
  border-radius: var(--rmd);
  padding: 18px 22px
}

.disc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--t100);
  line-height: 1.55
}

.disc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t800);
  flex-shrink: 0;
  margin-top: 6px
}

/* NACIN PLACANJA */
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.pay-box {
  background: var(--t900);
  border: 0.5px solid rgba(29, 200, 176, .15);
  border-radius: var(--rmd);
  padding: 24px
}

.pay-box h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--t100);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px
}

.pay-box h3 svg {
  width: 20px;
  height: 20px;
  stroke: #1DC8B0;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0
}

.pay-box p {
  font-size: 13.5px;
  color: #4A9E94;
  line-height: 1.7
}

.ins-badge {
  display: inline-block;
  background: rgba(13, 139, 122, .2);
  border: 0.5px solid rgba(29, 200, 176, .2);
  color: var(--t200);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px
}

/* LOKACIJE */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.loc-card {
  border: 0.5px solid var(--t100);
  border-radius: var(--rlg);
  padding: 28px;
  background: var(--white)
}

.loc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px
}

.loc-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.loc-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0A2E2B;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round
}

.loc-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px
}

.loc-addr {
  font-size: 12.5px;
  color: var(--mid)
}

.loc-card p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 14px
}

.loc-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--t800);
  text-decoration: underline;
  text-underline-offset: 3px
}

.loc-lnk:hover {
  color: var(--t700)
}

/* CTA */
.cta-section {
  padding: 80px 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto
}

.cta-eye {
  font-size: 11px;
  font-weight: 500;
  color: var(--t400);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #E8F8F6;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  line-height: 1.2
}

.cta-section p {
  font-size: 15px;
  color: #E8F8F6;
  margin-bottom: 36px;
  line-height: 1.8
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--t950);
  font-size: 20px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: var(--rmd);
  transition: background .15s, transform .15s;
  cursor: pointer
}

.cta-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--t800);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round
}

.cta-btn:hover {
  background: var(--t50);
  transform: scale(1.02)
}

.cta-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 16px
}

/* FOOTER */
.footer {
  background: var(--t950);
  padding: 56px 48px 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px
}

.footer-brand p {
  font-size: 13px;
  color: #2A7A72;
  line-height: 1.7;
  margin-top: 12px
}

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

.footer-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--t800);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-logo-mark svg {
  width: 15px;
  height: 15px
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  color: #2A7A72;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #609690;
  margin-bottom: 8px;
  transition: color .15s
}

.footer-col a:hover {
  color: #D4F2ED
}

.footer-contact {
  font-size: 13px;
  color: #609690;
  line-height: 2;
  margin-top: 4px
}

.footer-bot {
  border-top: 0.5px solid #0F3D38;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-bot span {
  font-size: 12px;
  color: #2d726c;
}


/* RESPONSIVE */


@media (min-width: 768px) {
  .section.how-pay{
    padding-top: 0px;
  }

  .about-hero{
    min-height:480px;
  }
}

@media (max-width: 768px) {

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

  .hero, .section{
    padding: 30px 20px;
  }

  .how-grid, .about-grid, .price-grid, .pay-grid, .loc-grid{
    grid-template-columns: 1fr;
  }

  .about-hero{
    min-height: 200px;
  }

  .about-wrap{
    padding: 50px 20px 10px;
  }

  .footer {
    padding: 40px 20px 20px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bot {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .cta-section {
    padding: 30px 20px
  }

  .cta-btn {
    font-size: 16px;
    padding: 14px 24px
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}