/* ═══════════════════════════════════════════════════════════════════
   LOBIT — Redizajn | Tamna tema, plavo-narančasti gradijenti
   ═══════════════════════════════════════════════════════════════════ */

:root{
  /* Primarne boje */
  --blue-500:#2B7FFF;
  --blue-400:#5A9BFF;
  --blue-300:#8FBAFF;
  --blue-600:#1E68DB;
  --orange:#F5A524;
  --orange-2:#FFB547;
  --orange-dark:#E08A00;

  /* Pozadine */
  --bg:       #0A0E2A;
  --bg-2:     #0D1338;
  --bg-3:     #151C4A;
  --card:     #121841;
  --card-2:   #1A2157;
  --line:     rgba(255,255,255,.08);
  --line-2:   rgba(255,255,255,.14);

  /* Tekst */
  --ink:      #FFFFFF;
  --ink-2:    #D4DAF0;
  --muted:    #8892B8;
  --silver:   #A6AEC8;

  /* Status */
  --success:  #52D693;
  --danger:   #FF6B8B;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container: 1200px;

  --shadow-md: 0 10px 30px -10px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.6);
  --shadow-orange: 0 10px 24px -10px rgba(245,165,36,.6);
  --shadow-blue:   0 10px 24px -10px rgba(43,127,255,.5);
}

*{margin:0; padding:0; box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--ink-2);
  background:var(--bg);
  font-size:15.5px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
.mono{font-family:ui-monospace,'SF Mono',Menlo,Consolas,monospace}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit}
ul{list-style:none}

.container{max-width:var(--container); margin:0 auto; padding:0 28px}

/* Starfield dekorativni pattern */
.stars{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.5) 0.6px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(138,180,255,.3) 0.8px, transparent 1.4px);
  background-size: 42px 42px, 160px 160px;
  background-position: 0 0, 20px 20px;
  opacity:.35;
  pointer-events:none;
  mask: radial-gradient(1200px 500px at 30% 20%, black 0%, transparent 80%);
  -webkit-mask: radial-gradient(1200px 500px at 30% 20%, black 0%, transparent 80%);
}

/* ═══════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════ */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(10,14,42,.72);
  backdrop-filter:saturate(1.4) blur(14px);
  -webkit-backdrop-filter:saturate(1.4) blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:22px;
  color:#fff;
  letter-spacing:-0.02em;
  text-decoration:none;
}
.nav-logo img{
  height:44px;
  width:138px;
  display:block;
  transition:transform .2s ease;
  object-fit:contain;
}
.nav-logo:hover img{transform:scale(1.03)}
.nav-logo span{color:var(--orange)}

.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
}
.nav-links a{
  color:var(--ink-2);
  font-size:14px;
  font-weight:500;
  position:relative;
  padding:6px 0;
  transition:color .15s;
}
.nav-links a:hover,.nav-links a.active{color:#fff}
.nav-links a.active::before{content:"+"; color:var(--orange); margin-right:6px; font-weight:700}
.nav-links a.active::after{content:"+"; color:var(--orange); margin-left:6px; font-weight:700}

.nav-cta{display:flex; align-items:center; gap:14px}

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border-radius:10px;
  border:1px solid var(--line-2);
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
}
.nav-toggle span{
  width:18px; height:2px;
  background:#fff;
  border-radius:2px;
  transition:.2s;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS — narančasti za važne CTA
   ═══════════════════════════════════════════════════════════════════ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:600;
  font-size:14px;
  padding:12px 22px;
  border-radius:999px;
  transition:transform .15s, background .15s, border-color .15s, box-shadow .15s;
  white-space:nowrap;
  line-height:1;
  cursor:pointer;
}
.btn-lg{padding:15px 28px; font-size:15px}
.btn-sm{padding:9px 16px; font-size:13px}
.btn-full{width:100%}

.btn-primary,
.btn-orange{
  background:var(--orange);
  color:#0A0E2A;
  box-shadow:var(--shadow-orange);
}
.btn-primary:hover,
.btn-orange:hover{
  background:var(--orange-2);
  transform:translateY(-2px);
  box-shadow:0 14px 30px -10px rgba(245,165,36,.7);
}

