/* Decka.ai Landing Page Styles */
/* Anthropic-inspired: Muted, Clean, Minimal */

:root {
    --primary-color: #1a1a1a;
    --primary-dark: #000000;
    --primary-light: #faf9f7;
    --secondary-color: #525252;
    --accent-color: #d4a574;
    --primary-gradient: #1a1a1a;
    --hero-gradient: #faf9f7;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --section-padding: 100px 0;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-dark);
    background: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e5e5 !important;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark) !important; text-decoration: none; }
.navbar-nav .nav-link { font-weight: 500; color: var(--secondary-color) !important; margin: 0 0.5rem; transition: var(--transition); }
.navbar-nav .nav-link:hover { color: var(--primary-color) !important; }

.btn-primary {
    background: #1a1a1a !important;
    border: 1px solid #1a1a1a !important;
    border-radius: 9999px !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    color: #ffffff !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: #000000 !important;
    border-color: #000000 !important;
}

.btn-outline-primary {
    border: 2px solid #1a1a1a !important;
    color: #1a1a1a !important;
    font-weight: 600;
    border-radius: 9999px !important;
    transition: var(--transition);
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: #1a1a1a !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent !important;
    color: #1a1a1a;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    display: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #1a1a1a !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #525252 !important;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-micro-trust {
    font-size: 0.875rem;
    color: #737373;
    margin-top: -0.5rem;
    text-align: center;
}

/* Hero Product Mockup */
.hero-mockup {
    perspective: 1200px;
}

.mockup-browser {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.mockup-browser:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27ca3f; }

.mockup-url {
    margin-left: 10px;
    font-size: 0.7rem;
    color: #999;
    background: #eee;
    padding: 3px 12px;
    border-radius: 4px;
    flex: 1;
    max-width: 160px;
}

.mockup-body {
    display: flex;
    height: 320px;
}

.mockup-sidebar {
    width: 48px;
    background: #1a1a1a;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-sidebar-item {
    height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    transition: background 0.3s;
}

.mockup-sidebar-item.active {
    background: rgba(212,165,116,0.4);
}

.mockup-canvas {
    flex: 1;
    background: #f5f4f0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slide {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.slide-hero-block {
    height: 60px;
    background: linear-gradient(135deg, #d4a574 0%, #e8d4bc 100%);
    border-radius: 6px;
    margin-bottom: 14px;
    animation: slideShimmer 3s ease-in-out infinite;
}

.slide-title-block {
    height: 14px;
    width: 70%;
    background: #1a1a1a;
    border-radius: 3px;
    margin-bottom: 10px;
}

.slide-text-block {
    height: 8px;
    width: 100%;
    background: #e5e5e5;
    border-radius: 2px;
    margin-bottom: 6px;
}

.slide-text-block.short { width: 60%; }

.slide-cta-block {
    height: 24px;
    width: 80px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-top: 14px;
}

.mockup-panel {
    width: 140px;
    background: #fafafa;
    border-left: 1px solid #e9ecef;
    padding: 12px;
}

.panel-header {
    height: 10px;
    width: 60%;
    background: #e5e5e5;
    border-radius: 3px;
    margin-bottom: 12px;
}

.panel-ai-badge {
    font-size: 0.6rem;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.panel-item {
    height: 28px;
    background: #f0f0f0;
    border-radius: 6px;
    margin-bottom: 6px;
    animation: panelPulse 2s ease-in-out infinite;
}

.panel-item:nth-child(3) { animation-delay: 0.3s; }
.panel-item:nth-child(4) { animation-delay: 0.6s; }

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

@keyframes panelPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Logo Bar */
.logo-bar {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.logo-bar-label {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.company-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0.5;
    transition: var(--transition);
}

.company-logos:hover { opacity: 0.8; }

.company-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
    object-fit: contain;
}

.company-logos img:hover { filter: grayscale(0%); }

/* Section common */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--secondary-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== How It Works ========== */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--primary-light);
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 1.25rem;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: #f5f4f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #1a1a1a;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== Template Gallery ========== */
.template-gallery-section {
    padding: var(--section-padding);
    background: #ffffff;
}

.template-tabs-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.template-tab-nav {
    display: inline-flex;
    gap: 0.25rem;
    background: #f5f4f0;
    padding: 4px;
    border-radius: 9999px;
    border-bottom: none !important;
    margin-bottom: 2rem;
}

.template-tab-nav .tab-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    border: none;
    background: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.template-tab-nav .tab-btn:hover { color: var(--primary-color); }

.template-tab-nav .tab-btn.active {
    background: #1a1a1a;
    color: #fff;
}

.template-tab-nav .tab-btn.active::after { display: none; }

.template-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.template-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: var(--transition);
    background: #fff;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: inherit;
}

