/*
 * eMaestro — javni sajt (centralni domen)
 *
 * Stilovi koji su do sada stajali inline u pages/tenant/home.blade.php, prebačeni
 * doslovno i istim redosledom (prvi <style> blok iz <head>, pa drugi blok koji je
 * stajao posle sadržaja stranice), da kaskada ostane ista i da naslovna izgleda
 * identično. Učitava ga layouts/site.blade.php, pa ga dele naslovna, kviz i sve
 * buduće javne stranice — nova stranica ne kopira ni jednu liniju CSS-a.
 *
 * Dva pravila `content:` (bedževi „Najpopularnije" i „Idealan početak" na
 * karticama paketa) ostala su inline u naslovnoj jer nose prevod.
 *
 * Bez build koraka: fajl se uključuje preko asset() + filemtime().
 */

:root {
    --primary-purple: #6B46C1;
    --primary-dark: #1a1a2e;
    --accent-gold: #D4AF37;
    --accent-purple: #9D7BD8;
    --text-light: #f8f9fa;
    --text-dark: #2d3748;
    --gradient-primary: linear-gradient(135deg, #6B46C1 0%, #9D7BD8 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    --shadow-soft: 0 10px 40px rgba(107, 70, 193, 0.15);
    --shadow-strong: 0 20px 60px rgba(107, 70, 193, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden !important;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 5%;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    transition: height 0.3s ease;
}

nav.scrolled .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.lang-switcher {
    display: flex;
    gap: 1rem;
    margin-left: 1.5rem;
    align-items: center;
}

.lang-btn {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.lang-btn:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* Hamburger do 1199px: meni ima 7 stavki i ne staje u jedan red ispod 1200px. */
@media (max-width: 1199px) {
    .nav-container {
        padding: 0 5%;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        display: flex !important;
    }

    .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links span {
        color: var(--text-light);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li:last-child {
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active li:last-child {
        opacity: 1;
        transform: translateY(0);
    }

    /* Apple-style staggered animation */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:last-child { transition-delay: 0.45s; }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lang-btn {
        padding: 8px 16px;
        font-size: 1.1rem;
    }
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(157, 123, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInUp 0.8s ease 0.3s both;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 100px 5%;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Why eMaestro Section */
.why-emaestro-section {
    padding: 80px 5%;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: #fdfbff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 70, 193, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.08);
    border-color: var(--primary-purple);
}

.why-card-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.why-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-card-title {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.why-card-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.75;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 80px 5%;
}

.pricing-section .section-title {
    color: var(--text-light);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(157, 123, 216, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.pricing-card.featured::before {
    /* content: prevod iz home.pricing.* — postavlja se inline u home.blade.php */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-header p {
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.pricing-price small {
    font-size: 1rem;
    color: rgba(248, 249, 250, 0.7);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: rgba(248, 249, 250, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.pricing-features li strong {
    color: var(--accent-gold);
}

.pricing-features li em {
    color: var(--accent-purple);
    font-style: normal;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    display: block;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
}

/* Swiper Gallery */
.gallery-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: auto;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .swiper-slide {
        height: 330px;
    }
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.billing-toggle span {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(248, 249, 250, 0.9);
    transition: all 0.3s ease;
}

.billing-toggle span.active {
    color: var(--accent-gold);
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--accent-gold);
}

.toggle-switch.active::before {
    transform: translateX(30px);
}

.discount-badge {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
    padding: 80px 5%;
}

.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-purple);
    border: none;
    font-size: 1.1rem;
}

.cta-section .btn-secondary:hover {
    background: var(--accent-gold);
    color: white;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: inherit;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item h4 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p, .contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--primary-purple);
}

.contact-form {
    background: white;
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
}

.footer-logo p {
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.8;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-purple);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(248, 249, 250, 0.6);
}

.footer-policy-links {
    margin-bottom: 1rem;
}

.footer-policy-links a {
    color: rgba(248, 249, 250, 0.6);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}
/* Za koga je eMaestro Section */
.for-whom-section {
    padding: 80px 0;
    background: #fff;
}

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

.tabs-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.tab-btn {
    padding: 10px 20px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.tab-btn.active {
    background: var(--primary-purple);
    color: var(--text-light);
    border-color: var(--primary-purple);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.tab-panel.active {
    display: block;
}

.panel-header {
    margin-bottom: 30px;
    text-align: left;
}

.panel-header h4 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.panel-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.panel-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.panel-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent-gold); /* Koristimo akcentnu zlatnu boju za kvačicu kako je i u ostatku sajta */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tab-panel {
        padding: 25px;
    }
    .panel-header h4 {
        font-size: 1.5rem;
    }
    .panel-list {
        grid-template-columns: 1fr;
    }
    .tabs-menu {
        gap: 8px;
    }
    .tab-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* ==========================================================
   Ritam pozadina — naizmenično svetlo/tamno.
   Sve nijanse su već postojeće: #fff, #f8f9fa→#e9ecef, --gradient-dark
   ========================================================== */
.bg-light-soft {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-dark {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.bg-dark .section-title,
.bg-dark .section-lead {
    color: var(--text-light);
}

/* Galerija je sada na tamnoj podlozi — Swiper kontrole u boje sajta,
   umesto podrazumevane plave (#007aff) koja nije deo palete. */
.gallery-section {
    --swiper-theme-color: var(--accent-gold);
    --swiper-pagination-bullet-inactive-color: var(--text-light);
    --swiper-pagination-bullet-inactive-opacity: 0.45;
}

/* Uvodna rečenica ispod naslova sekcije */
.section-lead {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Hero — primarni CTA, mikrotekst i trust traka */
.hero-cta-micro {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.75;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 1.75rem;
    padding: 0;
    list-style: none;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-trust svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

/* Numerisane kartice — „Kako izgleda saradnja" i tok zakazivanja */
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.step-card .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.step-card h3 {
    font-size: 1.35rem;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Vremenska linija — „Vaš dan sa eMaestrom" */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 3.5rem auto 0;
    padding-left: 68px;
}

/* Vertikalna linija kroz ceo dan */
.timeline::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 23px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
    opacity: 0.35;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-of-type {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -68px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: var(--shadow-soft);
}

.timeline-time {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-purple);
}

.timeline-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.timeline-item p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.8;
    margin: 0;
}

/* Opcioni blok — online zakazivanje, blago izdvojen */
.timeline-optional {
    position: relative;
    margin-top: 2.5rem;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--accent-gold);
    background: #fdfbff;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.12);
}

.timeline-optional .timeline-dot {
    background: #fff;
    /* Potamnjena zlatna (izvedena iz --accent-gold) — #D4AF37 na beloj daje
       samo 2.1:1 i pada WCAG 1.4.11 za ikonice; ova nijansa daje 4.9:1. */
    border: 2px solid #8a6d1f;
    color: #8a6d1f;
    box-shadow: none;
}

.timeline-optional h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.timeline-optional p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.8;
    margin: 0;
}

/* Završna rečenica iznad CTA dugmeta */
.timeline-closing {
    max-width: 820px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary-purple);
}

@media (max-width: 600px) {
    .timeline {
        padding-left: 52px;
    }

    .timeline::before {
        left: 17px;
    }

    .timeline-dot {
        left: -52px;
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .timeline-optional {
        padding: 1.5rem;
    }

    .timeline-closing {
        font-size: 1.15rem;
    }
}

/* Kartice na tamnoj pozadini — isti glassmorphism kao .pricing-card */
.flow-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 123, 216, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
}

.flow-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.3);
}

.flow-card .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.flow-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.flow-card p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
}

/* CTA ispod sekcije */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Dva dugmeta u panelu „Za koga je eMaestro" — prezentacija i kalkulator */
.panel-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Sekundarno dugme na svetloj podlozi (.btn-secondary je za tamne sekcije) */
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    background: #fff;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-3px);
}

/* Video demo — PRIVREMENO SAKRIVENO zajedno sa sekcijom.
   Stilovi ostaju zakomentarisani da se sekcija vrati bez ponovnog pisanja.
.video-frame {
    position: relative;
    max-width: 960px;
    margin: 3rem auto 0;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(107, 70, 193, 0.1);
    background: var(--primary-dark);
}

.video-frame img,
.video-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 0;
    cursor: pointer;
    background: rgba(26, 26, 46, 0.45);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.video-play:hover {
    background: rgba(26, 26, 46, 0.6);
}

.video-play .video-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.video-play:hover .video-play-icon {
    transform: scale(1.08);
}

.video-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.75;
}
*/

/* Oznaka nivoa pretplate na kartici funkcionalnosti */
.tier-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #8a6d1f;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Istaknuta kartica u „Zašto eMaestro" */
.why-card--highlight {
    border-color: var(--accent-gold);
    background: #fdfbff;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.12);
}

.why-card-icon-fa {
    flex-shrink: 0;
    width: 20px;
    margin-top: 4px;
    text-align: center;
    color: var(--primary-purple);
}

.why-card--highlight .why-card-icon-fa {
    color: var(--accent-gold);
}

/* Paketi — bedž „Idealan početak" na Nivou 2 */
.pricing-card.starter {
    border: 2px solid var(--accent-purple);
}

.pricing-card.starter::before {
    /* content: prevod iz home.pricing.* — postavlja se inline u home.blade.php */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-helper {
    max-width: 720px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.05rem;
}

/* Kalkulator cene */
.calc {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.calc-form {
    background: #fff;
    border: 1px solid rgba(107, 70, 193, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.calc-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 2rem;
}

.calc-fieldset:last-child {
    margin-bottom: 0;
}

.calc-fieldset legend {
    padding: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.calc-hint {
    margin: 0.35rem 0 0.9rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Izbor delatnosti — čipovi. Radio je sakriven, čip je klikabilna oznaka. */
/* Prečica ka kalendaru iznad demo forme */
.demo-express {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1.2rem;
    font-size: 0.95rem;
}

.demo-express a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(107, 70, 193, 0.35);
}

.demo-express a:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }

.calc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.9rem;
}

.calc-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 0.95rem;
    border: 1px solid rgba(107, 70, 193, 0.18);
    border-radius: 999px;
    background: #fdfbff;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.25s ease;
}

.calc-chip input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.calc-chip em {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1;
}

.calc-chip:hover {
    border-color: var(--primary-purple);
    transform: translateY(-1px);
}

.calc-chip:has(input:focus-visible) {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.calc-chip:has(input:checked) {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(107, 70, 193, 0.25);
}

/* Rečenica koja posetiocu vraća njegov problem, po delatnosti */
.calc-mirror {
    margin: 1.1rem 0 0;
    padding: 0.9rem 1.1rem;
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 12px 12px 0;
    background: #fdfbff;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Preporuka nivoa po profilu salona */
.calc-rec-badge {
    display: none;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.18);
    color: #8a6d1f;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.calc-opt.is-recommended {
    border-color: var(--accent-gold);
    background: #fffdf5;
}

.calc-opt.is-recommended .calc-rec-badge {
    display: inline-block;
}

.calc-rec {
    margin: 0.9rem 0 0;
    padding: 0.85rem 1.05rem;
    border: 1px dashed rgba(212, 175, 55, 0.55);
    border-radius: 12px;
    background: #fffdf5;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.calc-rec b {
    color: var(--primary-purple);
}

/* Opcione brojke (prosečna cena i broj usluga) — ulaz za procenu povraćaja */
.calc-numbers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.9rem;
}

.calc-number {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.calc-number > span:first-child {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.75;
}

.calc-number-input {
    position: relative;
    display: block;
}

.calc-number-input input {
    width: 100%;
    height: 44px;
    padding: 0 2.2rem 0 0.9rem;
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 12px;
    background: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.calc-number-input input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.calc-number-input i {
    position: absolute;
    top: 50%;
    right: 0.9rem;
    transform: translateY(-50%);
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.45;
}

@media (max-width: 480px) {
    .calc-numbers {
        grid-template-columns: 1fr;
    }
}

/* Brojač zaposlenih */
.calc-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0.9rem;
}

.calc-stepper button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-purple);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-stepper button:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
}

.calc-stepper input {
    width: 80px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 12px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Opcije (nivo, online zakazivanje, ciklus) */
.calc-opts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-opt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    border: 1px solid rgba(107, 70, 193, 0.15);
    border-radius: 12px;
    background: #fdfbff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-opt:hover {
    border-color: var(--primary-purple);
}

.calc-opt:has(input:checked) {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.1);
}

.calc-opt input {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-purple);
}

.calc-opt b {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.calc-opt span {
    display: block;
    margin-top: 2px;
    font-size: 0.88rem;
    color: var(--text-dark);
    opacity: 0.75;
    line-height: 1.5;
}

/* Tri kartice ispod kalkulatora — brojke, kontrola i mir u salonu.
   Sadržaj se menja sa izborom delatnosti i brojem zaposlenih. */
.calc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.calc-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid rgba(107, 70, 193, 0.12);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.calc-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.calc-card > p {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.75;
}

.calc-card ul {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.calc-card li {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-dark);
}

/* Brojke: svaka stavka nosi nivo na kom je dostupna */
.calc-card-insights li {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(107, 70, 193, 0.2);
}

.calc-tier {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 9px;
    border-radius: 999px;
    background: rgba(107, 70, 193, 0.1);
    color: var(--primary-purple);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.calc-tier.is-addon {
    background: rgba(212, 175, 55, 0.18);
    color: #8a6d1f;
}

/* Kontrola i mir: čekirane stavke */
.calc-card-control li,
.calc-card-calm li {
    position: relative;
    padding-left: 1.7rem;
}

.calc-card-control li::before,
.calc-card-calm li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

.calc-card-note {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 70, 193, 0.12);
    font-size: 0.82rem;
    line-height: 1.55;
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.7;
}

@media (max-width: 900px) {
    .calc-cards {
        grid-template-columns: 1fr;
    }
}

/* Rezultat — tamna kartica, prati stil .pricing-section.
   Namerno nije sticky: uz profil salona, dobitke i procenu povraćaja kartica
   je viša od ekrana, pa bi zalepljena sakrila dno forme za slanje ponude. */
.calc-out {
    background: var(--gradient-dark);
    color: var(--text-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
}

/* Profil salona u tamnoj kartici — personalizovani deo ponude */
.calc-persona {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(157, 123, 216, 0.25);
}

.calc-persona h3 {
    margin: 0.4rem 0 0.6rem;
    font-size: 1.4rem;
    line-height: 1.25;
    color: var(--text-light);
}

.calc-persona p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    opacity: 0.85;
}

/* Naslov sekcije zadržava svoj stil i unutar .calc-persona */
.calc-persona p.calc-out-label {
    margin: 0;
    font-size: 0.75rem;
    opacity: 1;
}

.calc-persona p.calc-wins-title {
    margin: 1.4rem 0 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    opacity: 1;
}

.calc-wins {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.calc-wins li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.9;
}

.calc-wins li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Procena povraćaja */
.calc-roi {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    font-size: 0.9rem;
    line-height: 1.6;
}

.calc-roi b {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.calc-roi ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.calc-roi li {
    position: relative;
    padding-left: 1.1rem;
}

.calc-roi li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
}

.calc-roi strong {
    color: #fff;
}

.calc-roi-note {
    margin: 0.9rem 0 0;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.8rem;
    line-height: 1.55;
    font-style: italic;
    opacity: 0.8;
}

.calc-out-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.calc-total {
    margin: 0.5rem 0 1.5rem;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-light);
}

.calc-total small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.calc-rows > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(157, 123, 216, 0.2);
    font-size: 0.9rem;
}

.calc-rows > div:last-child {
    border-bottom: 0;
}

.calc-rows span {
    opacity: 0.8;
}

.calc-rows b {
    white-space: nowrap;
}

.calc-note {
    margin: 1rem 0 0;
    font-size: 0.8rem;
    opacity: 0.7;
}


/* Forma za ponudu na mejl, unutar tamne kartice */
.calc-offer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(157, 123, 216, 0.25);
}

