/* Pricing Page Styles */

/* Pricing page section title */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #036666;
    margin-bottom: 80px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Base section styling with lime energy background */
.section {
    padding: 120px 20px;
    position: relative;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(160, 255, 90, 0.12),
            rgba(160, 255, 90, 0.12) 1px,
            transparent 1px,
            transparent 8px
        ),
        linear-gradient(
            to bottom,
            rgba(120, 200, 120, 0.10),
            rgba(0, 0, 0, 0.15)
        ),
        #111612;
    box-shadow: 0 12px 32px rgba(128, 239, 128, 0.3), 0 6px 16px rgba(128, 239, 128, 0.25), 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Vignette / depth fade for lime energy */
.section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0.65) 100%
        );
    pointer-events: none;
    z-index: 0;
}

/* Animated sheen for movement (very subtle) */
.section::before {
    content: "";
    position: absolute;
    inset: -50%;
    background:
        linear-gradient(
            120deg,
            transparent 45%,
            rgba(180, 255, 120, 0.08) 50%,
            transparent 55%
        );
    animation: limeSheen 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Ensure section content is above background effects */
.section > * {
    position: relative;
    z-index: 1;
}

.section-alt {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(160, 255, 90, 0.15),
            rgba(160, 255, 90, 0.15) 1px,
            transparent 1px,
            transparent 8px
        ),
        linear-gradient(
            to bottom,
            rgba(120, 200, 120, 0.12),
            rgba(0, 0, 0, 0.1)
        ),
        #121713;
}

.section-cta {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(160, 255, 90, 0.12),
            rgba(160, 255, 90, 0.12) 1px,
            transparent 1px,
            transparent 8px
        ),
        linear-gradient(
            to bottom,
            rgba(120, 200, 120, 0.08),
            rgba(0, 0, 0, 0.2)
        ),
        #0f1411;
}

/* Launch Banner */
.launch-banner {
    background: rgba(29, 209, 161, 0.08);
    border-top: 1px solid rgba(29, 209, 161, 0.15);
    border-bottom: 1px solid rgba(29, 209, 161, 0.15);
    padding: 20px;
    text-align: center;
}

.banner-text {
    color: #e6f4ef;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0;
}

.banner-text strong {
    color: #1dd1a1;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Card Base - Hover Card Style with solid charcoal base */
.pricing-card {
    position: relative;
    /* Deep charcoal background with extra black layer to completely block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    color: var(--off-white);
    padding: 3rem 2.5rem;
    border-radius: 18px;
    cursor: pointer;
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.05),
        0px 8px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(120, 220, 160, 0.1);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ensure this creates its own stacking context and stays opaque */
    transform: translateZ(0);
    backface-visibility: hidden;
    background-clip: padding-box;
}

/* Green glass overlay effect */
.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Layered gradient for depth with subtle noise effect */
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    background-blend-mode: overlay;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-radius: inherit;
    pointer-events: none;
    /* Inner glow to suggest glass thickness and depth */
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
}

/* Card Shine Effect */
.pricing-card .card-shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.pricing-card .card-shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(
        from 205deg at 50% 50%,
        rgba(120, 220, 140, 0) 0deg,
        #1dd1a1 25deg,
        rgba(52, 211, 153, 0.18) 295deg,
        rgba(120, 220, 140, 0) 360deg
    );
}

/* Card Background Animation */
.pricing-card .card-background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.pricing-card .card-tiles {
    opacity: 0;
    transition: opacity 0.25s;
}

