/* Frill-inspired modern styling for PulseButler */

/* CSS Variables following Frill.co design system */
:root {
    --pulse-primary: #5c6ac4;
    --pulse-primary-dark: #4c5aa0;
    --pulse-secondary: #64748b;
    --pulse-success: #10b981;
    --pulse-warning: #f59e0b;
    --pulse-danger: #ef4444;
    --pulse-info: #06b6d4;
    --pulse-accent: #8b5cf6;
    --pulse-background: #fafafb;
    --pulse-surface: #ffffff;
    --pulse-border: #e2e8f0;
    --pulse-text-primary: #1e293b;
    --pulse-text-secondary: #64748b;
    --pulse-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --pulse-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --pulse-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --pulse-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --pulse-gradient: linear-gradient(135deg, #5c6ac4 0%, #8b5cf6 100%);
    --pulse-border-radius: 12px;
    --pulse-border-radius-sm: 8px;
    --pulse-border-radius-lg: 16px;
}

/* Modern typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--pulse-background);
    color: var(--pulse-text-primary);
    line-height: 1.6;
}

/* Hero Section */
.hero-main {
    background: #fafafa;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-content-card {
    background: white;
    border-radius: var(--pulse-border-radius-lg);
    padding: 5rem 3.5rem;
    box-shadow: var(--pulse-shadow-xl);
    border: 1px solid var(--pulse-border);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left-content {
    max-width: 100%;
}

.release-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--pulse-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--pulse-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.release-badge:hover {
    background: var(--pulse-background);
    color: var(--pulse-text-primary);
}

.hero-main-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--pulse-text-primary);
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--pulse-text-secondary);
    line-height: 1.5;
    max-width: 450px;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-primary-btn {
    background: #2d3748;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--pulse-border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.hero-primary-btn:hover {
    background: #1a202c;
    transform: translateY(-1px);
}