.calc-offer h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.calc-offer input[type="text"],
.calc-offer input[type="email"],
.calc-offer input[type="tel"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(157, 123, 216, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.calc-offer input::placeholder {
    color: rgba(248, 249, 250, 0.55);
}

.calc-offer input:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 1px;
}

.calc-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0.75rem 0 1rem;
    font-size: 0.82rem;
    opacity: 0.85;
}

.calc-consent input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-gold);
}

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

.calc-submit {
    width: 100%;
    padding: 1rem;
    border: 0;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
}

.calc-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.calc-feedback {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.calc-feedback.is-success {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-gold);
}

.calc-feedback.is-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #f5a3ab;
}

.calc-turnstile {
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .calc {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .calc-form,
    .calc-out {
        padding: 1.5rem;
    }

    .calc-total {
        font-size: 2.25rem;
    }
}

/* FAQ — harmonika bez JavaScript-a */
.faq-list {
    max-width: 860px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fdfbff;
    border: 1px solid rgba(107, 70, 193, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item[open],
.faq-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-purple);
    border-bottom: 2px solid var(--primary-purple);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.35rem;
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.8;
}

/* Završno obećanje iznad demo forme */
.closing-promise {
    margin-bottom: 2rem;
}

.closing-promise h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.closing-promise p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.8;
}

