/* ==========================================
   ADHD SYSTEM - DESIGN SYSTEM & STYLESHEET
   Spacious Minimalist White Backdrop + Vibrant Playful Colors
   ========================================== */

/* Globale spremenljivke */
:root {
    /* Barvna paleta (Vibrantne, igrive Google-style barve) */
    --google-blue: #1a73e8;
    --google-blue-hover: #1557b0;
    --google-blue-light: #e8f0fe;
    
    --google-red: #ea4335;
    --google-red-hover: #c5221f;
    --google-red-light: #fce8e6;
    
    --google-yellow: #f9ab00; /* Zlato-rumena za večjo premium berljivost */
    --google-yellow-hover: #d58000;
    --google-yellow-light: #fef7e0;
    
    --google-green: #1e8e3e;
    --google-green-hover: #137333;
    --google-green-light: #e6f4ea;

    /* Nevtralne barve za minimalističen videz */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    
    /* Pisave in tipografija */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Radiji in sence */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 16px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ponastavitve (Reset) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Struktura in posode */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

/* Pripomočki (Utilities) */
.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;
}

.text-blue { color: var(--google-blue); }
.text-red { color: var(--google-red); }
.text-yellow { color: var(--google-yellow); }
.text-green { color: var(--google-green); }

.bg-light-blue { background-color: var(--google-blue-light); }
.bg-light-red { background-color: var(--google-red-light); }
.bg-light-green { background-color: var(--google-green-light); }
.bg-light-yellow { background-color: var(--google-yellow-light); }

.text-highlight {
    position: relative;
    white-space: nowrap;
    font-weight: 800;
}

/* Značke (Badges) */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge-blue { background-color: var(--google-blue-light); color: var(--google-blue); }
.badge-red { background-color: var(--google-red-light); color: var(--google-red); }
.badge-yellow { background-color: var(--google-yellow-light); color: var(--google-yellow); }
.badge-green { background-color: var(--google-green-light); color: var(--google-green); }

/* Gumbi (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-md {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--google-blue);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.25);
}

.btn-primary:hover {
    background-color: var(--google-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navigacijska vrstica */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    gap: 2px;
}

.logo-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
    margin-right: 2px;
    box-shadow: var(--shadow-sm);
}

.logo-blue { background-color: var(--google-blue); }
.logo-red { background-color: var(--google-red); transform: rotate(-5deg); }
.logo-yellow { background-color: var(--google-yellow); transform: rotate(5deg); }

.logo-text {
    margin-left: 6px;
    letter-spacing: -0.5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--google-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--google-blue);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Sekcija */
.hero-section {
    background: radial-gradient(circle at 80% 20%, var(--google-blue-light) 0%, rgba(255,255,255,0) 50%),
                radial-gradient(circle at 10% 80%, var(--google-yellow-light) 0%, rgba(255,255,255,0) 40%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ADHD Dashboard vizualizacija */
.hero-dashboard-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.dashboard-header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.dot.red { background-color: var(--google-red); }
.dot.yellow { background-color: var(--google-yellow); }
.dot.green { background-color: var(--google-green); }

.dashboard-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.dashboard-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracker-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tracker-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.progress-bar-container {
    height: 8px;
    background-color: var(--bg-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    width: 100%;
}

.progress-bar {
    height: 100%;
    border-radius: var(--radius-full);
}

.bg-blue { background-color: var(--google-blue); }
.bg-red { background-color: var(--google-red); }
.bg-green { background-color: var(--google-green); }
.bg-yellow { background-color: var(--google-yellow); }

.tracker-value {
    font-size: 0.8125rem;
    font-weight: 700;
    align-self: flex-end;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
}

.widget {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    align-items: center;
}

.widget i {
    font-size: 1.25rem;
}

.widget-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-primary);
}

.widget-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dashboard-circle-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    animation: pulseGlow 6s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Brezplačna E-Knjiga Banner (Lead Magnet) */
.free-book-banner {
    background-color: var(--bg-white);
    padding: 0 0 64px 0;
}

.banner-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.banner-text h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.banner-form-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-form-container .lead-form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.banner-form-container .input-wrapper {
    flex-grow: 1;
}

.banner-form-container input {
    padding: 14px 20px 14px 50px;
}

.banner-form-container .input-icon {
    left: 18px;
}

.banner-form-container .btn {
    padding: 14px 24px;
    flex-shrink: 0;
}

.banner-form-container .trust-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Glava sekcije (Section Header) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Knjiga Sekcija (Spodnji del) */
.knjiga-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.knjiga-prihajajoca-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 56px auto;
}

