/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #8b5cf6;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

/* Enhanced Focus Management */
*:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* PWA Install Banner */
.pwa-install-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8b5cf6;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  z-index: 1000;
  max-width: 300px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.pwa-install-banner.show {
  transform: translateX(0);
}

.pwa-install-button {
  background: white;
  color: #8b5cf6;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
}

.pwa-close-btn {
  background: transparent !important;
  color: white !important;
}

/* Screen Reader Only Content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Enhanced Button Focus States */
.ana-cta:focus,
.calculate-button:focus,
.eligibility-select:focus {
  outline: 3px solid #fbbf24;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.2);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .ana-accent {
    color: #4c1d95 !important;
    font-weight: 700;
  }
  
  .highlight {
    background-color: #fef3c7 !important;
    color: #92400e !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Smooth scroll i UX optimizacije */
html { scroll-behavior: smooth; }

/* Reset i osnovni stilovi */
    * { 
      box-sizing: border-box; 
      margin: 0;
      padding: 0;
    }
    
    /* Footer legal disclaimer styling */
    .footer-legal {
      font-size: 0.8rem; 
      color: #94a3b8; 
      margin: 15px 0; 
      line-height: 1.4;
    }
    
    /* Ana card centered styling */
    .ana-card-centered {
      max-width: 600px; 
      margin: 0 auto 40px;
    }
    
    /* Purple link styling */
    .purple-link {
      color: #8b5cf6;
      text-decoration: none;
    }
    
    .purple-link:hover {
      color: #7c3aed;
      text-decoration: underline;
    }
    
    /* Eligibility checker response styling */
    .eligibility-response {
      line-height: 1.5;
    }
    
    .eligibility-default {
      color: #64748b;
    }
    
    /* Ana simple header styling - bez navigacije */
    .ana-simple-header {
      background: #ffffff;
      padding: 15px 0;
      border-bottom: 1px solid #e2e8f0;
    }
    
    .ana-simple-header .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    body {
      font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      color: #1e293b;
      line-height: 1.6;
      background: #ffffff;
      overflow-x: hidden;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
      width: 100%;
      min-width: 320px;
    }
    
    /* Global Mobile Fixes */
    * {
      max-width: 100%;
      word-wrap: break-word;
    }
    
    img, video, iframe {
      max-width: 100%;
      height: auto;
    }
    
    /* Prevent horizontal scroll */
    html, body {
      overflow-x: hidden;
      width: 100%;
    }
    
    /* OSNOVNI LAYOUT - Mobile First */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      box-sizing: border-box;
    }
    
    @media (max-width: 768px) {
      .container {
        padding: 0 15px;
      }
    }
    
    @media (max-width: 480px) {
      .container {
        padding: 0 10px;
      }
    }
    
    .container-small {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .text-center {
      text-align: center;
    }
    
    .section-padding {
      padding: 80px 0;
    }
    
    .highlight {
      color: #059669;
      font-weight: 600;
    }
    
    .ana-accent {
      color: #8b5cf6;
      font-weight: 600;
    }
    
    /* TIPOGRAFIJA - Ujednačena hijerarhija */
    h1 {
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    
    h2 {
      font-size: clamp(2rem, 4.5vw, 2.8rem);
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 1.2rem;
      line-height: 1.2;
    }
    
    h3 {
      font-size: clamp(1.5rem, 3.5vw, 2rem);
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    h4 {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 0.8rem;
      line-height: 1.4;
    }
    
    h5 {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      font-weight: 500;
      color: #475569;
      margin-bottom: 0.6rem;
      line-height: 1.4;
    }
    
    h6 {
      font-size: clamp(0.9rem, 2vw, 1rem);
      font-weight: 500;
      color: #64748b;
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }
    
    p {
      font-size: 1.1rem;
      color: #475569;
      margin-bottom: 1rem;
    }
    
    /* Section headers */
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .section-subtitle {
      font-size: 1.2rem;
      color: #64748b;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Hero sekcija - Ana se predstavlja */
    .hero {
      background: linear-gradient(135deg, #fef3c7 0%, #f3e8ff 25%, #fdf4ff 50%, #f0fdf4 75%, #e6fffa 100%);
      padding: 80px 0 120px;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0) 70%);
      border-radius: 50%;
      z-index: 0;
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      z-index: 1;
    }
    
    @media (max-width: 968px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
      }
      
      .hero {
        padding: 60px 0 80px;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        padding: 40px 0 60px;
      }
      
      .hero-content {
        gap: 20px;
      }
    }
    
    .hero-text {
      flex: 1;
      width: 100%;
    }
    
    .hero-visual {
      flex: 1;
      display: flex;
      justify-content: center;
      width: 100%;
    }
    
    .ana-intro {
      background: rgba(139, 92, 246, 0.1);
      padding: 1.5rem;
      border-radius: 12px;
      border-left: 4px solid #8b5cf6;
      margin-bottom: 2rem;
    }
    
    .ana-intro h3 {
      color: #8b5cf6;
      margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
      color: #475569;
      margin-bottom: 2rem;
      max-width: 600px;
      line-height: 1.5;
    }
    
    /* Ujednačeni stilovi za content boxove */
    .knowledge-box {
      background: #f8fafc;
      padding: 25px;
      border-radius: 15px;
      margin: 25px 0;
      border-left: 4px solid #8b5cf6;
    }
    
    .knowledge-title {
      color: #8b5cf6 !important;
      margin-bottom: 15px !important;
    }
    
    .knowledge-list {
      display: grid;
      gap: 8px;
      font-size: 0.95rem;
      color: #475569;
    }
    
    .ana-card-title {
      color: #8b5cf6 !important;
    }
    
    .ana-card-subtitle {
      color: #64748b !important;
      margin-bottom: 15px !important;
    }
    
    .ana-card-info {
      background: #f8fafc;
      padding: 15px;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    
    /* Stilovi za section naslove */
    .section-title {
      color: #0f172a !important;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    .section-subtitle-custom {
      color: #64748b !important;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 400;
    }
    
    /* Problem/Solution stilovi */
    .problem-section h3 {
      color: #dc2626 !important;
      margin-bottom: 20px !important;
    }
    
    .solution-section h3 {
      color: #059669 !important;
      margin-bottom: 20px !important;
    }
    
    .pricing-section h3 {
      color: #0f172a !important;
      font-weight: 700 !important;
      text-align: center;
      margin-bottom: 1rem;
    }
    
    /* Dodatni stilovi za čišći kod */
    .ana-card-details {
      font-size: 0.9rem;
      color: #475569;
      text-align: left;
    }
    
    .ana-cta-full {
      width: 100%;
      justify-content: center;
      font-size: 0.9rem;
    }
    
    .innovation-section {
      background: linear-gradient(135deg, #f0fdf4 0%, #fdf4ff 50%, #f3e8ff 100%);
      padding: 80px 0;
    }
    
    .innovation-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .innovation-card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      border: 2px solid #e2e8f0;
      text-align: center;
    }
    
    .innovation-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 2rem;
    }
    
    .innovation-title-purple {
      color: #8b5cf6 !important;
      margin-bottom: 15px !important;
    }
    
    .innovation-title-green {
      color: #059669 !important;
      margin-bottom: 15px !important;
    }
    
    .innovation-text {
      color: #64748b;
      line-height: 1.6;
    }
    
    .trust-section {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
      padding: 30px 0;
      border-top: 1px solid rgba(139, 92, 246, 0.1);
    }
    
    .trust-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .trust-sources {
      font-size: 0.9rem;
      color: #64748b;
      margin-bottom: 15px;
    }
    
    /* Ana's Avatar/Character - Optimized for AL initials */
    .ana-avatar {
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
      border: 4px solid white;
      letter-spacing: -0.1em;
    }
    
    .ana-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      border: 2px solid #e2e8f0;
      max-width: 400px;
    }
    
    .ana-status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #f0fdf4;
      padding: 8px 16px;
      border-radius: 20px;
      color: #059669;
      font-weight: 600;
      margin-bottom: 20px;
    }
    
    .online-dot {
      width: 8px;
      height: 8px;
      background: #059669;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    
    /* Problem/Solution - Ana objašnjava */
    .ana-explains {
      background: #ffffff;
      padding: 80px 0;
    }
    
    .problem-solution-grid {
      display: grid;
      gap: 40px;
      margin-top: 40px;
      grid-template-columns: 1fr;
    }
    
    @media (min-width: 769px) {
      .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .ana-understands {
      background: #fef2f2;
      border-left: 4px solid #ef4444;
      padding: 2rem;
      border-radius: 12px;
    }
    
    .ana-understands h4 {
      color: #dc2626;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .ana-solves {
      background: #f0fdf4;
      border-left: 4px solid #059669;
      padding: 2rem;
      border-radius: 12px;
    }
    
    .ana-solves h4 {
      color: #059669;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .ana-quote {
      font-style: italic;
      font-size: 1.2rem;
      color: #8b5cf6;
      background: #fdf4ff;
      padding: 1.5rem;
      border-radius: 12px;
      margin: 2rem 0;
      border-left: 4px solid #8b5cf6;
    }
    
    /* Ana's chat demo */
    .ana-chat-demo {
      background: linear-gradient(135deg, #f8fafc, #fdf4ff);
      border: 2px solid #e2e8f0;
      border-radius: 20px;
      padding: 25px;
      max-width: 450px;
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
    }
    
    .chat-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid #e2e8f0;
    }
    
    .chat-ana-avatar {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 0.9rem;
      letter-spacing: -0.05em;
    }
    
    .chat-messages {
      height: 280px;
      overflow-y: auto;
      margin-bottom: 20px;
      padding: 15px;
      background: white;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }
    
    .message {
      margin-bottom: 12px;
      padding: 10px 15px;
      border-radius: 12px;
      max-width: 85%;
      line-height: 1.4;
    }
    
    .message.user {
      background: #e2e8f0;
      margin-left: auto;
      text-align: right;
    }
    
    .message.ana {
      background: #f0fdf4;
      border: 1px solid #059669;
      position: relative;
    }
    
    .message.ana::before {
      content: "Ana:";
      position: absolute;
      top: -8px;
      left: 10px;
      background: #059669;
      color: white;
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 10px;
      font-weight: 600;
    }
    
    .chat-input {
      display: flex;
      gap: 10px;
    }
    
    .chat-input input {
      flex: 1;
      padding: 12px 15px;
      border: 2px solid #d1d5db;
      border-radius: 10px;
      font-size: 14px;
    }
    
    .chat-input button {
      background: linear-gradient(135deg, #8b5cf6, #059669);
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
    }
    
    /* CTA gumbovi - Ana poziva */
    .ana-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      color: white;
      padding: 18px 35px;
      border-radius: 15px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    }
    
    .ana-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }
    
    .ana-cta-secondary {
      background: transparent;
      color: #8b5cf6;
      border: 2px solid #8b5cf6;
      box-shadow: none;
    }
    
    .ana-cta-secondary:hover {
      background: #8b5cf6;
      color: white;
    }
    
    /* Ana's process - čisti layout */
    .ana-process {
      background: #f8fafc;
      padding: 80px 0;
    }
    
    .process-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      margin-top: 50px;
    }
    
    @media (max-width: 768px) {
      .process-container {
        flex-direction: column;
        gap: 30px;
      }
    }
    
    .process-step {
      flex: 1;
      text-align: center;
      position: relative;
    }
    
    .step-ana-number {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      margin: 0 auto 25px;
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
      border: 4px solid white;
    }
    
    .ana-says {
      background: #fdf4ff;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid #8b5cf6;
      margin-top: 15px;
      font-style: italic;
      color: #8b5cf6;
      position: relative;
    }
    
    .ana-says::before {
      content: "Ana kaže:";
      position: absolute;
      top: -10px;
      left: 15px;
      background: #8b5cf6;
      color: white;
      padding: 3px 10px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
    }
    
    .process-arrow {
      position: absolute;
      top: 40px;
      right: -20px;
      color: #8b5cf6;
      font-size: 2rem;
      z-index: 1;
    }
    
    .process-step:last-child .process-arrow {
      display: none;
    }
    
    /* Ana's pricing */
    .ana-pricing {
      background: #ffffff;
      padding: 80px 0;
    }
    
    .pricing-intro {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .ana-pricing-quote {
      background: #fdf4ff;
      padding: 2rem;
      border-radius: 15px;
      border-left: 4px solid #8b5cf6;
      margin: 2rem auto;
      max-width: 600px;
      font-style: italic;
      color: #8b5cf6;
      font-size: 1.2rem;
    }
    
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .pricing-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      border: 2px solid #e2e8f0;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .pricing-card.ana-recommended {
      border-color: #8b5cf6;
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
    }
    
    .pricing-card.ana-recommended::before {
      content: "ANA PREPORUČUJE ⭐";
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #8b5cf6, #059669);
      color: white;
      padding: 8px 25px;
      border-radius: 25px;
      font-size: 12px;
      font-weight: 700;
    }
    
    .price {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 20px 0;
    }
    
    .price-period {
      font-size: 1rem;
      color: #64748b;
      font-weight: normal;
    }
    
    /* Testimonials - o Ani */
    .ana-testimonials {
      background: #f0fdf4;
      padding: 80px 0;
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .testimonial {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      position: relative;
    }
    
    .testimonial::before {
      content: "💜";
      position: absolute;
      top: -10px;
      right: 20px;
      font-size: 1.5rem;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      color: #475569;
      line-height: 1.6;
    }
    
    .testimonial-author {
      font-weight: 600;
      color: #0f172a;
    }
    
    /* FAQ - Ana odgovara */
    .ana-faq {
      background: #fdf4ff;
      padding: 80px 0;
    }
    
    .faq-item {
      background: white;
      border-radius: 15px;
      margin-bottom: 20px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
    }
    
    .faq-question {
      padding: 25px;
      background: white;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f172a;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-answer {
      padding: 0 25px 25px;
      color: #475569;
      display: none;
      line-height: 1.6;
    }
    
    .faq-answer.active {
      display: block;
    }
    
    .ana-answer {
      background: #f0fdf4;
      padding: 15px;
      border-radius: 10px;
      margin-top: 10px;
      border-left: 4px solid #059669;
      font-style: italic;
    }
    
    .ana-answer::before {
      content: "Ana: ";
      font-weight: 600;
      color: #059669;
    }
    
    /* Footer */
    .footer {
      background: linear-gradient(180deg, #0f172a 0%, #1e293b 25%, #0f1419 50%, #020617 75%, #000000 100%);
      color: #e2e8f0;
      padding: 60px 0 30px;
      position: relative;
    }
    
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #8b5cf6 0%, #059669 50%, #8b5cf6 100%);
    }
    
    .footer-ana {
      text-align: center;
      padding: 40px;
      background: linear-gradient(135deg, #1e293b 0%, #334155 25%, #1e293b 50%, #0f172a 75%, #020617 100%);
      border-radius: 20px;
      margin-bottom: 40px;
      border: 1px solid rgba(139, 92, 246, 0.2);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .footer-ana-avatar {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 25%, #059669 50%, #10b981 75%, #8b5cf6 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 20px;
      border: 3px solid white;
      letter-spacing: -0.08em;
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(5, 150, 105, 0.4);
      animation: footerGlow 3s ease-in-out infinite alternate;
      transition: transform 0.3s ease;
    }
    
    .footer-ana-avatar:hover {
      transform: scale(1.1) rotate(5deg);
    }
    
    @keyframes footerGlow {
      0% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(5, 150, 105, 0.2);
      }
      100% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 80px rgba(5, 150, 105, 0.6);
      }
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .footer-section {
      transition: transform 0.3s ease;
      text-align: center;
    }
    
    .footer-section:hover {
      transform: translateY(-2px);
    }
    
    .footer-section h4 {
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .footer-section a {
      color: #94a3b8;
      text-decoration: none;
      display: inline-block;
      margin-bottom: 8px;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 5px;
    }
    
    .footer-section a:hover {
      color: #8b5cf6;
      background: rgba(139, 92, 246, 0.1);
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
      transform: translateY(-1px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(139, 92, 246, 0.3);
      padding-top: 30px;
      text-align: center;
      color: #94a3b8;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.9) 100%);
      margin-top: 40px;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    /* RESPONZIVNI DIZAJN - Mobile First + Enhanced UX */
    @media (max-width: 768px) {
      .mobile-sticky-cta {
        display: block;
      }
      
      .mobile-chat-toggle {
        display: block;
      }
      
      .hero {
        padding: 50px 0 70px;
      }
      
      .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
      }
      
      .hero-visual {
        order: -1;
        margin-bottom: 15px;
      }
      
      .ana-chat-demo {
        max-width: 100%;
        margin: 0 auto;
        padding: 20px;
      }
      
      .chat-input input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
      }
      
      .chat-input button {
        padding: 14px 18px;
        min-width: 80px;
      }
      
      .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
      }
      
      .hero-visual {
        order: -1;
        margin-bottom: 20px;
      }
      
      .ana-chat-demo {
        max-width: 100%;
        margin: 0 auto;
      }
      
      .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .pricing-card.ana-recommended {
        transform: none;
      }
      
      .process-arrow {
        display: none;
      }
      
      h1 {
        font-size: 2.2rem;
      }
      
      .container, .container-small {
        padding: 0 15px;
      }
      
      .ana-intro {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
      }
      
      .ana-card {
        padding: 20px;
        max-width: 100%;
      }
      
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
        text-align: center;
      }
      
      .ana-cta, .super-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 25px;
        text-align: center;
      }
    }
    
    /* Swipeable testimonials na mobilnim */
    .testimonial-container {
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-grid.swipeable {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    
    .testimonial-grid.swipeable::-webkit-scrollbar {
      display: none;
    }
    
    .testimonial-grid.swipeable .testimonial {
      min-width: 280px;
      scroll-snap-align: start;
      flex-shrink: 0;
    }
    
    .swipe-indicator {
      text-align: center;
      margin-top: 15px;
      color: #8b5cf6;
      font-size: 14px;
      font-weight: 600;
    }
    
    @media (min-width: 769px) {
      .testimonial-grid.swipeable {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        overflow-x: visible;
      }
      
      .swipe-indicator {
        display: none;
      }
    }
    
    @media (min-width: 769px) {
      .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    /* Animacije */
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    
    .ana-avatar {
      animation: float 3s ease-in-out infinite;
    }
    
    /* Ana's sticky quote banner */
    .ana-sticky-quote {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      color: white;
      padding: 8px 20px;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      z-index: 1002;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }
    
    .ana-sticky-quote.visible {
      transform: translateY(0);
    }
    
    .ana-sticky-quote .close-quote {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      font-size: 16px;
    }
    
    /* Simulator uštede */
    .savings-simulator {
      background: linear-gradient(135deg, #f0fdf4, #fdf4ff);
      padding: 40px 30px;
      border-radius: 20px;
      margin: 40px 0;
      border: 2px solid #e2e8f0;
    }
    
    .simulator-input {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .simulator-input label {
      font-weight: 600;
      color: #1e293b;
    }
    
    .simulator-input input {
      padding: 12px 15px;
      border: 2px solid #d1d5db;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      width: 120px;
      text-align: center;
    }
    
    .simulator-input input:focus {
      border-color: #8b5cf6;
      outline: none;
    }
    
    .simulator-result {
      background: white;
      padding: 25px;
      border-radius: 15px;
      border: 2px solid #059669;
      text-align: center;
    }
    
    .savings-amount {
      font-size: 2.5rem;
      font-weight: 800;
      color: #059669;
      margin-bottom: 10px;
    }
    
    /* Ana's origin story */
    .ana-origin {
      background: #fdf4ff;
      padding: 60px 0;
    }
    
    .origin-story {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      position: relative;
    }
    
    .origin-story::before {
      content: '📖';
      position: absolute;
      top: -15px;
      left: 30px;
      background: #8b5cf6;
      padding: 10px;
      border-radius: 50%;
      font-size: 1.5rem;
    }
    
    .origin-timeline {
      margin-top: 30px;
    }
    
    .timeline-item {
      display: flex;
      gap: 20px;
      margin-bottom: 25px;
      align-items: flex-start;
    }
    
    .timeline-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      flex-shrink: 0;
    }
    
    .timeline-content {
      flex: 1;
    }
    
    /* Ana ilustracija styles */
    .ana-avatar-hero {
      position: relative;
      animation: float 6s ease-in-out infinite;
    }
    
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    
    .float-item {
      position: absolute;
      font-size: 2rem;
      animation: floatAround 8s ease-in-out infinite;
    }
    
    .float-item:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .float-item:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
    .float-item:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
    .float-item:nth-child(4) { top: 10%; right: 30%; animation-delay: 1.5s; }
    
    @keyframes floatAround {
      0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
      25% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
      50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.8; }
      75% { transform: translateY(-15px) rotate(2deg); opacity: 0.9; }
    }

    /* Enhanced tooltips */
    .tooltip {
      position: relative;
      cursor: help;
    }
    
    .tooltip::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #1e293b;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
    }
    
    .tooltip:hover::after {
      opacity: 1;
      visibility: visible;
    }
    
    /* Super CTA */
    .super-cta {
      background: linear-gradient(135deg, #059669, #8b5cf6);
      color: white;
      padding: 20px 40px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.3rem;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .super-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }
    
    .super-cta:hover::before {
      left: 100%;
    }
    
    .super-cta:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
    }
    
    .super-cta .cta-main {
      font-size: 1.3rem;
      line-height: 1.2;
    }
    
    .super-cta .cta-sub {
      font-size: 1rem;
      opacity: 0.9;
      font-weight: 400;
    }
    
    /* CTA button container */
    .cta-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 30px;
    }
    
    @media (max-width: 768px) {
      .cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
    }
    
    /* Mobilni sticky CTA - uvijek vidljiv */
    .mobile-sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      padding: 15px 20px;
      z-index: 1000;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
      transform: translateY(100%);
      transition: transform 0.3s ease;
      display: none;
    }
    
    .mobile-sticky-cta.visible {
      transform: translateY(0);
    }
    
    .mobile-sticky-cta .cta-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .mobile-sticky-cta .cta-text {
      color: white;
      font-weight: 600;
      font-size: 14px;
    }
    
    .mobile-sticky-cta .cta-btn {
      background: white;
      color: #8b5cf6;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
    }
    
    /* Improved mobile chat */
    .mobile-chat-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1001;
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
      animation: float 3s ease-in-out infinite;
      border: none;
    }
    
    .mobile-chat-toggle:hover {
      transform: scale(1.1);
    }
    
    /* Loading states */
    .loading-pulse {
      position: relative;
      overflow: hidden;
    }
    
    .loading-pulse::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }
    
    /* Accessibility */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    
    .ana-cta:focus,
    .chat-input button:focus,
    .faq-question:focus {
      outline: 2px solid #8b5cf6;
      outline-offset: 2px;
    }
    /* Ana header slika - responzivna */
    .ana-header-image {
      width: 100%;
      max-width: 1200px;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    }
    
    .ana-header-container {
      background: linear-gradient(135deg, #f3e8ff 0%, #fdf4ff 50%, #f0fdf4 100%);
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }
    
    /* Mobile Navigation Styles */
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      position: relative;
    }
    
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    
    .nav-logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #8b5cf6, #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }
    
    .nav-link {
      color: #64748b;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      white-space: nowrap;
    }
    
    .nav-cta {
      background: #8b5cf6;
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      white-space: nowrap;
    }
    
    /* Mobile Navigation */
    @media (max-width: 768px) {
      .nav-container {
        padding: 10px 15px;
      }
      
      .nav-links {
        gap: 15px;
        font-size: 0.9rem;
      }
      
      .nav-link {
        display: none;
      }
      
      .nav-link:nth-child(1),
      .nav-link:nth-child(2) {
        display: block;
      }
      
      .nav-cta {
        padding: 8px 15px;
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 480px) {
      .nav-container {
        padding: 8px 10px;
      }
      
      .nav-logo strong {
        font-size: 1rem;
      }
      
      .nav-links {
        gap: 10px;
      }
      
      .nav-link {
        font-size: 0.8rem;
      }
      
      .nav-cta {
        padding: 6px 12px;
        font-size: 0.8rem;
      }
    }
    
    /* ✅ UTILITY CLASSES - Uništavanje inline stil kaosa */
    .text-small { font-size: 0.85rem; color: #475569; font-weight: 500; }
    .text-tiny { font-size: 0.8rem; color: #94a3b8; margin-top: 10px; font-style: italic; }
    .text-micro { font-size: 12px; color: #64748b; }
    .text-large { font-size: 1.2rem; color: #64748b; margin-bottom: 40px; }
    .text-medium { font-size: 1.1rem; color: #64748b; margin-bottom: 20px; }
    
    .emoji-big { font-size: 3rem; margin-bottom: 20px; text-align: center; }
    .emoji-small { font-size: 0.9rem; }
    
    .flex-center { display: flex; justify-content: center; }
    .flex-between { display: flex; justify-content: space-between; align-items: center; }
    .flex-gap { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; align-items: center; }
    
    .list-clean { list-style: none; margin: 20px 0; padding: 0; }
    .list-item { padding: 5px 0; }
    
    .highlight-green { background: #dcfce7; color: #166534; padding: 8px; border-radius: 8px; margin: 15px 0; font-size: 0.9rem; text-align: center; }
    
    .full-width { width: 100%; justify-content: center; }
    .border-purple { border: 2px solid #8b5cf6; }
    
    .nav-main { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
    .brand-text { color: #8b5cf6; font-size: 1.2rem; }
    .brand-highlight { font-weight: 600; color: #059669; }
    .section-bg { background: #f8fafc; padding: 80px 0; }
    .center-text { margin-top: 40px; text-align: center; }
    .purple-bg { background: #8b5cf6; }
    
    /* Warning boxes and special containers */
    .warning-box { 
      background: linear-gradient(135deg, #fef3c7, #fed7d7); 
      padding: 25px; 
      border-radius: 15px; 
      margin: 20px 0; 
      border: 2px solid #f59e0b; 
      text-align: center; 
    }
    .warning-title { color: #dc2626; margin-bottom: 15px; }
    .two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 15px; }
    .info-card { background: white; padding: 15px; border-radius: 10px; }
    .info-card-green { border-left: 4px solid #059669; }
    .info-card-purple { border-left: 4px solid #8b5cf6; }
    .info-highlight-green { color: #059669; }
    .info-highlight-purple { color: #8b5cf6; }
    .small-text { font-size: 0.85rem; }
    
    /* Business case specific styles */
    .case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin: 50px 0; }
    .case-card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); border: 2px solid #e2e8f0; }
    .case-number { background: #8b5cf6; color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 20px; }
    .savings-highlight { background: #dcfce7; padding: 15px; border-radius: 12px; margin: 20px 0; border-left: 4px solid #059669; }
    
    /* Business cases styles */
    .case-card { padding: 40px; border-radius: 20px; margin-top: 40px; }
    .case-before { background: #fef2f2; padding: 25px; border-radius: 15px; text-align: center; border: 3px solid #fca5a5; }
    .case-success { background: #f0fdf4; padding: 25px; border-radius: 15px; text-align: center; border: 3px solid #86efac; }
    .arrow-large { text-align: center; font-size: 3rem; color: #059669; }
    .text-large { font-size: 1.2rem; }
    .price-large { font-size: 2rem; font-weight: 800; margin: 10px 0; }
    .text-danger { color: #dc2626; }
    .savings-highlight-large { background: linear-gradient(135deg, #dcfce7, #fef3c7); padding: 25px; border-radius: 15px; text-align: center; margin-top: 25px; border: 4px solid #22c55e; }
    .savings-amount { font-size: 3.5rem; color: #059669; font-weight: 900; margin: 15px 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
    
    .info-highlight-orange { color: #d97706; }
    
    /* Time and price display styles */
    .time-large { font-size: 1.5rem; font-weight: 800; margin: 10px 0; }
    .text-orange { color: #d97706; }
    .case-after-orange { background: #fffbeb; padding: 25px; border-radius: 15px; text-align: center; border: 3px solid #fbbf24; }
    .savings-highlight-orange { background: linear-gradient(135deg, #fef3c7, #fefce8); padding: 25px; border-radius: 15px; text-align: center; margin-top: 25px; border: 4px solid #f59e0b; }
    
    /* Success stories styles */
    .section-white { background: white; padding: 40px; border-radius: 20px; margin-top: 40px; border: 2px solid #e2e8f0; }
    .section-title { color: #0f172a; margin-bottom: 40px; font-size: 1.8rem; }
    .success-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
    .success-card { padding: 25px; border-radius: 15px; border-left: 4px solid; }
    .success-card-green { background: #f0fdf4; border-left-color: #059669; }
    .success-card-purple { background: #fdf4ff; border-left-color: #8b5cf6; }
    .success-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; }
    .success-label-green { color: #059669; }
    .success-label-purple { color: #8b5cf6; }
    .success-text { font-size: 0.9rem; color: #475569; line-height: 1.4; }
    
    /* Text utility classes */
    .text-bold { font-weight: 600; }
    .text-success { color: #059669; }
    .text-purple { color: #8b5cf6; }
    .text-gray { color: #374151; }
    .text-italic { font-style: italic; }
    .highlight-purple { background: #8b5cf6; color: white; }
    .important-notice { background: rgba(139, 92, 246, 0.1); padding: 15px; border-radius: 10px; margin: 15px 0; font-size: 0.85rem; text-align: center; }
    
    /* Case card variants */
    .case-card-green { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%); border: 3px solid #22c55e; }
    .case-card-orange { background: linear-gradient(135deg, #fef3c7 0%, #fef7cd 50%, #fefce8 100%); border: 3px solid #f59e0b; }
    .section-heading { color: #0f172a; margin-bottom: 15px; }
    .case-description { max-width: 600px; margin: 0 auto 30px; font-weight: 600; }
    .text-green { color: #047857; }
    .two-col-centered { grid-template-columns: 1fr auto 1fr; max-width: 800px; margin: 0 auto; }
    .case-heading { margin-bottom: 15px; }
    .text-gray-dark { color: #374151; line-height: 1.4; }
    .text-red-dark { color: #7f1d1d; }
    .text-green-dark { color: #065f46; }
    
    /* Process and savings styles */
    .process-title { color: #d97706; margin-bottom: 15px; text-align: center; }
    .step-number { font-size: 1.2rem; }
    .step-description { color: #64748b; }
    .savings-heading { color: #059669; margin-bottom: 15px; font-size: 1.3rem; }
    .savings-description { color: #374151; margin-bottom: 0; font-size: 1.1rem; font-weight: 600; }
    .text-brown { color: #92400e; }
    .success-card-orange { background: #fff7ed; border-left-color: #f59e0b; }
    .success-label-orange { color: #f59e0b; }
    .ana-quote-large { margin-top: 40px; text-align: center; font-size: 1.3rem; }
    
    /* ==============================================
       DARK THEME STYLES (from "Spremn/a si upoznati Anu" onwards)
       ============================================== */
    .dark-section-cta { background: linear-gradient(135deg, #0f172a, #1e293b); color: white; padding: 80px 0; text-align: center; }
    .dark-heading { color: white; margin-bottom: 20px; }
    .dark-quote { background: rgba(139, 92, 246, 0.2); border-color: #8b5cf6; color: #e2e8f0; }
    .dark-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
    .dark-disclaimer { margin-top: 30px; font-size: 0.9rem; color: #94a3b8; }
    
    /* Footer styles */
    .footer-heading { color: white; margin-bottom: 15px; }
    .footer-text { color: #e2e8f0; line-height: 1.6; margin-bottom: 20px; }
    .footer-contact { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .contact-item { color: #8b5cf6; }
    .footer-powered { 
      margin: 15px 0; 
      font-size: 0.95rem; 
      color: #8b5cf6; 
      font-weight: 600;
    }
    .braintree-link { color: #059669; text-decoration: none; }
    .braintree-link:hover { color: #8b5cf6; text-decoration: underline; }
    
    /* Value proposition box */
    .value-box {
      background: #fef3c7;
      padding: 25px;
      border-radius: 15px;
      margin: 20px 0;
      text-align: center;
      border: 2px solid #f59e0b;
    }
    
    .value-title {
      color: #d97706;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }
    
    .value-content {
      color: #92400e;
      font-size: 1rem;
      line-height: 1.6;
    }
    
    .value-footer {
      margin-top: 15px;
      font-style: italic;
      color: #a16207;
    }
    
    /* PDF dark mode styles */
    .pdf-dark-container {
      background: rgba(255,255,255,0.1);
      border: 2px solid #8b5cf6;
      padding: 30px;
      border-radius: 20px;
      margin-bottom: 40px;
      text-align: center;
    }
    
    .pdf-dark-title {
      color: white;
      margin-bottom: 20px;
      font-size: 1.5rem;
    }
    
    .pdf-dark-desc {
      color: #e2e8f0;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }
    
    .pdf-dark-card {
      background: rgba(255,255,255,0.9);
      padding: 25px;
      border-radius: 15px;
      margin: 20px 0;
    }
    
    .pdf-dark-subtitle {
      font-size: 1.2rem;
      font-weight: 600;
      color: #8b5cf6;
      margin-bottom: 15px;
    }
    
    .pdf-dark-content {
      color: #475569;
      margin: 15px 0;
      line-height: 1.6;
      font-size: 1rem;
    }
    
    .pdf-dark-button {
      background: #059669;
      color: white;
      padding: 15px 30px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 15px 0;
      transition: all 0.3s ease;
    }
    
    .pdf-dark-note {
      font-size: 0.9rem;
      color: #64748b;
      margin-top: 10px;
    }
    .mobile-hidden { display: none; }
    
    /* GDPR Cookie Banner */
    .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1e293b; color: white; padding: 20px; z-index: 10000; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
    .cookie-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
    .cookie-text { flex: 1; min-width: 300px; }
    .cookie-message { margin: 0; font-size: 14px; line-height: 1.4; }
    .privacy-link { color: #8b5cf6; text-decoration: underline; }
    .cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-accept { background: #8b5cf6; color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: 500; }
    .cookie-reject { background: transparent; color: #94a3b8; border: 1px solid #475569; padding: 10px 20px; border-radius: 6px; cursor: pointer; }
    
    /* Final spacing utilities */
    .ana-quote-spacing { margin-top: 40px; }
    .pricing-spacing { margin-bottom: 20px; }
    .section-spacing { margin-bottom: 25px; }
    .text-deep-orange { color: #ea580c; font-size: 1.2rem; }
    
    .case-after-orange {
      background: #fffbeb;
      padding: 25px;
      border-radius: 15px;
      text-align: center;
      border: 3px solid #fbbf24;
    }
    
    .savings-title {
      color: #374151;
      margin-bottom: 0;
      font-size: 1.1rem;
      font-weight: 600;
    }
    
    .savings-desc {
      color: #92400e;
      margin-top: 10px;
      font-size: 0.9rem;
      font-style: italic;
    }
    
    .success-purple {
      background: #f3e8ff;
      border-left-color: #a855f7;
    }
    
    .case-heading-orange {
      color: #d97706;
      margin-bottom: 15px;
    }
    
    .case-heading-red {
      color: #dc2626;
      margin-bottom: 15px;
    }
    
    /* Payment CTA System */
    .payment-cta {
      background: linear-gradient(135deg, #059669 0%, #047857 100%);
      color: white;
      padding: 20px 40px;
      border-radius: 15px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    }
    
    .payment-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
      color: white;
      text-decoration: none;
    }
    
    .payment-features {
      background: #f0fdf4;
      border: 2px solid #059669;
      border-radius: 15px;
      padding: 20px;
      margin: 15px 0;
      text-align: center;
      font-size: 0.9rem;
    }
    
    /* Mobile optimizations */
    @media (max-width: 768px) {
      .hero { padding: 40px 0; }
      .section { padding: 40px 0; }
      .dark-section-cta { padding: 40px 0; }
      .payment-cta { 
        padding: 15px 25px;
        font-size: 1rem;
      }
      .container { padding: 0 15px; }
      
      /* Business case mobile optimizations */
      .case-card { padding: 20px; margin: 20px 0; }
      .two-col-grid { grid-template-columns: 1fr; gap: 20px; }
      .case-before, .case-success { padding: 15px; }
      .arrow-large { display: none; }
    }

    /* ==============================================
       LEGAL SCOPE SECTION STYLES
       ============================================== */
    .ana-legal-scope {
      background: #f8fafc;
      padding: 80px 0;
    }

    /* Eligibility Checker Styles */
    .eligibility-checker {
      margin: 20px 0;
    }

    .eligibility-select {
      width: 100%;
      padding: 15px;
      border: 2px solid #d1d5db;
      border-radius: 12px;
      font-size: 1rem;
      margin: 10px 0;
      background: white;
      transition: border-color 0.3s ease;
    }

    .eligibility-select:focus {
      border-color: #8b5cf6;
      outline: none;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    }

    .eligibility-result {
      margin-top: 20px;
      padding: 20px;
      border-radius: 12px;
      font-weight: 600;
      min-height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .eligibility-result.green {
      background: #dcfce7;
      color: #166534;
      border: 2px solid #22c55e;
    }

    .eligibility-result.yellow {
      background: #fef3c7;
      color: #92400e;
      border: 2px solid #f59e0b;
    }

    .eligibility-result.red {
      background: #fee2e2;
      color: #991b1b;
      border: 2px solid #ef4444;
    }

    /* Legal Table Styles */
    .legal-table-container {
      margin: 40px 0;
    }

    .legal-table {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
      gap: 1px;
      background: #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      margin: 30px 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .table-header {
      display: contents;
    }

    .table-header .table-cell {
      background: #1e293b;
      color: white;
      padding: 20px 15px;
      font-weight: 700;
      text-align: center;
    }

    .table-row {
      display: contents;
    }

    .table-cell {
      background: white;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.9rem;
      border-bottom: 1px solid #e2e8f0;
    }

    /* Status-based row styling */
    .status-green .table-cell {
      background: #f0fdf4;
      border-left: 4px solid #22c55e;
    }

    .status-yellow .table-cell {
      background: #fefce8;
      border-left: 4px solid #eab308;
    }

    .status-red .table-cell {
      background: #fef2f2;
      border-left: 4px solid #ef4444;
    }

    /* Mobile table optimization */
    @media (max-width: 768px) {
      .legal-table {
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
      }
      
      .table-header {
        display: none;
      }
      
      .table-row {
        display: block;
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }
      
      .table-cell {
        display: block;
        padding: 8px 0;
        text-align: left;
        border: none;
        background: transparent !important;
        border-left: none !important;
      }
      
      .table-cell:first-child {
        font-weight: 700;
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e2e8f0;
      }
      
      .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        display: inline-block;
        width: 120px;
        margin-right: 10px;
      }
      
      .status-green .table-row {
        border-left: 6px solid #22c55e;
      }
      
      .status-yellow .table-row {
        border-left: 6px solid #eab308;
      }
      
      .status-red .table-row {
        border-left: 6px solid #ef4444;
      }
    }

/* === NEW ELEMENTS STYLING === */

/* Trust metrics styling */
.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.metric {
  background: rgba(139, 92, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Launch banner styling */
.launch-banner {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

/* Why Now section styling */
.why-now-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.why-now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.why-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-item h4 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.why-item p {
  color: #64748b;
  line-height: 1.5;
}

.why-quote {
  text-align: center;
  font-size: 1.1rem;
  color: #8b5cf6;
  font-style: italic;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  border-left: 4px solid #8b5cf6;
}

/* Powered by styling */
.powered-by {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #64748b;
}

.powered-by strong {
  color: #8b5cf6;
}

/* Mobile responsive for new elements */
@media (max-width: 768px) {
  .trust-metrics {
    gap: 1rem;
  }
  
  .metric {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .launch-banner {
    font-size: 0.85rem;
    padding: 10px;
  }
  
  .why-now-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-item {
    padding: 1.5rem;
  }
}