.closing-promise .closing-note {
    margin-top: 0.75rem;
    font-weight: 600;
    opacity: 1;
}

/* Sticky CTA traka na mobilnom */
.sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: var(--gradient-primary);
    box-shadow: 0 -6px 24px rgba(26, 26, 46, 0.25);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
}

.sticky-cta button {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        /* Sve za 15% manje nego na širem ekranu. */
        padding: 0.64rem 0.85rem calc(0.64rem + env(safe-area-inset-bottom));
        /*
         * Levo se ostavlja mesta za lebdeći kružić za kolačiće. Njega
         * ubacuje GTM i nije u našem markapu, pa se ne može poravnati
         * ničim iz koda — zato fiksnih 72px, koliko zauzima kružić od
         * 48–56px sa svojom marginom. Bez ovoga kružić legne preko
         * početka teksta i na dugmetu se čita „kažite besplatnu
         * prezentaciju". Ako je kružić kod Vas veći, dovoljno je
         * povećati ovaj broj.
         */
        padding-left: calc(72px + env(safe-area-inset-left));
    }

    .sticky-cta a {
        padding: 0.72rem 0.85rem;
        font-size: 0.81rem;
    }

    /* Traka ne sme da prekrije dugme za slanje forme */
    body.has-sticky-cta .contact-section {
        padding-bottom: 140px;
    }

    .video-play .video-play-icon {
        width: 60px;
        height: 60px;
    }
}

