/* ========================================
   ULEPSZENIA STRONY - NOWE STYLE
   ======================================== */

/* 1. LEPSZE IKONY W SEKCJI USŁUG */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-subtle), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-innovation));
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.service-icon-svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-svg {
    color: white;
    transform: scale(1.1);
}

/* 2. SEKCJA "DLACZEGO JA?" */
.why-me {
    padding: var(--space-2xl) 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.why-me::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    border-color: var(--accent-primary);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--accent-primary);
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    color: white;
}

.advantage-card h3 {
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
}

.advantage-card strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* 4. SEKCJA FAQ */
.faq {
    padding: var(--space-2xl) 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--space-xl);
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.faq-item:last-child {
    margin-bottom: 0;
}

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

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

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-answer a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* 5. FRAMEWORK TABS (OPTION 3) */
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: -1px; /* Overlap with content border */
    position: relative;
    z-index: 1;
}

.tab-btn {
    flex-grow: 0; 
    flex-basis: auto;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-primary);
    border-color: var(--border-light);
    border-bottom-color: var(--accent-subtle);
}

.tab-btn.active {
    color: var(--accent-primary);
    border-color: var(--border-light);
    border-bottom-color: white;
    background: white;
}

.tab-btn-number {
    display: none; 
}

.tabs-content {
    position: relative;
    z-index: 0;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel .glass-box {
    border-top-left-radius: 0;
}

.tab-panel.active {
    display: block;
}

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

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .tab-btn, .tab-btn:hover, .tab-btn.active {
        justify-content: flex-start;
        border: 1px solid var(--border-light) !important;
        border-radius: var(--radius-md) !important;
    }
    .tab-btn.active {
        background: var(--accent-subtle);
    }
    .tab-btn-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--text-secondary);
        color: white;
        font-size: 0.8rem;
        font-weight: 700;
        flex-shrink: 0;
        transition: background-color 0.3s ease;
    }
    .tab-btn.active .tab-btn-number {
        background: var(--accent-primary);
    }
    .tab-panel .glass-box {
        border-top-left-radius: var(--radius-lg);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ========================================
   TECH BADGES/PILLS - PROGRAMY
   ======================================== */

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: default;
}

.tech-badge:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-innovation));
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tech-badge-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Kolory dla różnych kategorii */
.tech-badge.adobe {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(49, 0, 255, 0.08));
    border-color: rgba(255, 0, 0, 0.2);
}

.tech-badge.adobe:hover {
    background: linear-gradient(135deg, #FF0000, #3100FF);
}

.tech-badge.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(245, 158, 11, 0.08));
    border-color: rgba(139, 92, 246, 0.2);
}

.tech-badge.ai:hover {
    background: linear-gradient(135deg, #8B5CF6, #F59E0B);
}

.tech-badge.other {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08));
    border-color: rgba(16, 185, 129, 0.2);
}

.tech-badge.other:hover {
    background: linear-gradient(135deg, #10B981, #06B6D4);
}

/* ========================================
   FOOTER IMPROVEMENTS
   ======================================= */

.footer-cta {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-innovation));
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-cta-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--accent-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.footer-cta-button svg {
    width: 24px;
    height: 24px;
}

/* Footer Contact Items */
.footer-brand img {
    filter: brightness(0) invert(1) !important;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-primary);
}

/* Footer Stats */
.footer-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer-stats .separator {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Footer Social */
.footer-social {
    margin-top: 1.5rem;
}

.footer-social h4 {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   LIGHT MODE FALLBACKS for new components
   (dark-theme.css handles dark mode)
   ======================================== */

/* Trust Bar — light fallback */
.trust-bar {
    padding: 2.5rem 0;
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-light);
}

.trust-bar-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.trust-bar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-bar-logos span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* Problems Grid — light fallback */
.problems {
    padding: var(--space-xl) 0;
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-xl);
}

.problem-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--secondary-bg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-primary);
}

.problem-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: rgba(37, 99, 235, 0.2);
}

.problem-card h3 {
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Pricing Minimal — light fallback */
.pricing-minimal {
    padding: var(--space-2xl) 0;
    background: var(--secondary-bg);
}

.pricing-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: var(--space-xl) auto 0;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-light);
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.pricing-row-name {
    font-weight: 700;
    min-width: 180px;
    color: var(--text-primary);
}

.pricing-row-price {
    font-family: var(--font-mono);
    font-weight: 700;
    white-space: nowrap;
    color: var(--accent-primary);
}

