/**
 * Social Media Holiday Calendar
 * CreatorFlow Free Tool
 *
 * Brand Colors:
 * - Primary Accent: #d1fe17 (Lime Green)
 * - Dark: #000000 (Pure Black) - ONLY this for dark backgrounds
 * - Text: #000000, #374151, #6b7280
 * - Background: #ffffff, #f9fafb
 *
 * NO box-shadows allowed
 * NO gradients on dark backgrounds
 */

/* ============================================
   BASE STYLES (Mobile-First)
   ============================================ */

.tool-container {
    min-height: 100vh;
    background: #ffffff;
}

/* ============================================
   HERO SECTION
   ============================================ */

.tool-hero {
    /* NOTE: NO border-bottom - removed per user request */
    background: #ffffff;
    padding: 11rem 0 1.5rem;
    text-align: center;
}

.tool-hero__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tool-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d1fe17;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tool-hero__badge .calendar-icon {
    flex-shrink: 0;
}

.tool-hero__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #000000 !important;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.tool-hero__description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tool-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.tool-hero__actions .btn {
    width: 100%;
    max-width: 280px;
}

/* Hero Share Banner */
.tool-hero__share {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.tool-hero__share .tool-share-banner {
    max-width: 100%;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    border: none;
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn--primary {
    background: #000000;
    color: #ffffff;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--primary:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.btn--secondary {
    background: #000000;
    color: #ffffff;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--secondary:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.btn--outline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn--outline:hover {
    background: #000000;
    color: #ffffff;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--cta-large {
    background: #000000;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--cta-large:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--cta-large:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

/* ============================================
   CALENDAR SECTION
   ============================================ */

.calendar-section {
    padding: 2rem 0;
    background: #ffffff;
}

.calendar-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Calendar Header */
.calendar-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.calendar-month-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.month-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000000;
}

.month-nav-btn:hover {
    border-color: #d1fe17;
    background: #d1fe17;
}

.calendar-month-title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    min-width: 200px;
    text-align: center;
}

#todayBtn {
    padding: 0.5rem 1rem;
}

/* Calendar Filters */
.calendar-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    background: #ffffff;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #000000;
    color: #000000;
}

