:root {
    --bg-color: #e5f8ff;
    --text-color: #000000;
    --text-soft: #1a1a1a;
    --primary-color: #0953f4;
    --secondary-color: #3875f8;
    --dark-accent: #0742c3;
    --accent-gradient: linear-gradient(135deg, #0953f4 0%, #0742c3 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(9, 83, 244, 0.1);
    --input-bg: #ffffff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 100px;

    /* Premium Effects */
    --shadow-sm: 0 2px 8px rgba(9, 83, 244, 0.05);
    --shadow-md: 0 8px 20px rgba(9, 83, 244, 0.08);
    --shadow-lg: 0 12px 32px rgba(9, 83, 244, 0.12);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

main {
    flex: 1;
}

/* --- Layout & Common Components --- */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 4px 30px rgba(9, 83, 244, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 12px;
}

.logo-wrapper {
    height: 70px;
    /* Standardizing height for the navbar */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.05) brightness(1.02);
    object-fit: contain;
}

.logo:hover {
    transform: translateY(-2px);
    background: rgba(9, 83, 244, 0.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-soft);
    opacity: 0.8;
}

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

.lang-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
    opacity: 0.7;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.lang-link.active {
    color: var(--primary-color);
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lang-link:hover {
    color: var(--text-color);
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 83, 244, 0.25);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(9, 83, 244, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(9, 83, 244, 0.05);
}

.btn-wide {
    width: 100%;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: var(--glass-border);
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-link {
    color: var(--text-soft);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    opacity: 1;
    text-decoration: underline;
}

/* --- Page Specific Styles --- */

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 2rem;
    background: radial-gradient(circle at top right, rgba(9, 83, 244, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(56, 117, 248, 0.05), transparent 40%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-soft);
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

/* Features Grid */
.features {
    padding: 4rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(9, 83, 244, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-soft);
    opacity: 0.8;
}

/* Auth Pages (Login / Forgot Password) */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
    /* Full height minus header */
    padding: 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(110, 69, 226, 0.05), transparent 50%);
}

.auth-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--input-bg);
    border: 1px solid rgba(9, 83, 244, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(9, 83, 244, 0.1);
}

.form-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Alert System */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: rgba(255, 123, 114, 0.1);
    border-color: rgba(255, 123, 114, 0.2);
    color: #ff7b72;
}

.alert-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.alert-content strong {
    font-weight: 700;
    font-size: 0.95rem;
}

.alert-content span {
    opacity: 0.9;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(9, 83, 244, 0.05), transparent 60%);
    border-top: var(--glass-border);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-container h2 span {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-container p {
    color: var(--text-soft);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
}

.contact-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.pricing-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.pricing-header h2 span {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    color: var(--text-soft);
    opacity: 0.8;
    font-size: 1.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(9, 83, 244, 0.2);
}

.pricing-card.highlight {
    border: 1px solid rgba(9, 83, 244, 0.4);
    background: radial-gradient(circle at top right, rgba(9, 83, 244, 0.08), var(--glass-bg));
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.price span {
    font-size: 1rem;
    color: var(--text-soft);
    opacity: 0.6;
    font-weight: 400;
}

.pricing-description {
    color: var(--text-soft);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

/* Modular Pricing Layout */
.core-product-card {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid rgba(9, 83, 244, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-md);
}

.core-info {
    flex: 2;
    text-align: left;
}

.core-action {
    flex: 1;
    text-align: center;
    padding-left: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.addons-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.addon-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.addon-header {
    margin-bottom: 1rem;
}

.addon-card .price {
    font-size: 2rem;
    margin: 1rem 0;
}

@media (max-width: 900px) {
    .core-product-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .core-info {
        text-align: center;
    }

    .core-action {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        width: 100%;
    }
}

/* --- New Frontpage Sections --- */

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.step-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(9, 83, 244, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

/* Data Trust Section */
.trust-section {
    padding: 6rem 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(9, 83, 244, 0.05), transparent 70%);
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(9, 83, 244, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.trust-card:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.flag-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trust-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-soft);
    opacity: 0.8;
    line-height: 1.6;
}

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

/* Modules Suite */
.modules-suite {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, rgba(9, 83, 244, 0.03) 0%, transparent 100%);
    text-align: center;
}

.suite-header {
    margin-bottom: 4rem;
}

.suite-header h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.module-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.module-item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(9, 83, 244, 0.2);
    box-shadow: var(--shadow-lg);
}

.module-icon {
    font-size: 2rem;
    line-height: 1;
}

.module-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.module-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-soft);
    opacity: 0.7;
    line-height: 1.5;
}

