@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

:root {
    --phoenix-orange: #FF5A00;
    --phoenix-orange-light: #ff7a33;
    --phoenix-yellow: #FFC700;
    --phoenix-yellow-light: #ffd633;
    --deep-purple: #2E004F;
    --purple-light: #4a1a6b;
    --black: #0a0a0a;
    --white: #FFFFFF;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-500: #71717a;
    --gray-700: #3f3f46;
    --gray-900: #18181b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

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

#hero {
    position: relative;
    min-height: auto;
    background-image: url('attached_assets/2023-11-09_(1)_1767292225469.webp');
    background-size: cover;
    background-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 40px;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-content {
    align-self: flex-start;
    color: var(--white);
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-200);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content h1 .highlight-orange {
    color: var(--phoenix-orange);
}

.hero-content h1 .highlight-yellow {
    color: var(--phoenix-yellow);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 14px;
}

.hero-benefits li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--phoenix-orange);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--phoenix-orange);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--phoenix-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.35);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-google-badge {
    display: inline-block;
    margin-top: 8px;
}

.hero-google-badge img {
    height: auto;
    max-width: 380px;
    border-radius: 8px;
}

.hero-offer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--phoenix-orange), var(--phoenix-yellow));
}

.offer-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--phoenix-orange);
    margin-bottom: 4px;
}

.offer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.hero-microcopy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    font-weight: 500;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.offer-highlight {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.offer-highlight-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--phoenix-orange);
}

.offer-highlight-sub {
    font-size: 1rem;
    color: var(--gray-500);
}

.offer-features {
    list-style: none;
    margin-bottom: 24px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.offer-features li::before {
    content: "✓";
    color: var(--phoenix-orange);
    font-weight: 700;
}

.offer-participants {
    display: none;
}

.offer-participants .participants-icon {
    font-size: 1.1rem;
}

.offer-countdown-inline {
    display: none;
}

.offer-countdown-inline #offer-days-left {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--phoenix-yellow);
}

.offer-scarcity {
    background: linear-gradient(135deg, var(--phoenix-yellow), #ffdb4d);
    color: var(--gray-900);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.desktop-only {
    display: block;
}

.benefit-desktop-only {
    display: list-item;
}

.offer-cta {
    width: 100%;
    text-align: center;
}

.offer-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
}

section {
    padding: 100px 0;
}

section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

#brezplacno {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--purple-light) 100%);
    color: var(--white);
}

#brezplacno h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.brezplacno-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.brezplacno-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s ease;
}

.brezplacno-card:hover {
    transform: translateY(-4px);
}

.brezplacno-icon {
    width: 56px;
    height: 56px;
    background: var(--phoenix-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.brezplacno-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.brezplacno-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.kvalifikacija-note {
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: 4px solid var(--phoenix-orange);
}

#kako-poteka {
    background: var(--gray-50);
}

#kako-poteka h2 {
    text-align: center;
}

.koraki-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.koraki-grid::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--phoenix-orange), var(--phoenix-yellow));
    z-index: 0;
}

.korak {
    text-align: center;
    position: relative;
    z-index: 1;
}

.korak-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--phoenix-orange);
    color: var(--phoenix-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.korak h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.korak p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

#intro-copy {
    background: var(--white);
    padding: 80px 0;
}

.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text-side {
    max-width: 560px;
}

.intro-lead {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.intro-paragraph strong {
    color: var(--gray-900);
}

.intro-image-side img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

#goals-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.goals-decorative-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,90,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.goals-header {
    text-align: center;
    margin-bottom: 48px;
}

.goals-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-yellow));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.goals-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 64px;
}

.goal-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255,90,0,0.15);
}

.goal-card:hover .goal-accent {
    transform: scaleX(1);
}

