/* ==========================================================================
   E-COMMERCE PERFORMANCE CHECK - DESIGN SYSTEM & STYLES (DIVI 5 READY)
   ========================================================================== */

:root {
    --bg-dark: #0d131f;
    --bg-card: rgba(20, 29, 46, 0.88);
    --bg-card-hover: rgba(30, 42, 66, 0.95);
    --border-color: rgba(255, 255, 255, 0.12);
    --border-highlight: #d4af37;
    
    --primary: #d4af37;
    --primary-light: #e5c158;
    --primary-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --primary-hover-gradient: linear-gradient(135deg, #f0cc66 0%, #d4af37 100%);
    
    --accent: #10b981;
    --accent-gold: #e5c158;
    
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --text-dark: #0d131f;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.45);
    --glow-primary: 0 4px 20px rgba(212, 175, 55, 0.35);
    
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* APP CONTAINER - FIXED WIDTH & STABLE LAYOUT */
.app-container {
    width: 900px;
    max-width: 100%;
    min-height: 600px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* LOGO BADGE (SIMBOLO EZ IN ALTO A DESTRA) */
.app-logo-badge {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(184, 134, 11, 0.4) 100%);
    border: 1.5px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 1.15rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 12px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.03em;
    z-index: 10;
    user-select: none;
}

@media (max-width: 920px) {
    body {
        padding: 12px 0;
    }
    .app-container {
        width: 95%;
        min-height: auto;
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }
    .app-logo-badge {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* STEP SECTIONS */
.step-section {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
    flex-grow: 1;
}

.step-section.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    transform: translateY(0);
}

/* BADGES & PILLS */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-pill.success-badge {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--accent);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-light);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* COVER SECTION */
.main-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
    padding-right: 50px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.intro-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.pillars-list {
    list-style: none;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillars-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-icon {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 2px;
}

.pillars-list strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
}

.pillars-list span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.intro-footnote {
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 10px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #0d131f;
    font-weight: 800;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.55);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-main);
    padding: 12px 20px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.btn-lg {
    padding: 20px 42px;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.btn-xl {
    padding: 22px 48px;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    width: 100%;
}

.quiz-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

#btn-next-step {
    padding: 18px 44px;
    font-size: 1.12rem;
    background: var(--primary-gradient);
    color: #0d131f;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
}

.btn-contact {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    box-shadow: none;
}

.btn-contact:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}
.quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    padding-right: 50px;
}

.btn-back {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-back:hover {
    color: var(--text-main);
}

.progress-container {
    flex-grow: 1;
    max-width: 320px;
}

.progress-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar-fill {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
    transition: width 0.35s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

/* QUIZ STEP - STABLE CONTAINER */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 420px;
    animation: fadeIn 0.25s ease;
}

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

.question-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-light);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
    min-height: 18px;
}

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

.question-title {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #ffffff;
    min-height: 58px;
    display: flex;
    align-items: center;
}

.question-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 24px;
}

/* INPUT & OPTIONS */
.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"] {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: inherit;
    font-size: 1.05rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

/* INPUT ERROR MESSAGE - ALTA LEGGIBILITÀ */
.input-error {
    font-size: 0.88rem;
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 8px;
    display: none;
}

.input-error.active {
    display: flex;
    align-items: center;
    gap: 6px;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    min-height: 52px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.option-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.option-card.selected {
    background: rgba(212, 175, 55, 0.16);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary-light);
}

.option-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    outline: none;
    display: grid;
    place-content: center;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}

.option-card input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.15s ease-in-out;
    background-color: var(--primary-light);
}

.option-card.selected input[type="radio"] {
    border-color: var(--primary-light);
}

.option-card.selected input[type="radio"]::before {
    transform: scale(1);
}

.opt-label {
    font-size: 0.98rem;
    color: var(--text-main);
    font-weight: 500;
}

.option-card.muted {
    opacity: 0.85;
}

.quiz-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* LOADING SECTION */
.loading-box {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 24px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-box h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.loading-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RESULTS SECTION */
.result-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.result-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
    color: #ffffff;
}

/* SCORE BOARD */
.score-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 680px) {
    .score-board {
        grid-template-columns: 1fr;
    }
}

.score-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.score-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.score-meter {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.score-meter-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    transition: width 0.8s ease;
}

/* DIAGNOSIS BOX */
.diagnosis-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.weak-point-highlight {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.diagnosis-desc {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.risk-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    color: #fca5a5;
    font-size: 0.95rem;
}

.risk-icon {
    font-size: 1.3rem;
    line-height: 1;
}

/* BLURRED / LOCKED TEASER SECTION */
.blurred-teaser-section {
    margin-bottom: 36px;
}

.teaser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.teaser-header.text-center {
    justify-content: center;
    margin-bottom: 16px;
}

.lock-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.teaser-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blurred-content-wrapper {
    padding: 28px;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    opacity: 0.35;
    user-select: none;
    pointer-events: none;
}

.blurred-content h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.blurred-content p {
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.94) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.lock-icon-lg {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.teaser-overlay-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.teaser-overlay-text {
    font-size: 0.95rem;
    color: var(--text-main);
    max-width: 540px;
    line-height: 1.55;
}

/* SCARCITY & URGENCY CALLOUT BOX */
.scarcity-callout-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(245, 158, 11, 0.12) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin: 22px 0 26px 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    text-align: left;
}

.scarcity-callout-box.scarcity-sm {
    padding: 14px 20px;
    margin: 16px auto 22px auto;
    max-width: 620px;
}

.scarcity-fire-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    animation: firePulse 1.8s infinite alternate ease-in-out;
}

@keyframes firePulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.4)); }
    100% { transform: scale(1.18); filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8)); }
}

.scarcity-text {
    font-size: 1.02rem;
    color: #ffffff;
    line-height: 1.55;
    margin: 0;
}

.scarcity-text strong {
    color: var(--primary-light);
    font-weight: 800;
}

/* CONVERSION BOX */
.conversion-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.conversion-question {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.conversion-instruction {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.conversion-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    width: 100%;
}

@media (min-width: 640px) {
    .conversion-actions {
        flex-direction: row;
        justify-content: center;
    }
    .conversion-actions .btn {
        flex: 1;
    }
}

/* LEAD FORM SECTION */
.lead-header {
    text-align: center;
    margin-bottom: 32px;
}

.lead-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.lead-sub-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.lead-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
}

.form-instruction-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

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

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

.checkbox-group {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* CALENDAR SECTION */
.calendar-header {
    text-align: center;
    margin-bottom: 28px;
}

.calendar-header h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.calendar-sub {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.calendar-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 20px;
}

/* THANK YOU SECTION */
.thankyou-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.thankyou-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.thankyou-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.thankyou-desc {
    font-size: 1.08rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.thankyou-promise {
    font-size: 1rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.5;
}

.thankyou-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.thankyou-alt-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* SEZIONE SEPARATA PER TASTO HOME */
.thankyou-home-box {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-home-only {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 12px 42px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-home-only:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.calendar-action-bar {
    text-align: center;
    margin-bottom: 16px;
}

.iframe-container {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    max-height: 85vh;
}

.iframe-container iframe {
    width: 100%;
    min-height: 750px;
    height: 100%;
    border: none;
    display: block;
}