.pricing-card .tile {
    position: absolute;
    background-color: rgba(120, 220, 140, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.pricing-card .tile-4, .pricing-card .tile-6, .pricing-card .tile-10 { animation-delay: -2s; }
.pricing-card .tile-3, .pricing-card .tile-5, .pricing-card .tile-8 { animation-delay: -4s; }
.pricing-card .tile-2, .pricing-card .tile-9 { animation-delay: -6s; }

.pricing-card .tile-1 { top: 0; left: 0; height: 10%; width: 22.5%; }
.pricing-card .tile-2 { top: 0; left: 22.5%; height: 10%; width: 27.5%; }
.pricing-card .tile-3 { top: 0; left: 50%; height: 10%; width: 27.5%; }
.pricing-card .tile-4 { top: 0; left: 77.5%; height: 10%; width: 22.5%; }
.pricing-card .tile-5 { top: 10%; left: 0; height: 22.5%; width: 22.5%; }
.pricing-card .tile-6 { top: 10%; left: 22.5%; height: 22.5%; width: 27.5%; }
.pricing-card .tile-7 { top: 10%; left: 50%; height: 22.5%; width: 27.5%; }
.pricing-card .tile-8 { top: 10%; left: 77.5%; height: 22.5%; width: 22.5%; }
.pricing-card .tile-9 { top: 32.5%; left: 50%; height: 22.5%; width: 27.5%; }
.pricing-card .tile-10 { top: 32.5%; left: 77.5%; height: 22.5%; width: 22.5%; }

@keyframes tile {
    0%, 12.5%, 100% { opacity: 1; }
    25%, 82.5% { opacity: 0; }
}

/* Card Lines */
.pricing-card .card-line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.pricing-card .card-line::before,
.pricing-card .card-line::after {
    content: '';
    position: absolute;
    background-color: rgba(120, 220, 160, 0.2);
    transition: transform 0.35s;
}

.pricing-card .card-line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.pricing-card .card-line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.pricing-card .line-1::before { top: 10%; }
.pricing-card .line-1::after { left: 22.5%; }
.pricing-card .line-1::before, .pricing-card .line-1::after { transition-delay: 0.3s; }

.pricing-card .line-2::before { top: 32.5%; }
.pricing-card .line-2::after { left: 50%; }
.pricing-card .line-2::before, .pricing-card .line-2::after { transition-delay: 0.15s; }

.pricing-card .line-3::before { top: 55%; }
.pricing-card .line-3::after { right: 22.5%; }

/* Hover State */
.pricing-card:hover {
    box-shadow:
        0px 5px 10px rgba(0, 0, 0, 0.04),
        0px 15px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 220, 160, 0.2);
}

.pricing-card:hover .card-shine {
    opacity: 1;
}

.pricing-card:hover .card-tiles {
    opacity: 1;
    transition-delay: 0.25s;
}

.pricing-card:hover .tile {
    animation-name: tile;
}

.pricing-card:hover .card-line {
    opacity: 1;
    transition-duration: 0.15s;
}

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

.pricing-card:hover .card-line::after {
    transform: scaleY(1);
}

.pricing-card:hover .line-1::before,
.pricing-card:hover .line-1::after {
    transition-delay: 0s;
}

.pricing-card:hover .line-2::before,
.pricing-card:hover .line-2::after {
    transition-delay: 0.15s;
}

.pricing-card:hover .line-3::before,
.pricing-card:hover .line-3::after {
    transition-delay: 0.3s;
}

/* Featured Card */
.pricing-card.featured {
    border: 1px solid rgba(29, 209, 161, 0.2);
}

.pricing-card.featured:hover {
    box-shadow:
        0px 5px 10px rgba(0, 0, 0, 0.04),
        0px 15px 25px rgba(29, 209, 161, 0.2),
        0 0 0 1px rgba(29, 209, 161, 0.3);
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #e6f4ef;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: #0b1a14;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(29, 209, 161, 0.3);
    z-index: 2;
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.billing-label {
    font-size: 0.95rem;
    color: #D4D4D8;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.billing-label.active {
    color: #1dd1a1;
    font-weight: 600;
}

.billing-savings {
    font-size: 0.75rem;
    color: #80EF80;
    font-weight: 600;
}

.billing-toggle {
    width: 52px;
    height: 28px;
    background: rgba(120, 220, 160, 0.1);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid rgba(120, 220, 160, 0.2);
}

.billing-toggle.active {
    background: rgba(29, 209, 161, 0.2);
}

.billing-toggle-slider {
    position: absolute;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    border-radius: 50%;
    top: 2px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.billing-toggle.active .billing-toggle-slider {
    transform: translateX(24px);
}

/* Price Display */
.price-display {
    position: relative;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.price-option {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.price-option.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price .currency {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #80EF80;
}

.price .amount {
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #80EF80;
    line-height: 1;
}

.price .period {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: #D4D4D8;
    opacity: 0.75;
}

.annual-note {
    text-align: center;
    font-size: 0.95rem;
    color: #D4D4D8;
    margin: 0;
}

.setup-fee-card {
    text-align: center;
    font-size: 1rem;
    color: #D4D4D8;
    margin-bottom: 1.5rem;
}

.strike-price {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 8px;
}

.plan-description {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #D4D4D8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Pricing Button */
.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: #0b1a14;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    position: relative;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    border-radius: 12px;
    padding: 2px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for table wrapper */
.comparison-table-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.comparison-table thead {
    background: rgba(29, 209, 161, 0.1);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #e6f4ef;
    font-size: 1.1rem;
}

.comparison-table .featured-column {
    background: rgba(29, 209, 161, 0.15);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(120, 220, 160, 0.08);
    color: #D4D4D8;
    font-size: 0.95rem;
}

.comparison-table .category-row {
    background: rgba(120, 220, 160, 0.05);
}

.comparison-table .category-row td {
    padding: 1rem;
    font-weight: 600;
    color: #80EF80;
}

.comparison-table .check {
    color: #80EF80;
    font-weight: 700;
    margin-right: 8px;
}

.comparison-table .cross {
    color: #D4D4D8;
    opacity: 0.5;
}

.table-note {
    font-size: 0.9rem;
    color: #D4D4D8;
    opacity: 0.85;
    font-style: italic;
    margin-top: 1rem;
}

/* Fair Usage Policy */
.usage-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 2rem;
}

.usage-item {
    position: relative;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(120, 220, 160, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for usage items */
.usage-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

.usage-item > * {
    position: relative;
    z-index: 1;
}

.usage-item h3 {
    color: #80EF80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.usage-item ul {
    list-style: none;
    padding: 0;
}

.usage-item li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #D4D4D8;
    line-height: 1.6;
}

.usage-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #80EF80;
    font-weight: 700;
}

.note-text {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(29, 209, 161, 0.08);
    border-radius: 8px;
    color: #D4D4D8;
    line-height: 1.6;
}

.fair-usage-note {
    text-align: center;
    font-size: 1rem;
    color: #D4D4D8;
    opacity: 0.85;
    font-style: italic;
    max-width: 700px;
    margin: 2rem auto 0;
}

/* Custom Solutions */
.custom-solutions {
    max-width: 900px;
    margin: 0 auto;
}

.custom-intro {
    font-size: 1.15rem;
    color: #D4D4D8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.custom-option {
    position: relative;
    /* Deep charcoal background to block lime beneath */
    background: linear-gradient(to bottom, var(--charcoal), var(--charcoal)), #000000;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(120, 220, 160, 0.1);
    transition: all 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Green glass overlay for custom options */
.custom-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(120, 220, 140, 0.16),
            rgba(120, 220, 140, 0.05)
        );
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(200, 255, 180, 0.08);
    opacity: 0.9;
    z-index: 0;
}

.custom-option > * {
    position: relative;
    z-index: 1;
}

.custom-option:hover {
    border-color: rgba(120, 220, 160, 0.25);
    transform: translateY(-4px);
}

.custom-option h4 {
    color: #80EF80;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.custom-option p {
    color: #D4D4D8;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.custom-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 220, 160, 0.1);
}

.custom-cta p {
    font-size: 1.15rem;
    color: #e6f4ef;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: #0b1a14;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Capacity Notice */
.capacity-notice {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.capacity-notice h2 {
    color: #80EF80;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.capacity-text {
    font-size: 1.15rem;
    color: #D4D4D8;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.capacity-subtext {
    font-size: 1rem;
    color: #D4D4D8;
    opacity: 0.85;
    margin-bottom: 1rem;
    font-style: italic;
}

.capacity-action {
    font-size: 1.2rem;
    color: #e6f4ef;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #14171a;
    border-radius: 18px;
    max-width: 600px;
    width: 100%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 0 1px rgba(120, 220, 160, 0.15);
    position: relative;
}

.modal-content.featured {
    border: 2px solid rgba(29, 209, 161, 0.3);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(120, 220, 160, 0.1);
}

.modal-header h2 {
    color: #e6f4ef;
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #D4D4D8;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    color: #1dd1a1;
}

.modal-body {
    padding: 2rem;
}

.modal-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(120, 220, 160, 0.1);
}

.modal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modal-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #D4D4D8;
    line-height: 1.6;
}

.modal-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #80EF80;
    font-weight: 700;
}

.modal-features li strong {
    color: #e6f4ef;
}

.modal-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(120, 220, 160, 0.1);
}

/* Footer */
.footer {
    background: #14171a;
    padding: 80px 20px 40px;
    color: #D4D4D8;
    position: relative;
    z-index: 10;
}

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

.footer-brand h3 {
    color: #80EF80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #D4D4D8;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.footer-col h4 {
    color: #e6f4ef;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: #D4D4D8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #1dd1a1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 220, 160, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #D4D4D8;
    opacity: 0.7;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-table-wrapper {
        border-radius: 8px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .usage-policy {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal {
        padding: 1rem;
    }

    .modal-content {
        max-width: 100%;
    }
}