.goal-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255,90,0,0.1), rgba(255,199,0,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.goal-content {
    flex: 1;
}

.goal-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.goal-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--phoenix-orange), var(--phoenix-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefits-section {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.benefits-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.benefits-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: var(--phoenix-orange);
    transform: translateY(-2px);
}

.benefit-number {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.benefit-card-wide {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-card-highlight {
    background: linear-gradient(135deg, rgba(255,90,0,0.05), rgba(255,199,0,0.05));
    border: 1px solid rgba(255,90,0,0.15);
}

#vkljuceno {
    background: var(--white);
    padding: 80px 0;
}

.vkljuceno-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.vkljuceno-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
}

.vkljuceno-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vkljuceno-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--gray-50);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.vkljuceno-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-yellow));
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vkljuceno-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vkljuceno-content strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.vkljuceno-detail {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.vkljuceno-bonus {
    background: linear-gradient(135deg, rgba(255,90,0,0.08), rgba(255,199,0,0.08));
    border: 1px solid rgba(255,90,0,0.2);
}

.vkljuceno-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.vkljuceno-cta-box {
    background: linear-gradient(135deg, rgba(255,90,0,0.08), rgba(255,199,0,0.08));
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    border: 1px solid rgba(255,90,0,0.15);
}

.vkljuceno-message {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== REVIEWS MARQUEE SECTION ===== */
#reviews {
    background: #101010;
    padding: 40px 0 80px;
    overflow: hidden;
    margin-top: -1px;
}

.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
}

.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #101010, transparent);
}

.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #101010, transparent);
}

.reviews-marquee {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 24px;
    animation: marquee 60s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-review {
    flex-shrink: 0;
    height: 200px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-review:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 122, 26, 0.3);
}

@media (max-width: 768px) {
    .marquee-review {
        height: 150px;
    }
    
    .reviews-marquee-wrapper::before,
    .reviews-marquee-wrapper::after {
        width: 40px;
    }
    
    #reviews {
        padding: 30px 0 60px;
    }
}

/* Legacy review classes - kept for compatibility */
.review-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

#trainer {
    background: var(--white);
}

.trainer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.trainer-image {
    position: relative;
}

.trainer-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.trainer-image::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 3px solid var(--phoenix-orange);
    border-radius: 16px;
    z-index: -1;
}

.trainer-text h2 {
    margin-bottom: 24px;
}

.trainer-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.trainer-text .trainer-highlight {
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 16px;
}

.trainer-text .trainer-final {
    margin-top: 32px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--phoenix-orange);
}

#location {
    background: var(--gray-50);
}

#location h2 {
    text-align: center;
    margin-bottom: 48px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.location-text {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.location-text p:last-child {
    margin-bottom: 0;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    display: block;
}

#za-koga {
    background: var(--white);
}

#za-koga h2 {
    text-align: center;
    margin-bottom: 48px;
}

.za-koga-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.za-koga-da, .za-koga-ne {
    padding: 32px;
    border-radius: 16px;
}

.za-koga-da {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.04));
    border: 2px solid #22c55e;
}

.za-koga-ne {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.04));
    border: 2px solid #ef4444;
}

.za-koga-da h3 {
    color: #16a34a;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 700;
}

.za-koga-ne h3 {
    color: #dc2626;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 700;
}

.za-koga-da ul, .za-koga-ne ul {
    list-style: none;
}

.za-koga-da li, .za-koga-ne li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--gray-700);
}

.za-koga-da li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.za-koga-ne li::before {
    content: "✗";
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

#predrago {
    background: var(--gray-50);
}

#predrago .container {
    max-width: 800px;
    text-align: center;
}

#predrago h2 {
    margin-bottom: 32px;
}

.predrago-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-700);
}

.predrago-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--phoenix-orange);
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255,90,0,0.1), rgba(255,199,0,0.1));
    border-radius: 12px;
    display: inline-block;
}

#faq {
    background: var(--gray-50);
    padding: 60px 0;
}

#faq h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.faq-item:hover {
    border-color: var(--phoenix-orange);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--phoenix-orange);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.faq-item[open] {
    border-color: var(--phoenix-orange);
    box-shadow: var(--shadow-md);
}

/* Legacy FAQ styles - kept for compatibility */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item h3::before {
    content: "?";
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--phoenix-orange);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 40px;
}

#final-cta {
    background: var(--gray-50);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.final-cta-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-700);
}

.final-cta-text strong {
    color: var(--phoenix-orange);
    font-size: 1.25rem;
}

.final-cta-image {
    position: relative;
}

.final-cta-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

#cta-banner {
    background: #101010;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 90, 0, 0.2);
    border-bottom: 1px solid rgba(255, 90, 0, 0.2);
}

#cta-banner h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

#cta-banner .cta-button {
    font-size: 1rem;
    padding: 16px 40px;
}