.filter-btn--active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Category Colors */
.filter-dot--food,
.legend-dot--food,
.holiday-tag--food { background: #f97316; }

.filter-dot--health,
.legend-dot--health,
.holiday-tag--health { background: #22c55e; }

.filter-dot--social,
.legend-dot--social,
.holiday-tag--social { background: #ec4899; }

.filter-dot--nature,
.legend-dot--nature,
.holiday-tag--nature { background: #10b981; }

.filter-dot--arts,
.legend-dot--arts,
.holiday-tag--arts { background: #8b5cf6; }

.filter-dot--national,
.legend-dot--national,
.holiday-tag--national { background: #3b82f6; }

.filter-dot--fun,
.legend-dot--fun,
.holiday-tag--fun { background: #f59e0b; }

.filter-dot--work,
.legend-dot--work,
.holiday-tag--work { background: #6366f1; }

.filter-dot--seasonal,
.legend-dot--seasonal,
.holiday-tag--seasonal { background: #ef4444; }

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.calendar-day-header {
    background: #f9fafb;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Calendar Day Cells */
.calendar-day {
    background: #ffffff;
    min-height: 80px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calendar-day:hover {
    background: #f9fafb;
}

.calendar-day--empty {
    background: #fafafa;
    cursor: default;
}

.calendar-day--empty:hover {
    background: #fafafa;
}

.calendar-day--today {
    background: #fefce8;
}

.calendar-day--today:hover {
    background: #fef9c3;
}

.calendar-day__number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.calendar-day--empty .calendar-day__number {
    color: #d1d5db;
}

.calendar-day--today .calendar-day__number {
    background: #d1fe17;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.calendar-day__holidays {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.holiday-tag {
    font-size: 0.625rem;
    padding: 2px 4px;
    border-radius: 4px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.holiday-more {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 500;
}

/* Calendar Legend */
.calendar-legend {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
}

.legend-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   HOLIDAY MODAL
   ============================================ */

.holiday-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.holiday-modal--active {
    display: flex;
}

.holiday-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.holiday-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
}

.holiday-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
}

.holiday-modal__close:hover {
    background: #e5e7eb;
    color: #000000;
}

.holiday-modal__header {
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.holiday-modal__date {
    display: inline-block;
    background: #d1fe17;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.holiday-modal__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.holiday-modal__body {
    color: #374151;
}

.holiday-modal__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.holiday-modal__hashtags h4,
.holiday-modal__tips h4 {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hashtag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hashtag-list .hashtag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hashtag-list .hashtag:hover {
    background: #d1fe17;
    color: #000000;
}

.holiday-modal__tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.holiday-modal__tips li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.holiday-modal__tips li::before {
    content: '•';
    color: #d1fe17;
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   INFO SECTION (SEO Content)
   ============================================ */

.tool-info {
    padding: 3rem 0;
    background: #ffffff;
}

.tool-info__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tool-info__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tool-info__subtitle {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.tool-info__content {
    margin-bottom: 1.5rem;
}

.tool-info__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.tool-info__content a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #d1fe17;
    text-underline-offset: 2px;
}

.tool-info__content a:hover {
    background: #d1fe17;
}

/* Benefits Grid */
.tool-info__benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.benefit-card:hover {
    border-color: #d1fe17;
}

.benefit-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #d1fe17;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.benefit-card__icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.benefit-card__text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Steps */
.tool-info__steps {
    margin-bottom: 2rem;
}

.info-step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.info-step:hover {
    border-color: #d1fe17;
}

.info-step__icon {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.info-step__number {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #d1fe17;
    color: #000000;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.info-step__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.info-step__description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Best Practices */
.best-practices-list {
    margin-bottom: 2rem;
}

.best-practice-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.best-practice-item:hover {
    border-color: #d1fe17;
}

.best-practice-item__number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #d1fe17;
    color: #000000;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.best-practice-item__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.best-practice-item__content p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.tool-info__closing {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.tool-info__closing a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #d1fe17;
}

/* ============================================
   NEXT STEP CTA
   ============================================ */

.tool-next-step {
    padding: 3rem 0;
    background: #f9fafb;
}

.tool-next-step__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.tool-next-step__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d1fe17;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tool-next-step__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tool-next-step__description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tool-next-step__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.next-step-feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.next-step-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #d1fe17;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.next-step-feature__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.next-step-feature__text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

.tool-next-step__microcopy {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.tool-faq {
    padding: 3rem 0;
    background: #ffffff;
}

.tool-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tool-faq__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: #d1fe17;
}

.faq-item[open] {
    border-color: #d1fe17;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.faq-answer a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #d1fe17;
}

/* ============================================
   TABLET STYLES (640px+)
   ============================================ */

@media (min-width: 640px) {
    .tool-hero__container,
    .calendar-section__container,
    .tool-info__container,
    .tool-next-step__container,
    .tool-faq__container {
        padding: 0 2.5rem;
    }

    .tool-hero__title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .tool-hero__description {
        font-size: 1.125rem;
    }

    .tool-hero__actions {
        flex-direction: row;
    }

    .tool-hero__actions .btn {
        width: auto;
    }

    .calendar-section {
        padding: 3rem 0;
    }

    .calendar-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .calendar-month-title {
        font-size: 1.75rem;
    }

    .filter-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .calendar-day {
        min-height: 100px;
        padding: 0.75rem;
    }

    .calendar-day__number {
        font-size: 1rem;
    }

    .holiday-tag {
        font-size: 0.6875rem;
    }

    .holiday-modal__content {
        padding: 2rem;
    }

    .holiday-modal__title {
        font-size: 1.75rem;
    }

    .tool-info {
        padding: 4rem 0;
    }

    .tool-info__title {
        font-size: 2rem;
    }

    .tool-info__benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool-next-step {
        padding: 4rem 0;
    }

    .tool-next-step__title {
        font-size: 2rem;
    }

    .tool-next-step__features {
        grid-template-columns: repeat(3, 1fr);
    }

    .tool-faq {
        padding: 4rem 0;
    }

    .tool-faq__title {
        font-size: 2rem;
    }
}

/* ============================================
   DESKTOP STYLES (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .tool-hero__title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .calendar-section {
        padding: 4rem 0;
    }

    .calendar-month-title {
        font-size: 2rem;
    }

    .calendar-day {
        min-height: 120px;
    }

    .holiday-tag {
        font-size: 0.75rem;
    }

    .tool-info {
        padding: 5rem 0;
    }

    .tool-next-step {
        padding: 5rem 0;
    }

    .tool-faq {
        padding: 5rem 0;
    }
}

/* ============================================
   TABLET HERO OVERRIDES (768px max)
   ============================================ */

@media (max-width: 768px) {
    .tool-hero {
        padding: 8rem 0 1rem;
    }
}

/* ============================================
   MOBILE HERO OVERRIDES (430px max)
   ============================================ */

@media (max-width: 430px) {
    .tool-hero {
        padding: 7rem 0 0.75rem;
    }

    .tool-hero__title {
        font-size: 1.25rem;
    }
}

/* ============================================
   FINAL CTA SECTION (Match Homepage)
   ============================================ */

.final-cta-section-new {
    background: #000000;
    padding: 3rem 1rem;
    border-radius: 32px;
    margin: 2rem 1rem;
}

.final-cta-new-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.final-cta-new-content h2 {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta-new-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-cta-primary-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d1fe17;
    color: #000000;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.35);
}

.btn-cta-primary-black:hover {
    background: #e5ff4d;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary-black:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.final-cta-microcopy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.final-cta-new-visual {
    display: none;
}

.final-cta-mockup {
    max-width: 100%;
    height: auto;
}

@media (min-width: 640px) {
    .final-cta-section-new {
        padding: 4rem 2rem;
        margin: 2rem;
    }

    .final-cta-new-content h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-section-new {
        padding: 4rem 3rem;
        margin: 3rem auto;
        max-width: 1400px;
    }

    .final-cta-new-wrapper {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .final-cta-new-content {
        flex: 1;
        max-width: 600px;
    }

    .final-cta-new-content h2 {
        font-size: 2.25rem;
    }

    .final-cta-new-visual {
        display: block;
        flex: 0 0 auto;
    }

    .final-cta-mockup {
        max-width: 350px;
    }

    .final-cta-microcopy {
        justify-content: flex-start;
    }
}
