/* ===================================
   AI ACT READY - Legal Tech Design System
   Professional EU Compliance Platform
   =================================== */

:root {
    /* EU Official Colors */
    --eu-blue: #003399;
    --eu-blue-dark: #002266;
    --eu-blue-light: #0044cc;
    --eu-gold: #ffd700;
    --eu-gold-dark: #e6c200;
    --eu-gold-light: #ffdf33;

    /* Risk Level Colors */
    --risk-unacceptable: #7B1FA2;
    --risk-high: #D32F2F;
    --risk-limited: #F57C00;
    --risk-minimal: #2E7D32;

    /* UI Colors */
    --primary: #003399;
    --primary-dark: #002266;
    --primary-light: #1a4db3;
    --secondary: #1e3a5f;
    --accent: #0066cc;
    --success: #2E7D32;
    --warning: #F57C00;
    --danger: #D32F2F;
    --info: #0288D1;

    /* Neutral Colors */
    --dark: #0f172a;
    --dark-card: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;

    /* Spacing */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003399 0%, #0055cc 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #003399 0%, #001a4d 50%, #000d26 100%);
}

/* ===================================
   Global Styles
   =================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.display-1 { font-size: 4.5rem; font-weight: 800; }
.display-2 { font-size: 4rem; font-weight: 800; }
.display-3 { font-size: 3.5rem; font-weight: 800; }
.display-4 { font-size: 3rem; font-weight: 700; }
.display-5 { font-size: 2.5rem; font-weight: 700; }

/* ===================================
   Hero Section - Legal Tech Style
   =================================== */

.hero-legal {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-legal::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, transparent 70%);
    animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Navigation
   =================================== */

.navbar-aiact {
    background: rgba(0, 51, 153, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.navbar-aiact.scrolled {
    background: rgba(0, 51, 153, 0.98) !important;
    box-shadow: var(--shadow-lg);
}

.navbar-aiact .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-aiact .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-aiact .nav-link:hover {
    color: var(--white) !important;
}

.navbar-aiact .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.navbar-aiact .nav-link:hover::after {
    width: 80%;
}

.navbar-aiact .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    margin-top: 8px;
}

.navbar-aiact .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.navbar-aiact .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* ===================================
   Buttons
   =================================== */

.btn-primary-aiact {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 51, 153, 0.4);
}

.btn-primary-aiact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 153, 0.5);
    color: var(--white);
}

.btn-outline-light-aiact {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

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

.btn-danger-aiact {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
}

.btn-danger-aiact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
    color: var(--white);
}

.btn-success-aiact {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.4);
}

.btn-success-aiact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
    color: var(--white);
}

/* ===================================
   Risk Level Badges
   =================================== */

.risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-badge-unacceptable {
    background: rgba(123, 31, 162, 0.1);
    color: var(--risk-unacceptable);
    border: 1px solid rgba(123, 31, 162, 0.3);
}