.template-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f4f0;
}

.template-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card:hover .template-thumb img { transform: scale(1.03); }

.template-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    font-size: 2rem;
    background: #f5f4f0;
}

.template-info {
    padding: 0.875rem 1rem;
}

.template-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.template-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.template-category-badge {
    background: #f5f4f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
}

/* Skeleton loading */
.template-skeleton {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.skeleton-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 14px;
    margin: 12px 16px 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text.short { width: 60%; margin-bottom: 12px; height: 12px; }

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Empty / Error states */
.template-empty-state,
.template-error-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--secondary-color);
}

.template-empty-state i,
.template-error-state i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #a3a3a3;
}

/* ========== Features Tabs ========== */
.features-section {
    padding: var(--section-padding);
    background: var(--primary-light);
}

.feature-tabs-container {
    max-width: 960px;
    margin: 0 auto;
}

.feature-tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    border-bottom: none !important;
    background: transparent;
    padding: 0;
}

.feature-tab-nav .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
}

.feature-tab-nav .tab-btn:hover {
    color: var(--primary-color);
    border-color: #d4d4d4;
}

.feature-tab-nav .tab-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.feature-tab-nav .tab-btn.active::after { display: none; }

.feature-pane {
    display: none;
    animation: fadeInUp 0.3s ease;
}

.feature-pane.active { display: block; }