.pricing-row-cta {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.pricing-row-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pricing-row-cta:hover {
    color: var(--accent-hover);
}

.pricing-row-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
    }
    .pricing-row-name {
        min-width: auto;
    }
}

/* Full Stack Banner — light fallback */
.full-stack-banner {
    max-width: 1100px;
    margin: var(--space-xl) auto 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.full-stack-banner h3 {
    margin-bottom: 0.5rem;
}

.full-stack-banner p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .full-stack-banner {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Viral Check Promo — light fallback */
.viral-check-promo {
    padding: var(--space-xl) 0;
}

.viral-check-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.viral-check-card h3 {
    margin-bottom: 0.5rem;
}

.viral-check-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .viral-check-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Process Step Number — light fallback */
.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-mono);
    margin-bottom: var(--space-md);
}

.process-step-number.step-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-success);
}

/* Service Cards — compact 3-column layout, equal height */
.services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    align-items: stretch;
}

.service-card {
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    grid-column: span 1 !important;
}

.service-card p {
    flex: 1;
}

.service-tech {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .service-card {
        padding: 1.5rem !important;
    }
}

/* Hero Proof — structured stats */
.hero-proof {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    white-space: nowrap;
}

.hero-stat .number {
    font-size: 1.5rem;
    font-weight: 800;
}

.hero-stat span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-stat-sep {
    width: 1px;
    height: 24px;
    background: var(--border-light);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-proof {
        gap: 1rem;
        padding: 0.5rem 1rem !important;
        font-size: 0.8125rem !important;
    }
    .hero-stat .number {
        font-size: 1.25rem;
    }
    .hero-stat span:last-child {
        font-size: 0.8rem;
    }
    .hero-stat-sep {
        height: 20px;
    }
}

/* Full Stack Banner — centered */
.full-stack-banner {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.full-stack-banner p {
    max-width: 600px;
}

/* ========================================
   TYPOGRAPHY NORMALIZATION — all cards unified
   ======================================== */

/* All card h3 titles — same size */
.service-card h3,
.problem-card h3,
.advantage-card h3,
.process-card h3 {
    font-size: 1.125rem !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

/* All card body text — same size */
.service-card p,
.problem-card p,
.advantage-card p,
.process-card p {
    font-size: 0.9375rem !important;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Section labels — unified */
.section-label {
    font-size: 0.875rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Section h2 — unified */
.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
}

/* Process step numbers — slightly larger to match problem visual weight */
.process-step-number {
    font-size: 1.25rem !important;
}

/* Pricing rows — unified with card text */
.pricing-row-name {
    font-size: 1rem !important;
}

.pricing-row-desc {
    font-size: 0.875rem !important;
}

.pricing-row-price {
    font-size: 0.9375rem !important;
}

.pricing-row-cta {
    font-size: 0.875rem !important;
}

/* FAQ questions — match card h3 */
.faq-question {
    font-size: 1rem !important;
}

/* Full stack banner — unified */
.full-stack-banner h3 {
    font-size: 1.125rem !important;
}

.full-stack-banner p {
    font-size: 0.9375rem !important;
}

/* CTA section — unified */
.footer-cta-text h3 {
    font-size: 1.5rem !important;
}

.footer-cta-text p {
    font-size: 0.9375rem !important;
}

/* Process Grid — light fallback */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.process-card h3 {
    margin-bottom: var(--space-sm);
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Row Info + Description */
.pricing-row-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 180px;
}

.pricing-row-desc {
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Footer Structure */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links-col {
    text-align: right;
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--accent-primary);
}

.footer-email {
    margin-bottom: 1.5rem;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-email a:hover {
    color: var(--accent-primary);
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-social-icons a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.footer-social-icons svg {
    width: 22px;
    height: 22px;
}

.footer-legal {
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.75rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links-col {
        text-align: left;
    }
    .footer-nav a:first-child {
        margin-left: 0;
    }
    .footer-social-icons {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .pricing-row-info {
        min-width: auto;
    }
}

/* ========================================
   HERO POLISH (light mode)
   ======================================== */

/* CTA buttons — clean, centered */
.hero .hero-cta {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
}

.hero .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 1rem 2.5rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(30,64,175,0.2) !important;
}
.hero .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(30,64,175,0.3) !important;
}

.hero .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 1rem 2.5rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}
.hero .btn-secondary:hover {
    border-color: var(--accent-primary) !important;
    color: var(--accent-primary) !important;
}