.knjiga-prihajajoca-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.knjiga-prihajajoca-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.knjiga-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.knjiga-visual-bottom {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-book-img {
    max-width: 100%;
    max-height: 420px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) rotateZ(3deg);
    box-shadow: 15px 25px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.hero-book-img:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) rotateZ(1deg) scale(1.03);
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.2);
}

.knjiga-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.knjiga-preorder-box {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.knjiga-preorder-box h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.knjiga-preorder-box p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.preorder-form {
    display: flex;
    gap: 12px;
}

.preorder-form .input-wrapper {
    flex-grow: 1;
}

.preorder-form input {
    padding: 14px 20px 14px 50px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}

.preorder-form input:focus {
    border-color: var(--google-blue);
}

.preorder-form .btn {
    padding: 14px 24px;
}

.preorder-feedback {
    display: none;
    background-color: var(--google-green-light);
    color: var(--google-green);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    margin-top: 16px;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

/* Citati */
.knjiga-quote-box {
    background: linear-gradient(135deg, var(--google-blue-light) 0%, var(--google-yellow-light) 100%);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.quote-icon {
    font-size: 3rem;
    color: var(--google-blue);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 24px;
}

.knjiga-quote-box blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    color: #111827;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

.quote-author strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.quote-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* 7 Aspektov grid */
.aspekti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.aspekt-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.aspekt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.aspekt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.aspekt-card:hover::before {
    width: 100%;
    height: 4px;
}

.aspekt-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    opacity: 0.15;
    color: var(--text-primary);
}

.aspekt-icon {
    font-size: 2.25rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aspekt-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.aspekt-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: auto;
    padding-bottom: 24px;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.read-more i {
    transition: var(--transition);
}

.aspekt-card:hover .read-more i {
    transform: translateX(4px);
}

/* Knjižnica E-knjig (Knjigarna) */
.knjiznica-section {
    background-color: var(--bg-white);
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--text-primary);
}

.filter-btn.active {
    background-color: var(--google-blue);
    color: white;
    border-color: var(--google-blue);
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.2);
}

.eknjige-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.eknjiga-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.eknjiga-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.eknjiga-cover-mock {
    height: 180px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
}

.cover-icon {
    font-size: 2rem;
    align-self: flex-start;
}

.eknjiga-cover-mock h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: auto;
    margin-top: 12px;
}

.eknjiga-cover-mock span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.eknjiga-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eknjiga-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.eknjiga-info h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.eknjiga-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.eknjiga-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.eknjiga-footer .price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Coaching Sekcija (Za starše) */
.coaching-section {
    background-color: var(--bg-light);
}

.coaching-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: flex-start;
}

.coaching-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.coaching-intro-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.coaching-intro-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.coaching-intro-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.coaching-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coaching-option-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.coaching-option-card:hover {
    border-color: var(--google-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.coaching-option-card.active {
    border-color: var(--google-blue);
    background-color: rgba(26, 115, 232, 0.02);
    box-shadow: var(--shadow-md);
}

.option-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.6875rem;
    font-weight: 800;
    background-color: var(--google-blue-light);
    color: var(--google-blue);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.option-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.option-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.option-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 4px;
}

.coaching-option-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 85%;
}

.option-select-indicator {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.coaching-option-card.active .option-select-indicator {
    color: var(--google-green);
}

/* Calendly Mock */
.calendly-mock-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.calendly-header {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.calendly-profile-pic {
    width: 48px;
    height: 48px;
    background-color: var(--google-blue);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
}

.calendly-title-info h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
}

.calendly-title-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

#calendly-platform-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-block;
    margin-top: 4px;
}