.feature-pane h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-pane p {
    color: var(--secondary-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list i {
    margin-right: 0.75rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.feature-visual {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f5f4f0;
    aspect-ratio: 4/3;
}

.feature-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    font-size: 1rem;
    gap: 0.75rem;
}

.feature-visual-placeholder i { font-size: 3rem; color: #d4a574; }

/* ========== Use Cases ========== */
.use-cases-section {
    padding: var(--section-padding);
    background: #ffffff;
}

.persona-card {
    display: block;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    height: 100%;
    background: #fff;
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
    text-decoration: none;
    color: inherit;
}

.persona-icon {
    width: 56px;
    height: 56px;
    background: #f5f4f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.persona-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.persona-card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.persona-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.persona-card:hover .persona-link { text-decoration: underline; }

/* ========== Social Proof ========== */
.social-proof-section {
    padding: var(--section-padding);
    background: var(--primary-light);
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-rating i { margin-right: 2px; }

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-title { font-size: 0.8rem; color: var(--secondary-color); }

/* ========== CTA Section ========== */
.cta-section {
    padding: 80px 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions { margin-bottom: 1rem; }

.btn-cta-primary {
    background: linear-gradient(135deg, #d4a574, #c4956a) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 9999px !important;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.cta-micro-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: #f5f4f0;
    color: #1a1a1a;
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: #1a1a1a;
    color: #fff;
}

.footer h6, .footer-title {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover { color: #1a1a1a; }

.footer-divider {
    border-color: #e5e5e5;
    margin: 2rem 0 1rem;
}

.copyright {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: end;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-color);
    background: #e5e5e5;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.25rem; }
    .section-title { font-size: 2.2rem; }
    .template-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 2rem;
        min-height: auto;
    }
    .hero-title { font-size: 2.75rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .template-grid { grid-template-columns: repeat(2, 1fr); }
    .company-logos { gap: 2rem; flex-wrap: wrap; }
    .feature-tab-nav { gap: 0.375rem; }
    .mockup-browser { transform: none; }
    .mockup-panel { display: none; }
    .mockup-body { height: 240px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }
    .template-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .company-logos { gap: 1.5rem; }
    .company-logos img { height: 24px; }
    .cta-title { font-size: 2rem; }
    .footer-badges { justify-content: center; margin-top: 1rem; }
    .feature-tab-nav { flex-direction: column; align-items: center; }
    .feature-tab-nav .tab-btn { width: 100%; max-width: 220px; justify-content: center; }
    .persona-card { text-align: center; }
    .persona-icon { margin: 0 auto 1.25rem; }
}

@media (max-width: 576px) {
    .hero-actions { display: flex; flex-direction: column; align-items: stretch; }
    .template-grid { grid-template-columns: 1fr; }
    .company-logos { gap: 1.5rem; }
    .cta-actions { display: flex; flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 300px; }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    z-index: 9999;
    padding: 1.5rem 0;
    border-top: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    position: relative;
}

.cookie-consent-text {
    margin-bottom: 1rem;
}

.cookie-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.cookie-description {
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.privacy-link {
    color: #d4a574;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0;
}

.privacy-link:hover {
    color: #e8d4bc;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
}

.cookie-consent-location {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Cookie Settings Modal */
.cookie-category {
    padding: 1rem 0;
}

.cookie-category h6 {
    color: #1f2937;
    font-weight: 600;
}

.cookie-category .text-muted {
    color: #6b7280;
}

.cookie-category p.small {
    margin-top: 0.5rem;
    color: #6b7280;
    line-height: 1.4;
}

.compliance-info {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0;
}

.compliance-info strong {
    color: #1f2937;
}

/* GDPR/CCPA Specific Styles */
.gdpr-content .cookie-title::before {
    content: "🇪🇺 ";
}

.ccpa-content .cookie-title::before {
    content: "🇺🇸 ";
}

.gdpr-content .cookie-description {
    font-size: 0.85rem;
}

.gdpr-content .privacy-links {
    margin-top: 1rem;
}

.ccpa-content .cookie-description {
    font-size: 0.9rem;
}

/* Responsive Cookie Banner */
@media (max-width: 992px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .cookie-consent-location {
        position: static;
        justify-content: center;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .privacy-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-description {
        font-size: 0.85rem;
    }
}

/* Cookie Consent Animation */
@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner.animate-in {
    animation: slideUpIn 0.4s ease-out;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cookie-consent-banner {
        background: #000000;
        border-top-color: #ffffff;
    }
    
    .cookie-description {
        color: #ffffff;
    }
    
    .privacy-link {
        color: #ffffff;
        text-decoration: underline;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-banner {
        transition: none;
    }
    
    .cookie-consent-banner.animate-in {
        animation: none;
    }
}

/* ========== Pricing Section ========== */

.pricing-section {
    padding: var(--section-padding);
    background: var(--primary-light);
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pricing-header .plan-price {
    margin-bottom: 0.5rem;
}

.pricing-header .plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: super;
}

.pricing-header .plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.pricing-header .plan-price .period {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.pricing-header .plan-description {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.pricing-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.pricing-features li i {
    width: 18px;
    text-align: center;
    margin-right: 0.5rem;
    color: #22c55e;
}

.pricing-features li i.text-muted {
    color: #d1d5db !important;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .trial-text {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.pricing-toggle .switch {
    position: relative;
    display: inline-block;
    background: #e5e5e5;
    border-radius: 30px;
    padding: 4px;
    cursor: pointer;
}

.pricing-toggle .switch input {
    display: none;
}

.pricing-toggle .slider {
    display: flex;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

.pricing-toggle .option {
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
    transition: color 0.3s;
    white-space: nowrap;
}

.pricing-toggle .option.monthly {
    color: #fff;
    background: var(--primary-color);
    border-radius: 26px;
}

.pricing-toggle input:checked ~ .slider .option.monthly {
    color: var(--secondary-color);
    background: transparent;
}

.pricing-toggle input:checked ~ .slider .option.annual {
    color: #fff;
    background: var(--primary-color);
    border-radius: 26px;
}

.pricing-toggle .discount {
    font-size: 0.7rem;
    background: #22c55e;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

@media (max-width: 991.98px) {
    .pricing-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* Trust Badges in Pricing Footer */
.trust-text {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.trust-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.trust-text a:hover {
    text-decoration: underline;
}

/* Annual Savings Badge */
.annual-savings {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 0.5rem;
}

/* Feature Comparison Table */
.comparison-table-wrapper {
    padding-top: 2rem;
}

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

.comparison-table thead th {
    background: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem;
    border-bottom: 2px solid #e5e5e5;
    position: sticky;
    top: 0;
}

.comparison-table thead th.highlight {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.comparison-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    vertical-align: middle;
}

.comparison-table td.highlight,
.comparison-table td:nth-child(4) {
    background: rgba(26, 26, 26, 0.02);
}

.comparison-table td.fw-semibold {
    background: var(--primary-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    padding-top: 1.25rem;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--primary-light);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--primary-color);
    background: #fff;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary-color);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Mobile Pricing Responsive Fixes */
@media (max-width: 768px) {
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .plan-price .amount {
        font-size: 2rem;
    }

    .pricing-features ul li {
        font-size: 0.85rem;
    }

    .pricing-toggle .option {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .plan-price .amount {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.25rem 0.75rem;
    }

    .pricing-features ul li {
        font-size: 0.8rem;
    }

    .trust-text {
        font-size: 0.7rem;
    }
}