.btn-secondary,
.btn-blue{
  background:var(--blue-500);
  color:#fff;
  box-shadow:var(--shadow-blue);
}
.btn-secondary:hover,
.btn-blue:hover{
  background:var(--blue-600);
  transform:translateY(-2px);
}

.btn-outline{
  border:1.5px solid var(--blue-400);
  color:#fff;
  background:transparent;
}
.btn-outline:hover{
  background:var(--blue-500);
  border-color:var(--blue-500);
  transform:translateY(-2px);
}

.btn-white{
  background:#fff;
  color:var(--bg);
}
.btn-white:hover{
  background:var(--orange);
  color:var(--bg);
  transform:translateY(-2px);
}

.btn .arrow{display:inline-block; transition:transform .15s}
.btn:hover .arrow{transform:translateX(4px)}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero{
  position:relative;
  overflow:hidden;
  padding:60px 0 100px;
  background:
    radial-gradient(900px 500px at 88% 40%, rgba(91,63,200,.45), transparent 60%),
    radial-gradient(700px 450px at 12% 0%,  rgba(43,127,255,.22), transparent 60%),
    radial-gradient(500px 380px at 95% 90%, rgba(245,165,36,.15), transparent 60%),
    linear-gradient(180deg, #0A0E2A 0%, #0C1236 100%);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.5) 0.6px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(138,180,255,.3) 0.8px, transparent 1.4px);
  background-size: 42px 42px, 160px 160px;
  opacity:.3;
  pointer-events:none;
  mask:radial-gradient(1200px 500px at 30% 20%, black 0%, transparent 80%);
  -webkit-mask:radial-gradient(1200px 500px at 30% 20%, black 0%, transparent 80%);
}
.hero-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  position:relative;
  z-index:2;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  min-height:520px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font:600 12px ui-monospace,monospace;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  padding:8px 16px;
  border:1px solid rgba(245,165,36,.3);
  background:rgba(245,165,36,.08);
  border-radius:999px;
  margin-bottom:24px;
}

.hero h1{
  font-size:clamp(38px, 4.8vw, 62px);
  line-height:1.08;
  letter-spacing:-0.028em;
  font-weight:800;
  margin:0 0 22px;
  color:#fff;
  text-wrap:balance;
}
.hero h1 .highlight{
  position:relative;
  color:var(--orange);
  font-style:normal;
  display:inline-block;
}
.hero h1 .highlight::after{
  content:"";
  position:absolute;
  left:-2%; right:-2%;
  bottom:-10px;
  height:10px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M2 7 Q 30 1 60 5 T 118 4' stroke='%235A9BFF' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

.hero-subtitle{
  font-size:17px;
  color:var(--muted);
  max-width:540px;
  line-height:1.65;
  margin:0 0 36px;
  text-wrap:pretty;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:48px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, auto);
  gap:36px;
  padding-top:32px;
  border-top:1px solid var(--line);
}
.hero-stat-num{
  font-size:34px;
  font-weight:800;
  color:#fff;
  letter-spacing:-0.02em;
  line-height:1;
  margin-bottom:6px;
}
.hero-stats > div:nth-child(2) .hero-stat-num{color:var(--orange)}
.hero-stats > div:nth-child(3) .hero-stat-num{color:var(--blue-400)}
.hero-stat-label{
  font:500 12px ui-monospace,monospace;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--silver);
}

/* Hero visual kartica */
.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:480px;
}
.hero-visual::before{
  content:"";
  position:absolute;
  right:-40px; top:10%;
  width:220px; height:220px;
  border:1px dashed rgba(255,255,255,.14);
  border-radius:50%;
  pointer-events:none;
}
.hero-visual::after{
  content:"";
  position:absolute;
  right:20px; top:25%;
  width:140px; height:140px;
  border:1px dashed rgba(255,255,255,.1);
  border-radius:50%;
  pointer-events:none;
}
.hero-card{
  position:relative;
  background:linear-gradient(135deg, #141B4A 0%, #0E1440 100%);
  border:1px solid var(--line-2);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-lg);
  width:100%;
  max-width:420px;
  z-index:2;
}
.hero-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(400px 200px at 90% 0%, rgba(245,165,36,.18), transparent 60%),
    radial-gradient(400px 240px at 0% 100%, rgba(43,127,255,.22), transparent 60%);
  pointer-events:none;
  border-radius:var(--radius-lg);
}
.hero-card-title{
  position:relative;
  font:600 11px ui-monospace,monospace;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
}
.hero-card-title::before{content:"+ "; color:var(--orange)}
.hero-card-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  transition:transform .15s;
}
.hero-card-item:last-child{border-bottom:none}
.hero-card-item:hover{transform:translateX(4px)}
.hero-card-icon{
  width:42px; height:42px;
  border-radius:10px;
  background:rgba(43,127,255,.14);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
}
.hero-card-text{
  color:#fff;
  font-weight:600;
  font-size:15px;
  letter-spacing:-0.01em;
}