.calendly-body {
    padding: 24px;
}

.calendly-body h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
}

.cal-header {
    cursor: default;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cal-day.disabled {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-day:not(.cal-header):not(.disabled):hover {
    background-color: var(--bg-light);
}

.cal-day.active {
    background-color: var(--google-blue-light);
    color: var(--google-blue);
    border: 2px solid var(--google-blue);
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.time-slot {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--google-blue);
    color: var(--google-blue);
}

.time-slot.active-slot {
    background-color: var(--google-blue);
    color: white;
    border-color: var(--google-blue);
}

.calendly-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

/* Modali (Modals) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(8px);
}

.modal-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    z-index: 1001;
    padding: 48px;
    border: 1px solid var(--border-color);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Aspekti Modal Vsebina */
.modal-aspekt-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-aspekt-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.modal-aspekt-body h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 24px 0 12px 0;
}

.modal-aspekt-body ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-aspekt-body li {
    display: flex;
    gap: 12px;
    font-size: 0.9375rem;
}

.modal-aspekt-body li i {
    margin-top: 4px;
}

.modal-aspekt-body p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Naročilo Modal */
.checkout-container {
    max-width: 480px;
    padding: 32px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 24px;
}

.checkout-header i {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.checkout-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.checkout-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkout-summary {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.item-line, .total-line {
    display: flex;
    justify-content: space-between;
}

.item-line {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.total-line {
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    color: var(--text-primary);
}

.stripe-mock-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stripe-mock-form label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.stripe-mock-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition);
}

.stripe-mock-form input:focus {
    border-color: var(--google-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Uspeh pri naročilu */
.checkout-success {
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--google-green);
    margin-bottom: 20px;
}

.checkout-success h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.checkout-success p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Noga (Footer) */
.main-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--google-blue);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.125rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--google-blue);
    color: white;
    border-color: var(--google-blue);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Prilagodljivost (Responsive Web Design) */
@media (max-width: 1024px) {
    .hero-container, .knjiga-grid, .coaching-grid, .banner-box {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding-top: 64px;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
        letter-spacing: -0.75px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .lead-form {
        flex-direction: column;
    }
    
    .banner-box {
        padding: 32px 24px;
    }
    
    .banner-form-container .lead-form {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        padding: 24px;
    }
    
    .coaching-cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .coaching-cta-box .btn {
        width: 100%;
    }
    
    .preorder-form {
        flex-direction: column;
    }
}

/* ==========================================
   DODATNI STILI ZA PRODAJO IN PODROBNOSTI E-KNJIG
   ========================================== */

/* Značke stanja na karticah e-knjig */
.badge-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.badge-status.available {
    background-color: var(--google-green-light);
    color: var(--google-green);
    border: 1px solid rgba(30, 142, 62, 0.2);
}

.badge-status.coming-soon {
    background-color: var(--google-yellow-light);
    color: var(--google-yellow-hover);
    border: 1px solid rgba(249, 171, 0, 0.2);
}

/* Prilagoditev kartic za prihajajoče knjige */
.eknjiga-card.coming-soon {
    opacity: 0.85;
    filter: grayscale(15%);
    transition: var(--transition);
}

.eknjiga-card.coming-soon:hover {
    transform: translateY(-4px);
    opacity: 0.95;
    filter: grayscale(0%);
    border-color: var(--google-yellow);
}

.price-coming {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-secondary);
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

/* Skupina gumbov na kartici e-knjige */
.eknjiga-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.eknjiga-actions .btn-detail-ebook {
    padding: 8px 14px;
    font-size: 0.8125rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-secondary);
}

.eknjiga-actions .btn-detail-ebook:hover {
    background-color: var(--bg-light);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.eknjiga-actions .btn-buy-ebook {
    padding: 8px 12px;
    font-size: 0.875rem;
}

/* ==========================================
   STYLE ZA PODROBNOSTI KNJIGE (DETAIL MODAL)
   ========================================== */
.detail-container {
    max-width: 960px;
    width: 95%;
    padding: 40px;
}

.modal-ebook-detail {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
}

/* Leva stran: Visual knjige */
.modal-ebook-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
}

.detail-cover-mock {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    border-radius: var(--radius-md);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 10px 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: perspective(800px) rotateY(-8deg);
    transition: var(--transition);
}

.detail-cover-mock:hover {
    transform: perspective(800px) rotateY(-2deg);
    box-shadow: 12px 18px 40px rgba(0, 0, 0, 0.16);
}

.detail-cover-mock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 10%, rgba(0,0,0,0.05) 50%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0.2) 100%);
    pointer-events: none;
}

