:root {
      --primary: #4F46E5;
      --primary-dark: #3730a3;
      --primary-soft: #ede9fe;
      --secondary: #06B6D4;
      --secondary-soft: #cffafe;
      --accent: #F97316;
      --accent-soft: #fff7ed;
      --bg: #FAFAF9;
      --paper: #ffffff;
      --ink: #171717;
      --muted: #6b7280;
      --line: #e5e7eb;
      --shadow: 0 20px 60px rgba(79, 70, 229, .10);
      --radius: 20px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      font-size: 16px;
    }

    /* ── PROGRESS BAR ── */
    #progress-bar {
      position: fixed; top: 0; left: 0; height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      z-index: 1000; transition: width .1s linear;
    }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 900;
      background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: 1240px; margin: 0 auto;
      display: flex; align-items: center; gap: 6px;
      padding: 10px 20px; overflow-x: auto; scrollbar-width: none;
    }
    .nav-inner::-webkit-scrollbar { display: none; }
    .nav-logo {
      font-weight: 800; font-size: 15px; color: var(--primary);
      white-space: nowrap; margin-right: 8px; text-decoration: none;
    }
    .nav-pill {
      display: inline-block; padding: 6px 14px; border-radius: 999px;
      font-size: 13px; font-weight: 600; white-space: nowrap; text-decoration: none;
      color: var(--muted); transition: .18s;
    }
    .nav-pill:hover { background: var(--primary-soft); color: var(--primary); }
    .nav-cta {
      margin-left: auto; white-space: nowrap; padding: 7px 16px;
      background: var(--accent); color: #fff; border-radius: 999px;
      font-size: 13px; font-weight: 700; text-decoration: none;
      transition: .18s; flex-shrink: 0;
    }
    .nav-cta:hover { background: #ea6a0a; }

    /* ── WRAPPER ── */
    .page { max-width: 1240px; margin: 0 auto; padding: 0 20px 120px; }

    /* ── HERO ── */
    .hero {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; border-radius: 28px;
      padding: 52px 44px; margin: 28px 0 0;
      box-shadow: var(--shadow);
    }
    .hero::before {
      content: ""; position: absolute;
      width: 420px; height: 420px;
      right: -140px; top: -140px;
      background: radial-gradient(circle, rgba(6,182,212,.35) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero::after {
      content: ""; position: absolute;
      width: 240px; height: 240px;
      left: -60px; bottom: -60px;
      background: radial-gradient(circle, rgba(249,115,22,.2) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 16px; border-radius: 999px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
      font-size: 13px; font-weight: 600; letter-spacing: .03em;
      margin-bottom: 20px; position: relative; z-index: 1;
    }
    .hero h1 {
      font-size: clamp(32px, 6vw, 60px); font-weight: 800;
      line-height: 1.02; letter-spacing: -.04em;
      margin-bottom: 16px; position: relative; z-index: 1; max-width: 800px;
    }
    .hero-hook {
      font-size: clamp(17px, 2.5vw, 21px); color: rgba(255,255,255,.85);
      font-style: italic; margin-bottom: 12px; position: relative; z-index: 1;
    }
    .hero-sub {
      font-size: 16px; color: rgba(255,255,255,.75);
      max-width: 600px; margin-bottom: 28px; position: relative; z-index: 1;
    }
    .hero-meta {
      font-size: 13px; color: rgba(255,255,255,.55);
      position: relative; z-index: 1;
    }
    .hero-meta a { color: rgba(255,255,255,.75); text-decoration: none; }
    .hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; position: relative; z-index: 1; }
    .hero-pill {
      padding: 8px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none;
      transition: .18s;
    }
    .hero-pill:hover { background: rgba(255,255,255,.2); }

    /* ── SECTIONS ── */
    section { margin-top: 64px; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--secondary); margin-bottom: 12px;
    }
    .section-label::before {
      content: ""; display: block; width: 24px; height: 2px; background: var(--secondary);
    }
    h2 {
      font-size: clamp(26px, 4vw, 42px); font-weight: 800;
      line-height: 1.1; letter-spacing: -.035em; color: var(--ink);
      margin-bottom: 16px;
    }
    .lead {
      font-size: 17px; color: var(--muted); max-width: 700px; margin-bottom: 32px;
    }

    /* ── PROBLEM SECTION ── */
    .problem-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px;
    }
    .problem-card {
      background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,.04);
    }
    .problem-card.highlight {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; border-color: transparent;
    }
    .problem-card.highlight p { color: rgba(255,255,255,.85); }
    .problem-card h3 {
      font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--ink);
    }
    .problem-card.highlight h3 { color: #fff; }
    .problem-card p { font-size: 15px; color: var(--muted); }
    .big-quote {
      background: var(--primary-soft); border-left: 4px solid var(--primary);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 24px 28px; margin: 28px 0; font-size: 17px; font-weight: 500;
      color: var(--primary-dark); line-height: 1.6;
    }

    /* ── TOOLS SECTION ── */
    .tools-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px; margin-top: 8px;
    }
    .tool-card {
      background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,.04); transition: .2s;
    }
    .tool-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(79,70,229,.12); }
    .tool-icon {
      width: 52px; height: 52px; border-radius: 16px;
      display: grid; place-items: center; font-size: 24px; margin-bottom: 16px;
    }
    .tool-icon.purple { background: var(--primary-soft); }
    .tool-icon.cyan { background: var(--secondary-soft); }
    .tool-icon.orange { background: var(--accent-soft); }
    .tool-icon.green { background: #d1fae5; }
    .tool-icon.yellow { background: #fef9c3; }
    .tool-number {
      font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      color: var(--secondary); margin-bottom: 6px;
    }
    .tool-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .tool-card .tool-use {
      font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.5;
    }
    .tool-how {
      background: var(--bg); border-radius: 12px; padding: 14px 16px;
      font-size: 14px; color: var(--ink); margin-bottom: 16px;
    }
    .tool-how strong { display: block; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--secondary); margin-bottom: 6px; }
    .tool-result {
      background: #d1fae5; border-radius: 12px; padding: 12px 16px;
      font-size: 13px; font-weight: 600; color: #065f46;
    }

    /* ── COPY BOX ── */
    .copy-wrap { position: relative; margin: 16px 0; }
    .copy-box {
      background: #1e1b4b; color: #e0e7ff; border-radius: 16px;
      padding: 20px 20px 20px 20px; font-family: ui-monospace, 'Consolas', monospace;
      font-size: 13.5px; line-height: 1.65; white-space: pre-wrap; word-break: break-word;
    }
    .copy-btn {
      position: absolute; top: 12px; right: 12px;
      background: var(--accent); color: #fff; border: 0;
      border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700;
      cursor: pointer; font-family: 'Poppins', sans-serif; transition: .18s;
    }
    .copy-btn:hover { background: #ea6a0a; }
    .copy-btn.copied { background: #059669; }

    /* ── QUICK WIN STEPS ── */
    .steps-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px; margin: 28px 0;
    }
    .step-card {
      background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 24px; opacity: 0; transform: translateY(20px);
      transition: opacity .5s ease, transform .5s ease; box-shadow: 0 4px 24px rgba(0,0,0,.04);
    }
    .step-card.visible { opacity: 1; transform: none; }
    .step-time {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--primary-soft); color: var(--primary);
      border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 700;
      margin-bottom: 14px;
    }
    .step-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .step-card p { font-size: 14px; color: var(--muted); }

    .result-box {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff; border-radius: var(--radius); padding: 32px;
      margin-top: 28px; text-align: center;
    }
    .result-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
    .result-items {
      display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px;
    }
    .result-item {
      background: rgba(255,255,255,.15); border-radius: 999px;
      padding: 8px 18px; font-size: 14px; font-weight: 600;
    }
    .result-price {
      font-size: 14px; color: rgba(255,255,255,.7);
    }
    .result-price strong { color: #fff; }

    /* ── COMPARISON ── */
    .compare-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px;
    }
    .compare-col {
      border-radius: var(--radius); padding: 28px; border: 1px solid var(--line);
    }
    .compare-col.old { background: #fff1f2; border-color: #fecdd3; }
    .compare-col.new { background: #f0fdf4; border-color: #bbf7d0; }
    .compare-col h3 {
      font-size: 17px; font-weight: 700; margin-bottom: 16px;
    }
    .compare-col.old h3 { color: #be123c; }
    .compare-col.new h3 { color: #15803d; }
    .compare-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 15px; margin-bottom: 12px; color: var(--ink);
    }
    .compare-item .icon { flex-shrink: 0; font-size: 16px; margin-top: 2px; }

    /* ── TRANSITION SECTION ── */
    .transition-card {
      background: var(--paper); border: 1px solid var(--line);
      border-radius: var(--radius); padding: 36px;
      box-shadow: var(--shadow);
    }
    .benefits-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 14px; margin: 24px 0;
    }
    .benefit-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px; background: var(--bg); border-radius: 14px;
      font-size: 15px; font-weight: 500; flex-direction:column;
    }
    .benefit-item .check {
      width: 24px; height: 24px; background: var(--primary-soft); color: var(--primary);
      border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
      font-size: 13px; margin-top: 1px;
    }

    /* ── CTA BLOCK ── */
    #cta {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #6366f1 100%);
      border-radius: 28px; padding: 56px 44px; text-align: center;
      color: #fff; margin-top: 64px; position: relative; overflow: hidden;
    }
    #cta::before {
      content: ""; position: absolute; width: 500px; height: 500px;
      top: -200px; left: 50%; transform: translateX(-50%);
      background: radial-gradient(circle, rgba(6,182,212,.25) 0%, transparent 60%);
      border-radius: 50%;
    }
    .cta-badge {
      display: inline-block; background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.5);
      border-radius: 999px; padding: 6px 18px; font-size: 13px; font-weight: 700;
      color: #fed7aa; margin-bottom: 20px; position: relative; z-index: 1;
    }
    #cta h2 {
      color: #fff; font-size: clamp(28px, 5vw, 46px); margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    #cta p {
      color: rgba(255,255,255,.8); font-size: 17px; max-width: 560px;
      margin: 0 auto 32px; position: relative; z-index: 1;
    }
    .cta-price {
      display: flex; align-items: center; justify-content: center; gap: 16px;
      margin-bottom: 28px; position: relative; z-index: 1;
    }
    .cta-price .original {
      font-size: 18px; color: rgba(255,255,255,.5); text-decoration: line-through;
    }
    .cta-price .current {
      font-size: 42px; font-weight: 800; color: #fff;
    }
    .cta-price .label {
      font-size: 13px; color: rgba(255,255,255,.6); text-align: left; line-height: 1.4;
    }
    .cta-btn {
      display: inline-block; padding: 18px 44px;
      background: var(--accent); color: #fff; border-radius: 999px;
      font-size: 18px; font-weight: 800; text-decoration: none;
      transition: .2s; position: relative; z-index: 1;
      box-shadow: 0 8px 32px rgba(249,115,22,.4);
    }
    .cta-btn:hover { background: #ea6a0a; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(249,115,22,.5); }
    .cta-contact {
      margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.6);
      position: relative; z-index: 1;
    }
    .cta-contact a { color: rgba(255,255,255,.85); text-decoration: none; }
    .cta-contact a:hover { color: #fff; }

    /* ── STICKY MOBILE CTA ── */
    .sticky-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
      border-top: 1px solid var(--line); padding: 12px 20px; z-index: 800;
    }
    .sticky-cta a {
      display: block; background: var(--accent); color: #fff;
      text-align: center; border-radius: 999px; padding: 15px;
      font-size: 16px; font-weight: 700; text-decoration: none;
    }

    /* ── FOOTER ── */
    footer {
      text-align: center; padding: 40px 20px;
      font-size: 13px; color: var(--muted); border-top: 1px solid var(--line);
      margin-top: 64px;
    }
    footer a { color: var(--primary); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .problem-grid { grid-template-columns: 1fr; }
      .compare-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .page { padding: 0 16px 90px; }
      /* Nav */
      .nav-inner { padding: 8px 14px; gap: 4px; }
      .nav-logo { font-size: 14px; margin-right: 4px; }
      /* Hero */
      .hero { padding: 28px 18px; margin: 12px 0 0; border-radius: 20px; }
      .hero h1 { font-size: 26px; }
      .hero-hook { font-size: 15px; }
      .hero-sub { font-size: 14px; margin-bottom: 18px; }
      .hero-eyebrow { font-size: 12px; padding: 6px 13px; margin-bottom: 14px; }
      .hero-pills { gap: 8px; margin-top: 16px; }
      .hero-pill { font-size: 12px; padding: 7px 13px; }
      /* Sections */
      section { margin-top: 44px; }
      h2 { font-size: clamp(22px, 5vw, 32px); }
      .lead { font-size: 15px; margin-bottom: 20px; }
      /* Problem grid */
      .problem-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
      .problem-card { padding: 18px; }
      .problem-card h3 { font-size: 16px; }
      .problem-card p { font-size: 14px; }
      .big-quote { font-size: 15px; padding: 16px 18px; }
      /* Tools */
      .tools-grid { gap: 12px; }
      .tool-card { padding: 18px; }
      .tool-card h3 { font-size: 18px; }
      .tool-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 12px; }
      .tool-how { padding: 12px 14px; font-size: 13px; }
      .tool-result { padding: 10px 14px; }
      /* Steps */
      .steps-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
      .step-card { padding: 16px; }
      .step-card h4 { font-size: 15px; }
      .step-card p { font-size: 13px; }
      /* Result box */
      .result-box { padding: 20px 16px; margin-top: 20px; }
      .result-box h3 { font-size: 18px; }
      .result-items { gap: 8px; }
      .result-item { font-size: 13px; padding: 6px 14px; }
      /* Compare */
      .compare-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
      .compare-col { padding: 18px; }
      .compare-col h3 { font-size: 16px; margin-bottom: 12px; }
      .compare-item { font-size: 14px; margin-bottom: 10px; }
      /* Transition */
      .transition-card { padding: 20px 16px; }
      .benefits-grid { gap: 10px; margin: 16px 0; }
      .benefit-item { font-size: 14px; padding: 12px; }
      /* CTA block */
      #cta { padding: 32px 18px; border-radius: 20px; margin-top: 44px; }
      #cta h2 { font-size: clamp(24px, 5.5vw, 36px); }
      #cta p { font-size: 15px; margin-bottom: 24px; }
      .cta-price { gap: 12px; margin-bottom: 20px; }
      .cta-price .current { font-size: 36px; }
      .cta-btn { font-size: 16px; padding: 15px 32px; }
      /* Copy box */
      .copy-box { font-size: 12.5px; padding: 14px 14px; }
      .copy-btn { font-size: 11px; padding: 5px 12px; }
      /* Nav */
      .sticky-cta { display: block; }
      .nav-cta { display: none; }
      /* Footer */
      footer { padding: 28px 16px; margin-top: 44px; }
    }
    @media (max-width: 480px) {
      .page { padding: 0 12px 90px; }
      /* Nav */
      .nav-inner { padding: 7px 10px; }
      .nav-logo { font-size: 13px; }
      .nav-pill { font-size: 12px; padding: 5px 10px; }
      /* Hero */
      .hero { padding: 20px 14px; border-radius: 16px; margin: 10px 0 0; }
      .hero h1 { font-size: 22px; }
      .hero-hook { font-size: 14px; }
      .hero-sub { font-size: 13px; margin-bottom: 14px; }
      .hero-eyebrow { font-size: 11px; padding: 5px 11px; margin-bottom: 12px; }
      .hero-pills { gap: 6px; margin-top: 14px; }
      .hero-pill { font-size: 11px; padding: 6px 11px; }
      /* Sections */
      section { margin-top: 32px; }
      h2 { font-size: 20px; }
      .lead { font-size: 14px; margin-bottom: 16px; }
      /* Problem */
      .problem-grid { gap: 10px; }
      .problem-card { padding: 14px; }
      .problem-card h3 { font-size: 15px; margin-bottom: 8px; }
      .problem-card p { font-size: 13px; }
      .big-quote { font-size: 14px; padding: 14px 14px; }
      /* Steps */
      .steps-grid { grid-template-columns: 1fr; gap: 8px; margin: 14px 0; }
      .step-card { padding: 14px; }
      .step-card h4 { font-size: 14px; }
      /* Tools */
      .tools-grid { gap: 10px; }
      .tool-card { padding: 14px; }
      .tool-card h3 { font-size: 16px; }
      .tool-use { font-size: 13px; }
      .tool-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 10px; }
      .tool-how { padding: 10px 12px; font-size: 12.5px; }
      .tool-result { padding: 9px 12px; font-size: 12.5px; }
      /* Result box */
      .result-box { padding: 16px 14px; }
      .result-box h3 { font-size: 17px; margin-bottom: 12px; }
      .result-items { gap: 6px; margin-bottom: 14px; }
      .result-item { font-size: 12px; padding: 6px 12px; }
      /* Cards */
      .compare-col { padding: 14px; }
      .compare-col h3 { font-size: 15px; }
      .compare-item { font-size: 13px; margin-bottom: 8px; }
      /* Transition */
      .transition-card { padding: 14px 12px; }
      .benefits-grid { gap: 8px; margin: 12px 0; }
      .benefit-item { font-size: 13px; padding: 10px 12px; }
      /* CTA */
      #cta { padding: 24px 14px; border-radius: 16px; }
      #cta p { font-size: 14px; margin-bottom: 20px; }
      .cta-price .current { font-size: 32px; }
      .cta-btn { font-size: 15px; padding: 13px 26px; }
      /* Copy box */
      .copy-box { font-size: 12px; padding: 12px 12px; }
      .copy-btn { font-size: 11px; padding: 5px 11px; top: 10px; right: 10px; }
      /* Footer */
      footer { padding: 24px 12px; margin-top: 36px; }
    }

/* Newsletter sekcija (pred footer) */
.newsletter-sec{max-width:1080px;margin:0 auto;padding:56px 24px;text-align:center}
.newsletter-inner{max-width:600px;margin:0 auto}
.newsletter-title{font-size:28px;font-weight:800;color:var(--ink,#171717);margin-bottom:10px;line-height:1.2}
.newsletter-sub{font-size:15px;color:var(--muted,#6b7280);line-height:1.6;margin-bottom:24px}
.newsletter-sec .ml-embedded{max-width:460px;margin:0 auto}
@media(max-width:600px){.newsletter-sec{padding:40px 16px}.newsletter-title{font-size:23px}}
