:root {
  --blue: #0b3d91;
  --blue2: #1f67d2;
  --dark: #07152f;
  --text: #1d2b3a;
  --muted: #667085;
  --soft: #eef6ff;
  --white: #ffffff;
  --orange: #f28c38;
  --green: #1ea672;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --bg: #0d0d0d;
  --surface: #161616;
  --surface2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0ede8;
  --muted: #888;
  --accent: #e85d26;
  --accent2: #f5a623;
  --green: #2ecc71;
  --bg: #f8f7f4;
  --surface: #ffffff;
  --border: #e5e1da;
  --ink: #18150f;
  --muted: #7c7469;
  --accent: #c94f1e;
  --accent-soft: #fdf0eb;
  --accent-border: rgba(201, 79, 30, 0.2);
  --green: #1a6b3a;
  --green-soft: #edf7f2;
  --warn-soft: #e7e0b9;
  --warn-border: rgba(202, 138, 4, 0.25);
  --black: #0c0b09;
  --white: #f2ede6;
  --warm: #1a1713;
  --border: rgba(242, 237, 230, 0.08);
  --orange: #d4551f;
  --orange2: #e8752a;
  --orange-glow: rgba(212, 85, 31, 0.15);
  --muted: rgba(242, 237, 230, 0.45);
  --font-display: "Cabinet Grotesk", sans-serif;
}

/*========= animacija između stranica  ===============*/
::view-transition-group(page-content) {
  animation-duration: 1s;
  animation-timing-function: ease;
}

::view-transition-old(page-content) {
  animation-name: slide-out;
}

::view-transition-new(page-content) {
  animation-name: slide-in;
}

@keyframes slide-out {
  to {
    translate: -100vw;
  }
}

@keyframes slide-in {
  from {
    translate: 100vw;
  }
}

/*========= animacija između stranica  ===============*/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "oswald", Helvetica, sans-serif;
  color: var(--white);
  background: white;
  min-height: 100vh;
  position: relative;
  view-transition-name: page-content;
}

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

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

/*==============
  ANIMACIJA ZA SCROLANJE
  ==============
 */

.animiraj {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.vidljivo {
  opacity: 1;
}

#rjesenja2 {
  margin-top: 1000px;
  justify-content: center;
  align-items: center;
}

/*  GDPR  (Zaštita osobnih podataka)  */

#rjesenja {
  margin-top: 200px;
  justify-content: center;
  align-items: center;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}
table {
  border: 1px solid black;
  width: 100%;
  font-size: 0.88rem;
}
th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 0.65rem 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid black;
}
td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: #ffffff;
  border: 1px solid black;
}
tr:nth-child(even) td {
  background: #b8b8b8;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.right-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  border: 1px solid black;
}
.right-card .icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.right-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.right-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  border: 1px solid black;
}
.contact-box p {
  margin: 0.25rem 0;
  font-size: 0.92rem;
}
.contact-box a {
  color: var(--accent);
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

/*  GDPR  (Zaštita osobnih podataka)  */

/*================ FAQ ================*/

#faq-one {
  margin-top: 500px;
  backdrop-filter: blur(27px);
}

#kolona {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
}

#kolona div {
  margin-bottom: 50px;
}

#scc {
  background-color: #95654a;
}

#scc p {
  color: black;
}

#faq-a {
  background-color: #95654a;
}

#faq-a p {
  color: black;
}

#faq-a a {
  color: rgba(95, 66, 14, 0.825);
  text-decoration: none;
}
#faq-a a:hover {
  text-decoration: underline;
}

.faq-cta {
  margin-top: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(212, 85, 31, 0.12),
    rgba(232, 117, 42, 0.06)
  );
  border: 1px solid rgba(212, 85, 31, 0.2);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}
.faq-cta-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.faq-cta-text p {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 8px 30px rgba(212, 85, 31, 0.35);
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
}

/*================ FAQ ================*/

/*================ O nama ================*/

#ona {
  margin-top: 800px;
  backdrop-filter: blur(27px);
  padding: 7rem 2rem;
  max-width: 1180px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.ona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ona-left h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.ona-left h2 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.ona-left p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.ona-left p:last-of-type {
  margin-bottom: 1.75rem;
}
.ona-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ona-value {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: rgba(242, 237, 230, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.ona-value:hover {
  background: rgba(212, 85, 31, 0.05);
  border-color: rgba(212, 85, 31, 0.2);
}
.ona-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--orange-glow);
  border: 1px solid rgba(212, 85, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 21px;
}
.ona-value-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}
.ona-value-text p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Right side — visual card */
.ona-right {
  position: relative;
}