/* Cookie Banner */
.cookie-banner-overlay {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(9, 83, 244, 0.1);
    padding: 2rem 3rem;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 50px rgba(9, 83, 244, 0.15);
    pointer-events: all;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.cookie-text p {
    margin: 0;
    color: var(--text-soft);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .cookie-banner-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1;
    }
}

/* Legal Pages (Terms, Cookies) */
.legal-container {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(9, 83, 244, 0.05), transparent 40%);
}

.legal-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 4rem;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.legal-card h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-card h1 span {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    text-align: center;
    color: var(--text-soft);
    opacity: 0.6;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-color);
    line-height: 1.8;
}

.legal-list {
    margin-top: 1rem;
    list-style: none;
}

.legal-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.legal-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-footer {
    margin-top: 4rem;
    text-align: center;
    border-top: var(--glass-border);
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 2rem;
    }

    .legal-card h1 {
        font-size: 2rem;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 8rem 2rem;
    background: radial-gradient(circle at bottom right, rgba(9, 83, 244, 0.08), transparent 40%);
}

.showcase-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(9, 83, 244, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-showcase h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.video-showcase h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-showcase p {
    font-size: 1.2rem;
    color: var(--text-soft);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.feature-highlights {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.feature-highlights li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

.showcase-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: var(--glass-border);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .video-showcase p {
        margin: 0 auto 2.5rem;
    }

    .feature-highlights {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 4rem 1.5rem;
    }

    .video-showcase h2 {
        font-size: 2.5rem;
    }
}
/* Compliance Section */
.compliance-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 83, 244, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.compliance-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.compliance-content {
    position: relative;
    z-index: 2;
}

.badge-eu {
    background: rgba(255, 204, 0, 0.15);
    color: #b38f00;
}

.compliance-visual {
    position: relative;
    z-index: 2;
}

.compliance-card-mockup {
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(9, 83, 244, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    max-width: 550px;
    margin-left: auto;
}

.compliance-card-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.mockup-title {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-title::before {
    content: '🇪🇺';
    font-size: 1.4rem;
}

.mockup-badge {
    background: #e6fffa;
    color: #00a87e;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mockup-badge::before {
    content: '✓';
}

.mockup-graph {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 180px;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
    padding: 0 1rem;
}

.bar {
    width: 40px;
    background: var(--accent-gradient);
    border-radius: 8px 8px 0 0;
    opacity: 0.9;
    position: relative;
    transition: height 1s ease-out;
}

.bar:nth-child(2) { opacity: 0.5; background: var(--secondary-color); }
.bar:nth-child(4) { opacity: 0.7; }

.mockup-stats {
    background: #f8fbff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(9, 83, 244, 0.05);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.stat-value.text-green {
    font-weight: 700;
    color: #00a87e;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .compliance-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .compliance-visual {
        order: 2;
    }
    
    .compliance-card-mockup {
        transform: rotate(0);
        margin: 0 auto;
        max-width: 100%;
    }

    .compliance-content .feature-highlights {
        justify-content: center;
        text-align: left; /* Keep list items left aligned but centered block? */
        display: inline-grid; /* Trick to center the grid */
    }
}
