:root{
  /* POZADINE */
  --bg:#eef9fb;            /* vrlo svijetla tirkizna */
  --bg2:#e6f6f8;           /* blaga alt pozadina (umjesto pune #7ecad6) */
  --card:#ffffff;          /* kartice */

  /* TEKST */
 --text:#062a2c; /* jako tamni tirkiz (kontrast) */
  --muted:#083b3e;         /* sekundarni tekst */

  /* LINIJE */
  --line:rgba(8,59,61,.15);

  /* AKCENTI */
  --accent:#1fa2a6;        /* PRIMARY */
  --accent-soft:#4d93b4;   /* SOFT tirkiz */
  --accent2:#d4af37;       /* zlato – premium */

  /* UI helpers */
  --shadow:0 6px 18px rgba(0,0,0,.06);
  --shadow-strong:0 18px 40px rgba(0,0,0,.12);
}

/* Base */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Nav (LIGHT, usklađeno s appom) */
.nav{
  position: sticky;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(31,162,166,.92),
    rgba(31,162,166,.86)
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.35);
  z-index: 50;
}

.nav-inner{display:flex;align-items:center;justify-content:space-between;height:64px;gap:16px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800}
.logo{font-size:20px}
.brand-name{letter-spacing:.2px}
.nav-links{display:flex;gap:16px;opacity:.95}
.nav-links a{color:var(--muted)}
.nav-links a:hover{color:var(--text)}
.nav-cta{display:flex;gap:10px}

/* Buttons */
.btn{
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  font-weight:700;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.btn.primary{
 display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #fad451, #f2b82f); /* Darker golden gradient */
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    
}



.btn.primary:hover{
 background: linear-gradient(135deg, #fad451, #f2b82f); /* Reverse darker gradient on hover for more noticeability */
    transform: scale(1.05); /* Slight zoom effect */
}

.btn.primary:active{
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(217,164,65,.45),
    inset 0 2px 4px rgba(0,0,0,.18);
}


.btn.secondary{
  background: rgba(31,162,166,.10);
  color: var(--text);
}

.btn.secondary:hover{
  background: rgba(31,162,166,.14);
}

.btn.ghost{
  background:transparent;
  color:var(--text);
}

.btn:disabled{opacity:.6;cursor:not-allowed;transform:none;box-shadow:none}

.btn:focus-visible{
  outline:3px solid rgba(31,162,166,.25);
  outline-offset:2px;
}

/* Hero */
.hero{
  padding:28px 0 28px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(126,202,214,.45),
      rgba(238,249,251,1)
    );
}

.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:start}
.pill{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.55);
  margin:0 0 14px
}

h1{font-size:44px;line-height:1.05;margin:0 0 12px}
.grad{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.sub{color:var(--muted);font-size:18px;line-height:1.55;margin:0 0 18px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap}

/* Trust chips */
.trust{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.trust-item{
  border:1px solid var(--line);
  border-radius:12px;
  padding:8px 10px;
  color:var(--muted);
  background:rgba(31,162,166,.08);
}

/* Store badges */
.store-badges{display:flex;gap:10px;margin-top:18px;flex-wrap:wrap}
.badge{
  border:1px dashed rgba(8,59,61,.25);
  border-radius:14px;
  padding:10px 12px;
  color:var(--muted);
  background:rgba(255,255,255,.55);
}
.badge[aria-disabled="true"]{pointer-events:none;opacity:.7}

/* Right hero card (phone mock) */
.hero-card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
}

.phone{
  border-radius:26px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(31,162,166,.08), rgba(255,255,255,1));
  padding:14px;
}

.screen{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--card)
}
.screen-top{display:flex;gap:6px;padding:10px;border-bottom:1px solid var(--line)}
.dot{width:10px;height:10px;border-radius:999px;background:rgba(8,59,61,.18)}
.screen-body{padding:14px}
.mock-title{font-weight:900;margin:8px 0 8px}
.mock-list{margin:0 0 10px;padding-left:16px;color:var(--muted)}
.mock-list li{margin:6px 0}
.micro{color:var(--muted);font-size:12.5px;line-height:1.4;margin:10px 0 0}

/* Sections */
.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(126,202,214,.35), rgba(255,255,255,1));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section h2{font-size:30px;margin:0 0 10px}
.section-sub{color:var(--muted);margin:0 0 22px;max-width:760px;line-height:1.55}