.ona-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.ona-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 85, 31, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ona-card-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.ona-card-logo span {
  color: var(--orange);
}

.ona-card-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(242, 237, 230, 0.8);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--orange);
}

.ona-team {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ona-team-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.ona-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c44010);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.ona-team-info h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: -3px;
}
.ona-team-info span {
  font-size: 0.75rem;
  color: var(--muted);
}

.ona-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.ona-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(242, 237, 230, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}

/*================ O nama ================*/

/* Nacini placanja */

.route table {
  max-width: 1180px;
  width: 100%;
  border: none;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.badge-green {
  background: rgba(46, 204, 113, 0.12);
  color: var(--green);
}
.badge-orange {
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent2);
}
.badge-blue {
  background: rgba(52, 152, 219, 0.12);
  color: #3498db;
}
.badge-red {
  background: rgba(232, 93, 38, 0.12);
  color: var(--accent);
}

#cijena {
  max-width: 1180px;
  width: 100%;
}

/* Nacini placanja */

/* ── COOKIE  ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 700px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#banner {
  backdrop-filter: blur(15px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.banner-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.banner-text strong {
  color: #fff;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.2rem;
}
.banner-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-accept:hover {
  opacity: 0.85;
}
.btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-settings:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0.55rem 0.5rem;
  transition: color 0.2s;
}
.btn-decline:hover {
  color: rgba(255, 255, 255, 0.75);
}

#kol {
  margin-bottom: 50px;
}

#kol p {
  color: black;
}

.cookie-const {
  border: 1px solid #585858;
  border-radius: 10px;
  text-align: center;
  padding: 5px;
  background: #585858;
  width: 130px;
}

.cookie-const:hover {
  transition: 0.22s ease;
  transform: translateX(5px);
  text-align: center;
  background: #b93f0f;
  border-color: #b93f0f;
}

/* ── COOKIE TYPE CARDS ── */
.cookie-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1170px;
  margin: auto;
}

.ct-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.ct-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.ct-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.ct-emoji {
  font-size: 1.3rem;
}
.ct-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #737579;
}
.ct-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* toggle switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s;
  background: #d0c8c0;
}
.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
input:checked + .slider {
  background: var(--accent);
}
input:checked + .slider::before {
  transform: translateX(20px);
}
input:disabled + .slider {
  background: #b0a89e;
  cursor: not-allowed;
}

.ct-body {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  background: #7e6f60;
}
.ct-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* cookie list inside card */
.cookie-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.cookie-list th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid var(--border);
}
.cookie-list td {
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
  color: #3d3530;
  border-bottom: 1px solid var(--border);
}

/* card colors */
.ct-card.necessary {
  border-color: rgba(45, 122, 79, 0.25);
}
.ct-card.necessary .ct-header {
  background: var(--green-soft);
}
.ct-card.analytics {
  border-color: rgba(26, 95, 168, 0.2);
}
.ct-card.analytics .ct-header {
  background: var(--blue-soft);
}
.ct-card.marketing {
  border-color: rgba(176, 125, 26, 0.2);
}
.ct-card.marketing .ct-header {
  background: var(--yellow-soft);
}
.ct-card.prefs {
  border-color: rgba(201, 79, 30, 0.2);
}
.ct-card.prefs .ct-header {
  background: var(--accent-soft);
}