/* ═══════════════════════════════════════════════════════════════════
   GUARANTEE / TRUST BARS
   ═══════════════════════════════════════════════════════════════════ */
.guarantee-banner{
  background:linear-gradient(90deg, rgba(245,165,36,.16) 0%, rgba(245,165,36,.08) 50%, rgba(245,165,36,.16) 100%);
  border-top:1px solid rgba(245,165,36,.3);
  border-bottom:1px solid rgba(245,165,36,.3);
  padding:18px 0;
}
.guarantee-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
  color:var(--ink-2);
  font-weight:500;
  font-size:14.5px;
}
.guarantee-icon{
  font-size:22px;
  filter:drop-shadow(0 2px 8px rgba(245,165,36,.5));
}

.trust-bar{
  background:var(--bg-2);
  border-bottom:1px solid var(--line);
  padding:22px 0;
}
.trust-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13.5px;
  font-weight:500;
}
.trust-item .icon{font-size:18px}

/* ═══════════════════════════════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════════════════════════════ */
.section,
section.section{
  padding:100px 0;
  position:relative;
}
.section-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
}
.section-tag,
.sec-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font:600 12px ui-monospace,monospace;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  padding:7px 16px;
  border:1px solid rgba(245,165,36,.3);
  background:rgba(245,165,36,.08);
  border-radius:999px;
  margin-bottom:20px;
}
.section-tag::before,
.sec-eyebrow::before{content:"+"; color:var(--orange)}
.section-tag::after,
.sec-eyebrow::after{content:"+"; color:var(--orange)}

/* Plava varijanta section-tag-a (za balansiranje boja) */
.section-tag.blue,
.sec-eyebrow.blue{
  color:var(--blue-400);
  border-color:rgba(43,127,255,.32);
  background:rgba(43,127,255,.1);
}
.section-tag.blue::before,
.section-tag.blue::after,
.sec-eyebrow.blue::before,
.sec-eyebrow.blue::after{color:var(--blue-400)}

