/* Style system for Certificados All Security Landing Page */

:root {
    --bg-dark: #090d16;
    --bg-card: rgba(16, 22, 35, 0.65);
    --border: rgba(255, 255, 255, 0.08);
    --border-active: rgba(99, 102, 241, 0.35);
    --text: #f3f4f6;
    --muted: #9ca3af;
    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #8b5cf6; /* Violet */
    --accent: #10b981; /* Emerald */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Typography styles */
h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.icon-inline {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(9, 13, 22, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

/* Hero Visual / Image Mockup */
.hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(9, 13, 22, 0) 70%);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.partners-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 32px;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.partner-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
}

.partner-logo:hover {
    color: rgba(255, 255, 255, 0.7);
}

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

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--muted);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-active);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* Deep Security Focus Section */
.security-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.security-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.security-badge {
    display: inline-flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #818cf8;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
}

.security-card:hover {
    transform: translateX(-4px);
    box-shadow: 4px 0 24px rgba(99,102,241,0.1);
}

.security-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Interactive Radar Animation */
.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
}

.circle-1 { width: 100px; height: 100px; }
.circle-2 { width: 200px; height: 200px; }
.circle-3 { width: 300px; height: 300px; }

.radar-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(99, 102, 241, 0.25) 0deg, rgba(99, 102, 241, 0) 180deg);
    border-radius: 50%;
    animation: rotate-radar 6s linear infinite;
}

.radar-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(9, 13, 22, 0.9);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary-glow);
    z-index: 2;
}

.badge-security {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.security-title {
    font-size: 34px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.security-text {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.security-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

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

.security-list code {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #f87171;
}

/* Quota Live Simulator Widget */
.usage-preview-section {
    padding: 60px 0;
}

.glass-panel {
    background: rgba(16, 22, 35, 0.7);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.panel-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.window-controls span:nth-child(1) { background-color: #ef4444; }
.window-controls span:nth-child(2) { background-color: #eab308; }
.window-controls span:nth-child(3) { background-color: #22c55e; }

.panel-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.panel-body {
    padding: 40px;
}

.panel-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.panel-settings h4, .panel-preview h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.settings-intro, .preview-intro {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}

.control-group {
    margin-bottom: 28px;
}

.control-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.value-display {
    text-align: right;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
}

/* Quota Preview Box */
.preview-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.preview-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: monospace;
    transition: all 0.3s ease;
}

.preview-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.preview-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.preview-bar-fill {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.preview-percentage {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.preview-message {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    max-width: 1280px;
    margin: 40px auto 0;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    background: rgba(99, 102, 241, 0.08);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.price-card:hover:not(.popular) {
    border-color: rgba(255, 255, 255, 0.2);
}

.enterprise-card {
    border-color: rgba(251, 191, 36, 0.3) !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.03) 100%);
}

.enterprise-card:hover {
    border-color: rgba(251, 191, 36, 0.6) !important;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.08);
}

.price-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 44px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
}

.price-period {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin-left: 4px;
}

.price-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    min-height: 48px;
}

.price-card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.cross-icon {
    width: 18px;
    height: 18px;
    color: #ef4444;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.005);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.faq-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(9, 13, 22, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
}

.cta-form-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 12px;
}

.cta-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-note {
    font-size: 11px;
    color: var(--muted);
}

/* Footer */
.footer {
    background: #06090e;
    border-top: 1px solid var(--border);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links-grid {
    display: contents;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

.footer-col a, .footer-col span {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--primary);
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 2px var(--primary);
    }
}

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

/* Responsive queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle, .hero-actions, .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .security-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .security-visual {
        order: -1;
    }

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

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 73px;
        left: 0;
        width: 100%;
        background: #090d16;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    .section-title {
        font-size: 30px;
    }

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

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

    .cta-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .cta-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 12px;
        width: 100%;
    }
}

/* CTA Form & Turnstile enhancements */
.cta-form {
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    gap: 16px;
    align-items: center;
}

.form-inputs {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 12px;
}

.turnstile-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .form-inputs {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .form-inputs .cta-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 12px;
        width: 100%;
    }
}

/* Single Pricing Plan Centering & Layout */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Template Builder Showcase Section --- */
.builder-showcase-section {
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .builder-showcase-section .builder-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.mock-workspace-layout select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 6px center !important;
    background-repeat: no-repeat !important;
    background-size: 12px 12px !important;
}

.builder-features-list i {
    width: 20px;
    height: 20px;
}
