/* ===================================
   Clarity For Biz - Main Stylesheet
   Fixed & Optimized Version
   =================================== */

/* --- CSS Variables --- */
:root {
    --dark-bg: #0F172A;
    --navy-blue: #1E3A8A;
    --gold: #D4AF37;
    --gold-hover: #B8962E;
    --text-white: #F8FAFC;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* --- Reset & Base Styles --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: var(--font-main); 
    color: var(--dark-bg); 
    line-height: 1.6; 
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* Screen Reader Only (Accessibility) */
.sr-only { 
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip: rect(0,0,0,0); 
    border: 0; 
}

/* --- Header & Navigation --- */
.header { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #E2E8F0; 
}

.nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 80px; 
}

.nav-logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    color: var(--navy-blue); 
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    align-items: center; 
}

.nav-menu a { 
    text-decoration: none; 
    color: var(--dark-bg); 
    font-weight: 600; 
    font-size: 0.9rem; 
    transition: 0.3s; 
}

.nav-menu a:hover { 
    color: var(--gold); 
}

.nav-mobile-cta {
    display: none;
}

/* --- Hero Section --- */
.hero { 
    padding: 180px 0 100px; 
    background: radial-gradient(circle at 50% 0%, var(--navy-blue) 0%, var(--dark-bg) 100%); 
    color: var(--white); 
    text-align: center; 
}

.hero-title { 
    font-family: var(--font-heading); 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: 24px; 
    line-height: 1.1; 
}

.accent { 
    color: var(--gold); 
}

.hero-subtitle { 
    font-size: 1.25rem; 
    color: var(--text-muted); 
    max-width: 750px; 
    margin: 0 auto 40px; 
}

.hero-cta {
    margin-bottom: 16px;
}

.hero-note { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin-top: 15px; 
}

/* --- Buttons --- */
.btn { 
    padding: 16px 32px; 
    border-radius: 6px; 
    font-weight: 700; 
    text-decoration: none; 
    display: inline-block; 
    transition: 0.3s; 
    cursor: pointer; 
    border: none; 
    font-family: var(--font-main);
}

.btn-primary { 
    background: var(--gold); 
    color: var(--dark-bg); 
    font-size: 1.1rem; 
}