/* Highlight helpers za naslove — plava i narančasta */
.hl-blue{color:var(--blue-400)}
.hl-orange{color:var(--orange)}
.hl-gradient{
  background:linear-gradient(135deg, var(--blue-400) 0%, var(--orange) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

.section-header h2,
.section h2,
section h2{
  font-size:clamp(30px, 3.6vw, 46px);
  line-height:1.12;
  letter-spacing:-0.024em;
  font-weight:800;
  margin:0 0 18px;
  color:#fff;
  text-wrap:balance;
}
.section-header p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  margin:0 auto;
  max-width:620px;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  position:relative;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 30px;
  transition:background .2s, transform .2s, border-color .2s, box-shadow .2s;
  color:var(--ink-2);
  display:flex;
  flex-direction:column;
  gap:14px;
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--blue-500), var(--orange));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s;
}
.service-card:hover{
  background:var(--card-2);
  transform:translateY(-6px);
  border-color:var(--blue-500);
  box-shadow:var(--shadow-md);
}
/* Alternate orange hover accent za balansiranje boja */
.services-grid > .service-card:nth-child(3n+2):hover{
  border-color:var(--orange);
}
.services-grid > .service-card:nth-child(3n+2):hover .service-icon{
  background:var(--orange);
}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{
  width:52px; height:52px;
  border-radius:12px;
  background:rgba(43,127,255,.14);
  color:var(--blue-400);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:8px;
  transition:all .2s;
}
.service-card:hover .service-icon{
  background:var(--blue-500);
  color:#fff;
  transform:scale(1.05);
}
.service-card h3{
  font-size:20px;
  font-weight:700;
  color:#fff;
  letter-spacing:-0.015em;
  margin:0;
}
.service-card p{
  color:var(--muted);
  font-size:14.5px;
  line-height:1.6;
  margin:0;
  flex:1;
}
.service-price{
  font-size:22px;
  font-weight:800;
  color:var(--orange);
  letter-spacing:-0.02em;
  margin-top:8px;
}
.service-price span{
  font-size:13px;
  font-weight:500;
  color:var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.stats-section{
  padding:80px 0;
  background:
    radial-gradient(500px 250px at 15% 50%, rgba(43,127,255,.18), transparent 60%),
    radial-gradient(500px 250px at 85% 50%, rgba(245,165,36,.14), transparent 60%),
    var(--bg-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}
.stats-grid > div{padding:20px}
.stat-num{
  font-size:clamp(36px, 4vw, 54px);
  font-weight:800;
  letter-spacing:-0.028em;
  line-height:1;
  margin-bottom:10px;
  background:linear-gradient(135deg, #fff 0%, var(--blue-400) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.stats-grid > div:nth-child(2) .stat-num,
.stats-grid > div:nth-child(4) .stat-num{
  background:linear-gradient(135deg, #fff 0%, var(--orange) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.stat-label{
  font:500 12px ui-monospace,monospace;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--silver);
}

/* ═══════════════════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════════════════ */
.why-us-section{background:var(--bg)}
.why-us-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.why-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:background .2s, transform .2s, border-color .2s;
}
.why-card:hover{
  background:var(--card-2);
  transform:translateY(-4px);
  border-color:var(--orange);
}
.why-icon{
  width:54px; height:54px;
  border-radius:12px;
  background:rgba(245,165,36,.14);
  color:var(--orange);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:20px;
  transition:all .2s;
}
.why-card:hover .why-icon{
  background:var(--orange);
  color:var(--bg);
  transform:scale(1.05);
}
.why-card h3{
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
  letter-spacing:-0.015em;
}
.why-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.testimonial-card{
  background:linear-gradient(135deg, #141B4A 0%, #0E1440 100%);
  border:1px solid var(--line-2);
  border-radius:var(--radius);
  padding:30px;
  position:relative;
  transition:transform .2s, border-color .2s;
}
.testimonial-card:hover{
  transform:translateY(-4px);
  border-color:var(--blue-500);
}
.testimonial-stars{
  color:var(--orange);
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:18px;
}
.testimonial-text{
  color:var(--ink-2);
  font-size:15px;
  line-height:1.65;
  margin-bottom:24px;
  font-style:italic;
  font-weight:400;
}
.testimonial-author{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.author-avatar{
  width:44px; height:44px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--blue-500), var(--orange));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:15px;
  letter-spacing:-0.02em;
}
.author-name{
  color:#fff;
  font-weight:600;
  font-size:14.5px;
}
.author-role{
  color:var(--muted);
  font-size:12.5px;
  font-family:ui-monospace,monospace;
  letter-spacing:.04em;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact-section{
  background:
    radial-gradient(600px 400px at 10% 50%, rgba(43,127,255,.2), transparent 60%),
    radial-gradient(500px 300px at 90% 50%, rgba(245,165,36,.12), transparent 60%),
    var(--bg-2);
  position:relative;
  overflow:hidden;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:start;
}
.contact-section .section-header{text-align:left; margin:0}
.contact-section h2{text-align:left}
.contact-detail{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  color:var(--ink-2);
  font-size:15px;
}
.contact-detail:last-child{border-bottom:none}
.contact-detail .icon{
  width:40px; height:40px;
  border-radius:10px;
  background:rgba(43,127,255,.14);
  color:var(--blue-400);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex:none;
}
.contact-detail a{color:var(--ink-2); transition:color .15s}
.contact-detail a:hover{color:var(--orange)}

#contact-form{
  background:linear-gradient(135deg, #141B4A 0%, #0E1440 100%) !important;
  border:1px solid var(--line-2);
  box-shadow:var(--shadow-lg) !important;
  border-radius:var(--radius-lg) !important;
  padding:36px !important;
  position:relative;
  overflow:hidden;
}
#contact-form::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(400px 250px at 90% 0%, rgba(245,165,36,.15), transparent 60%);
  pointer-events:none;
  border-radius:var(--radius-lg);
}
.form-group{position:relative; margin-bottom:20px}
.form-group label{
  display:block;
  font:600 12px ui-monospace,monospace;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--silver);
  margin-bottom:8px;
}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:13px 18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line-2);
  border-radius:10px;
  color:#fff;
  font-family:inherit;
  font-size:14.5px;
  transition:border-color .15s, background .15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline:none;
  border-color:var(--orange);
  background:rgba(255,255,255,.07);
}
.form-group textarea{min-height:110px; resize:vertical; font-family:inherit}
.form-group input::placeholder,
.form-group textarea::placeholder{color:var(--muted); opacity:.7}
.form-group select{
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238892B8' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:18px;
  padding-right:44px;
}
.form-group select option{background:var(--bg-2); color:#fff}

/* ═══════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════ */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.blog-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:background .2s, transform .2s, border-color .2s;
}
.blog-card:hover{
  background:var(--card-2);
  transform:translateY(-4px);
  border-color:var(--blue-500);
}
.blog-thumb{
  height:160px;
  background:linear-gradient(135deg, var(--blue-500), #1a2766);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:56px;
}
.blog-card:nth-child(2) .blog-thumb{background:linear-gradient(135deg, var(--orange), #B8741A)}
.blog-card:nth-child(3) .blog-thumb{background:linear-gradient(135deg, #4F46E5, var(--blue-500))}
.blog-content{padding:26px}
.blog-meta{
  display:flex;
  align-items:center;
  gap:12px;
  font:500 11px ui-monospace,monospace;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.blog-category{
  color:var(--orange);
  padding:4px 10px;
  border:1px solid rgba(245,165,36,.3);
  background:rgba(245,165,36,.08);
  border-radius:999px;
}
.blog-date{color:var(--silver)}
.blog-content h3{
  font-size:17px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
  letter-spacing:-0.015em;
  line-height:1.3;
}
.blog-content h3 a{color:#fff; transition:color .15s}
.blog-content h3 a:hover{color:var(--orange)}
.blog-content p{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  margin-bottom:16px;
}
.blog-read-more{
  color:var(--blue-400);
  font:600 13px ui-monospace,monospace;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:color .15s, gap .15s;
}
.blog-read-more:hover{color:var(--orange); gap:10px}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */
.cta-section{
  padding:96px 0;
  background:
    radial-gradient(600px 300px at 15% 50%, rgba(245,165,36,.22), transparent 60%),
    radial-gradient(600px 300px at 85% 50%, rgba(43,127,255,.2), transparent 60%),
    linear-gradient(180deg, #0E1440 0%, #10173F 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.cta-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  position:relative;
  z-index:2;
}
.cta-section h2{
  margin:18px auto;
  max-width:760px;
  color:#fff;
}
.cta-section p{
  color:var(--ink-2);
  font-size:16px;
  max-width:600px;
  margin:0 auto 32px;
}
.cta-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer{
  background:var(--bg);
  padding:72px 0 32px;
  border-top:1px solid var(--line);
  position:relative;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:48px;
  margin-bottom:48px;
}
.footer-brand .logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:24px;
  color:#fff;
  margin-bottom:16px;
  letter-spacing:-0.02em;
}
.footer-brand .logo img{
  height:40px;
  width:auto;
  filter:drop-shadow(0 2px 10px rgba(43,127,255,.35));
}
.footer-brand .logo span{color:var(--orange)}
.footer-brand p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  max-width:360px;
  margin-bottom:22px;
}
.footer-social{
  display:flex;
  gap:10px;
}
.social-link{
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line-2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:13px;
  transition:all .15s;
}
.social-link:hover{
  background:var(--orange);
  border-color:var(--orange);
  color:var(--bg);
  transform:translateY(-2px);
}
.footer-col h4{
  font:600 11px ui-monospace,monospace;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--silver);
  margin-bottom:18px;
}
.footer-col ul{
  display:grid;
  gap:10px;
}
.footer-col a{
  color:var(--muted);
  font-size:14px;
  transition:color .15s;
}
.footer-col a:hover{color:#fff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:28px;
  border-top:1px solid var(--line);
  color:var(--silver);
  font:500 12.5px ui-monospace,monospace;
  flex-wrap:wrap;
  gap:16px;
}
.footer-legal{
  display:flex;
  gap:20px;
}
.footer-legal a{color:var(--silver); transition:color .15s}
.footer-legal a:hover{color:var(--orange)}

/* ═══════════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════════ */
.cookie-banner{
  position:fixed;
  bottom:0; left:0; right:0;
  background:rgba(10,14,42,.96);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-top:1px solid var(--line-2);
  padding:18px 28px;
  z-index:100;
  display:none;
  transform:translateY(100%);
  transition:transform .3s;
}
.cookie-banner.show{display:block; transform:translateY(0)}
.cookie-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.cookie-text{color:var(--ink-2); font-size:14px; margin:0}
.cookie-text a{color:var(--orange); text-decoration:underline}
.cookie-actions{display:flex; gap:10px}

/* ═══════════════════════════════════════════════════════════════════
   LANDING PAGE HERO (za podstranice)
   ═══════════════════════════════════════════════════════════════════ */
.page-hero{
  position:relative;
  overflow:hidden;
  padding:84px 0 64px;
  text-align:center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(43,127,255,.28), transparent 60%),
    radial-gradient(600px 300px at 50% 100%, rgba(245,165,36,.14), transparent 60%),
    linear-gradient(180deg, #0A0E2A 0%, #0C1236 100%);
  border-bottom:1px solid var(--line);
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(circle at 50% 50%, rgba(255,255,255,.5) 0.6px, transparent 1px);
  background-size:42px 42px;
  opacity:.3;
  pointer-events:none;
  mask:radial-gradient(1000px 500px at 50% 40%, black 0%, transparent 80%);
  -webkit-mask:radial-gradient(1000px 500px at 50% 40%, black 0%, transparent 80%);
}
.page-hero > *{position:relative; z-index:2}
.page-hero .container{position:relative; z-index:2}
.page-hero h1{
  font-size:clamp(36px, 4.4vw, 56px);
  font-weight:800;
  color:#fff;
  letter-spacing:-0.028em;
  line-height:1.1;
  margin:18px auto;
  max-width:820px;
  text-wrap:balance;
}
.page-hero h1 .highlight{color:var(--orange)}
.page-hero .lead{
  color:var(--muted);
  font-size:17px;
  max-width:640px;
  margin:0 auto 30px;
  line-height:1.65;
}
.breadcrumb{
  font:500 12px ui-monospace,monospace;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--silver);
  margin-bottom:12px;
}
.breadcrumb a{color:var(--blue-400); transition:color .15s}
.breadcrumb a:hover{color:var(--orange)}
.breadcrumb span{margin:0 8px; color:var(--muted)}

/* Content blocks za podstranice */
.content-section{padding:80px 0}
.content-section .container{max-width:900px}
.content-section h2{
  font-size:clamp(26px, 2.8vw, 36px);
  font-weight:800;
  color:#fff;
  letter-spacing:-0.024em;
  margin-bottom:20px;
  margin-top:40px;
}
.content-section h3{
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-top:30px;
  margin-bottom:14px;
  letter-spacing:-0.015em;
}
.content-section p{
  color:var(--ink-2);
  font-size:16px;
  line-height:1.75;
  margin-bottom:18px;
}
.content-section ul{margin-bottom:20px; padding-left:0}
.content-section ul li{
  position:relative;
  padding-left:30px;
  margin-bottom:12px;
  color:var(--ink-2);
  font-size:15.5px;
  line-height:1.65;
}
.content-section ul li::before{
  content:"✓";
  position:absolute;
  left:0; top:2px;
  width:20px; height:20px;
  background:rgba(245,165,36,.15);
  color:var(--orange);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
}

/* Pricing tables za landing pages */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:22px;
  margin:30px 0;
}
.price-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  transition:transform .2s, border-color .2s, background .2s;
  position:relative;
}
.price-card:hover{
  transform:translateY(-6px);
  border-color:var(--blue-500);
  background:var(--card-2);
}
.price-card.featured{
  border-color:var(--orange);
  background:linear-gradient(135deg, #141B4A 0%, #0E1440 100%);
  box-shadow:0 0 0 1px var(--orange), 0 30px 60px -20px rgba(245,165,36,.3);
}
.price-card.featured::before{
  content:"NAJPOPULARNIJE";
  position:absolute;
  top:-12px; left:50%;
  transform:translateX(-50%);
  background:var(--orange);
  color:var(--bg);
  padding:6px 14px;
  border-radius:999px;
  font:700 11px ui-monospace,monospace;
  letter-spacing:.1em;
  box-shadow:var(--shadow-orange);
}
.price-title{
  font:600 12px ui-monospace,monospace;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}
.price-amount{
  font-size:42px;
  font-weight:800;
  color:#fff;
  letter-spacing:-0.028em;
  line-height:1;
  margin-bottom:6px;
}
.price-amount span{
  font-size:16px;
  font-weight:500;
  color:var(--muted);
}
.price-sub{
  color:var(--muted);
  font-size:14px;
  margin-bottom:24px;
}
.price-features{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  border-top:1px solid var(--line);
  padding-top:20px;
}
.price-features li{
  position:relative;
  padding:8px 0 8px 28px;
  color:var(--ink-2);
  font-size:14.5px;
  line-height:1.5;
}
.price-features li::before{
  content:"✓";
  position:absolute;
  left:0; top:8px;
  color:var(--orange);
  font-weight:700;
}

/* ═══════════════════════════════════════════════════════════════════
   FADE IN ANIMACIJA
   ═══════════════════════════════════════════════════════════════════ */
.fade-in{
  opacity:1;
  transform:none;
  transition:opacity .6s ease, transform .6s ease;
}
.js-enabled .fade-in:not(.visible){
  opacity:0;
  transform:translateY(24px);
}
.fade-in.visible{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .fade-in, .js-enabled .fade-in:not(.visible){
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SUBPAGE (Servisne stranice) — .page-header, .card, .grid-*, itd.
   ═══════════════════════════════════════════════════════════════════ */

/* Page header (hero za servisne stranice) */
.page-header{
  position:relative;
  padding:140px 0 80px;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(43,127,255,.22), transparent 60%),
    radial-gradient(ellipse 700px 400px at 80% 30%, rgba(245,165,36,.12), transparent 60%),
    var(--bg);
  overflow:hidden;
  isolation:isolate;
}
.page-header::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.3), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,.35), transparent);
  z-index:0;
}
.page-header .container{position:relative; z-index:2; text-align:center}
.page-header h1{
  font-size:clamp(36px, 5.5vw, 64px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.02em;
  margin:18px 0 18px;
  color:#fff;
  background:linear-gradient(135deg,#fff 0%, #cfdcff 70%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.page-header p{
  max-width:780px;
  margin:0 auto;
  color:var(--muted);
  font-size:19px;
  line-height:1.65;
}

/* Breadcrumb — dark theme override */
.page-header .breadcrumb{
  justify-content:center;
  display:flex;
  flex-wrap:wrap;
  gap:4px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.page-header .breadcrumb a{color:var(--blue-400)}
.page-header .breadcrumb a:hover{color:var(--orange)}
.page-header .breadcrumb span{margin:0 6px}
.page-header .breadcrumb .current{color:#fff; font-weight:600}

/* Cards (generic) */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px 28px;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position:relative;
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(43,127,255,.45);
  box-shadow:0 24px 60px -20px rgba(0,0,0,.6);
}
.card h3{
  font-size:22px;
  font-weight:700;
  margin:14px 0 10px;
  color:#fff;
  letter-spacing:-.01em;
}
.card p{color:var(--muted); line-height:1.65; font-size:15px}

/* Card icon */
.card-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px; height:52px;
  border-radius:14px;
  font-size:26px;
  line-height:1;
  background:linear-gradient(135deg, rgba(43,127,255,.18), rgba(245,165,36,.12));
  border:1px solid rgba(43,127,255,.3);
  margin-bottom:8px;
}

/* Grid helpers */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

/* Process grid (koraci) */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  counter-reset:step;
}
.process-step{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px 24px;
  position:relative;
  transition:transform .25s ease, border-color .25s ease;
}
.process-step:hover{
  transform:translateY(-4px);
  border-color:rgba(245,165,36,.4);
}
.process-step h3{
  font-size:19px;
  font-weight:700;
  margin:14px 0 8px;
  color:#fff;
}
.process-step p{color:var(--muted); font-size:14.5px; line-height:1.6}
.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--orange) 0%, #FFB547 100%);
  color:#1A1304;
  font-weight:800;
  font-size:18px;
  box-shadow:0 10px 24px -10px rgba(245,165,36,.6);
}