.required-badge {
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(45, 122, 79, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ── TABLE ── */
.table-wrap {
  overflow-x: auto;
}
table.main-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
table.main-table th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 0.7rem 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
table.main-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: #ffffff;
}
table.main-table tr:last-child td {
  border-bottom: none;
}
table.main-table tr:nth-child(even) td {
  background: #7e6f60;
}

/* ── HOW TO BLOCK ── */
.browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.browser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: 0.83rem;
}
.browser-card .b-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
  color: rgb(98, 98, 98);
}
.browser-card .b-path {
  color: rgb(98, 98, 98);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
}
.contact-card p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
.contact-card a {
  color: var(--accent);
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ── COOKIE ── */

/* ═══════════════════════════════════════════
       COOKIE CONSENT UI
    ═══════════════════════════════════════════ */

/* BANNER */
#ob-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 3rem);
  max-width: 720px;
  background: #1c1713;
  border: 1px solid #2d2924;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}
#ob-cookie-banner.ob-hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.ob-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.ob-banner-text {
  flex: 1;
}
.ob-banner-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5f2ee;
  margin-bottom: 0.25rem;
}
.ob-banner-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.ob-banner-text a {
  color: #c94f1e;
  text-decoration: none;
}
.ob-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.ob-btn-accept {
  background: #c94f1e;
  color: #fff;
  border: none;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.ob-btn-accept:hover {
  opacity: 0.85;
}
.ob-btn-settings {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.ob-btn-settings:hover {
  background: rgba(255, 255, 255, 0.14);
}
.ob-btn-decline {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  cursor: pointer;
  text-align: center;
  padding: 0.2rem;
  transition: color 0.15s;
}
.ob-btn-decline:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* MODAL */
#ob-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#ob-cookie-modal.ob-visible {
  opacity: 1;
  pointer-events: all;
}
.ob-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}
.ob-modal-box {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
#ob-cookie-modal.ob-visible .ob-modal-box {
  transform: translateY(0);
}

.ob-modal-head {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  z-index: 1;
}
.ob-modal-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: black;
}
.ob-modal-head p {
  font-size: 0.8rem;
  color: #7a6f65;
  margin-top: 0.25rem;
  line-height: 1.5;
}
.ob-modal-close {
  background: #f5f2ee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7a6f65;
  transition: background 0.15s;
}
.ob-modal-close:hover {
  background: #ede8e0;
}

.ob-modal-body {
  padding: 1rem 1.5rem;
}

/* Cookie category row */
.ob-cat-row {
  padding: 1rem 0;
  border-bottom: 1px solid #f0ece6;
}
.ob-cat-row:last-child {
  border-bottom: none;
}
.ob-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.ob-cat-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ob-cat-emoji {
  font-size: 1.1rem;
}
.ob-cat-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: black;
}
.ob-cat-desc {
  font-size: 0.8rem;
  color: #7a6f65;
  line-height: 1.5;
  padding-left: 1.7rem;
}

/* Toggle */
.ob-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.ob-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ob-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #ddd8d0;
  cursor: pointer;
  transition: background 0.25s;
}
.ob-toggle input:checked ~ .ob-toggle-track {
  background: #c94f1e;
}
.ob-toggle input:disabled ~ .ob-toggle-track {
  background: #c8bfb5;
  cursor: not-allowed;
}
.ob-toggle-thumb {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s;
  pointer-events: none;
}
.ob-toggle input:checked ~ .ob-toggle-thumb {
  transform: translateX(20px);
}
.ob-toggle-required {
  font-size: 0.68rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Modal footer */
.ob-modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #f0ece6;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-radius: 0 0 18px 18px;
}
.ob-modal-save {
  flex: 1;
  background: #c94f1e;
  color: #fff;
  border: none;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 9px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ob-modal-save:hover {
  opacity: 0.85;
}
.ob-modal-accept-all {
  flex: 1;
  background: #1c1713;
  color: #fff;
  border: none;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 9px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ob-modal-accept-all:hover {
  opacity: 0.8;
}

/* TOAST */
#ob-toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: #1c1713;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  border-left: 3px solid #c94f1e;
  z-index: 11000;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  max-width: 300px;
}
#ob-toast.ob-show {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
       COOKIE CONSENT UI
    ═══════════════════════════════════════════ */

/* ── Opci Uvjeti ── */

.doc-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.meta-item {
  font-size: 0.78rem;
  color: grey;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.meta-item strong {
  color: var(--ink);
}

#meta {
  margin-bottom: 50px;
}

#meta .meta-item {
  margin: auto;
}

/* ── DEFINITIONS ── */
.def-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  align-items: center;
}
.def-item:last-child {
  border-bottom: none;
}
.def-term {
  font-weight: 600;
  color: var(--ink);
}
.def-desc {
  color: #ffffff;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin: 1rem 0;
  font-size: 0.87rem;
  color: #6b2209;
}
.highlight-box strong {
  color: var(--accent);
}

.green-box {
  background: var(--green-soft);
  border: 1px solid rgba(26, 107, 58, 0.2);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin: 1rem 0;
  font-size: 0.87rem;
  color: #1a4a2a;
}
.green-box strong {
  color: var(--green);
}