.detail-cover-mock .cover-icon {
    font-size: 3.5rem;
    align-self: flex-start;
}

.detail-cover-mock h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: auto;
}

.detail-cover-mock span.author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.detail-ebook-badge {
    margin-top: 20px;
    font-size: 0.8125rem;
}

/* Desna stran: Vsebina */
.modal-ebook-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-header-info h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.detail-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 500;
}

.detail-desc-box {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.detail-desc-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Seznam poglavij */
.detail-chapters-section h4, 
.detail-value-section h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chapters-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.chapters-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 10px 14px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.chapters-list li:hover {
    background-color: var(--bg-white);
    border-color: var(--accent);
    transform: translateX(4px);
}

.chapters-list li i {
    margin-top: 4px;
    font-size: 0.9375rem;
    color: var(--accent);
}

.chapter-number {
    font-weight: 700;
    color: var(--accent);
    min-width: 90px;
    flex-shrink: 0;
}

.chapter-title-text {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* Prednosti / Value */
.value-box {
    background-color: rgba(30, 142, 62, 0.02);
    border: 1px dashed var(--google-green);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-box li {
    display: flex;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.value-box li i {
    color: var(--google-green);
    margin-top: 4px;
}

/* Footer nakupni blok v modalu */
.detail-purchase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-top: 12px;
}

.detail-price-box {
    display: flex;
    flex-direction: column;
}

.detail-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.detail-price-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.detail-purchase-footer .btn {
    padding: 14px 28px;
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.25);
}

/* ==========================================
   STYLE ZA OBVEŠČANJE (NOTIFY FORM)
   ========================================== */
.notify-container {
    max-width: 450px;
    padding: 32px;
}

.notify-header {
    text-align: center;
    margin-bottom: 24px;
}

.notify-header i {
    font-size: 2.75rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: swingBell 4s infinite ease-in-out;
}

@keyframes swingBell {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
}

.notify-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.notify-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* RESPONSIVE DESIGN ZA NOVE ELEMENTE */
@media (max-width: 768px) {
    .modal-ebook-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .modal-ebook-visual {
        position: relative;
        max-width: 220px;
        margin: 0 auto;
    }

    .detail-container {
        padding: 32px 20px;
    }

    .detail-purchase-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .detail-purchase-footer .btn {
        width: 100%;
    }
}

/* ==========================================
   SLIKOVNO GRADIVO IN POSTAVITEV (3 V VRSTICI)
   ========================================== */

/* Namizna postavitev: Točno 3 e-knjige v vrstici */
@media (min-width: 1024px) {
    .eknjige-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 36px;
    }
}

/* Slikovne kartice za aktivne e-knjige */
.eknjiga-cover-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-card-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.eknjiga-card:hover .ebook-card-cover-img {
    transform: scale(1.06);
}

/* Slikovni prikaz v podrobnem modalu knjige */
.detail-cover-image-container {
    width: 100%;
    aspect-ratio: 1 / 1.45;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.detail-cover-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.detail-cover-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Prilagoditve za lepši odmik gumbov */
.eknjiga-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.eknjiga-actions .btn-detail-ebook {
    flex-grow: 1;
    text-align: center;
    justify-content: center;
}

.eknjiga-actions .btn-buy-ebook {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}