/* Grids */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

/* Cards */
.card{
  border-radius:18px;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.5}

/* Quota strip */
.quota-strip{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.quota{
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 12px;
  background:rgba(255,255,255,.7);
  display:flex;
  gap:10px;
  align-items:baseline
}
.quota strong{font-size:18px}
.quota span{color:var(--muted)}
.quota.note{color:var(--muted)}

/* Pricing */
.pricing{display:grid;grid-template-columns:1fr 1.15fr;gap:14px}
.price-card{
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--card);
  padding:18px;
  position:relative;
  box-shadow: var(--shadow);
}
.price-card.featured{
  background:
    linear-gradient(
      180deg,
      rgba(31,162,166,.10),
      rgba(212,175,55,.10)
    );
  border: 2px solid rgba(212,175,55,.45);
  box-shadow: var(--shadow-strong);
}

.badge-top{
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.14);
  padding:6px 10px;
  border-radius:999px;
  color:#6b4f00;
  font-size:12px;
  font-weight:800;
}

.price{font-size:34px;font-weight:900;margin:10px 0}
.price-card ul{margin:0 0 16px;padding-left:18px;color:var(--muted)}
.price-card li{margin:8px 0}

/* Lead form */
.lead{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.lead input{
  flex:1;
  min-width:240px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  background:rgba(255,255,255,.7);
  color:var(--text);
  outline:none
}
.lead input::placeholder{color:rgba(63,127,133,.7)}

/* FAQ */
.faq details{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
  background:rgba(255,255,255,.75);
  margin:10px 0
}
.faq summary{cursor:pointer;font-weight:800}
.faq p{color:var(--muted);line-height:1.55;margin:10px 0 0}

/* Footer */
.footer{margin-top:26px;padding-top:18px;border-top:1px solid var(--line)}
.footer-inner{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;color:var(--muted)}
.footer-links{display:flex;gap:12px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}

.legal-note{color:var(--muted);margin-top:14px;font-size:13px}

/* Buy box */
.buybox{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:10px}
.buybox input{
   width:100%;
  min-width:0;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background:rgba(255,255,255,.7);
  color:var(--text);
  outline:none
}
.buybox input::placeholder{color:rgba(63,127,133,.7)}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;gap:18px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  h1{font-size:38px}
}
/* Hero image card */
.hero-media-card{
  padding: 14px;
}

.hero-media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  background: #fff;
}

.hero-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* soft overlay to match brand */
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.18)),
    linear-gradient(135deg, rgba(31,162,166,.18), rgba(212,175,55,.08));
  pointer-events:none;
}

.hero-media-overlay{
  position:absolute;
  left: 12px;
  bottom: 12px;
  display:flex;
  gap: 8px;
  z-index: 2;
}

.hero-tag{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.55);
  color: var(--text);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  backdrop-filter: blur(6px);
}

.hero-tag.premium{
  background: rgba(212,175,55,.22);
  border: 1px solid rgba(212,175,55,.45);
  color: #6b4f00;
}

/* panel under image */
.hero-panel{
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  padding: 14px;
}

.panel-title{
  font-weight: 900;
  margin: 8px 0 8px;
}

.panel-list{
  margin: 0 0 8px;
  padding-left: 16px;
  color: var(--muted);
}

.panel-list li{
  margin: 6px 0;
}
.nav .brand,
.nav .brand-name,
.nav .logo{
  color:#ffffff;
}

.nav-links a{
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.nav-links a:hover{
  color:#ffffff;
}
.nav .btn.secondary{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color:#ffffff;
}

.nav .btn.secondary:hover{
  background: rgba(255,255,255,.28);
}

.nav{
  border-bottom: 2px solid rgba(212,175,55,.35);
}
/* Center hero text */
.hero-copy{
  text-align:center;
  max-width: 720px;
  margin: 0 auto;
}

/* Center CTA + chips + badges */
.hero-copy .cta-row,
.hero-copy .trust,
.hero-copy .store-badges{
  justify-content:center;
}

/* Make pill centered */
.hero-copy .pill{
  margin-left:auto;
  margin-right:auto;
}

/* Slightly different style for tagline */
.hero-tagline{
  margin-top: 4px;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--text);
  opacity: .92;
}