#prijava {
    background: var(--gray-100);
}

#prijava h2 {
    text-align: center;
    margin-bottom: 16px;
}

.form-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-wrapper iframe {
    display: block;
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.form-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.form-trust span::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--phoenix-orange);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

footer {
    padding: 48px 24px;
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--gray-200);
}

.footer-contact {
    margin-bottom: 24px;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--phoenix-orange);
}

.footer-links span {
    color: var(--gray-600);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border: 2px dashed var(--gray-300);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 200px;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-offer-card {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .brezplacno-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image-side {
        order: -1;
    }
    
    .vkljuceno-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reviews-featured {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #hero {
        background-image: url('attached_assets/mobile-hero-bg.jpg');
        background-size: cover;
        background-position: center top;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        padding: 40px 16px 30px;
        gap: 24px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-benefits {
        width: 100%;
    }
    
    .hero-benefits li {
        font-size: 0.95rem;
    }
    
    .benefit-desktop-only {
        display: none !important;
    }
    
    .hero-offer-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        margin-bottom: 0;
    }
    
    .offer-title {
        font-size: 1.25rem;
    }
    
    .offer-highlight-main {
        font-size: 2rem;
    }
    
    .hero-google-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .hero-google-badge img {
        max-width: 180px;
        height: auto;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .participants-banner {
        display: none !important;
    }
    
    .koraki-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .koraki-grid::before {
        display: none;
    }
    
    .goals-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card-wide {
        max-width: 100%;
    }
    
    .vkljuceno-cta-box {
        padding: 24px 20px;
    }
    
    .vkljuceno-message {
        font-size: 1.1rem;
    }
    
    .za-koga-grid {
        grid-template-columns: 1fr;
    }
    
    .trainer-layout,
    .location-content,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .trainer-image::after {
        display: none;
    }
    
    .reviews-featured {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 1.75rem;
    }
    
    .brezplacno-grid {
        grid-template-columns: 1fr;
    }
    
    .form-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .koraki-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        padding-left: 0;
        margin-top: 8px;
    }
    
    .faq-item h3::before {
        display: none;
    }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner a {
    color: var(--phoenix-orange);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--phoenix-orange);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-banner button:hover {
    background: var(--phoenix-orange-light);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
        text-align: center;
    }
}

/* ===== SOCIAL PROOF STORIES SECTION ===== */
#social-proof {
    background: #101010;
    padding: 80px 0;
}

.stories-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 48px;
}

.stories-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
}

.stories-progress {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 20;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.progress-bar.completed .progress-fill {
    width: 100%;
}

.progress-bar.active .progress-fill {
    width: 0%;
}

.stories-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.story-slide.active {
    opacity: 1;
    visibility: visible;
}

.story-slide video,
.story-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unmute-btn {
    position: absolute;
    top: 50px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    z-index: 15;
    transition: background 0.2s ease;
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.unmute-btn svg {
    width: 20px;
    height: 20px;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 4rem 1.5rem 2rem;
    z-index: 10;
}

.story-stars {
    color: #ff7a1a;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.story-quote {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.story-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: background 0.2s ease;
    backdrop-filter: blur(5px);
}

.story-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.story-nav svg {
    width: 24px;
    height: 24px;
}

.story-prev {
    left: -60px;
}

.story-next {
    right: -60px;
}

@media (max-width: 600px) {
    .stories-slider {
        max-width: 100%;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .story-prev,
    .story-next {
        display: none;
    }
    
    .stories-title {
        font-size: 1.75rem;
    }
    
    .story-quote {
        font-size: 1rem;
    }
    
    .story-overlay {
        padding: 3rem 1.25rem 1.5rem;
    }
}

/* =================================
   TOP COUNTDOWN BAR
   ================================= */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-bottom: 1px solid rgba(255,90,0,0.3);
    padding: 10px 16px;
}

.countdown-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-bar-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.countdown-timer-inline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-timer-inline .countdown-unit {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,90,0,0.15);
    padding: 4px 10px;
    border-radius: 6px;
}

.countdown-timer-inline .countdown-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--phoenix-orange);
}

.countdown-timer-inline .countdown-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: lowercase;
}

#hero {
    padding-top: 60px;
}

/* =================================
   PARTICIPANTS BANNER
   ================================= */