.btn-primary:hover { 
    background: var(--gold-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-nav { 
    background: var(--navy-blue); 
    color: var(--white); 
    padding: 10px 20px; 
    font-size: 0.85rem; 
}

.btn-nav:hover {
    background: #1e40af;
}

.btn-gold { 
    background: var(--gold); 
    color: var(--dark-bg); 
    white-space: nowrap;
}

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

/* --- Social Proof --- */
.social-proof { 
    padding: 50px 0; 
    background: #F1F5F9; 
    text-align: center; 
}

.social-proof-text { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--text-muted); 
    margin-bottom: 20px; 
}

.book-logos { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
    opacity: 0.7; 
}

.book-name { 
    font-size: 0.9rem; 
    font-weight: 500; 
    transition: 0.3s;
}

.book-name:hover {
    opacity: 1;
    color: var(--navy-blue);
}

/* --- Features Section --- */
.features { 
    padding: 100px 0; 
}

.section-title { 
    text-align: center; 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 60px; 
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.feature-card { 
    padding: 40px; 
    border: 1px solid #F1F5F9; 
    border-radius: 12px; 
    transition: 0.3s; 
    text-align: center; 
}

.feature-card:hover { 
    border-color: var(--gold); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
    transform: translateY(-5px);
}

.feature-icon { 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.feature-card p {
    color: #64748B;
    line-height: 1.7;
}

/* --- How It Works --- */
.how-it-works { 
    padding: 100px 0; 
    background: var(--bg-light); 
}

.steps-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
}

.step { 
    text-align: center; 
}

.step-number { 
    width: 50px; 
    height: 50px; 
    background: var(--navy-blue); 
    color: var(--gold); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    margin: 0 auto 20px; 
    border: 2px solid var(--gold); 
    font-size: 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.step p {
    color: #64748B;
    line-height: 1.7;
}

/* --- Waitlist Section --- */
.waitlist { 
    padding: 80px 0; 
}

.waitlist-card { 
    background: var(--dark-bg); 
    padding: 60px 40px; 
    border-radius: 20px; 
    text-align: center; 
    color: var(--white); 
    border-top: 4px solid var(--gold); 
    max-width: 900px; 
    margin: 0 auto; 
}

.waitlist-card h2 { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
}

.waitlist-card > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form { 
    display: flex; 
    gap: 10px; 
    max-width: 500px; 
    margin: 0 auto 20px; 
}

.form input { 
    flex: 1; 
    padding: 16px; 
    border-radius: 6px; 
    border: none; 
    font-size: 1rem; 
    font-family: var(--font-main);
}

.form input:focus {
    outline: 2px solid var(--gold);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* --- About Section --- */
.about { 
    padding: 100px 0; 
    text-align: center; 
}

.about-card {
    max-width: 900px;
    margin: 0 auto;
}

.about-text { 
    max-width: 800px; 
    margin: 0 auto; 
    font-size: 1.1rem; 
    color: #475569; 
    line-height: 1.8; 
}

/* --- Footer --- */
.footer { 
    padding: 40px 0; 
    border-top: 1px solid #E2E8F0; 
}

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    color: var(--text-muted); 
    font-size: 0.85rem; 
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a { 
    text-decoration: none; 
    color: var(--text-muted); 
    transition: 0.3s;
}

.footer-legal a:hover {
    color: var(--navy-blue);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu { 
        display: none; 
    }
    
    .nav-mobile-cta {
        display: block;
    }
    
    /* Hero */
    .hero { 
        padding: 140px 0 80px; 
    }
    
    .hero-title { 
        font-size: 2.5rem; 
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Social Proof - Hide on mobile for cleaner look */
    .social-proof { 
        padding: 40px 0;
    }
    
    .book-logos {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Form */
    .form { 
        flex-direction: column; 
    }
    
    .btn {
        width: 100%;
    }
    
    /* Waitlist Card */
    .waitlist-card { 
        padding: 40px 24px; 
    }
    
    .waitlist-card h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title { 
        font-size: 2rem; 
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GLOBAL RESET & FONTS
   ========================= */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER (Homepage Style)
   ========================= */
.header {
  background: #ffffff; /* Bela glava */
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  position: fixed; /* Fiksna glava */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #1e3a8a; /* Temno modra */
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #1e3a8a;
  color: #d4af37; /* Zlata */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #1e293b;
  font-weight: 500;
  font-size: 15px;
}
.nav-link:hover { color: #1e3a8a; }

.nav-btn {
  background: #1e3a8a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-btn:hover { background: #172554; }

/* Mobile Menu Hide on Desktop */
.nav-mobile-cta { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; } /* Poenostavljeno za thank you page */
  .nav-mobile-cta { display: block; }
  .btn-nav-mobile { font-weight: 600; color: #1e3a8a; font-size: 14px;}
}


/* =========================
   THANK YOU PAGE SPECIFIC
   ========================= */
/* =========================
   GLOBAL RESET & FONTS
   ========================= */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER (Homepage Style)
   ========================= */
.header {
  background: #ffffff; /* Bela glava */
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  position: fixed; /* Fiksna glava */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #1e3a8a; /* Temno modra */
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #1e3a8a;
  color: #d4af37; /* Zlata */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #1e293b;
  font-weight: 500;
  font-size: 15px;
}
.nav-link:hover { color: #1e3a8a; }

.nav-btn {
  background: #1e3a8a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-btn:hover { background: #172554; }

/* Mobile Menu Hide on Desktop */
.nav-mobile-cta { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; } /* Poenostavljeno za thank you page */
  .nav-mobile-cta { display: block; }
  .btn-nav-mobile { font-weight: 600; color: #1e3a8a; font-size: 14px;}
}


/* =========================
   THANK YOU PAGE SPECIFIC
   ========================= */

.ty-body {
  background: #0b1220; /* Temno ozadje telesa */
  color: #ffffff;
  padding-top: 80px; /* Razmik za fiksno glavo */
}

.ty-main {
  /* Zagotovi, da je vsebina na sredini ekrana, a dovolj zamaknjena */
  min-height: calc(100vh - 80px - 100px); /* Višina ekrana minus glava minus noga */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 80px; /* Zgornji in spodnji razmik */
}

.ty-card {
  max-width: 680px;
  margin: 0 auto;
  
  /* Temno modra kartica */
  background: #0f172a; 
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
  
  box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.6);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* --- BADGE --- */
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  
  background: transparent;
  border: 1px solid #D4AF37; 
  color: #ffffff;
  
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.ty-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #10b981; /* Zelena */
  color: #fff;
  border-radius: 3px;
  font-size: 10px;
}

/* --- TYPOGRAPHY --- */
.ty-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 16px;
}

.ty-subtitle {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 48px;
  max-width: 500px;
}

.ty-accent {
  color: #D4AF37; 
  font-weight: 700;
}

/* --- STEPS --- */
.ty-steps {
  margin: 0 auto 48px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.ty-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  
  background: rgba(30, 41, 59, 0.5); /* Rahlo svetlejša od ozadja kartice */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.ty-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.4);
  color: #D4AF37;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.ty-step-text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.ty-step-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* --- BUTTON --- */
.ty-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.ty-btn-main {
  background: #d4af37; /* Zlat gumb */
  color: #0f172a; /* Temno besedilo */
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  min-width: 260px;
  text-align: center;
}
.ty-btn-main:hover {
  background: #b5952f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.ty-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* --- FOOTER --- */
.footer {
  text-align: center;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.footer-legal {
  margin-top: 10px;
}
.footer-legal a {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal a:hover { color: #fff; }

/* --- MOBILE --- */
@media (max-width: 600px) {
  .ty-card {
    padding: 40px 20px;
    margin: 0 16px;
  }
  .ty-title { font-size: 36px; }
  .ty-step { padding: 16px; gap: 16px; align-items: flex-start; }
  .ty-btn-main { width: 100%; }
}