/* On desktop: stack hero columns so centered copy looks intentional */
@media (min-width: 901px){
  .hero-grid{
    grid-template-columns: 1fr;  /* hero postaje jedna kolona */
  }
  .hero-media-card{
    max-width: 820px;
    margin: 18px auto 0;
  }
}

.logo{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
 overflow:hidden;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}


.nav-links a{
  font-size:14px;
  opacity:.9;
}

.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none; /* prikazuje se samo kad treba */
}

.cookie-card{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 14px 14px;
  backdrop-filter: blur(10px);
}

.cookie-text p{
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.cookie-text a{
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-settings{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cookie-row{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  color: var(--text);
  font-size: 14px;
}

.cookie-row input{
  margin-top: 3px;
}

.status-banner {
  background: #f1f5f9;
  border: 1px solid #d0d7de;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.status-banner.success {
  background: #e6f9f0;
  border-color: #10b981;
}

.status-banner.warning {
  background: #fff8e1;
  border-color: #f59e0b;
}

.status-chip {
  background: #e6f4ff;
  border: 1px solid #3b82f6;
  color: #1e40af;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
}

.password-field {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
}

.password-field input {
  width: 100%;
  flex: none;          /* 🔥 ovo je ključno */
  min-width: 0;        /* 🔥 sprječava rastezanje */
  padding-right: 50px;   /* prostor za eye */
  box-sizing: border-box;
}

.password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  opacity: 1;
}

}
/* Mock slider (hero) */
.mock-slider{
  position:relative;
  width:100%;
  max-width:420px;
  margin: 0 auto;
}

.mock-viewport{
  position:relative;
  border-radius: 28px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 22px 55px rgba(0,0,0,.20), 0 6px 18px rgba(0,0,0,.12);
}

.mock-track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}

.mock-slide{
  min-width:100%;
}

.mock-slide img{
  display:block;
  width:100%;
  height:auto;
}

.mock-caption{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  color:#fff;

  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.mock-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mock-nav.prev{ left:10px; }
.mock-nav.next{ right:10px; }

.mock-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top:12px;
}

.mock-dots .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background: rgba(0,0,0,.18);
  cursor:pointer;
}

.mock-dots .dot.is-active{
  background: rgba(31,162,166,.9);
  transform: scale(1.15);
}

.mock-chips{
  margin-top: 12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}

.mock-chips .mini-chip{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  white-space: nowrap;
}

/* On very small screens, hide arrows (dots remain) */
@media (max-width: 380px){
  .mock-nav{ display:none; }
}

/* Desktop hero: 2 kolone + poravnanje uz mock slider */
@media (min-width: 901px){
  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 52px;
  }

  /* Tekst lijevo na desktopu */
  .hero-copy{
    text-align: left;
    max-width: none;
    margin: 0;
  }
  .hero-copy .cta-row,
  .hero-copy .trust,
  .hero-copy .store-badges{
    justify-content: flex-start;
  }
  .hero-copy .pill{
    margin-left: 0;
    margin-right: 0;
  }

  /* Desni stupac (kartica) normalno */
  .hero-media-card{
    max-width: none;
    margin: 0;
  }

  /* Slider veći na desktopu */
  .mock-slider{
    max-width: 520px;
    margin: 0 0 0 auto;
  }
}

/* ===== Desktop hero FIX: 2 kolone (tekst lijevo, slider desno) ===== */
@media (min-width: 901px){
  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 56px;
  }

  /* Tekst više nije centriran na desktopu */
  .hero-copy{
    text-align: left;
    max-width: none;
    margin: 0;
  }
  .hero-copy .cta-row,
  .hero-copy .trust,
  .hero-copy .store-badges{
    justify-content: flex-start;
  }
  .hero-copy .pill{
    margin-left: 0;
    margin-right: 0;
  }

  /* Desni blok (card) ne centriraj/limitiraj */
  .hero-media-card{
    max-width: none !important;
    margin: 0 !important;
  }

  /* Slider veći i “prislonjen” desno */
  .mock-slider{
    max-width: 520px;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 901px){
  .hero-panel{ display: none; }
}