.risk-badge-high {
    background: rgba(211, 47, 47, 0.1);
    color: var(--risk-high);
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.risk-badge-limited {
    background: rgba(245, 124, 0, 0.1);
    color: var(--risk-limited);
    border: 1px solid rgba(245, 124, 0, 0.3);
}

.risk-badge-minimal {
    background: rgba(46, 125, 50, 0.1);
    color: var(--risk-minimal);
    border: 1px solid rgba(46, 125, 50, 0.3);
}

/* ===================================
   Cards
   =================================== */

.card-aiact {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.card-aiact-dark {
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-feature {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.card-feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-feature:hover .feature-icon {
    transform: scale(1.1);
}

/* ===================================
   Pricing Cards
   =================================== */

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    margin: 24px 0;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===================================
   Trust Badge Display
   =================================== */

.trust-badge-preview {
    background: var(--white);
    border: 2px solid var(--success);
    border-radius: var(--border-radius);
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.trust-badge-text {
    font-weight: 600;
    color: var(--gray-900);
}

.trust-badge-date {
    font-size: 12px;
    color: var(--gray-500);
}

/* ===================================
   Stats Section
   =================================== */

.stat-card {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ===================================
   Warning Banner (FOMO)
   =================================== */

.warning-banner {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: var(--white);
    padding: 16px;
    text-align: center;
}

.warning-banner-text {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.warning-banner-icon {
    font-size: 24px;
    animation: pulse-icon 2s ease-in-out infinite;
}

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

/* ===================================
   Section Styles
   =================================== */

.section-padding {
    padding: 100px 0;
}

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

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-light {
    background: var(--gray-50);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 51, 153, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ===================================
   How It Works - Steps
   =================================== */

.step-card {
    text-align: center;
    padding: 32px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 62px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 3px;
    background: var(--gray-200);
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gray-200);
}

/* ===================================
   FAQ Accordion
   =================================== */

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

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

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question[aria-expanded="true"] {
    background: var(--primary);
    color: var(--white);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--gray-600);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

/* ===================================
   Footer
   =================================== */

.footer-aiact {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   Animations
   =================================== */

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

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===================================
   Testimonials
   =================================== */

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* ===================================
   Blog Cards
   =================================== */

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.blog-card-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    background: rgba(0, 51, 153, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-500);
}

/* ===================================
   Contact Form
   =================================== */

.form-control-aiact {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-aiact:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.1);
    outline: none;
}

.form-label-aiact {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* ===================================
   Legal Pages
   =================================== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--gray-600);
    line-height: 1.8;
    padding-left: 24px;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 24px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 8px);
    }

    .step-connector {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Custom Scrollbar
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================================
   EU Flag Colors Decoration
   =================================== */

.eu-decoration {
    height: 4px;
    background: linear-gradient(90deg,
        var(--eu-blue) 0%,
        var(--eu-blue) 33%,
        #ffd700 33%,
        #ffd700 66%,
        var(--eu-blue) 66%,
        var(--eu-blue) 100%
    );
}

.eu-stars {
    position: relative;
}

.eu-stars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffd700' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
}

/* ===================================
   EU Gold Utilities
   =================================== */

.bg-eu-gold {
    background-color: var(--eu-gold) !important;
}

.bg-eu-gold-gradient {
    background: linear-gradient(135deg, var(--eu-gold) 0%, var(--eu-gold-dark) 100%) !important;
}

.text-eu-gold {
    color: var(--eu-gold) !important;
}

.border-eu-gold {
    border-color: var(--eu-gold) !important;
}

.btn-eu-gold {
    background: linear-gradient(135deg, var(--eu-gold) 0%, var(--eu-gold-dark) 100%);
    border: none;
    color: var(--dark);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.4);
}

.btn-eu-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: var(--dark);
}

.btn-outline-eu-gold {
    background: transparent;
    border: 2px solid var(--eu-gold);
    color: var(--eu-gold);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-eu-gold:hover {
    background: var(--eu-gold);
    color: var(--dark);
}

/* ===================================
   Currency Display
   =================================== */

.currency-unit {
    font-size: 0.65em;
    font-weight: 400;
    opacity: 0.8;
    vertical-align: baseline;
    margin-left: 2px;
}

.price-display {
    display: inline-flex;
    align-items: baseline;
}

.price-amount {
    font-weight: 700;
}

.price-currency {
    font-size: 0.6em;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 3px;
}

/* ===================================
   Dashboard Stats Cards
   =================================== */

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-primary {
    background: rgba(0, 51, 153, 0.1);
    color: var(--primary);
}

.stat-icon-success {
    background: rgba(46, 125, 50, 0.1);
    color: var(--success);
}

.stat-icon-warning {
    background: rgba(255, 152, 0, 0.1);
    color: var(--warning);
}

.stat-icon-danger {
    background: rgba(211, 47, 47, 0.1);
    color: var(--danger);
}

.stat-icon-info {
    background: rgba(2, 136, 209, 0.1);
    color: var(--info);
}

.stat-icon-purple {
    background: rgba(102, 16, 242, 0.1);
    color: #6610f2;
}

/* ===================================
   Growth Cards
   =================================== */

.growth-card-primary {
    background: linear-gradient(135deg, var(--eu-blue) 0%, #0052cc 100%);
    color: var(--white);
}

.growth-card-success {
    background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
    color: var(--white);
}

.growth-card-warning {
    background: linear-gradient(135deg, #fd7e14 0%, var(--eu-gold) 100%);
    color: var(--white);
}

/* ===================================
   Text Utilities
   =================================== */

.text-purple {
    color: #6610f2 !important;
}

.fs-7 {
    font-size: 0.875rem !important;
}

.fs-8 {
    font-size: 0.75rem !important;
}

/* ===================================
   Hero Header Sections
   =================================== */

.hero-header-section {
    background: var(--gradient-hero);
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-header-section-lg {
    background: var(--gradient-hero);
    padding-top: 140px;
}

.hero-header-section-pricing {
    background: var(--gradient-hero);
    padding-top: 120px;
}

/* ===================================
   Stat Icon Circles (Dashboard)
   =================================== */

.stat-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-circle-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.stat-icon-circle-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-icon-circle-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.stat-icon-circle-gold {
    background: linear-gradient(135deg, var(--eu-gold), #FFC300);
}

.stat-icon-circle-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-circle-sm-primary {
    background: var(--primary);
    color: white;
}

.stat-icon-circle-sm-success {
    background: var(--success);
    color: white;
}

/* ===================================
   Stat Icon Wrappers (56px & 64px)
   =================================== */

.stat-icon-wrapper-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   Timeline Icons (40px circles)
   =================================== */

.timeline-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon-circle-primary {
    background: var(--primary);
    color: white;
}

.timeline-icon-circle-success {
    background: var(--success);
    color: white;
}

.timeline-icon-circle-info {
    background: var(--info);
    color: white;
}

/* ===================================
   Client Avatar Circle
   =================================== */

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
}

.avatar-circle-gray {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
}

/* ===================================
   Pricing Feature Disabled Icon
   =================================== */

.pricing-feature-icon-disabled {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* ===================================
   Pricing Feature Border (featured card)
   =================================== */

.pricing-feature-border-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===================================
   Section Margin Top Negative
   =================================== */

.section-mt-negative {
    margin-top: -40px;
}

.section-mt-negative-lg {
    margin-top: -60px;
}

/* ===================================
   Card Backgrounds
   =================================== */

.card-bg-primary-light {
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.05) 0%, rgba(0, 51, 153, 0.1) 100%);
}

.card-bg-gold-light {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, rgba(255, 204, 0, 0.1) 100%);
}

.card-bg-light-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

/* ===================================
   Project Card Headers
   =================================== */

.card-header-primary {
    background: var(--primary);
    color: white;
}

.card-header-gray {
    background: var(--gray-200);
    color: var(--gray-700);
}

.card-header-success {
    background: var(--success);
    color: white;
}

/* ===================================
   Table Header Background
   =================================== */

.table-header-gray {
    background: var(--gray-100);
}

.table-header-primary {
    background: var(--primary);
    color: white;
}

.table-row-highlight {
    background: rgba(0, 51, 153, 0.05);
}

/* ===================================
   Sticky Top with Offset
   =================================== */

.sticky-top-100 {
    position: sticky;
    top: 100px;
}

/* ===================================
   Code/Pre Blocks
   =================================== */

.code-block {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
}

.code-block-dark {
    background: #1e293b;
    border-radius: 12px;
}

/* ===================================
   Preview Box
   =================================== */

.preview-box {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--border-radius);
}

/* ===================================
   Copy Button Position
   =================================== */

.copy-btn-position {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ===================================
   Alert/Notice Backgrounds
   =================================== */

.alert-bg-danger-light {
    background: rgba(211, 47, 47, 0.1);
}

.alert-bg-unacceptable-light {
    background: rgba(123, 31, 162, 0.1);
}

.alert-bg-warning-light {
    background: rgba(245, 124, 0, 0.1);
}

.alert-bg-success-light {
    background: rgba(46, 125, 50, 0.1);
}

/* ===================================
   Card Top Border
   =================================== */

.card-border-top-unacceptable {
    border-top: 4px solid #7B1FA2;
}

.card-border-top-high {
    border-top: 4px solid #D32F2F;
}

.card-border-top-limited {
    border-top: 4px solid #F57C00;
}

.card-border-top-minimal {
    border-top: 4px solid #2E7D32;
}

/* ===================================
   Feature Icon Green Gradient
   =================================== */

.feature-icon-success {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
}

/* ===================================
   Dashboard Preview Card
   =================================== */

.card-preview-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
}

/* ===================================
   Decorative Circle
   =================================== */

.decorative-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

/* ===================================
   Progress Height Utilities
   =================================== */

.progress-height-4 {
    height: 4px;
}

.progress-height-6 {
    height: 6px;
}

.progress-height-8 {
    height: 8px;
}

.progress-height-10 {
    height: 10px;
}

/* ===================================
   Badge Image Max Width
   =================================== */

.badge-img-preview {
    max-width: 200px;
}

.badge-img-preview-lg {
    max-width: 250px;
}

/* ===================================
   Color Picker Width
   =================================== */

.color-picker-input {
    width: 60px;
}

/* ===================================
   Chart Containers
   =================================== */

.chart-container-250 {
    height: 250px;
}

.chart-container-300 {
    height: 300px;
}

/* ===================================
   Text Color Utilities
   =================================== */

.text-unacceptable {
    color: #7B1FA2;
}

.text-limited {
    color: #F57C00;
}

.text-eu-gold {
    color: var(--eu-gold);
}

.text-purple {
    color: #6610f2;
}

/* ===================================
   Stat Icon Wrappers (56px)
   =================================== */

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-primary {
    background: rgba(0, 51, 153, 0.1);
}

.stat-icon-success {
    background: rgba(40, 167, 69, 0.1);
}

.stat-icon-warning {
    background: rgba(255, 193, 7, 0.1);
}

.stat-icon-purple {
    background: rgba(102, 16, 242, 0.1);
}

/* ===================================
   Growth Cards
   =================================== */

.growth-card-primary {
    background: linear-gradient(135deg, #003399 0%, #0052cc 100%);
    color: white;
}

.growth-card-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.growth-card-warning {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
    color: white;
}

/* ===================================
   Border Utilities
   =================================== */

.border-eu-gold {
    border-color: var(--eu-gold) !important;
}

.border-2 {
    border-width: 2px !important;
    border-style: solid !important;
}

/* ===================================
   Background Utilities
   =================================== */

.bg-primary-dark {
    background: var(--primary-dark);
}

/* ===================================
   Stat Icon 64px Variants
   =================================== */

.stat-icon-wrapper-lg.stat-icon-primary {
    background: rgba(0, 51, 153, 0.1);
}

.stat-icon-wrapper-lg.stat-icon-success {
    background: rgba(40, 167, 69, 0.1);
}

.stat-icon-wrapper-lg.stat-icon-warning {
    background: rgba(255, 193, 7, 0.1);
}

.stat-icon-wrapper-lg.stat-icon-purple {
    background: rgba(102, 16, 242, 0.1);
}