/* ── Opci Uvjeti ── */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: white;
}

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  z-index: -1;
}

.glow.one {
  width: 260px;
  height: 260px;
  background: #a7ddff;
  left: -80px;
  top: 220px;
}

.glow.two {
  width: 330px;
  height: 330px;
  background: #f28c38;
  right: -120px;
  top: 600px;
}

.glow.three {
  width: 280px;
  height: 280px;
  background: #c9dcff;
  left: 18%;
  bottom: -120px;
}

.video-banner {
  position: absolute;
  width: 100%;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  margin-top: 130px;
}

.video-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

#video {
  position: fixed;
}

.logos {
  text-shadow: 5px 5px 6px rgb(0, 50, 126);
}

.banner-logo-box {
  width: min(520px, 86vw);
  min-height: 180px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  text-align: center;
  padding: 28px;
}

.banner-logo-img {
  max-width: 190px;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

.banner-logo-box strong {
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 25px;
}

.banner-logo-box span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.topbar {
  position: relative;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 0;
}

.nav {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
}

#app{
  color: #ffff;
  padding: 0.8rem;
  background: #cd8b56;
  margin-left: 70px;
  margin-right: -140px;
  border-radius: 20px;
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  font-size: 20px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 61, 145, 0.25);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #344054;
  font-weight: 700;
  font-size: 14px;
  transition: 0.22s ease;
}

.links {
  transition: 0.22s ease;
}

.links:hover {
  transform: translateY(-4px);
}

#nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(11, 61, 145, 0.22);
}

.menu-button {
  display: none;
  border: 0;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: rgba(255, 255, 255, 0.96);
  z-index: 100;
  transform: translateX(105%);
  transition: 0.25s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 3px solid rgba(11, 61, 145, 0.1);
  font-weight: 900;
  color: var(--dark);
}

.fa-regular,
.fa-solid {
  margin-right: 7px;
}

.mini-footer a {
  font-size: 16px;
  margin-top: 0px;
  color: rgb(0, 0, 0);
}