/* FORCE 2-column hero on desktop (override everything above) */
@media (min-width: 901px){
  .hero-grid{
    display: grid !important;
    grid-template-columns: 1.05fr .95fr !important;
    align-items: center !important;
    gap: 56px !important;
  }

  /* Lijevi dio: tekst */
  .hero-copy{
    text-align: left !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .hero-copy .cta-row,
  .hero-copy .trust,
  .hero-copy .store-badges{
    justify-content: flex-start !important;
  }
  .hero-copy .pill{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Desni dio: slider card */
  .hero-media-card{
    max-width: none !important;
    margin: 0 !important;
  }

  .mock-slider{
    max-width: 520px;
    margin-left: auto;
    margin-right: 0;
  }
}

/* ================================
   Stripe-ish clean SaaS overrides
   Zalijepi na kraj style.css
================================ */

/* 1) Tokens: čišća pozadina + jači kontrast */
:root{
  --bg:#f6fbfc;
  --bg2:#ffffff;

  --card:#ffffff;

  --text:#071c1d;
  --muted:#3a5a5c;

  --line:rgba(7,28,29,.12);

  --accent:#1fa2a6;
  --accent2:#d4af37;

  --shadow:0 10px 24px rgba(7,28,29,.06);
  --shadow-strong:0 22px 60px rgba(7,28,29,.12);
}

/* 2) Global: malo “finija” tipografija i razmaci */
body{
  background: var(--bg);
  color: var(--text);
}

.container{max-width:1120px}

h1{
  letter-spacing:-.02em;
}
.section h2{
  letter-spacing:-.01em;
}

/* 3) Nav: manje “plavo pranje”, više premium header */


/* 4) Hero: suptilan gradient, više bijelog */
.hero{
  background: linear-gradient(180deg, rgba(31,162,166,.10), rgba(246,251,252,1));
  padding: 40px 0 34px;
}

/* 5) Sekcije: alt manje obojan */
.section.alt{
  background: linear-gradient(180deg, rgba(31,162,166,.06), rgba(255,255,255,1));
}

/* 6) Cards: čiste bijele, suptilan border + shadow */
.card,
.price-card,
.hero-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.price-card.featured{
  background:#fff;
  border: 1px solid rgba(212,175,55,.55);
  box-shadow: var(--shadow-strong);
}

/* 7) Pills / chips: bez mliječne plave */
.pill,
.trust-item,
.badge,
.quota{
  background:#fff;
  border:1px solid var(--line);
  color: var(--muted);
}

/* 8) CTA: Stripe-ish button feel (teal) + gold premium */
.btn{
  border-radius: 14px;
  border:1px solid var(--line);
  box-shadow: none;
}

.btn.primary{
  background: linear-gradient(135deg, #f7d86b, #f2b82f);
  color:#1d1400;
  border: 1px solid rgba(212,175,55,.55);
}
.btn.primary:hover{transform: translateY(-1px)}
.btn.primary:active{transform: translateY(0)}

.btn.secondary{
  background: rgba(31,162,166,.10);
  border:1px solid rgba(31,162,166,.22);
}
.btn.secondary:hover{background: rgba(31,162,166,.14)}

/* 9) Slider: premium “device” card */
.mock-slider{max-width:520px}
.mock-viewport{
  border-radius: 24px;
  border:1px solid var(--line);
  box-shadow: var(--shadow-strong);
}
.mock-dots .dot{background: rgba(7,28,29,.20)}
.mock-dots .dot.is-active{background: rgba(31,162,166,.95)}

/* Caption: još čitljiviji, kao “label” */
.mock-caption{
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.18);
}

/* 10) Pricing / buy box: inputi bjelji, jači kontrast */
.buybox input,
.lead input{
  background:#fff;
  border:1px solid rgba(7,28,29,.14);
  box-shadow: 0 6px 14px rgba(7,28,29,.05);
}
.buybox input:focus,
.lead input:focus{
  outline: 3px solid rgba(31,162,166,.18);
  border-color: rgba(31,162,166,.35);
}

/* 11) Desktop hero: 2 kolone (ako se ikad opet “vrati” na 1) */
@media (min-width: 901px){
  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 56px;
  }
  .hero-copy{
    text-align:left;
    max-width:none;
    margin:0;
  }
  .hero-copy .cta-row,
  .hero-copy .trust,
  .hero-copy .store-badges{
    justify-content:flex-start;
  }
  .hero-copy .pill{
    margin-left:0;
    margin-right:0;
  }
  .hero-media-card{
    max-width:none;
    margin:0;
  }
}

/* 12) Mobile: ostavi centrirano (tvoje postojeće radi OK) */
@media (max-width: 900px){
  .hero-copy{ text-align:center; }
}
/* ===== Stripe-ish CLEAN + kontrast (override na kraj style.css) ===== */

:root{
  /* manje plavo u pozadini */
  --bg:#f7fbfc;
  --bg2:#ffffff;

  /* jači kontrast teksta */
  --text:#061a1b;
  --muted:#2f4f52;

  --line: rgba(6,26,27,.12);

  --shadow: 0 10px 24px rgba(6,26,27,.06);
  --shadow-strong: 0 22px 60px rgba(6,26,27,.12);
}

/* općenito */
html,body{ background: var(--bg); }
.sub, .section-sub{ color: var(--muted); line-height: 1.65; }
.micro{ color: rgba(47,79,82,.95); }

/* NAV: manje saturacije */


/* HERO: suptilan gradient (ne “plavi ekran”) */
.hero{
  background: linear-gradient(180deg, rgba(31,162,166,.10), rgba(247,251,252,1));
}

/* ALT sekcije: jako lagano */
.section.alt{
  background: linear-gradient(180deg, rgba(31,162,166,.05), rgba(255,255,255,1));
}

/* kartice: čisto bijelo */
.card,
.price-card,
.hero-card{
  background:#fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

/* featured (Premium): bijelo + gold border, bez “wash” */
.price-card.featured{
  background:#fff !important;
  border: 2px solid rgba(212,175,55,.55) !important;
  box-shadow: var(--shadow-strong) !important;
}

/* chipovi/pillovi: bijeli (ovo najviše skida “plavo”) */
.pill,
.trust-item,
.badge,
.quota{
  background:#fff !important;
  border: 1px solid var(--line) !important;
}

/* sekundarni gumb više “Stripe outline” */
.btn.secondary{
  background: rgba(31,162,166,.08) !important;
  border: 1px solid rgba(31,162,166,.22) !important;
}
.btn.secondary:hover{ background: rgba(31,162,166,.12) !important; }

/* inputi: čisti bijeli + fokus halo */
.buybox input,
.lead input{
  background:#fff !important;
  border: 1px solid rgba(6,26,27,.14) !important;
  box-shadow: 0 6px 14px rgba(6,26,27,.05) !important;
}
.buybox input:focus,
.lead input:focus{
  outline: 3px solid rgba(31,162,166,.18);
  border-color: rgba(31,162,166,.35) !important;
}

/* slider: premium card */
.mock-viewport{
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-strong) !important;
}

/* caption čitljiv */
.mock-caption{
  background: rgba(0,0,0,.66) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}
/* ================================
   Travel Premium vibe (warm neutral)
   Zalijepi na kraj style.css
================================ */

/* 1) Topla neutralna paleta + jači kontrast */
:root{
  --bg:#fbfaf7;        /* topla ivory pozadina */
  --bg2:#ffffff;

  --card:#ffffff;

  --text:#0b1f20;      /* tamno, luksuzno */
  --muted:#3b5b5d;

  --line:rgba(11,31,32,.12);

  --shadow:0 10px 24px rgba(11,31,32,.06);
  --shadow-strong:0 22px 60px rgba(11,31,32,.12);
}

/* 2) Global background */
html, body{ background: var(--bg); color: var(--text); }

/* 3) HERO: neka bude kao ostale (toplo + bijelo), bez plavog washa */
.hero{
  background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 70%);
  border-bottom: 1px solid var(--line);
}