/* Tabovi po delatnostima — na uskim ekranima horizontalna traka umesto 4 reda */
@media (max-width: 600px) {
    .tabs-menu {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .tabs-menu::-webkit-scrollbar {
        display: none;
    }

    .tabs-menu li {
        scroll-snap-align: start;
    }

    .tab-btn {
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: none;
    }
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.btn-home:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}
.pricing-card-box {
    width: calc((100% / 1) - 12px);
}
.feature-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
}
.pricing-subtitle {
    color: #b298c8;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}
.price {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    color: #f4c7a1;
}
.mesecno {
    font-size: 24px;
    font-weight: 700;
    color: #b6b3b3;
}
.price-details {
    margin: 24px 0;
    padding-left: 14px;
    list-style: square;


}
.price-details li {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
}
.contact-us-button {
    background-color: #b04994;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
}
.contact-us-button:hover {
    background-color: #3a4793;
    text-decoration: none;
    color: white;
}

/* ==========================================================================
 * Podstranice javnog sajta (komponente u resources/views/components/site/)
 *
 * Sve ispod koristi samo postojeće tokene iz :root naslovne — nijedna nova
 * boja. Pravila koja menjaju izgled naslovne stoje u media upitu ili na
 * klasama kojih na naslovnoj nema.
 * ========================================================================== */

/* Navigacija: stavka trenutne stranice (i njenog hub-a) */
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a.active::after {
    width: 100%;
}

/* Meni sa 7 stavki: jedan red sve do hamburgera (1199px). Ispod 1280px se
   razmak i font smanjuju umesto da se „Kako funkcioniše" prelomi u dva reda.
   Granica je 1439px od kada meni ima i dugme „Zakažite prezentaciju". */
@media (min-width: 1200px) {
    .nav-links a {
        white-space: nowrap;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.88rem;
    }

    .lang-switcher {
        gap: 0.25rem;
        margin-left: 0.25rem;
    }
}

/* Tastatura: vidljiv fokus na tamnoj traci i u futeru */
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.site-breadcrumbs a:focus-visible,
.site-card:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Futer: četvrta kolona (delatnosti) — samo na širokom ekranu; ispod 1024px
   ostaje jedna kolona iz postojećeg pravila. */
@media (min-width: 1025px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Uvod podstranice — tamna pozadina kao hero naslovne, ali niži */
.page-hero {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 140px 5% 70px;
}

.page-hero-inner {
    max-width: 960px;
    margin: 0 auto;
}

.page-hero-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.page-hero-lead {
    font-size: 1.15rem;
    max-width: 760px;
    opacity: 0.85;
    margin-bottom: 0;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Putanja (breadcrumbs). Semantički je <nav>, a CSS naslovne stilizuje SVAKI
   <nav> kao fiksnu traku na vrhu — zato se to ovde poništava. */
.site-breadcrumbs {
    position: static;
    width: auto;
    background: none;
    backdrop-filter: none;
    padding: 0;
    z-index: auto;
    transition: none;
}

.site-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
}

.site-breadcrumbs li + li::before {
    content: '›';
    margin: 0 0.5rem;
    opacity: 0.6;
}

.site-breadcrumbs a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
}

.site-breadcrumbs a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.site-breadcrumbs [aria-current] {
    opacity: 0.6;
}

/* Putanja u fiksnoj traci: ispod logoa, poravnata levo sa njim (ista leva
   ivica kao .nav-container). Skrivena dok se putanja u uvodu vidi — nav
   dobija .show-crumbs iz skripte u layouts/site. Jedan red; predugačak
   naziv trenutne stranice se skraćuje tri tačke umesto da podigne traku. */
.nav-breadcrumbs {
    color: var(--text-light); /* u uvodu boju daje .page-hero; ovde bi nasledila tamnu boju body-ja */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

nav.show-crumbs .nav-breadcrumbs {
    max-height: 2rem;
    opacity: 1;
    visibility: visible;
}

.nav-breadcrumbs ol {
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
}

.nav-breadcrumbs li:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-breadcrumbs li:last-child span {
    opacity: 0.6;
}

@media (max-width: 1199px) {
    .nav-breadcrumbs {
        padding: 0 5%;
    }
}

/* Mreža kartica sa linkovima (hub stranice i srodne stranice) */
.site-links + .site-links {
    padding-top: 0;
}

.site-card-grid {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.site-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(107, 70, 193, 0.12);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    color: var(--text-dark);
}

.site-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.site-card-text {
    font-size: 0.95rem;
    opacity: 0.8;
}

.site-card-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 1.1rem 50px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .site-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Blokovi sadržaja podstranice (problemi, rešenja, primer iz prakse) */
.site-grid {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.site-block {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(107, 70, 193, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.site-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.site-block p {
    margin-bottom: 0;
    line-height: 1.65;
}

.site-block--solution {
    border-top: 3px solid var(--accent-gold);
}

.site-block-link {
    margin-top: auto;
    padding-top: 1.25rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
}

.site-block-link:hover {
    color: var(--accent-purple);
}

.site-block-link:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 3px;
    border-radius: 4px;
}

.site-example {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 2rem 2.25rem;
    background: #fff;
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow-soft);
    font-size: 1.1rem;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .site-block {
        padding: 1.5rem;
    }

    .site-example {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/* Koraci na stranicama funkcionalnosti — isti broj u krugu kao „Kako izgleda saradnja" */
.site-steps .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Lista „šta je uključeno" (/kako-funkcionise) */
.site-checklist {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem 2rem;
}

.site-checklist li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.site-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Grupe pitanja na /cesta-pitanja: manji razmak između uzastopnih grupa */
.site-faq + .site-faq {
    padding-top: 0;
}

/* Cenovnik delatnosti (/cenovnik/{delatnost}) */
.site-on-dark {
    color: var(--text-light);
    opacity: 0.85;
}

/* Prekidač Mesečno/Godišnje je sada <button role="switch"> (tastatura, čitač
   ekrana) — poništava se podrazumevani izgled dugmeta, izgled ostaje isti. */
button.toggle-switch {
    border: none;
    padding: 0;
    appearance: none;
}

button.toggle-switch:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.site-pricing-addons {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--text-light);
    opacity: 0.85;
    font-size: 0.95rem;
}

.site-pricing-addons li + li {
    margin-top: 0.4rem;
}

.calc-mirror-static {
    margin-top: 1rem;
    font-style: italic;
}

.calc-opts-spaced {
    margin-top: 0.9rem;
}

.calc-hint-spaced {
    margin-top: 0.9rem;
}

.calc-honeypot {
    position: absolute;
    left: -9999px;
}

/* Dugme „Zakažite prezentaciju" u meniju */
.nav-links .nav-cta a.btn-primary {
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
}

.nav-links .nav-cta a.btn-primary::after {
    display: none;
}

.nav-links .nav-cta a.btn-primary:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Logo se nikada ne skuplja da bi meni stao — meni se pre toga zbija ili prelazi u hamburger. */
.nav-container > a:first-child {
    flex-shrink: 0;
}

/* Naslovna kao pregled: linkovi na stranice delatnosti i funkcionalnosti */
.panel-more {
    margin: 1.25rem 0 0;
    text-align: center;
}

.panel-more a,
.feature-more {
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
}

.feature-more {
    display: inline-block;
    margin-top: 1.25rem;
}

.panel-more a:hover,
.feature-more:hover {
    color: var(--accent-purple);
}

.panel-more a:focus-visible,
.feature-more:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 3px;
    border-radius: 4px;
}

/* „Pogledajte sva pitanja" + „Zakažite…" jedno pored drugog, na telefonu jedno ispod drugog */
#faq .section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Blog: članak i spisak tekstova */
.site-article-meta {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

.site-article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 5% 20px;
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Sekcije članka su <section>, a CSS naslovne svakoj daje 100px razmaka. */
.site-article-body section.site-article-section {
    padding: 0;
    margin-top: 2.75rem;
}

.site-article-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.site-article-section p {
    margin-bottom: 1.1rem;
}

.site-article-section ul,
.site-summary ul {
    padding-left: 1.25rem;
    margin-bottom: 1.1rem;
}

.site-article-section li,
.site-summary li {
    margin-bottom: 0.5rem;
}

.site-summary {
    background: #fff;
    border: 1px solid rgba(107, 70, 193, 0.15);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 1.75rem 0.75rem;
    box-shadow: var(--shadow-soft);
}

.site-summary h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.site-article-emaestro {
    background: var(--gradient-dark);
    color: var(--text-light);
    border-radius: 16px;
    padding: 1.75rem 2rem 0.75rem !important;
}

.site-article-emaestro h2 {
    color: var(--accent-gold);
}

.site-post-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    gap: 1.5rem;
}

.site-post-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(107, 70, 193, 0.12);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    color: var(--text-dark);
}

.site-post-card:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 3px;
}

.site-post-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0.5rem 0 0.75rem;
}

.site-post-meta {
    font-size: 0.85rem;
    opacity: 0.7;
}

.site-post-more {
    font-weight: 600;
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .site-article-body {
        padding: 50px 1.1rem 10px;
        font-size: 1rem;
    }

    .site-article-emaestro {
        padding: 1.5rem 1.25rem 0.5rem !important;
    }

    .site-post-card {
        padding: 1.5rem;
    }
}