.face {
  display: flex;
  width: 100%;
  border-color: black;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.face i {
  font-size: 25px;
  margin: 10px;
}

.tm {
  text-align: center;
  display: block;
  margin-top: 30px;
  color: black;
}

.close-menu {
  border: 0;
  background: var(--soft);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 18px;
  cursor: pointer;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 700px;
  padding: 76px 22px 54px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  overflow-x: clip;
}

.hero.single {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-size: 60px;
  line-height: 1.02;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff, #a7ddff, #ffd3aa);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 30px;
  max-width: 700px;
}

.hero.single p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero.single .hero-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 16px;
  font-weight: 900;
  transition: 0.22s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, #ffffff, #dcecff);
  color: #0b3d91;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.btn.secondary {
  background: linear-gradient(135deg, #ffffff, #dcecff);
  color: #0b3d91;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.btn.dark,
.cta .btn.secondary {
  background: linear-gradient(135deg, #0b3d91, #1f67d2);
  color: #fff;
  border-color: rgba(11, 61, 145, 0.18);
  box-shadow: 0 16px 34px rgba(11, 61, 145, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.hero.single .trust-row {
  justify-content: center;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.showcase {
  position: relative;
  min-height: 520px;
}

.browser-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.browser-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: linear-gradient(180deg, #fff, #f1f6ff);
  border-bottom: 1px solid rgba(11, 61, 145, 0.08);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d0d5dd;
}

.dot:nth-child(1) {
  background: #ff6b6b;
}

.dot:nth-child(2) {
  background: #ffc34d;
}

.dot:nth-child(3) {
  background: #37c978;
}

.browser-body {
  padding: 22px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.site-preview-hero {
  border-radius: 22px;
  background: linear-gradient(135deg, #07152f, #0b3d91 58%, #793515);
  padding: 28px;
  text-align: left;
  color: #fff;
  margin-bottom: 14px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.site-preview-hero small {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
}

.site-preview-hero b {
  font-size: 26px;
  line-height: 1.1;
  display: block;
  margin-top: 8px;
  max-width: 360px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-card {
  background: #fff;
  border: 1px solid rgba(11, 61, 145, 0.08);
  padding: 16px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(7, 21, 47, 0.06);
}

.preview-card b {
  display: block;
  color: var(--dark);
  margin-bottom: 6px;
}

.preview-card span {
  color: rgb(98, 98, 98);
  font-size: 13px;
  line-height: 1.45;
}

.preview-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--soft);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(11, 61, 145, 0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
}

.float-card.one {
  left: -10px;
  bottom: 44px;
  max-width: 220px;
}

.float-card.two {
  right: -6px;
  top: 48px;
  max-width: 240px;
}

.float-card b {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}

.float-card span {
  font-size: 13px;
  color: rgb(98, 98, 98);
  line-height: 1.45;
}

.showcase {
  max-width: 1180px;
  margin: auto;
  padding: 54px 22px;
  backdrop-filter: blur(10px);
  border-radius: 50px;
}

.showcase h2 {
  text-align: left;
}

.glows {
  color: var(--warn-soft);
  text-shadow: 0 0 5px #66708f;
}

.glowm {
  color: var(--orange);
}

.section {
  max-width: 1180px;
  margin: 300px auto;
  padding: 54px 22px;
  backdrop-filter: blur(10px);
  border-radius: 50px;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.service-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.info-card,
.news-card,
.price-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  transition: 0.22s ease;
}

.service-card:hover,
.info-card:hover,
.news-card:hover,
.price-card:hover {
  transform: translateY(-10px);
}

.big-icon {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef6ff, #fff4e8);
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3,
.info-card h3,
.news-card h3,
.price-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 21px;
}

.service-card p,
.info-card p,
.news-card p,
.price-card p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.info-card ul,
.price-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-card li,
.price-card li {
  font-weight: 800;
  color: #344054;
}

.info-card li:before,
.price-card li:before {
  content: "✓";
  margin-right: 9px;
  color: #08764f;
}

.split-strip {
  background: rgba(7, 21, 47, 0.32);
  margin: auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: min(5em, 2%);
}

.split-strip:before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(255, 255, 255, 0.13),
      transparent 26%
    ),
    radial-gradient(circle at 80% 10%, rgba(242, 140, 56, 0.2), transparent 24%);
}

.split-inner {
  position: relative;
  max-width: 1180px;
  margin: auto;
  padding: min(5em, 8%);
}

.split-inner h2 {
  font-size: 42px;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
}

.split-inner p {
  max-width: 760px;
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.route {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: min(4em, 2%);
  text-align: left;
  backdrop-filter: blur(12px);
}

.route .tag,
.pill {
  display: inline-flex;
  padding: min(1em, 5%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.route h3 {
  font-size: 26px;
  margin: 0 0 10px;
}

.route p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  margin: 0 0 20px;
}

.route ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.route li {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.route li:before {
  content: "✓";
  margin-right: 9px;
  color: #a7ddff;
}

.proof {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.proof-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  text-align: left;
}

.proof-box h2 {
  font-size: 36px;
  margin: 0 0 12px;
  color: var(--dark);
  letter-spacing: -0.04em;
}

.proof-box p {
  color: #667085;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #344054;
  font-weight: 800;
  margin-top: 20px;
}

.check i {
  font-style: normal;
  background: #e9fff5;
  color: #08764f;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.cta {
  max-width: 980px;
  margin: 40px auto 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 38px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: 40px;
  margin: 0 0 12px;
  color: var(--dark);
  letter-spacing: -0.045em;
}

.cta p {
  margin: 0 auto 24px;
  max-width: 680px;
  color: #667085;
  line-height: 1.65;
  font-size: 18px;
}

.price-card.featured {
  outline: 3px solid rgba(167, 221, 255, 0.85);
  transform: translateY(-8px);
}

.price {
  font-size: 28px;
  font-weight: 1000;
  color: var(--blue);
  margin: 16px 0 4px;
}

.small-note {
  font-size: 13px;
  color: #667085;
  font-weight: 800;
}

.news-card .label {
  display: inline-flex;
  background: #eef6ff;
  color: #0b3d91;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  margin-bottom: 14px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
}

.demo-tabs {
  display: grid;
  gap: 10px;
}

.demo-tab {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 18px;
  padding: 15px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.demo-tab.active {
  background: #fff;
  color: var(--blue);
}

.demo-panel {
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.demo-panel img {
  border-radius: 18px;
  margin-top: 16px;
  border: 1px solid rgba(11, 61, 145, 0.1);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-card h2 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 32px;
}

.contact-card p {
  color: #667085;
  line-height: 1.7;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 61, 145, 0.08);
  font-weight: 900;
  color: #344054;
}

.contact-line:last-child {
  border-bottom: 0;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(11, 61, 145, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  cursor: pointer;
  border: 0;
}

/* Povratak na pocetak gumb*/
#myBtn {
  position: fixed;
  bottom: 10px;
  float: right;
  right: 18.5%;
  left: 92.25%;
  max-width: 50px;
  width: 100%;
  font-size: 22px;
  border-color: rgba(85, 85, 85, 0.2);
  background-color: rgb(50, 101, 131);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

#myBtn:hover {
  background-color: #be4324;
  transform: translateY(-5px);
}

/* Footer */

.container {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: disc;
}
.footer {
  padding: 32px 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  backdrop-filter: blur(10px);
  border-radius: 50px;
}
.footer-col {
  text-align: left;
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #183d66;
  height: 2px;
  box-sizing: border-box;
  width: 100px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.tmob {
  margin-top: 120px;
}

.blog-intro-strip {
  max-width: 980px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}
.blog-card-meta {
  display: none !important;
}
.news-card .read-link {
  margin-top: 18px;
  display: inline-flex;
}
.blog-seo-note {
  max-width: 940px;
  margin: 34px auto 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  color: #374151;
  line-height: 1.7;
}
.blog-seo-note strong {
  color: #111827;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* Fontovi - stilovi teksta*/

@font-face {
  font-family: "amble";
  src: url("nc_assets/fonts/amble_regular_macroman/Amble-Regular-webfont.woff");
}

@font-face {
  font-family: "oswald";
  src: url("nc_assets/fonts/Oswald/Oswald-VariableFont_wght.ttf");
}

@font-face {
  font-family: "fahim";
  src: url("nc_assets/fonts/fahim-sans/FahimSans-Regular.otf");
}

@font-face {
  font-family: "aego";
  src: url("nc_assets/fonts/aeogo-pxltd-serif/AeogoPxltdSerif-Regular.ttf");
}

@font-face {
  font-family: "bedafutr";
  src: url("nc_assets/fonts/bedafutr/Bedafutr-Regular.otf");
}

@font-face {
  font-family: "Quadrillion";
  src: url("nc_assets/fonts/quadrillion/Quadrillion\ Sb.otf");
}

@media (max-width: 1300px){
  
  #app{
    text-align: center;
    margin: auto;
    margin-top: 10px;
    padding: 0.6rem;
  }

}


@media (max-width: 920px) {
  .video-banner {
    min-height: 340px;
  }

  .banner-logo-box strong {
    font-size: 31px;
  }

  .banner-logo-img {
    max-width: 160px;
  }

  .nav-links {
    display: none;
  }

  .links {
    transition: none;
  }

  .card-grid.blog-grid{grid-template-columns:1fr 1fr}

  .menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 61, 145, 0.12);
    box-shadow: 0 10px 24px rgba(7, 21, 47, 0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .showcase {
    min-height: auto;
  }

  .float-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 12px 0 0;
    max-width: none !important;
  }

  .browser-card {
    transform: none;
  }

  .service-grid,
  .card-grid,
  .route-grid,
  .proof,
  .contact-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head h2,
  .split-inner h2,
  .cta h2 {
    font-size: 31px;
  }

  .proof-box h2,
  .contact-card h2 {
    font-size: 28px;
  }

  .split-strip {
    margin: 20px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .price-card.featured {
    transform: none;
  }

  .demo-tab {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.86);
  }

  .ona-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  #app{
    text-align: center;
    width: 170px;
    margin: auto;
    margin-top: 20px;
    padding: 0.6rem;
  }
}

@media (max-width: 768px) {
  #myBtn {
    left: 85%;
  }

  .card-grid.blog-grid{grid-template-columns:1fr}

  .ona-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 430px) {
  #myBtn {
    left: 82%;
  }

  .article {
    max-width: 370px;
    width: 100%;
  }

  .route-grid {
    display: inline;
  }

  .route {
    margin-top: 50px;
  }

  .ona-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 375px) {
  #myBtn {
    left: 79%;
  }

  .route-grid {
    display: inline;
  }

  .route {
    margin-top: 50px;
  }

  .cookie-list {
    display: inline;
  }

  .ona-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