/* 4) ALT sekcije: toplo, vrlo lagano */
.section.alt{
  background: linear-gradient(180deg, rgba(212,175,55,.06), rgba(255,255,255,1));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

/* 5) Nav: manje “neon teal”, više premium teal */

.nav-links a{ color: rgba(255,255,255,.86); }
.nav-links a:hover{ color:#fff; }

/* 6) Kartice: čisto bijele */
.card,
.price-card,
.hero-card{
  background:#fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

/* 7) Premium featured: bijelo + gold border (luksuz) */
.price-card.featured{
  background:#fff !important;
  border: 2px solid rgba(212,175,55,.55) !important;
  box-shadow: var(--shadow-strong) !important;
}

/* 8) Chips/pillovi: bijeli (skida “plavo” najviše) */
.pill,
.trust-item,
.badge,
.quota{
  background:#fff !important;
  border: 1px solid var(--line) !important;
  color: var(--muted) !important;
}

/* 9) Text tuning */
.sub, .section-sub{ color: var(--muted); line-height: 1.65; }
.micro{ color: rgba(59,91,93,.95); }

/* 10) Buttons: zadrži gold premium primarni, teal kao secondary */
.btn.secondary{
  background: rgba(31,162,166,.08) !important;
  border:1px solid rgba(31,162,166,.22) !important;
}
.btn.secondary:hover{ background: rgba(31,162,166,.12) !important; }

/* 11) Inputs: čisti bijeli + fokus halo */
.buybox input,
.lead input{
  background:#fff !important;
  border:1px solid rgba(11,31,32,.14) !important;
  box-shadow: 0 6px 14px rgba(11,31,32,.05) !important;
}
.buybox input:focus,
.lead input:focus{
  outline: 3px solid rgba(212,175,55,.16);
  border-color: rgba(212,175,55,.38) !important;
}

/* 12) Slider: premium card */
.mock-viewport{
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-strong) !important;
}

/* Caption: čitljiv, premium */
.mock-caption{
  background: rgba(0,0,0,.62) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}

/* ===== Travel premium: pill + chips + premium badge (override) ===== */

/* HERO pill (HR • SRB • …): warm + gold, da se vidi */
.hero .pill{
  background: #f4efe6; /* topla bež */
  border: 1px solid rgba(212,175,55,.45); /* gold border */
  color: #5a4526;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}

/* Ostali pillovi (ako ih ima): malo suptilniji */
.pill{
  background: #f6f3ec;
  border: 1px solid rgba(0,0,0,.12);
  color: #3b5b5d;
  font-weight: 700;
}

/* Trust chips: čisti bijeli, ali vidljivi */
.trust-item{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  color: #2f4f52 !important;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

/* Store badges: neutralni, elegantni */
.badge{
  background: #ffffff !important;
  border: 1px dashed rgba(0,0,0,.18) !important;
  box-shadow: 0 6px 14px rgba(0,0,0,.04);
}

/* Premium badge (Najbolje za putovanje): pravi gold “premium” */
.badge-top{
  border: 1px solid rgba(212,175,55,.60) !important;
  background: linear-gradient(135deg, rgba(247,216,107,.55), rgba(242,184,47,.35)) !important;
  color: #4a3500 !important;
  font-weight: 900 !important;
  box-shadow: 0 10px 22px rgba(212,175,55,.18);
}

.mock-chips .mini-chip{
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}
.mock-chips .mini-chip:first-child{
  border-color: rgba(212,175,55,.55) !important;
  background: rgba(247,216,107,.22) !important;
  color: #4a3500 !important;
  font-weight: 800;
}

/* ===== Desktop hero balans (manji mockup, jača lijeva kolona) ===== */
@media (min-width: 901px){

  /* 1) Daj više prostora tekstu */
  .hero-grid{
    grid-template-columns: 1.25fr .75fr !important; /* više lijevo, manje desno */
    align-items: center !important;
    gap: 56px !important;
  }

  /* 2) Ograniči širinu desne kartice (da ne “naraste”) */
  .hero-media-card{
    max-width: 440px !important;
    justify-self: end;
  }

  /* 3) Ograniči slider unutar kartice */
  .mock-slider{
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  /* 4) Malo smanji vizualne dodatke ispod slidera na desktopu */
  .mock-chips{
    gap: 6px;
  }
  .mock-chips .mini-chip{
    font-size: 11.5px;
    padding: 6px 9px;
  }

  /* 5) Tekst: malo veći “headline” da drži ravnotežu */
  h1{ font-size: 48px; }
  .sub{ font-size: 18px; }
}
/* Mini trust block u free kartici */

.mini-trust{
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mini-trust-title{
  font-weight: 900;
  margin-bottom: 10px;
}

.mini-trust-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.mini-trust-list li{
  margin: 8px 0;
}

.mini-quote{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 650;
  color: var(--text);
}

.mini-quote span{
  display:block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}
.mini-quotes{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-quote{
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
  font-weight: 600;
  color: var(--text);
}

.mini-quote span{
  display:block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.mini-quote.soft{
  background: #f8f6f2; /* topla nijansa */
  border: 1px solid rgba(212,175,55,.35);
}