/*
Theme Name: BreachFeed Theme
Theme URI: https://example.com/breachfeed-theme
Author: ATLAS for Joe
Author URI: https://example.com
Description: A cybersecurity-themed WordPress theme for BreachFeed with a cyberpunk aesthetic, dark colors, and glitch effects
Version: 1.0
License: GPL v2 or later
Text Domain: breachfeed-theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile-first responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
}

:root {
    /* BreachFeed Color Palette */
    --primary-black: #1a1a1a;
    --primary-dark: #131313;
    --electric-blue: #FF4D00;
    --cyber-green: #9945FF;
    --accent-purple: #9945FF;
    --text-light: #FFFFFF;
    --text-muted: #B8B8B8;
    --text-dark: #666666;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Courier New', Consolas, Monaco, monospace;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cyber-green);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: rgba(20, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 58px;
    width: 240px;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.header-actions {
    margin-left: auto;
}

.login-btn {
    background: var(--cyber-green);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--cyber-green);
}

.login-btn:hover {
    background: transparent;
    color: var(--cyber-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
}

.main-navigation a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: var(--electric-blue);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* App Download Banner */
.app-banner {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyber-green) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    margin-top: 60px;
    position: relative;
}

.app-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.app-banner-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.app-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.app-banner-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-store-btn {
    display: block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 40px;
    width: auto;
}

.banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--electric-blue);
    background: transparent;
    color: var(--electric-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric-blue);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--electric-blue);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--cyber-green);
    border-color: var(--cyber-green);
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #FF4D00;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-green);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 4rem 0 2rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--electric-blue) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.05; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.page-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(45deg, var(--electric-blue), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Layout */
.site-main {
    padding: 2rem 0;
    min-height: 60vh;
}

.content-area {
    max-width: 800px;
    margin: 0 auto;
}

/* Entry Content Styling */
.entry-content h2 {
    color: var(--electric-blue);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.entry-content h3 {
    color: var(--cyber-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content h4 {
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.entry-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.entry-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-size: 1.2rem;
}

/* Legacy Pricing Styles (for other pages) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    justify-content: center;
}

/* New Pricing Page Styles */
.pricing-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Pricing Controls */
.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

/* Currency Selector */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.currency-selector label {
    font-weight: 600;
    color: var(--text-light);
}

.currency-dropdown {
    background: var(--primary-dark);
    border: 2px solid var(--electric-blue);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-dropdown:hover,
.currency-dropdown:focus {
    border-color: var(--cyber-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.2);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
}

.toggle-wrapper {
    display: flex;
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 0.25rem;
    position: relative;
    border: 2px solid var(--electric-blue);
}

.toggle-option {
    position: relative;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.toggle-option input {
    display: none;
}

.toggle-option input:checked + span {
    color: var(--primary-black);
}

.toggle-option input:checked {
    background: var(--electric-blue);
}

.toggle-option:has(input:checked) {
    background: var(--electric-blue);
    color: var(--primary-black);
}

.savings-badge {
    background: var(--cyber-green);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

/* New Pricing Grid */
.new-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* New Pricing Cards */
.new-pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--electric-blue);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.new-pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyber-green);
    box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3);
}

.new-pricing-card.featured {
    border-color: var(--cyber-green);
    transform: scale(1.05);
    background: rgba(153, 69, 255, 0.05);
}

.new-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyber-green);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency-symbol {
    font-size: 1.5rem;
    color: var(--electric-blue);
    font-weight: 600;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--electric-blue);
    margin: 0 0.25rem;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

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

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    position: relative;
    padding-left: 2rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyber-green);
    font-weight: bold;
    font-size: 1.1rem;
}

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

.plan-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: var(--electric-blue);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.featured-btn {
    background: var(--cyber-green);
    border-color: var(--cyber-green);
    color: var(--text-light);
}

.featured-btn:hover {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--primary-black);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Legacy pricing card styles */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border-color: var(--cyber-green);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyber-green);
    color: var(--primary-black);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 2rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: rgba(255, 77, 0, 0.1);
    border: 2px solid var(--electric-blue);
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:active,
.menu-toggle:focus {
    border-color: var(--electric-blue);
    background: rgba(255, 77, 0, 0.2);
    outline: none;
    transform: scale(1.05);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
    top: 10px;
}

.menu-toggle span:nth-child(2) {
    top: 18px;
}

.menu-toggle span:nth-child(3) {
    top: 26px;
}

.toggled .menu-toggle span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 18px;
    background: var(--electric-blue);
}

.toggled .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.toggled .menu-toggle span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 18px;
    background: var(--electric-blue);
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        max-width: 800px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Header Layout */
    .header-container {
        position: relative;
    }
    
    .main-navigation {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .header-actions {
        order: 1;
        margin-right: 1rem;
    }
    
    .menu-toggle {
        display: block !important;
        z-index: 1001;
        order: 2;
    }
    
    .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Mobile App Banner */
    .app-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-banner-text h3 {
        font-size: 1.1rem;
    }
    
    .app-banner-text p {
        font-size: 0.9rem;
    }
    
    .banner-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    #primary-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(20, 21, 21, 0.98) !important;
        flex-direction: column !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
        z-index: 1000 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
        width: 100% !important;
    }
    
    .toggled #primary-menu {
        display: flex !important;
    }
    
    #primary-menu li {
        width: 100% !important;
        margin: 0 !important;
    }
    
    #primary-menu a {
        display: block !important;
        padding: 1rem 2rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: var(--text-light) !important;
        text-decoration: none !important;
    }
    
    #primary-menu a:hover {
        background: rgba(255, 77, 0, 0.2) !important;
        color: var(--electric-blue) !important;
    }
    
    /* Mobile Header */
    .header-container {
        padding: 0.75rem 0;
    }
    
    .logo-image {
        height: 43px;
        width: 180px;
    }
    
    /* Mobile Hero */
    .hero-section {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Content */
    .container {
        padding: 0 15px;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .site-main {
        padding: 1rem 0;
    }
    
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile Cards */
    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .grid {
        gap: 1rem;
    }
    
    /* Mobile Pricing */
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card .price {
        font-size: 2.5rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile (iPhone SE, etc.) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 38px;
        width: 156px;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Mobile Pricing Controls */
    .pricing-controls {
        flex-direction: column;
        gap: 2rem;
    }
    
    .currency-selector {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .currency-dropdown {
        width: 100%;
        max-width: 250px;
    }
    
    .toggle-wrapper {
        width: 100%;
        max-width: 300px;
    }
    
    .toggle-option {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .savings-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    /* Mobile Pricing Cards */
    .new-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .new-pricing-card.featured {
        transform: scale(1);
    }
    
    .new-pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .plan-price {
        flex-direction: row;
        align-items: baseline;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .currency-symbol {
        font-size: 1.25rem;
    }
    
    .new-pricing-card {
        padding: 1.5rem;
    }
}