.participants-banner {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(255,90,0,0.95), rgba(255,140,0,0.95));
    padding: 16px 24px;
    margin-top: 24px;
}

/* Mobile-only participants section - after hero */
.participants-section-mobile {
    display: none;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-orange-light));
    padding: 18px 20px !important;
    text-align: center;
}

@media (max-width: 768px) {
    .participants-section-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .participants-section-mobile .participants-icon {
        font-size: 1.3rem;
    }
    
    .participants-section-mobile .participants-number {
        font-size: 1.4rem;
        font-weight: 800;
        color: white;
    }
    
    .participants-section-mobile .participants-text {
        font-size: 0.95rem;
        color: white;
        font-weight: 500;
    }
}

@media (min-width: 1024px) {
    .participants-banner {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 0;
    }
    
    #hero {
        padding-bottom: 80px;
    }
}

.participants-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.participants-icon {
    font-size: 1.5rem;
}

.participants-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.participants-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* =================================
   STICKY CTA BUTTON
   ================================= */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.85));
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-orange-light));
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,90,0,0.4);
}

/* =================================
   EXIT POPUP
   ================================= */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.exit-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255,90,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.exit-popup-close:hover {
    color: white;
}

.exit-popup-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.exit-popup-content > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

.exit-popup-motivation {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--phoenix-yellow);
    margin-bottom: 24px;
    line-height: 1.5;
}

.exit-popup-countdown {
    margin-bottom: 24px;
    background: rgba(255,90,0,0.1);
    border: 1px solid rgba(255,90,0,0.3);
    border-radius: 12px;
    padding: 16px;
}

.exit-countdown-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    font-weight: 500;
}

.exit-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.exit-countdown-timer .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-orange-light));
    padding: 10px 14px;
    border-radius: 10px;
    min-width: 55px;
    box-shadow: 0 4px 15px rgba(255,90,0,0.3);
}

.exit-countdown-timer .countdown-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.exit-countdown-timer .countdown-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-popup-cta {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.exit-popup-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* =================================
   GUARANTEES BAR
   ================================= */
.guarantees-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255,90,0,0.08), rgba(255,199,0,0.05));
    border-radius: 12px;
    border: 1px solid rgba(255,90,0,0.15);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-yellow));
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* =================================
   QUIZ SECTION
   ================================= */
.quiz-container {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.quiz-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quiz-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.quiz-questions {
    max-width: 500px;
    margin: 0 auto;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.quiz-q {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    padding: 16px 24px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    border-color: var(--phoenix-orange);
    color: var(--phoenix-orange);
}

.quiz-option.selected {
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-orange-light));
    border-color: var(--phoenix-orange);
    color: white;
}

.quiz-result {
    padding: 24px;
    text-align: center;
}

.quiz-result.hidden {
    display: none;
}

.quiz-result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-yellow));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.quiz-result h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quiz-result p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.quiz-result-icon-negative {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.quiz-result-negative h4 {
    color: #dc2626;
}

.quiz-call-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--phoenix-orange), var(--phoenix-orange-light));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,90,0,0.3);
}

.quiz-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,90,0,0.4);
}

/* =================================
   CALL OPTION (PROMINENT)
   ================================= */
.call-option-prominent {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255,90,0,0.1), rgba(255,199,0,0.1));
    border: 2px solid var(--phoenix-orange);
    border-radius: 16px;
}

.call-icon {
    font-size: 2rem;
}

.call-text {
    text-align: left;
}

.call-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.call-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--phoenix-orange);
    text-decoration: none;
    transition: all 0.2s ease;
}

.call-number:hover {
    color: var(--phoenix-orange-light);
}

/* =================================
   RESPONSIVE FOR NEW ELEMENTS
   ================================= */
@media (max-width: 768px) {
    .guarantees-bar {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .countdown-bar-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .countdown-bar-text {
        font-size: 0.8rem;
    }
    
    .countdown-timer-inline .countdown-number {
        font-size: 0.95rem;
    }
    
    .participants-banner {
        padding: 14px 16px;
        margin-top: 16px;
    }
    
    .hero-container {
        padding-bottom: 20px;
    }
    
    .participants-number {
        font-size: 1.4rem;
    }
    
    .participants-text {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .quiz-container {
        padding: 24px 16px;
    }
    
    .exit-popup-content {
        padding: 30px 20px;
    }
}