.hero-secondary-btn {
    border: 1px solid var(--pulse-border);
    color: var(--pulse-text-secondary);
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: var(--pulse-border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.hero-secondary-btn:hover {
    background: var(--pulse-background);
    color: var(--pulse-text-primary);
    border-color: var(--pulse-text-secondary);
}

.hero-notice {
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Visual Container */
.hero-visual-container {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.alert-preview {
    background: var(--pulse-background);
    border-radius: var(--pulse-border-radius-lg);
    box-shadow: var(--pulse-shadow-md);
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
    border: 1px solid var(--pulse-border);
    position: relative;
}

.alert-card {
    background: white;
    border-radius: var(--pulse-border-radius);
    padding: 1.25rem;
    border: 1px solid var(--pulse-border);
    margin-bottom: 1rem;
    box-shadow: var(--pulse-shadow-sm);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.alert-title {
    font-weight: 600;
    color: var(--pulse-text-primary);
    font-size: 1rem;
}

.alert-business {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--pulse-text-secondary);
    font-size: 0.875rem;
}

.business-icon {
    font-size: 1rem;
}

.alert-summary {
    color: var(--pulse-text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.quick-stats {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    background: white;
    border-radius: var(--pulse-border-radius-sm);
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--pulse-border);
    flex: 1;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pulse-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.5rem;
    color: var(--pulse-text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile hero adjustments */
@media (max-width: 991.98px) {
    .hero-visual-container {
        height: auto;
        padding: 0;
        margin-top: 0;
    }
    
    .alert-preview {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    .hero-left-content {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .hero-cta-section {
        justify-content: flex-start;
    }
    
    .hero-primary-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-notice {
        text-align: left;
    }
    
    .quick-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.5rem 0.25rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
}

/* Dashboard Header */
.dashboard-header {
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    background: var(--pulse-gradient);
    border-radius: 50%;
}

.user-name {
    font-weight: 600;
    color: var(--pulse-text-primary);
    font-size: 1rem;
}

.user-role {
    color: var(--pulse-text-secondary);
    font-size: 0.875rem;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--pulse-background);
    border-radius: var(--pulse-border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.calendar-header {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--pulse-text-primary);
}

.calendar-day-headers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-day-headers span {
    text-align: center;
    font-size: 0.75rem;
    color: var(--pulse-text-secondary);
    font-weight: 500;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25rem;
}

.calendar-days span {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-days span:hover {
    background: rgba(92, 106, 196, 0.1);
}

.calendar-days span.today {
    background: var(--pulse-primary);
    color: white;
    font-weight: 600;
}

.calendar-days span.selected {
    background: var(--pulse-success);
    color: white;
}

.calendar-days span.highlighted {
    background: #2d3748;
    color: white;
    font-weight: 600;
}

/* Review Notification */
.review-notification {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: white;
    border-radius: var(--pulse-border-radius);
    box-shadow: var(--pulse-shadow-lg);
    padding: 1rem;
    border: 1px solid var(--pulse-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

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

.notification-title {
    font-weight: 600;
    color: var(--pulse-text-primary);
    font-size: 0.875rem;
}

.notification-text {
    color: var(--pulse-text-secondary);
    font-size: 0.75rem;
}

/* Responsive Navigation */
.navbar-toggler {
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--pulse-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile navigation adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 1rem;
        border-top: 1px solid var(--pulse-border);
        margin-top: 1rem;
        align-items: flex-start !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--pulse-bg-secondary);
        text-align: left;
        width: 100%;
    }
    
    .navbar-nav .btn {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Reviews Grid Styling */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--pulse-border);
    position: relative;
    transition: all 0.2s ease;
}

.review-item.highlighted {
    border-color: #DC2626;
    background: rgba(220, 38, 38, 0.05);
}

.review-rating {
    font-size: 0.875rem;
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--pulse-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.review-author {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pulse-text-secondary);
}

.review-date {
    font-size: 0.75rem;
    color: var(--pulse-text-secondary);
}

.alert-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #DC2626;
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

.keyword-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #6B7280;
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

.keyword-detected {
    border-color: #0891B2;
    background: rgba(8, 145, 178, 0.05);
}

.keyword-highlight {
    background: rgba(8, 145, 178, 0.2);
    color: #0891B2;
    font-weight: 600;
    padding: 0.125rem 0.25rem;
    border-radius: 4px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.dashboard-name {
    font-weight: 600;
    color: var(--pulse-text-primary);
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Trust Indicators */
.trust-indicators {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    display: flex;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.trust-item {
    background: white;
    border-radius: var(--pulse-border-radius-sm);
    padding: 0.5rem;
    box-shadow: var(--pulse-shadow-md);
    border: 1px solid var(--pulse-border);
    text-align: center;
}

.trust-item.google-stats {
    padding: 0.75rem;
    min-width: 80px;
}

.stats-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pulse-primary);
    line-height: 1;
}

.stats-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--pulse-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.25rem 0;
}

.trust-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.trust-platform {
    font-size: 0.6rem;
    color: var(--pulse-text-secondary);
    font-weight: 500;
}



/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-main-heading {
        font-size: 3rem;
    }
    
    .hero-subtext {
        font-size: 1.125rem;
    }
    
    .hero-content-card {
        max-width: 100%;
        margin: 1rem;
    }
    
    .hero-visual-container {
        padding-left: 0;
        margin-top: 0;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-main-heading {
        font-size: 2.5rem;
        text-align: left !important;
    }
    
    .hero-subtext {
        text-align: left !important;
    }
    
    .hero-cta-section {
        align-items: flex-start;
    }
    
    .hero-primary-btn,
    .hero-secondary-btn {
        align-self: flex-start;
        width: auto;
        justify-content: center;
    }
    
    .hero-notice {
        text-align: left !important;
    }
    
    .hero-content-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
        text-align: left;
    }
    
    .hero-main {
        padding: 1rem 0;
    }
    
    .hero-visual-container {
        height: 400px;
        padding-left: 0;
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
}

/* Plan Summary Section */
.plan-summary-section {
    border-bottom: 1px solid var(--pulse-border);
}

.plan-options {
    flex-wrap: wrap;
    gap: 1.5rem !important;
}

.plan-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--pulse-border-radius);
    border: 1px solid var(--pulse-border);
    box-shadow: var(--pulse-shadow-sm);
}

.plan-indicator {
    font-size: 1.25rem;
}

.plan-details {
    font-size: 0.95rem;
    color: var(--pulse-text-primary);
}

/* Signup Form Section */
.signup-form-section {
    background: white;
}

.signup-form-card {
    background: white;
    border-radius: var(--pulse-border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pulse-shadow-lg);
    border: 1px solid var(--pulse-border);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pulse-text-primary);
}

.form-label {
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: var(--pulse-border-radius-sm);
    border: 1px solid var(--pulse-border);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--pulse-primary);
    box-shadow: 0 0 0 0.2rem rgba(92, 106, 196, 0.25);
}

.form-text {
    color: var(--pulse-text-secondary);
    font-size: 0.875rem;
}

/* Plan Selection */
.plan-selection {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-radio {
    margin-bottom: 0;
}

.plan-radio .form-check-input {
    margin-top: 0;
    margin-right: 0.75rem;
}

.plan-radio .form-check-label {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--pulse-border);
    border-radius: var(--pulse-border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-radio .form-check-label:hover {
    border-color: var(--pulse-primary);
    background: rgba(92, 106, 196, 0.05);
}

.plan-radio .form-check-input:checked + .form-check-label {
    border-color: var(--pulse-primary);
    background: rgba(92, 106, 196, 0.1);
}

.plan-radio-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plan-name {
    font-weight: 600;
    color: var(--pulse-text-primary);
}

.plan-features {
    font-size: 0.875rem;
    color: var(--pulse-text-secondary);
}

/* minimal How-It-Works cards */
.hiw-step{display:flex;flex-direction:column;align-items:center;padding:2rem 1.5rem;border:1px solid var(--pulse-border);border-radius:var(--pulse-border-radius);text-align:center}
.hiw-step{
    background: var(--pulse-surface);
    box-shadow: var(--pulse-shadow-sm);
    transition: all .3s ease;          /* enable smooth motion */
}
.hiw-step:hover{
    box-shadow: var(--pulse-shadow-lg);/* deeper shadow */
    transform: translateY(-4px);       /* lift effect */
}
.hiw-num{display:inline-block;width:2.25rem;height:2.25rem;line-height:2.25rem;border-radius:50%;background:var(--pulse-primary-100);color:var(--pulse-primary);font-weight:700;margin-bottom:.75rem}
.hiw-icon{width:32px;height:32px;stroke-width:2.2px;margin-bottom:1rem}
/* emoji style – add right below .hiw-icon rules */
.hiw-emoji{
  font-size:2.5rem;          /* bigger & bolder than outline icons */
  margin-bottom:1rem;
  line-height:1;
}
.hiw-title{margin-bottom:.5rem}
.hiw-text{font-size:.95rem;color:var(--pulse-text-secondary)}



/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .plan-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .plan-option {
        justify-content: center;
        text-align: center;
    }
    
    .signup-form-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}

/* Text size utilities */
.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

/* Benefits Section - Style */
.benefits-section {
    background: #f8f9fa;
    margin-top: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--pulse-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pulse-text-secondary);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pulse-text-primary);
    line-height: 1.2;
}

/* --- fix subtitle centering --- */
.section-subtitle {
    max-width: none;          /* was 600 px */
    text-align: center;       /* ensure text, not just the wrapper, is centred */
}

/* --- tighten section rhythm on md+ screens --- */
@media (min-width: 768px) and (max-width: 1199.98px) {
    section {                 /* generic catch-all */
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .benefits-section,
    .how-it-works-section,
    .plans-section,
    .faq-section {
        margin-top: 2rem;     /* was 4 rem on some blocks */
    }
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: var(--pulse-border-radius);
    padding: 2rem;
    border: 1px solid var(--pulse-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    box-shadow: var(--pulse-shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(92, 106, 196, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-description {
    color: var(--pulse-text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: white;
    margin-top: 0;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: var(--pulse-border-radius);
    padding: 2rem;
    border: 1px solid var(--pulse-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.step-card:hover {
    box-shadow: var(--pulse-shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(92, 106, 196, 0.2);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--pulse-background);
    color: var(--pulse-text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin: 2.5rem 0 0.75rem 0;
    line-height: 1.3;
}

.step-description {
    color: var(--pulse-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-card{
  padding:2.5rem 2rem;
  background:var(--pulse-surface);
  border-radius:var(--pulse-border-radius);
  border:1px solid var(--pulse-border);
  box-shadow:var(--pulse-shadow-sm);
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}
.plan-card:hover{
  box-shadow:var(--pulse-shadow-lg);
  transform:translateY(-4px);
}
.plan-header{margin-bottom:1.25rem;text-align:center}
.plan-price .price{font-size:2rem;font-weight:700;margin-right:.25rem}
.feature-list{padding:0;margin:0 0 1.5rem;list-style:none}
.feature-icon{width:18px;height:18px;stroke-width:2px;margin-right:.5rem}
.plan-badge{position:absolute;top:-.75rem;left:50%;transform:translateX(-50%);background:var(--pulse-primary);color:#fff;font-size:.75rem;font-weight:600;padding:.25rem .75rem;border-radius:9999px}
.plan-featured{border-color:var(--pulse-primary)}

/* Visual Mockups */
.step-visual {
    margin-top: auto;
    padding-top: 1rem;
}

/* Mock Form */
.mock-form {
    background: var(--pulse-background);
    border-radius: var(--pulse-border-radius-sm);
    padding: 1rem;
}

.mock-input {
    margin-bottom: 0.75rem;
}

.mock-input:last-child {
    margin-bottom: 0;
}

.input-label {
    font-size: 0.75rem;
    color: var(--pulse-text-secondary);
    margin-bottom: 0.25rem;
}

.input-field {
    background: white;
    border: 1px solid var(--pulse-border);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: var(--pulse-text-primary);
}

/* Monitoring Schedule */
.monitoring-schedule {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.day {
    font-size: 0.75rem;
    color: var(--pulse-text-secondary);
    font-weight: 500;
}

.status {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--pulse-background);
}

.schedule-item.active .status {
    background: rgba(92, 106, 196, 0.1);
}

/* Email Preview */
.email-preview {
    background: var(--pulse-background);
    border-radius: var(--pulse-border-radius-sm);
    padding: 1rem;
    border: 1px solid var(--pulse-border);
}

.email-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--pulse-border);
}

.email-icon {
    font-size: 1rem;
}

.email-subject {
    font-weight: 600;
    color: var(--pulse-text-primary);
    font-size: 0.875rem;
}

.email-content {
    font-size: 0.8rem;
}

.reviewer {
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin-bottom: 0.25rem;
}

.review-text {
    color: var(--pulse-text-secondary);
    font-style: italic;
}

/* Keyword Alert */
.keyword-alert {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--pulse-border-radius-sm);
    padding: 1rem;
}

.alert-badge {
    background: var(--pulse-danger);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.keyword-match {
    font-size: 0.875rem;
    color: var(--pulse-text-primary);
    margin-bottom: 0.5rem;
}

.highlighted {
    background: rgba(239, 68, 68, 0.2);
    color: var(--pulse-danger);
    font-weight: 600;
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
}

.action-needed {
    font-size: 0.75rem;
    color: var(--pulse-danger);
    font-weight: 600;
}

/* Settings Panel */
.settings-panel {
    background: var(--pulse-background);
    border-radius: var(--pulse-border-radius-sm);
    padding: 1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--pulse-border);
    font-size: 0.875rem;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    color: var(--pulse-text-secondary);
}

.setting-value {
    color: var(--pulse-text-primary);
    font-weight: 500;
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
    .step-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .step-number {
        position: static;
        margin: 0 auto 1rem auto;
    }
    
    .step-title {
        margin-top: 0;
    }
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    margin-top: 0;
}

.pricing-table-container {
    max-width: 1000px;
    margin: 0 auto;
}

#stripe-pricing-table {
    background: white;
    border-radius: var(--pulse-border-radius);
    box-shadow: var(--pulse-shadow-sm);
    overflow: hidden;
}

.pricing-placeholder {
    background: white;
    border-radius: var(--pulse-border-radius);
    border: 2px dashed var(--pulse-border);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ensure Stripe pricing table styling integrates well */
.pricing-section stripe-pricing-table {
    --stripe-color-primary: var(--pulse-primary);
    --stripe-color-background: var(--pulse-surface);
    --stripe-color-text: var(--pulse-text-primary);
    --stripe-color-text-secondary: var(--pulse-text-secondary);
    --stripe-border-radius: var(--pulse-border-radius-sm);
}

/* Plans Section */
.plans-section {
    background: #f8f9fa;
}

.plan-card {
    background: white;
    border-radius: var(--pulse-border-radius);
    border: 1px solid var(--pulse-border);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pulse-shadow-lg);
}

.plan-featured {
    border: 2px solid var(--pulse-primary);
    transform: scale(1.02);
}

.plan-featured:hover {
    transform: scale(1.02) translateY(-2px);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pulse-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--pulse-border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pulse-primary);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--pulse-text-secondary);
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--pulse-text-primary);
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: var(--pulse-success);
    flex-shrink: 0;
}

.plan-footer {
    margin-top: auto;
}

.plan-description {
    font-size: 0.875rem;
    color: var(--pulse-text-secondary);
    text-align: center;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
    margin-top: 0;
}

.faq-container {
    background: white;
    border-radius: var(--pulse-border-radius);
    border: 1px solid var(--pulse-border);
    padding: 2rem;
    box-shadow: var(--pulse-shadow-sm);
}

.faq-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin-bottom: 1.5rem;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid var(--pulse-border);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    padding: 1.5rem 0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pulse-text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--pulse-primary);
}

.faq-question:focus {
    outline: none;
    color: var(--pulse-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    color: var(--pulse-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Accordion collapse animation */
.accordion-collapse {
    transition: height 0.3s ease;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-container {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 0;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 0 1rem 0;
        font-size: 0.9rem;
    }
}

/* Modern hero section styling */
.hero-section {
    background: var(--pulse-gradient);
    color: white;
    border-radius: var(--pulse-border-radius-lg);
    margin-bottom: 3rem;
}

.hero-icon {
    filter: drop-shadow(var(--pulse-shadow-md));
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

/* Modern step cards */
.step-card {
    padding: 2.5rem 2rem;
    background: var(--pulse-surface);
    border-radius: var(--pulse-border-radius);
    border: 1px solid var(--pulse-border);
    box-shadow: var(--pulse-shadow-sm);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--pulse-shadow-lg);
    transform: translateY(-4px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--pulse-gradient);
    border-radius: var(--pulse-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pulse-shadow-md);
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

/* Modern feature items */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--pulse-border);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 28px;
    height: 28px;
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: var(--pulse-primary);
}

/* Modern form styling */
.form-control {
    border: 2px solid var(--pulse-border);
    border-radius: var(--pulse-border-radius-sm);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: var(--pulse-surface);
}

.form-control:focus {
    border-color: var(--pulse-primary);
    box-shadow: 0 0 0 3px rgba(92, 106, 196, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--pulse-text-primary);
    margin-bottom: 0.5rem;
}

/* Success page styling */
.success-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Admin dashboard enhancements */
.review-text-preview {
    max-width: 300px;
    word-wrap: break-word;
    font-size: 0.875rem;
}

/* Table responsiveness */
.table-responsive {
    border-radius: 0.375rem;
}

/* Modern button styling */
.btn {
    border-radius: var(--pulse-border-radius-sm);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    margin-top:1rem
}

.btn-primary {
    background: var(--pulse-gradient);
    border: 2px solid transparent;
    color: white;
}

.btn-primary:hover {
    background: var(--pulse-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--pulse-shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--pulse-primary);
    color: var(--pulse-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--pulse-primary);
    color: white;
    transform: translateY(-1px);
}

.btn-outline-dark {
    border: 1px solid black;
}

.btn-secondary {
    max-width:200px;
}

/* Modern card styling */
.card {
    background: var(--pulse-surface);
    border: 1px solid var(--pulse-border);
    border-radius: var(--pulse-border-radius);
    box-shadow: var(--pulse-shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--pulse-shadow-md);
    transform: translateY(-2px);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--pulse-border);
    font-weight: 600;
    color: var(--pulse-text-primary);
}

/* Modern alerts */
.alert {
    border: none;
    border-radius: var(--pulse-border-radius);
    border-left: 4px solid;
    box-shadow: var(--pulse-shadow-sm);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--pulse-success);
    color: var(--pulse-success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: var(--pulse-danger);
    color: var(--pulse-danger);
}

.alert-info {
    background: rgb(232, 241, 242, 0.1);
    border-left-color: var(--pulse-info);
    color: var(--pulse-info);
}

/* style navbar */
.navbar {
    background: white !important;
    border-bottom: 1px solid var(--pulse-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--pulse-primary);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--pulse-primary-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: rgba(92, 106, 196, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--pulse-text-secondary);
    transition: color 0.2s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--pulse-primary);
}

.btn-outline-primary {
    border: 1px solid var(--pulse-border);
    color: var(--pulse-text-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--pulse-primary);
    border-color: var(--pulse-primary);
    color: white;
}

/* Loading states */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
    }
    
    .step-card {
        padding: 1rem;
    }
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .card {
    background: var(--bs-dark);
    border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .table {
    --bs-table-bg: transparent;
}

[data-bs-theme="dark"] .table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

/* Custom utilities */
.text-break {
    word-break: break-all;
}

.cursor-pointer {
    cursor: pointer;
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Status indicators */
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.status-active {
    background-color: var(--pulse-success);
}

.status-inactive {
    background-color: var(--pulse-secondary);
}

.status-error {
    background-color: var(--pulse-danger);
}

/* Review rating specific styling */
.rating-low {
    color: var(--pulse-danger);
    font-weight: 600;
}

.rating-high {
    color: var(--pulse-success);
    font-weight: 600;
}

/* Email preview styling */
.email-preview {
    background: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    padding: 1rem;
    font-family: Arial, sans-serif;
}

/* Modern Admin Dashboard Styles */
.admin-dashboard {
    background: #f8fafc;
    min-height: 100vh;
}

.dashboard-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.dashboard-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.dashboard-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0fdf4;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-status 2s infinite;
}

.status-dot.status-online {
    background: #22c55e;
}

.status-text {
    color: #166534;
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    padding: 2rem 0;
}

/* Modern Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.stat-card-body {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stat-icon.businesses {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.active {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.stat-icon.reviews {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon.emails {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-icon.free-plan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.stat-icon.starter-plan {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.section-subtitle {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
}

/* Action Buttons */
.actions-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.action-btn.primary {
    border-color: #3b82f6;
}

.action-btn.primary:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.action-btn.warning {
    border-color: #f59e0b;
}

.action-btn.warning:hover {
    background: #fffbeb;
    border-color: #d97706;
}

.action-btn.success {
    border-color: #22c55e;
}

.action-btn.success:hover {
    background: #f0fdf4;
    border-color: #16a34a;
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    flex-shrink: 0;
}

.action-btn.primary .action-icon {
    background: #dbeafe;
    color: #2563eb;
}

.action-btn.warning .action-icon {
    background: #fef3c7;
    color: #d97706;
}

.action-btn.success .action-icon {
    background: #dcfce7;
    color: #16a34a;
}

.action-title {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.action-desc {
    font-size: 0.875rem;
    color: #64748b;
}

/* Badge Counter */
.badge-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.counter-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Data Tables */
.data-table-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.modern-table {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.data-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table thead th {
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: #f8fafc;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Action Icons */
.action-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.action-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-icon-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #374151;
    transform: translateY(-1px);
    text-decoration: none;
}

.action-icon-btn i {
    width: 16px;
    height: 16px;
}

/* Filter Section */
.filter-section .form-select {
    min-width: 180px;
    border-color: #e2e8f0;
    background-color: white;
}

.filter-section .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Pagination Styling */
.pagination-wrapper {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.pagination .page-link {
    border-color: #e2e8f0;
    color: #64748b;
    padding: 0.5rem 0.75rem;
}

.pagination .page-link:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #374151;
}

.pagination .page-item.active .page-link {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    color: #cbd5e1;
}

.pagination-info {
    font-size: 0.875rem;
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: none !important;
    }
}