/* Benefits list */
.benefits-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px 28px;
  list-style:none;
  padding:0;
  margin:24px 0 0;
}
.benefits-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px 20px;
}
.benefit-icon{
  flex-shrink:0;
  width:30px; height:30px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  background:rgba(16,185,129,.14);
  color:#10B981;
}
.benefit-text{color:var(--text); font-size:15px; line-height:1.55}

/* Check / Cross icons (pricing) */
.check{color:#10B981; font-weight:700}
.cross{color:#64748B}

/* Guarantee icon */
.guarantee-icon{font-size:18px}

/* Pricing period, tagline, divider, badge */
.pricing-period{color:var(--muted); font-size:15px}
.pricing-tagline{color:var(--muted); font-size:14px; margin-top:6px}
.pricing-divider{
  height:1px;
  background:linear-gradient(90deg, transparent, var(--border), transparent);
  margin:22px 0;
}
.popular-badge{
  position:absolute;
  top:-12px; left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg, var(--orange), #FFB547);
  color:#1A1304;
  padding:6px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:0 10px 24px -8px rgba(245,165,36,.6);
}

/* CTA section (generic) */
.cta-section{
  padding:80px 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(245,165,36,.18), transparent 60%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  position:relative;
  overflow:hidden;
}
.cta-inner{
  max-width:840px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:2;
}
.cta-inner h2{
  font-size:clamp(30px, 4vw, 48px);
  font-weight:800;
  color:#fff;
  letter-spacing:-.02em;
  line-height:1.12;
}
.cta-inner p{color:var(--muted); font-size:18px; margin-top:16px; line-height:1.6}
.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  margin-top:32px;
  flex-wrap:wrap;
}

/* Pricing grid (subpages) */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:40px;
}

