/*
Theme Name: Cobonaut Premium Theme
Theme URI: https://cobonaut.com
Author: Cobonaut AI
Author URI: https://cobonaut.com
Description: Lekki, nowoczesny i wysoce zoptymalizowany szablon WordPress z fioletowymi i niebieskimi akcentami.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cobonaut-theme
*/

/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
    --primary: #3259B4;
    --primary-hover: #1e3f94;
    --primary-dark: #12234e;
    --primary-light: #f0f4ff;
    --secondary: #00c9a7;
    --accent: #ff5252;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(50, 89, 180, 0.08), 0 8px 10px -6px rgba(50, 89, 180, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   BASE STYLES & RESET
   ---------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* ----------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ----------------------------------------------------
   BUTTONS
   ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(50, 89, 180, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 89, 180, 0.3);
}

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

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

.btn-outline-header {
    padding: 8px 20px;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-sm);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

/* ----------------------------------------------------
   1. HEADER / NAVIGATION
   ---------------------------------------------------- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-logo {
    height: 40px;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-selector {
    display: flex;
    gap: 6px;
}

.flag-icon {
    width: 24px;
    height: auto;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.flag-icon.active, .flag-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ----------------------------------------------------
   2. HERO / FIRST SECTION
   ---------------------------------------------------- */
.hero-section {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    max-width: 550px;
}

.badge-promo {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid rgba(50, 89, 180, 0.15);
}

.hero-title {
    font-size: 3.25rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* ----------------------------------------------------
   3. STATISTICS SECTION
   ---------------------------------------------------- */
.stats-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.stat-icon-wrapper {
    background-color: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.stat-icon {
    width: 30px;
    height: 30px;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ----------------------------------------------------
   4. CATEGORIES SECTION
   ---------------------------------------------------- */
.categories-section {
    background-size: cover;
    background-position: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(50, 89, 180, 0.3);
}

.category-card.highlighted {
    border: 2px solid var(--primary);
    background-color: var(--primary-light);
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px auto;
    position: relative;
}

.cat-icon {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition);
}

.icon-blue {
    opacity: 0;
    transform: scale(0.9);
}

.category-card:hover .icon-grey {
    opacity: 0;
    transform: scale(0.9);
}

.category-card:hover .icon-blue {
    opacity: 1;
    transform: scale(1.0);
}

/* For highlighted card, default state is already active/blue */
.category-card.highlighted .icon-grey {
    opacity: 0;
}
.category-card.highlighted .icon-blue {
    opacity: 1;
    transform: scale(1);
}

.category-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.category-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   5. DOWNLOAD APP SECTION
   ---------------------------------------------------- */
.download-app-section {
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.download-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-app-visual {
    text-align: center;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.app-mockup:hover {
    transform: scale(1.02);
}

.app-desc-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 36px 0;
}

.app-desc-bullets span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.app-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 420px;
}

.badge-img {
    width: 100%;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: #000;
    padding: 4px;
}

.badge-img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------
   6. FEATURES SECTION
   ---------------------------------------------------- */
.features-section {
    background-size: cover;
    background-position: center;
}

.features-split {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: 60px;
    align-items: center;
}

/* Circular diagram */
.features-circle-flow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-outer {
    width: 320px;
    height: 320px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 60s linear infinite;
}

.circle-center {
    width: 120px;
    height: 120px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    animation: counter-rotate 60s linear infinite;
}

.center-cap-icon {
    font-size: 2.25rem;
    margin-bottom: 4px;
}

.center-text {
    font-weight: 800;
    font-size: 0.95rem;
}

.circle-node {
    width: 70px;
    height: 70px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    animation: counter-rotate 60s linear infinite;
}

.circle-node:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-premium);
}

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

.node-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Positions around the circle */
.pos-1 { top: -35px; left: 125px; }
.pos-2 { top: 125px; right: -35px; }
.pos-3 { bottom: -35px; left: 125px; }
.pos-4 { top: 125px; left: -35px; }

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

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* 2x2 grid */
.features-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(50, 89, 180, 0.2);
}

.feature-card-visual {
    height: 120px;
    margin-bottom: 20px;
    position: relative;
}

.feature-card-visual img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition);
}

.f-img-active {
    opacity: 0;
}

.feature-card:hover .f-img-inactive {
    opacity: 0;
}

.feature-card:hover .f-img-active {
    opacity: 1;
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   7. TIKTOK SECTION
   ---------------------------------------------------- */
.tiktok-section {
    background-color: var(--bg-white);
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tiktok-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tiktok-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tiktok-media-wrapper {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.tiktok-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
    transition: var(--transition);
}

.tiktok-card:hover .tiktok-overlay {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.tiktok-play-btn {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 5px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
    transition: var(--transition);
}

.tiktok-card:hover .tiktok-play-btn {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(255, 82, 82, 0.6);
}

.tiktok-stats {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: 20px;
}

.tiktok-info {
    padding: 16px;
}

.tiktok-video-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tiktok-hashtag {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

/* ----------------------------------------------------
   8. PRICING SECTION
   ---------------------------------------------------- */
.pricing-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.pricing-card.highlighted {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-main);
}

/* ----------------------------------------------------
   9. FAQ SECTION
   ---------------------------------------------------- */
.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    background-color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

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

.faq-question::after {
    content: "＋";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    content: "－";
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   10. FOOTER & CONTACT FORM
   ---------------------------------------------------- */
.footer-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.footer-logo {
    height: 48px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #cbd5e1;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #cbd5e1;
}

.contact-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover .social-icon {
    transform: translateY(-3px) scale(1.05);
}

.copyright {
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

/* Contact Form Card */
.form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */
@media (max-width: 1140px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.highlighted {
        transform: scale(1);
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-8px);
    }
    
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .nav-list {
        gap: 16px;
    }
    
    .download-app-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-app-visual {
        order: 2;
    }
    
    .features-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-circle-flow {
        order: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none; /* Hide nav on mobile in basic setup */
    }
    
    .hero-section {
        background-position: center;
        text-align: center;
        min-height: 550px;
    }
    
    .hero-content {
        max-width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tiktok-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .app-badges {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 24px;
    }
}