/* FAQ list wrapper */
.faq-list{
  max-width:820px;
  margin:40px auto 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* Guarantee banner margin */
.guarantee-banner{margin-top:0}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Subpages
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px){
  .grid-3, .process-grid, .pricing-grid{grid-template-columns:repeat(2, 1fr)}
  .grid-4{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 720px){
  .page-header{padding:120px 0 60px}
  .grid-2, .grid-3, .grid-4, .process-grid, .pricing-grid{grid-template-columns:1fr}
  .benefits-list{grid-template-columns:1fr}
  .cta-actions{flex-direction:column; align-items:stretch}
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px){
  .services-grid,
  .why-us-grid,
  .testimonials-grid,
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width: 860px){
  .hero-grid,
  .contact-grid{grid-template-columns:1fr; gap:48px}
  .hero-visual{min-height:auto; margin-top:20px}
  .nav-links{display:none}
  .nav-toggle{display:flex}
  .section,
  section.section,
  .stats-section,
  .cta-section{padding:72px 0}
  .hero{padding:40px 0 72px}
  .hero-stats{grid-template-columns:repeat(3, 1fr); gap:20px}
  .hero-stat-num{font-size:26px}
  .trust-inner{justify-content:center}
  .footer-bottom{justify-content:center; text-align:center}
}

@media (max-width: 600px){
  .container,
  .nav-inner,
  .hero-inner,
  .cta-inner,
  .trust-inner,
  .guarantee-inner,
  .cookie-inner{padding-left:20px; padding-right:20px}
  .services-grid,
  .why-us-grid,
  .testimonials-grid,
  .blog-grid,
  .stats-grid,
  .footer-grid{grid-template-columns:1fr}
  .hero-actions,
  .cta-actions{flex-direction:column; width:100%}
  .hero-actions .btn,
  .cta-actions .btn{width:100%}
  .hero h1{font-size:34px}
  .hero-stats{grid-template-columns:repeat(3, 1fr); gap:14px}
  #contact-form{padding:24px !important}
  .nav-inner{height:64px}
  .nav-logo img{height:38px}
}
