.verify-block { margin-top: 12px; }
.verify-row { display: grid; gap: 12px; margin-bottom: 12px; }
.verify-row .full { width: 100%; height: 48px; }
.verify-block .alert { margin: 0; }
.hidden { display: none !important; }

/* Email verification uniform styling */
#emailVerifiedSuccess { margin-top: 10px; }
#sendVerificationBtn, #verifyCodeBtn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
#verificationCode {
    height: 48px;
}
.toc {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    padding: 12px 12px 8px 12px;
}

.toc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}

.toc-toggle {
    background: none;
    border: none;
    padding: 0;
    color: #2563eb;
    font-size: 0.875rem;
    cursor: pointer;
}

.toc-list ol {
    list-style: decimal;
    padding-left: 1rem;
    margin: 0;
}

.toc-list a {
    display: inline-block;
    padding: 4px 0;
    color: #1f2937;
    text-decoration: none;
}

.toc-list a:hover { color: #2563eb; text-decoration: underline; }

.toc-collapsed .toc-list { display: none; }
/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Material Icons styling */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
}

/* Top Language Banner */
.language-banner {
    background-color: #1E40AF;
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.language-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.language-info {
    display: flex;
    align-items: center;
    text-align: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.language-options.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #F3F4F6;
}

.language-option.active {
    background-color: #EFF6FF;
    color: #2563EB;
}

.language-option .flag-icon {
    width: 18px;
    height: 12px;
}

/* Blue Notification Banner */
.notification-banner {
    background-color: #2563EB;
    color: #FFFFFF;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: block;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.notification-banner:hover {
    background-color: #1D4ED8;
    color: #FFFFFF;
}

.notification-banner::after {
    content: '→';
    margin-left: 8px;
    font-weight: 700;
}

.notification-banner::before {
    content: '⚠';
    margin-right: 8px;
    color: #FDE047;
}

/* Header Navigation */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #2563EB;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #2563EB;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563EB;
    transition: width 0.2s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4B5563;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.dropdown-trigger:hover {
    color: #2563EB;
    text-decoration: none !important;
}

.dropdown-trigger::after {
    display: none;
}

.dropdown-arrow {
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6B7280;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #2563EB;
}

/* Mega Menu Styles */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.mega-menu {
    min-width: 450px;
    max-width: 500px;
    padding: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mega-menu-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.mega-menu-title .material-icons {
    font-size: 22px;
    color: #2563EB;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 8px;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.mega-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-actions a:hover {
    text-decoration: none !important;
    border: none !important;
}

.mega-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: #FFFFFF !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-align: center;
}

.mega-menu-cta:link,
.mega-menu-cta:visited,
.mega-menu-cta:active {
    text-decoration: none !important;
    color: #FFFFFF !important;
}

.mega-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.mega-menu-cta .material-icons {
    font-size: 18px;
    color: #FFFFFF !important;
}

.mega-menu-category {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #F3F4F6;
}

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-links li {
    margin: 0;
}

.mega-menu-links a {
    display: block;
    padding: 8px 12px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mega-menu-links a:hover {
    color: #2563EB;
    background: #F8FAFC;
    transform: translateX(4px);
}

.mega-menu-highlight {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 10px;
    border: 1px solid #E2E8F0;
}

.highlight-label {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.highlight-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.highlight-link:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-item:hover {
    color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.3);
}

.dropdown-item .material-icons {
    font-size: 20px;
    color: #6B7280;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    padding: 8px;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:hover .material-icons {
    color: #FFFFFF;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background-color: #2563EB;
    color: #FFFFFF;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    background-color: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.search-icon {
    color: #6B7280;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.search-icon:hover {
    color: #2563EB;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: 12px;
    background: transparent;
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

/* legacy bar styling kept but disabled by default (no .bar used) */
.hamburger .bar {
    height: 3px;
    width: 100%;
    background: #2563EB;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger .material-icons, .hamburger .hamburger-icon {
    font-size: 28px;
    color: #2563EB;
    line-height: 32px;
}

.hamburger.active .material-icons { color: #1D4ED8; }

/* Accessible focus without default button border */
.hamburger:focus { outline: none; }
.hamburger:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
    border-radius: 6px;
}

/* Hide mobile menu button on desktop */
.header-actions.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

/* WCAG Hero Styles */
.wcag-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.wcag-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.wcag-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.wcag-hero .hero-badge .material-icons {
    font-size: 18px;
}

.wcag-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcag-hero .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 48px;
    color: white;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wcag-check-container {
    margin-bottom: 64px;
}

.wcag-search {
    max-width: 600px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wcag-search:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.wcag-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 8px;
    font-size: 16px;
    color: #1f2937;
    outline: none;
}

.wcag-input::placeholder {
    color: #6b7280;
}

.wcag-check-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.wcag-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.wcag-hint {
    color: white !important;
    opacity: 0.9;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.wcag-hero .search-hint {
    color: white !important;
    opacity: 0.9;
}

.wcag-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.wcag-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.wcag-feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wcag-feature-item .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.wcag-feature-item .feature-icon .material-icons {
    font-size: 24px;
    color: white;
}

.wcag-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    line-height: 1.3;
}

.wcag-feature-item p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
    color: white;
}

.trust-section {
    background: #f8fafc;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-content {
    text-align: center;
}

.trust-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 40px;
}

.trust-text strong {
    color: #1e293b;
    font-weight: 700;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

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

.trust-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-stat .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WCAG Information Section */
.wcag-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.wcag-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.wcag-info-header {
    text-align: center;
    margin-bottom: 64px;
}

.wcag-info-header .section-badge-center {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wcag-info-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.wcag-info-header .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.wcag-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.guideline-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.guideline-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.category-header {
    margin-bottom: 24px;
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.category-icon .material-icons {
    font-size: 28px;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.category-header p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.guideline-checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.check-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.check-icon {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.check-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

/* BFSG Alert Section */
.bfsg-alert-section {
    margin-bottom: 64px;
}

.alert-container {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.alert-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #dc2626);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.alert-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    animation: warning-pulse 2s ease-in-out infinite;
}

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

.alert-icon .material-icons {
    font-size: 32px;
    color: white;
}

.alert-content {
    flex: 1;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-badge .material-icons {
    font-size: 18px;
}

.alert-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.alert-content p {
    font-size: 1.125rem;
    color: #78350f;
    line-height: 1.6;
    margin-bottom: 32px;
}

.compliance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon .material-icons {
    font-size: 20px;
    color: white;
}

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

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #92400e;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #78350f;
    font-weight: 500;
}

.alert-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-urgent {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5); }
}

.btn-urgent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.btn-urgent .material-icons {
    font-size: 20px;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #92400e;
    font-size: 14px;
    font-weight: 600;
}

.urgency-text .material-icons {
    font-size: 18px;
    color: #f59e0b;
}

.wcag-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 48px 32px;
}

.wcag-cta .cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.wcag-cta .cta-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.wcag-cta .btn-primary.large {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EFF6FF;
    color: #2563EB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #DBEAFE;
}

.hero-badge::before {
    content: '✓';
    background-color: #10B981;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-secondary {
    background-color: transparent;
    color: #374151;
    padding: 12px 24px;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #2563EB;
    padding: 8px 16px;
    border: 2px solid #2563EB;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary-outline:hover {
    background-color: #2563EB;
    color: #FFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary-outline .material-icons {
    font-size: 18px;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 1;
}

.decoration-circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    top: 10%;
    left: -5%;
    opacity: 0.8;
}

.decoration-circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
    border-radius: 50%;
    top: 20%;
    right: -3%;
    opacity: 0.9;
}

.decoration-circle-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 50%;
    bottom: 15%;
    right: 8%;
    opacity: 0.8;
}

.decoration-circle-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 50%;
    bottom: 25%;
    left: 5%;
    opacity: 0.7;
}

/* Team Photos */
.team-photo {
    position: absolute;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-photo-1 {
    width: 160px;
    height: 160px;
    top: 30%;
    left: 15%;
    background-image: url('/img/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-photo-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 8%;
    background-image: url('/img/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-photo-3 {
    width: 150px;
    height: 150px;
    top: 35%;
    right: 12%;
    background-image: url('/img/3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-photo-4 {
    width: 130px;
    height: 130px;
    bottom: 20%;
    right: 18%;
    background-image: url('/img/4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Company Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.stats-text {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
}

.stats-text strong {
    color: #111827;
    font-weight: 700;
}

/* Visually hidden utility for SEO and accessibility */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Loading Popup Styles */
.loading-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.35s ease-out;
}

.loading-popup {
    position: relative;
    background: #ffffff; /* light mode to match site */
    color: #1F2937;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 28px 28px 22px;
    max-width: 520px;
    width: min(92%, 520px);
    text-align: left;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid #E5E7EB;
    animation: slideUp 0.45s cubic-bezier(.2,.9,.25,1);
}

/* minimalist border removed for ultra-clean design */

.loading-animation { margin-bottom: 18px; }

.loading-spinner { display: none; }

.spinner-circle { display: none; }

.spinner-circle:nth-child(1) { animation-delay: -0.32s; }
.spinner-circle:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce { 0%, 80%, 100% { transform: translateY(0) scale(.85); } 40% { transform: translateY(-6px) scale(1); } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,.0);} 50% { box-shadow: 0 0 18px 6px rgba(59,130,246,.25);} }

.loading-popup h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .1px;
    color: #111827;
    margin-bottom: 6px;
    animation: titlePop .6s cubic-bezier(.2,.9,.25,1);
}
@keyframes titlePop { 0% { opacity: 0; transform: translateY(8px) scale(.98);} 100% { opacity: 1; transform: translateY(0) scale(1);} }

.loading-popup p { font-size: .98rem; color: #4B5563; margin: 0 0 18px; line-height: 1.6; }

.loading-progress { margin-top: 8px; }

.progress-bar { display: none; }

.progress-fill { display: none; }

/* Modern endless stepper */
.loading-steps { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }
.loading-steps .step {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.loading-steps .step .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #CBD5E1; opacity: 1;
    box-shadow: 0 0 0 0 rgba(59,130,246,0);
    transition: all .45s ease;
}
.loading-steps .step .label { color: #374151; font-size: .95rem; }

.loading-steps .step.active .dot { background: #2563EB; box-shadow: 0 0 0 8px rgba(37,99,235,0.12); }
.loading-steps .step.active { border-color: #93C5FD; background: #EFF6FF; box-shadow: 0 6px 18px rgba(37,99,235,0.10); }
.loading-steps .step.done .dot { background: #9CA3AF; }
.loading-steps .step.done { border-color: #E5E7EB; background: #FAFAFA; }
.loading-steps .step .shimmer {
    position: absolute; inset: 0; border-radius: 12px; overflow: hidden; pointer-events: none;
}
.loading-steps .step .shimmer::after {
    content: ""; position: absolute; inset: 0; transform: translateX(-100%);
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
    animation: cardShimmer 1.6s infinite;
}
@keyframes cardShimmer { 100% { transform: translateX(100%); } }

.loading-progress small {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Error Popup Styles */
.error-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.error-popup {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.error-icon {
    margin-bottom: 24px;
}

.error-icon .material-icons {
    font-size: 64px;
    color: #EF4444;
}

.error-popup h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.error-popup p {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .loading-popup,
    .error-popup {
        padding: 32px 24px;
        margin: 20px;
    }
    
    .loading-popup h3 {
        font-size: 1.5rem;
    }
    
    .loading-popup p,
    .error-popup p {
        font-size: 0.9rem;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
    }
}

.stats-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.stats-link:hover {
    color: #1D4ED8;
}

.stats-link::after {
    content: '→';
    margin-left: 4px;
}

/* Company Logos */
.company-logos-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.company-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0.6;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.company-logos:hover {
    animation-play-state: paused;
    opacity: 0.8;
}

.company-logo {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    flex-shrink: 0;
    min-width: max-content;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Website Check Section */
.website-check-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 80px 0;
    border-top: 1px solid #E5E7EB;
}

.website-check-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.check-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.check-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.check-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.search-container {
    margin-bottom: 40px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 700px;
    margin: 0 auto 16px;
}

.search-wrapper:focus-within {
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.search-icon-input {
    color: #6B7280;
    margin-left: 16px;
    margin-right: 12px;
    font-size: 20px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #111827;
    padding: 16px 8px;
    background: transparent;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-button {
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin: 4px;
}

.search-button:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.search-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
    margin-top: 12px;
}

.search-hint .material-icons {
    font-size: 16px;
    color: #10B981;
}

.check-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-item .material-icons {
    color: #2563EB;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-decoration,
    .team-photo {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        z-index: 200;
        padding: 16px 0;
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 24px;
        border-bottom: 1px solid #F3F4F6;
        font-size: 16px;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-trigger {
        padding: 16px 24px;
        border-bottom: none !important;
        font-size: 16px;
        justify-content: space-between;
        border-radius: 0;
        background: transparent;
    }
    
    .dropdown-trigger:hover {
        background: #F8FAFC;
        transform: none;
    }
    
    .dropdown-trigger::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
        margin: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        backdrop-filter: none;
    }
    
    .mega-menu {
        min-width: auto;
        max-width: none;
        padding: 0;
        left: auto;
        transform: none;
    }
    
    .nav-dropdown:hover .mega-menu {
        transform: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }
    
    .mega-menu-column {
        gap: 16px;
    }
    
    .mega-menu-title {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #E2E8F0;
    }
    
    .mega-menu-description {
        display: none;
    }
    
    .mega-menu-cta {
        padding: 12px 16px;
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .mega-menu-category {
        font-size: 14px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    
    .mega-menu-links a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .mega-menu-highlight {
        margin-top: 12px;
        padding: 12px;
    }
    
    .dropdown-item {
        padding: 16px 48px;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #E2E8F0;
        font-size: 15px;
        background: transparent;
        transform: none;
        box-shadow: none;
    }
    
    .dropdown-item::before {
        display: none;
    }
    
    .dropdown-item:hover {
        background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
        transform: none;
        box-shadow: none;
    }
    
    .dropdown-item .material-icons {
        background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .dropdown-item:hover .material-icons {
        background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
        transform: none;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-actions.mobile-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 16px 24px;
        border-top: 1px solid #F3F4F6;
        margin-top: 8px;
        gap: 12px;
    }
    
    .header-actions.mobile-menu .btn-primary,
    .header-actions.mobile-menu .btn-secondary-outline {
        margin-bottom: 12px !important;
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        box-sizing: border-box;
        font-size: 16px;
        border: none;
    }
    .nav-menu a {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .header-actions.mobile-menu .btn-primary {
        color: white;
    }

    /* Blue Notification Banner */
    .notification-banner {
        font-size: 12px;
    }

    .language-info {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .wcag-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 600px;
    }
    
    .wcag-guidelines-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .legal-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .wcag-hero {
        padding: 80px 0 50px;
    }
    
    .wcag-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .wcag-hero .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    .wcag-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wcag-search {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .wcag-check-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wcag-info-section {
        padding: 60px 0;
    }
    
    .wcag-info-header .section-title {
        font-size: 2rem;
    }
    
    .wcag-info-header .section-subtitle {
        font-size: 1rem;
    }
    
    .guideline-category {
        padding: 24px;
    }
    
    .alert-container {
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
    }
    
    .alert-icon {
        align-self: center;
    }
    
    .alert-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .alert-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .compliance-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .alert-actions {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .btn-urgent {
        width: 100%;
        justify-content: center;
    }
    
    .wcag-cta {
        padding: 32px 24px;
    }
    
    .wcag-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .wcag-cta .cta-content p {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .language-banner .container {
        flex-direction: column;
        gap: 8px;
    }

    .check-title {
        font-size: 28px;
    }

    .check-subtitle {
        font-size: 16px;
    }

    .search-wrapper {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .search-input {
        text-align: center;
        padding: 12px;
    }

    .search-button {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .check-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .company-logos {
        gap: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility Results Modal */
.accessibility-results {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.results-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.results-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.results-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #6B7280;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #F3F4F6;
    color: #374151;
}

.results-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.score-circle.low-score {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.score-circle.medium-score {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.score-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.score-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.summary-info p {
    color: #6B7280;
    margin-bottom: 4px;
    font-size: 14px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 24px 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
}

.stat-item.critical {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.stat-item.warning {
    background: #FFFBEB;
    border: 1px solid #FED7AA;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-item.critical .stat-number {
    color: #DC2626;
}

.stat-item.warning .stat-number {
    color: #D97706;
}

.stat-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.results-section {
    padding: 0 24px 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.results-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.results-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.issues-list, .recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.issue-item, .recommendation-item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
}

.issue-item.critical {
    border-color: #FECACA;
    background: #FEF2F2;
}

.issue-item.error {
    border-color: #FECACA;
    background: #FEF2F2;
}

.issue-item.warning {
    border-color: #FED7AA;
    background: #FFFBEB;
}

.issue-header, .rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.issue-type, .rec-priority {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #E5E7EB;
    color: #374151;
}

.issue-item.critical .issue-type {
    background: #DC2626;
    color: white;
}

.issue-item.error .issue-type {
    background: #DC2626;
    color: white;
}

.issue-item.warning .issue-type {
    background: #D97706;
    color: white;
}

.recommendation-item.high .rec-priority {
    background: #DC2626;
    color: white;
}

.recommendation-item.medium .rec-priority {
    background: #D97706;
    color: white;
}

.issue-category {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.issue-message, .recommendation-item p {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.issue-selector {
    display: block;
    background: #F3F4F6;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    color: #374151;
    border: 1px solid #E5E7EB;
}

.rec-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.recommendation-item small {
    color: #6B7280;
    font-size: 12px;
}

.results-actions {
    padding: 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: #F9FAFB;
    border-radius: 0 0 16px 16px;
}

/* Responsive design for results modal */
@media (max-width: 768px) {
    .accessibility-results {
        padding: 10px;
    }
    
    .results-content {
        max-height: 95vh;
    }
    
    .results-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .results-actions button {
        width: 100%;
        justify-content: center;
    }
}

/* Analysis Page Styles */
.analysis-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    min-height: calc(100vh - 120px);
}

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

.analysis-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.analysis-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.analysis-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 8px;
}

.analysis-date {
    font-size: 14px;
    color: #9CA3AF;
}

/* Results Summary Card */
.results-summary-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    border: 1px solid #E5E7EB;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #F3F4F6;
}

.score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.score-circle.high-score {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.score-circle.medium-score {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.score-circle.low-score {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.score-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.score-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.score-info {
    flex: 1;
}

.compliance-level {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.score-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-card.critical {
    background: #FEF2F2;
    border-color: #FECACA;
}

.stat-card.warning {
    background: #FFFBEB;
    border-color: #FED7AA;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card.critical .stat-number {
    color: #DC2626;
}

.stat-card.warning .stat-number {
    color: #D97706;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Email Gate Section */
.email-gate-section {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    text-align: center;
}

.lock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.lock-icon .material-icons {
    font-size: 36px;
    color: white;
}

.email-prompt h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.email-prompt p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input-wrapper {
    display: flex;
    align-items: center;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.email-input-wrapper:focus-within {
    border-color: #2563EB;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.email-input-wrapper .material-icons {
    color: #6B7280;
    font-size: 20px;
    margin-right: 12px;
}

.email-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #111827;
    padding: 16px 8px;
}

.email-input-wrapper input::placeholder {
    color: #9CA3AF;
}

.submit-email-btn {
    background: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ea1se;
    white-space: nowrap;
}
.submit-email-btn span {
    color: white !important;
}

.submit-email-btn:hover:not(:disabled) {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.submit-email-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.email-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
}

.email-privacy .material-icons {
    font-size: 16px;
    color: #10B981;
}

.email-success {
    text-align: center;
    padding: 32px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
}

.email-success .material-icons {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 16px;
}

.email-success h4 {
    font-size: 20px;
    font-weight: 600;
    color: #065F46;
    margin-bottom: 8px;
}

.email-success p {
    color: #047857;
    margin: 0;
}

/* Results Preview (Blurred) */
.results-preview {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.results-preview.unlocked .preview-overlay {
    opacity: 0;
    pointer-events: none;
}

.unlock-message {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.unlock-message .material-icons {
    font-size: 48px;
    color: #6B7280;
    margin-bottom: 16px;
}

.unlock-message p {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.blurred-content {
    padding: 32px;
    transition: filter 0.3s ease;
}

.results-preview.unlocked .blurred-content {
    filter: none;
}

.blurred-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.issues-preview, .recommendations-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.issue-item-preview, .recommendation-item-preview {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FAFAFA;
}

.issue-item-preview.critical {
    border-color: #FECACA;
    background: #FEF2F2;
}

.issue-item-preview.error {
    border-color: #FECACA;
    background: #FEF2F2;
}

.issue-item-preview.warning {
    border-color: #FED7AA;
    background: #FFFBEB;
}

.issue-header, .rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.issue-type, .rec-priority {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #E5E7EB;
    color: #374151;
}

.issue-item-preview.critical .issue-type {
    background: #DC2626;
    color: white;
}

.issue-item-preview.error .issue-type {
    background: #DC2626;
    color: white;
}

.issue-item-preview.warning .issue-type {
    background: #D97706;
    color: white;
}

.recommendation-item-preview.high .rec-priority {
    background: #DC2626;
    color: white;
}

.recommendation-item-preview.medium .rec-priority {
    background: #D97706;
    color: white;
}

.issue-category {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.issue-message, .recommendation-item-preview p {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.issue-selector {
    display: block;
    background: #F3F4F6;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 11px;
    color: #374151;
    border: 1px solid #E5E7EB;
    word-break: break-all;
}

.rec-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.recommendation-item-preview small {
    color: #6B7280;
    font-size: 12px;
}

.more-issues, .more-recommendations {
    text-align: center;
    padding: 16px;
    background: #F9FAFB;
    border: 1px dashed #D1D5DB;
    border-radius: 8px;
    color: #6B7280;
    font-style: italic;
}

/* Back to Home */
.back-to-home {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design for Analysis Page */
@media (max-width: 1024px) {
    .analysis-section .container {
        max-width: 800px;
    }
    
    .analysis-title {
        font-size: 36px;
    }
    
    .score-display {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .analysis-section {
        padding: 20px 0 40px;
    }
    
    .analysis-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .analysis-header {
        padding: 20px 0;
        margin-bottom: 24px;
    }
    
    .analysis-title {
        font-size: 28px;
    }
    
    .results-summary-card, .email-gate-section, .results-preview {
        margin-bottom: 20px;
        padding: 24px 20px;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-number {
        font-size: 36px;
    }
    
    .email-input-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .submit-email-btn {
        width: 100%;
        justify-content: center;
    }
    
    .blurred-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .analysis-section .container {
        padding: 0 16px;
    }
    
    .analysis-title {
        font-size: 24px;
    }
    
    .compliance-level {
        font-size: 20px;
    }
    
    .email-prompt h3 {
        font-size: 22px;
    }
    
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* Plugin Showcase Section */
.plugin-section {
    background: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid #E5E7EB;
}

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

.plugin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #2563EB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #BFDBFE;
}

.plugin-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 24px;
}

.plugin-title .highlight {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plugin-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.plugin-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
}

.feature-row .material-icons {
    color: #10B981;
    font-size: 20px;
}

.plugin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.plugin-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Code Demo */
.plugin-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.code-window {
    background: #1F2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    margin-top: 30px !important;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #374151;
    border-bottom: 1px solid #4B5563;
}

.code-dots {
    display: flex;
    gap: 6px;
}

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

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.code-title {
    font-size: 12px;
    color: #D1D5DB;
    font-weight: 500;
}

.code-content {
    padding: 20px;
    background: #1F2937;
}

.code-content pre {
    margin: 0;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #F9FAFB;
    white-space: pre;
    overflow-x: auto;
}

.code-comment { color: #9CA3AF; }
.code-tag { color: #F87171; }
.code-attr { color: #60A5FA; }
.code-string { color: #34D399; }

.magic-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-weight: 600;
    font-size: 14px;
}

.magic-arrow .material-icons {
    font-size: 32px;
    animation: magic-pulse 2s infinite;
}

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

.result-preview {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 12px;
    border: 2px solid #BBF7D0;
    width: 100%;
    max-width: 400px;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.result-preview p {
    color: #065F46;
    font-weight: 500;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.how-it-works-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #6B7280;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid #BFDBFE;
}

.step-icon .material-icons {
    font-size: 36px;
    color: #2563EB;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
}

.step-arrow {
    flex-shrink: 0;
    margin-top: 30px;
}

.step-arrow .material-icons {
    font-size: 36px;
    color: #D1D5DB;
}

/* Plugin CTA Section */
.plugin-cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plugin-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

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

.cta-button {
    background: #FFFFFF;
    color: #2563EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: #FFFFFF;
}

.cta-shape-1, .cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 80px 0;
    }

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

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

    .cta-title {
        font-size: 32px;
    }
}

/* Scan Visualization */
.scan-visualization {
    text-align: center;
}

.website-mockup {
    width: 200px;
    height: 250px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.element-highlight {
    position: absolute;
    background: rgba(37, 99, 235, 0.2);
    width: 80%;
    height: 20px;
    left: 10%;
    border-radius: 4px;
    animation: scan-highlight 2s infinite;
}

.element-highlight:nth-child(1) { top: 20px; }
.element-highlight:nth-child(2) { top: 60px; }
.element-highlight:nth-child(3) { top: 100px; }

.element-highlight.delay-1 { animation-delay: 0.3s; }
.element-highlight.delay-2 { animation-delay: 0.6s; }

@keyframes scan-highlight {
    0%, 100% { background: rgba(37, 99, 235, 0.1); }
    50% { background: rgba(37, 99, 235, 0.4); }
}

.scan-progress {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 2px;
    width: 0;
    animation: progress-fill 3s infinite;
}

@keyframes progress-fill {
    0% { width: 0; }
    100% { width: 100%; }
}

.scan-progress span {
    font-size: 12px;
    color: #6B7280;
    margin-top: 8px;
    display: block;
}

/* Fixing Animation */
.fixing-animation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 20px;
}

.problem-element, .fixed-element {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.problem-element {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.fixed-element {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
}

.error-icon {
    color: #DC2626;
}

.success-icon {
    color: #16A34A;
}

.transform-arrow {
    color: #2563EB;
}

/* Success State */
.success-state {
    text-align: center;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.compliance-badge .material-icons {
    font-size: 24px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-text strong {
    font-size: 16px;
    font-weight: 700;
}

.badge-text span {
    font-size: 12px;
    opacity: 0.9;
}

.metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #10B981;
    line-height: 1;
}

.metric .label {
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
}

/* Detail Text */
.detail-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.detail-text p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.detail-text ul {
    list-style: none;
    padding: 0;
}

.detail-text li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
    margin-bottom: 8px;
}

.detail-text li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
    font-size: 12px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon .material-icons {
    font-size: 36px;
    color: #2563EB;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    text-align: center;
}


.cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plugin-content {
        display: block;
    }
}

/* Plugin Section Mobile Styles */
@media (max-width: 768px) {
    .plugin-section {
        padding: 60px 0;
    }
    
    .plugin-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .plugin-demo {
        gap: 20px;
    }
    
    .code-window {
        max-width: 100%;
        margin: 0;
    }
    
    .code-content {
        padding: 16px;
    }
    
    .code-content pre {
        font-size: 11px;
        line-height: 1.5;
        overflow-x: auto;
        white-space: pre;
        -webkit-overflow-scrolling: touch;
    }
    
    .code-content code {
        display: block;
        min-width: max-content;
    }
    
    .result-preview {
        max-width: 100%;
        padding: 20px 16px;
    }
    
    .magic-arrow {
        font-size: 12px;
    }
    
    .magic-arrow .material-icons {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .timeline-content {
        min-width: auto;
        padding: 16px;
    }
    
    .detail-card {
        padding: 24px;
        gap: 24px;
    }
    
    .detail-text h3 {
        font-size: 24px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .detail-text h3 {
        font-size: 20px;
    }
    
    .benefit-item {
        padding: 24px 16px;
    }
    
    .before-after {
        flex-direction: column;
        gap: 12px;
    }
    
    .metrics {
        flex-direction: column;
        gap: 12px;
    }
}

/* Service Hero Sections */
.service-hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #2563EB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #BFDBFE;
}

.service-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.service-hero .hero-title .highlight {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.service-hero .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-hero .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.service-hero .stat-item .number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 4px;
}

.service-hero .stat-item .label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Plugin Hero Section */
.plugin-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.plugin-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.plugin-hero-content {
    max-width: 550px;
}

.plugin-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.plugin-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

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

.plugin-hero .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.plugin-hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.plugin-hero .hero-buttons .btn-primary {
    background: #FFFFFF;
    color: #2563EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plugin-hero .hero-buttons .btn-primary:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plugin-hero .hero-buttons .btn-secondary-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.plugin-hero .hero-buttons .btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.plugin-hero .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.plugin-hero .feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.plugin-hero .feature-highlight .material-icons {
    font-size: 20px;
    color: #6EE7B7;
}

.plugin-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-window-wrapper {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.code-window-wrapper:hover {
    transform: scale(1.05);
}

.plugin-hero .code-window {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 450px;
}

.plugin-hero .code-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
}

.plugin-hero .code-title {
    color: #E5E7EB;
    font-size: 16px;
    font-weight: 500;
}

.plugin-hero .code-content {
    background: transparent;
    padding: 20px;
}

.plugin-hero .code-content pre {
    margin: 0;
}

.plugin-hero .code-content code {
    font-size: 18px;
    line-height: 1.5;
}

.plugin-hero .code-content .code-string {
    color: #A7F3D0;
}

.plugin-icon-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.plugin-icon-float .material-icons {
    font-size: 40px;
    color: white;
}

.hero-background-shape {
    position: absolute;
    bottom: -150px;
    left: 50%;
    width: 1200px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translateX(-50%) rotate(15deg);
    z-index: 1;
}

/* Floating Code Elements */
.floating-code {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.code-float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.code-float-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.code-float-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.floating-code .code-snippet {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Plugin Hero Visual */
.plugin-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comparison-showcase {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.showcase-header {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tab:not(.active) {
    color: rgba(255, 255, 255, 0.7);
}

.showcase-content {
    position: relative;
    height: 300px;
}

.showcase-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-panel.active {
    opacity: 1;
}

.website-mockup {
    background: white;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    background: #F3F4F6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

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

.url-bar {
    flex: 1;
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #6B7280;
    border: 1px solid #E5E7EB;
}

.plugin-indicator {
    background: #10B981;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mockup-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100% - 120px);
}

.element-issue, .element-fixed {
    position: relative;
    padding: 12px;
    border-radius: 8px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.element-issue {
    border-left: 4px solid #EF4444;
}

.element-fixed {
    border-left: 4px solid #10B981;
}

.image-placeholder {
    width: 60px;
    height: 40px;
    background: #E5E7EB;
    border-radius: 4px;
}

.text-element {
    font-size: 14px;
    padding: 8px;
    border-radius: 4px;
}

.low-contrast {
    background: #F3F4F6;
    color: #9CA3AF;
}

.high-contrast {
    background: #111827;
    color: white;
}

.input-element {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-element input {
    padding: 8px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 14px;
}

.input-element label {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

.issue-indicator, .fix-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.issue-indicator {
    background: #EF4444;
    color: white;
}

.fix-indicator {
    background: #10B981;
    color: white;
}

.fix-tooltip {
    position: absolute;
    top: -30px;
    right: 8px;
    background: #111827;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInTooltip 0.5s ease 0.3s forwards;
}

@keyframes fadeInTooltip {
    to { opacity: 1; }
}

.issues-count, .success-message {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.issues-count {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.success-message {
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #BBF7D0;
}

.integration-preview {
    position: relative;
}

.copy-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.copy-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Plugin Page Visuals */
.code-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.magic-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    animation: magic-glow 2s infinite alternate;
}

@keyframes magic-glow {
    0% { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3); }
    100% { box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5); }
}

/* Monitor Page Visuals */
.monitor-dashboard {
    width: 100%;
    max-width: 500px;
}

.dashboard-window {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.dashboard-header {
    background: #F9FAFB;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.header-info .material-icons {
    color: #2563EB;
    font-size: 18px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
}

.status-indicator.online {
    color: #10B981;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    padding: 20px;
}

.metric-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.metric-card {
    flex: 1;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon .material-icons {
    color: white;
    font-size: 20px;
}

.metric-icon.warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.metric-info {
    text-align: left;
}

.metric-number {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.activity-feed {
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
}

.activity-icon {
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon .material-icons {
    color: white;
    font-size: 14px;
}

.activity-icon.warning {
    background: #F59E0B;
}

.activity-text {
    flex: 1;
    color: #374151;
    font-weight: 500;
}

.activity-time {
    color: #9CA3AF;
    font-size: 11px;
}

/* Consulting Page Visuals */
.consulting-preview {
    width: 100%;
    max-width: 450px;
}

.expert-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.card-header {
    background: #F9FAFB;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expert-avatar .material-icons {
    color: white;
    font-size: 28px;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.expert-title {
    font-size: 13px;
    color: #6B7280;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.available {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.status-badge .material-icons {
    font-size: 14px;
}

.card-content {
    padding: 20px;
}

.expertise-areas {
    margin-bottom: 20px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.expertise-item .material-icons {
    color: #2563EB;
    font-size: 18px;
}

.consultation-preview {
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.preview-title .material-icons {
    color: #2563EB;
    font-size: 18px;
}

.time-slots {
    display: flex;
    gap: 8px;
}

.time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: #2563EB;
    color: white;
    border-color: #2563EB;
}

.time-slot .day {
    font-weight: 600;
    margin-bottom: 2px;
}

.time-slot .time {
    color: #6B7280;
}

.time-slot:hover .time {
    color: white;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .service-hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .service-hero .hero-title {
        font-size: 42px;
    }
    
    .dashboard-window,
    .expert-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .service-hero .container {
        gap: 40px;
    }
    
    .service-hero .hero-title {
        font-size: 32px;
    }
    
    .service-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .service-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero .hero-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-hero .hero-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .metric-cards {
        flex-direction: column;
        gap: 8px;
    }
    
    .metric-card {
        padding: 12px;
    }
    
    .time-slots {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-hero .container {
        padding: 0 20px;
    }
    
    .service-hero .hero-title {
        font-size: 28px;
    }
    
    .service-hero .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .dashboard-content,
    .card-content {
        padding: 16px;
    }
    
    .card-header {
        padding: 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .expert-avatar {
        width: 50px;
        height: 50px;
    }
    
    .expert-avatar .material-icons {
        font-size: 24px;
    }
}

/* Login Page Styles */
.login-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 60px 0 100px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-section .container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Register + Payment wider layout */
.register-section .container {
    max-width: 1100px;
}

.register-section .login-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    padding: 48px;
}

.register-section .login-header {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
}

.register-section .login-logo { margin: 0; }

.register-section .payment-column {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.register-section .login-footer { grid-column: 1 / -1; }

.login-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid #E5E7EB;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.login-logo .material-icons {
    font-size: 36px;
    color: white;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.login-header p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Alerts (login success/error) */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.alert .material-icons {
    font-size: 20px;
}

.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert-success .material-icons { color: #10B981; }

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #7F1D1D;
}

.alert-error .material-icons { color: #EF4444; }

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .material-icons {
    position: absolute;
    left: 16px;
    color: #6B7280;
    font-size: 20px;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 48px 16px 48px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    color: #111827;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.input-wrapper input[type="text"],
.input-wrapper input[type="email"] {
    padding-right: 16px;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-wrapper input::placeholder {
    color: #9CA3AF;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.password-toggle:hover {
    color: #2563EB;
}

.password-toggle .material-icons {
    font-size: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
}

.checkbox-wrapper input:checked + .checkmark {
    background: #2563EB;
    border-color: #2563EB;
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Focus state for accessibility */
.checkbox-wrapper input:focus + .checkmark {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    border-color: #2563EB;
}

/* Checkbox group styling for terms acceptance */
.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px auto 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: fit-content;
    max-width: 100%;
    grid-column: 1 / -1; /* Span full width in grid layout */
    justify-self: center; /* Center within grid cell */
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.4;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

.checkbox-group label a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-group label a:hover {
    color: #1d4ed8;
}

/* Error state for checkbox */
.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.forgot-link {
    color: #2563EB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #1D4ED8;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.btn-login:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}



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

.login-footer p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.register-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.register-link:hover {
    color: #1D4ED8;
}

.terms-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

.terms-wrapper {
    align-items: flex-start !important;
    line-height: 1.5;
}

.terms-text {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    flex: 1;
    word-spacing: normal;
    line-height: 1.5;
}

.terms-text a {
    white-space: nowrap;
}

/* Login Page Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 40px 0 60px;
    }
    
    .login-section .container {
        padding: 0 20px;
    }
    
    .login-card { padding: 32px 24px; }
    .register-section .login-card { grid-template-columns: 1fr; }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 24px 20px;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-logo .material-icons {
        font-size: 28px;
    }
    
    .input-wrapper input {
        padding: 14px 44px 14px 44px;
    }
    
    .input-wrapper input[type="text"],
    .input-wrapper input[type="email"] {
        padding-right: 14px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1F2937;
    color: #F9FAFB;
    padding: 60px 0 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D1D5DB;
    font-size: 14px;
}

.contact-item .material-icons {
    font-size: 18px;
    color: #2563EB;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #2563EB;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left p {
    color: #9CA3AF;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #2563EB;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.social-link .material-icons {
    font-size: 18px;
}

.footer-certifications {
    display: flex;
    gap: 12px;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #374151;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #D1D5DB;
}

.certification-badge .material-icons {
    font-size: 14px;
    color: #10B981;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-certifications {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-contact {
        gap: 8px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* About Us Section */
.about-section {
    background: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid #E5E7EB;
}

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

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Company Story */
.company-story {
    margin-bottom: 100px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-text p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.company-stats-inline {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.stat-inline .number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-inline .label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

/* Founder Card */
.founder-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.15);
}

.founder-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-overlay {
    transform: translateY(0);
    opacity: 1;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info h4 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.founder-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.social-links .material-icons {
    font-size: 16px;
}

.founder-quote {
    padding: 24px;
    background: #F9FAFB;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: #2563EB;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 20px;
}

.founder-quote p {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    padding-left: 40px;
}

/* Mission & Values */
.mission-values {
    margin-bottom: 100px;
}

.mission-card {
    text-align: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.mission-card .card-icon .material-icons {
    font-size: 36px;
    color: #FFFFFF;
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 18px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563EB;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.value-icon .material-icons {
    font-size: 28px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.value-item:hover .value-icon .material-icons {
    color: #FFFFFF;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Team Section */
.team-section {
    margin-bottom: 80px;
}

.team-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
}

.team-intro {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.team-member {
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: #FFFFFF;
    border-color: #E5E7EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.member-role {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.member-role .material-icons {
    font-size: 24px;
    color: #2563EB;
}

.member-role h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.team-member p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* About CTA */
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    border-radius: 24px;
    padding: 60px 40px;
    border: 1px solid #E5E7EB;
}

.about-cta .cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-cta .cta-content p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .company-stats-inline {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .company-story {
        margin-bottom: 60px;
    }
    
    .mission-values {
        margin-bottom: 60px;
    }
    
    .story-text h3 {
        font-size: 28px;
    }
    
    .mission-card {
        padding: 32px 24px;
    }
    
    .mission-card h3 {
        font-size: 24px;
    }
    
    .team-section h3 {
        font-size: 28px;
    }
    
    .about-cta {
        padding: 40px 24px;
    }
    
    .about-cta .cta-content h3 {
        font-size: 24px;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-section .container {
        padding: 0 20px;
    }
    
    .story-content {
        gap: 40px;
    }
    
    .company-stats-inline {
        flex-direction: column;
        gap: 16px;
    }
    
    .story-text h3 {
        font-size: 24px;
    }
    
    .founder-image {
        height: 280px;
    }
    
    .mission-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-card .card-icon .material-icons {
        font-size: 28px;
    }
    
    .value-item {
        padding: 24px 20px;
    }
    
    .team-member {
        padding: 20px;
    }
}

/* Pricing Page Styles */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-content .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: 20px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    margin: 0 auto;
    max-width: 400px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E7EB;
    transition: 0.3s;
    border-radius: 15px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: #2563EB;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

/* Pricing Cards */
.pricing-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.pricing-card.popular {
    border-color: #2563EB;
    border-width: 2px;
    transform: translateY(-12px);
    z-index: 2;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-16px);
    box-shadow: 0 16px 50px rgba(37, 99, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563EB;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.popular-badge .material-icons {
    font-size: 16px;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    width: 64px;
    height: 64px;
    background: #F9FAFB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
}

.pricing-card.popular .plan-icon {
    background: #2563EB;
}

.plan-icon .material-icons {
    font-size: 32px;
    color: #2563EB;
    transition: color 0.3s ease;
}

.pricing-card.popular .plan-icon .material-icons {
    color: white;
}

.plan-name {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    min-height: 42px;
}

/* Pricing Info */
.pricing-info {
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: #6B7280;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
}

.price-note {
    font-size: 13px;
    color: #6B7280;
    margin: 8px 0 0;
}

/* Features List */
.features-list {
    margin-bottom: 32px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #374151;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
    padding-left: 15px;
}

.features-list .feature-item:last-child {
    border-bottom: none;
}

.feature-item .material-icons {
    color: #10B981;
    font-size: 20px;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #374151;
    border: 1px solid #D1D5DB;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

.cta-button.primary {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-button.primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Features Comparison */
.features-comparison {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 80px 0;
}

.features-comparison .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.comparison-table {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.feature-column,
.plan-column {
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-align: center;
}

.feature-column {
    text-align: left;
    border-right: 1px solid #E5E7EB;
}

.popular-column {
    background: #EFF6FF;
    color: #2563EB;
    position: relative;
}

.popular-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.table-body {
    background: #FFFFFF;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #F3F4F6;
    transition: background 0.2s ease;
}

.table-row:hover {
    background: #F9FAFB;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 20px 24px;
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #F3F4F6;
}

.feature-name .material-icons {
    color: #6B7280;
    font-size: 18px;
}

.feature-value {
    padding: 20px 24px;
    font-size: 14px;
    color: #111827;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-value .material-icons.included {
    color: #10B981;
    font-size: 20px;
}

.feature-value .material-icons.not-included {
    color: #EF4444;
    font-size: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.faq-list {
    margin-top: 40px;
    border-top: 1px solid #E2E8F0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item details {
    padding: 24px 0;
    border-bottom: 1px solid #E2E8F0;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

.faq-item summary .material-icons {
    color: #2563EB;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item details[open] summary .material-icons {
    transform: rotate(180deg);
}

.faq-item p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin-top: 16px;
    padding-right: 32px;
}

.faq-item a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
}

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

.cta-title {
    font-size: 32px;
}

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

.faq-item h4 {
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.feature-icon .material-icons {
    font-size: 32px;
    color: #FFFFFF;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Plugin CTA Section */
.plugin-cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plugin-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

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

.cta-button {
    background: #FFFFFF;
    color: #2563EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: #FFFFFF;
}

.cta-shape-1, .cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 80px 0;
    }

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

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

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .feature-card h4 {
        font-size: 18px;
    }
}

/* How It Works Section (Homepage) */
.how-it-works-section .section-header {
    text-align: center;
}

.section-badge-center {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #2563EB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #BFDBFE;
}

.process-visualization {
    margin-bottom: 80px;
}

.process-timeline {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.timeline-item {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 160px;
}

.timeline-item.active .timeline-content {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-icon {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
}

.timeline-icon .material-icons {
    font-size: 24px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.timeline-item.active .timeline-icon .material-icons {
    color: white;
}

.timeline-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.timeline-info p {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.process-details {
    position: relative;
    min-height: 400px;
}

.detail-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.detail-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.detail-text {
    text-align: left;
}

.browser-window {
    background: #1F2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.browser-header {
    background: #374151;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6B7280;
}

.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }

.browser-content {
    padding: 24px;
    background: #1F2937;
}

.code-snippet .code-line {
    color: #60A5FA;
}

.loading-animation {
    width: 40px;
    height: 4px;
    background: #2563EB;
    border-radius: 2px;
    margin-top: 12px;
    animation: loading-pulse 1.5s infinite;
}

@keyframes loading-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.success-state .metrics {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.success-state .metric .number {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
}

.success-state .metric .label {
    font-size: 12px;
    color: #065F46;
}

.detail-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.detail-text p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.detail-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-text li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.detail-text li::before {
    content: 'check_circle';
    font-family: 'Material Icons';
    font-size: 20px;
    color: #2563EB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.benefit-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon .material-icons {
    font-size: 28px;
    color: #2563EB;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.how-it-works-section .cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
}

.how-it-works-section .cta-section .cta-buttons * {
    color: #fff !important;
}

.how-it-works-section .cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.how-it-works-section .cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.how-it-works-section .cta-buttons a {
    color: #1E3A8A;
}

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

    .plugin-hero-content {
        max-width: 100%;
    }

    .plugin-hero .hero-buttons {
        justify-content: center;
    }

    .plugin-hero .hero-features {
        justify-content: center;
    }

    .detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 80px 0;
    }

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

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

    .cta-title {
        font-size: 32px;
    }

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

@media (max-width: 480px) {
    .feature-card h4 {
        font-size: 18px;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Docs layout for Import Anleitung */
.doc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
}

.doc-sidenav {
    position: sticky;
    top: 84px;
    align-self: start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.doc-sidenav nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doc-sidenav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
}

.doc-sidenav a:hover {
    background: #f3f4f6;
    color: #111827;
}

.doc-content { min-width: 0; }
.doc-content section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.doc-content section + section { margin-top: 18px; }
.doc-content pre {
    background: #0b1020; color: #e5e7eb; border-radius: 8px; padding: 12px; overflow: auto;
}
@media (max-width: 980px) {
    .doc-layout { grid-template-columns: 1fr; }
    .doc-sidenav { position: static; }
}
.faq-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.faq-question .material-icons {
    color: #2563EB;
}
.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
.faq-answer {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}
/* Final CTA */
.pricing-cta {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.pricing-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.pricing-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}
.pricing-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}
.pricing-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pricing-cta .btn-primary.large {
    background: #FFFFFF;
    color: #2563EB;
}
.pricing-cta .btn-secondary.large {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}
.pricing-cta .btn-secondary.large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .pricing-cta h2 {
        font-size: 28px;
    }
}

/* New How It Works Section Styles */
.new-process-container {
    margin: 60px 0;
}

.new-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
}

.new-step-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    cursor: pointer;
}

.new-step-card:hover,
.new-step-card.active {
    border-color: #3B82F6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.new-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.new-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.new-step-icon .material-icons {
    font-size: 40px;
    color: white;
}

.new-step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.new-step-content p {
    color: #6b7280;
    font-size: 14px;
}

.new-step-connector {
    position: absolute;
    top: 50%;
    right: -24px;
    width: 24px;
    height: 2px;
    background: #e5e7eb;
    transform: translateY(-50%);
}

.new-step-card:last-child .new-step-connector {
    display: none;
}

.new-step-card.active .new-step-connector {
    background: #3B82F6;
}

.new-detail-panel {
    background: #f8fafc;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    min-height: 400px;
}

.new-detail-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.new-detail-content.active {
    display: grid;
}

.new-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-code-window {
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.new-window-header {
    background: #374151;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.new-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.new-control.red { background: #ef4444; }
.new-control.yellow { background: #f59e0b; }
.new-control.green { background: #10b981; }

.new-window-title {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 500;
}

.new-code-content {
    padding: 24px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.new-code-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.line-number {
    color: #6b7280;
    font-size: 14px;
    min-width: 20px;
}

.code-text {
    color: #d1d5db;
    font-size: 14px;
}

.tag { color: #f87171; }
.attr { color: #60a5fa; }
.string { color: #34d399; }

.new-loading-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.new-loading-dots {
    display: flex;
    gap: 4px;
}

.new-loading-dots span {
    width: 6px;
    height: 6px;
    background: #3B82F6;
    border-radius: 50%;
    animation: loading-pulse 1.5s infinite;
}

.new-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.new-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loading-pulse {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.new-loading-text {
    color: #9ca3af;
    font-size: 12px;
}

.new-detail-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: left;
}

.new-detail-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.new-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.new-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-feature-item .material-icons {
    color: #10b981;
    font-size: 20px;
}

.new-feature-item span:last-child {
    color: #374151;
    font-weight: 500;
}

/* Scan Animation Styles */
.new-scan-animation {
    text-align: center;
}

.new-website-preview {
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
}

.new-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    animation: scan-line 3s infinite;
}

@keyframes scan-line {
    0% { transform: translateY(0); }
    100% { transform: translateY(200px); }
}

.new-element {
    position: absolute;
    background: #f3f4f6;
    border-radius: 4px;
}

.new-element-1 {
    top: 20px;
    left: 20px;
    width: 260px;
    height: 20px;
}

.new-element-2 {
    top: 60px;
    left: 20px;
    width: 180px;
    height: 40px;
}

.new-element-3 {
    top: 120px;
    left: 20px;
    width: 220px;
    height: 15px;
}

.new-scan-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3B82F6;
    border-radius: 4px;
    opacity: 0;
    animation: highlight-pulse 2s infinite;
}

@keyframes highlight-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.new-scan-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
}

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

.new-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
}

.new-stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* Fix Animation Styles */
.new-fix-animation {
    text-align: center;
}

.new-problem-fix {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
}

.new-before,
.new-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.new-error-badge,
.new-success-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.new-error-badge {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.new-success-badge {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.new-image-element {
    width: 80px;
    height: 60px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
}

.new-image-element.fixed {
    border-color: #10b981;
    background: #f0fdf4;
}

.new-arrow-transform {
    color: #3B82F6;
    font-size: 24px;
}

.new-fix-counter {
    text-align: center;
}

.new-counter-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3B82F6;
}

.new-counter-text {
    font-size: 14px;
    color: #6b7280;
}

/* Success Display Styles */
.new-success-display {
    text-align: center;
}

.new-compliance-seal {
    background: white;
    border: 3px solid #10b981;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
}

.new-compliance-seal::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid #dcfce7;
    border-radius: 50%;
}

.new-seal-icon .material-icons {
    font-size: 40px;
    color: #10b981;
    margin-bottom: 8px;
}

.new-seal-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.new-seal-text span {
    font-size: 12px;
    color: #6b7280;
}

.new-success-metrics {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.new-metric-item {
    text-align: center;
}

.new-metric-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
    font-weight: 700;
    color: #3B82F6;
}

.new-metric-item span:last-child {
    font-size: 12px;
    color: #6b7280;
}

/* Benefits Section */
.new-benefits-section {
    margin: 80px 0 60px;
}

.new-benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

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

.new-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.new-benefit-card:hover {
    border-color: #3B82F6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.new-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.new-benefit-icon .material-icons {
    font-size: 40px;
    color: white;
}

.new-benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.new-benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.new-benefit-highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Enhanced CTA Section */
.new-cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.new-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.new-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.new-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.new-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.new-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.new-btn-primary,
.new-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-btn-primary {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
}

.new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.new-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.new-btn-primary:hover .new-btn-glow {
    left: 100%;
}

.new-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.new-btn-secondary:hover {
    background: white;
    color: #3B82F6;
    transform: translateY(-3px);
}

/* Responsive Design for New How It Works */
@media (max-width: 1024px) {
    .new-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .new-step-connector {
        display: none;
    }

    .new-detail-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .new-detail-panel {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .new-process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .new-step-card {
        padding: 24px 20px;
    }

    .new-detail-panel {
        padding: 24px;
    }

    .new-detail-text h3 {
        font-size: 1.5rem;
    }

    .new-benefits-grid {
        grid-template-columns: 1fr;
    }

    .new-cta-content h3 {
        font-size: 2rem;
    }

    .new-cta-content p {
        font-size: 1.125rem;
    }

    .new-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .new-btn-primary,
    .new-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .new-step-card {
        padding: 20px 16px;
    }

    .new-step-icon {
        width: 60px;
        height: 60px;
    }

    .new-step-icon .material-icons {
        font-size: 30px;
    }

    .new-detail-panel {
        padding: 20px;
    }

    .new-cta-section {
        padding: 40px 20px;
    }

    .new-benefit-card {
        padding: 32px 24px;
    }
}

/* Simple Plugin Section Styles */
.simple-plugin-section {
    padding: 100px 0;
    background: white;
}

.simple-plugin-content {
    max-width: 1200px;
    margin: 0 auto;
}

.simple-plugin-header {
    text-align: center;
    margin-bottom: 80px;
}

.simple-plugin-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.1;
}

.simple-plugin-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.simple-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    margin-bottom: 80px;
}

.simple-bento-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.simple-bento-item:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.simple-bento-demo {
    grid-column: 1;
    grid-row: 1;
    background: white;
}

.simple-bento-cms {
    grid-column: 2;
    grid-row: 1;
}

.simple-bento-steps {
    grid-column: 1 / -1;
    grid-row: 2;
    background: white;
}

.simple-demo-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.simple-code-block {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.simple-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #1f2937;
    color: white;
}

.simple-code-title {
    font-size: 14px;
    font-weight: 500;
}

.simple-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-copy-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.simple-code-content {
    padding: 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.simple-code-content code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    color: #1f2937;
    word-break: break-all;
    line-height: 1.5;
}

.simple-code-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fef3c7;
    border-top: 1px solid #f59e0b;
    color: #92400e;
    font-size: 13px;
    font-weight: 500;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.simple-code-note .material-icons {
    font-size: 16px;
    color: #f59e0b;
}

.simple-result {
    text-align: center;
    padding: 24px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 16px;
}

.simple-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.simple-success-badge .material-icons {
    font-size: 20px;
}

.simple-result p {
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.simple-cms-support h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.simple-cms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.simple-cms-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    /* Make boxes taller and content vertically centered */
    min-height: 160px;
    justify-content: center;
}

/* Responsive height adjustments for CMS boxes */
@media (max-width: 768px) {
    .simple-cms-item {
        min-height: 140px;
    }
}

@media (max-width: 480px) {
    .simple-cms-item {
        min-height: 120px;
    }
}

.simple-cms-item:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.simple-cms-item .material-icons {
    font-size: 24px;
    color: #3B82F6;
}

.simple-cms-item span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.simple-steps h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    text-align: center;
}

.simple-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.simple-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.simple-step:hover {
    border-color: #3B82F6;
    background: #eff6ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.simple-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.simple-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.simple-step p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

.simple-stats-section {
    text-align: center;
    margin-bottom: 60px;
}

.simple-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

.simple-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
    margin-bottom: 8px;
}

.simple-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.simple-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Simple Plugin Section */
@media (max-width: 1024px) {
    .simple-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 24px;
    }

    .simple-bento-demo {
        grid-column: 1;
        grid-row: 1;
    }

    .simple-bento-cms {
        grid-column: 1;
        grid-row: 2;
    }

    .simple-bento-steps {
        grid-column: 1;
        grid-row: 3;
    }

    .simple-steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .simple-cms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .simple-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .simple-plugin-section {
        padding: 80px 0;
    }

    .simple-plugin-title {
        font-size: 2.25rem;
    }

    .simple-bento-grid {
        gap: 20px;
    }

    .simple-bento-item {
        padding: 24px;
    }

    .simple-cms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .simple-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
    }

    .simple-actions {
        flex-direction: column;
        align-items: center;
    }

    .simple-actions a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .simple-plugin-section {
        padding: 60px 0;
    }

    .simple-plugin-title {
        font-size: 1.875rem;
    }

    .simple-code-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .simple-bento-item {
        padding: 20px;
    }

    .simple-cms-grid {
        grid-template-columns: 1fr;
    }

    .simple-step {
        gap: 12px;
        padding: 20px;
    }

    .simple-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .simple-step h4 {
        font-size: 1rem;
    }

    .simple-step p {
        font-size: 13px;
    }
}

/* Impressum and Datenschutz Pages Styles */
.impressum-main,
.datenschutz-main {
    padding: 100px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.impressum-content,
.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.impressum-content h1,
.datenschutz-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid #3B82F6;
    padding-bottom: 20px;
}

.impressum-section,
.datenschutz-section {
    margin-bottom: 40px;
}

.impressum-section h2,
.datenschutz-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.impressum-section h3,
.datenschutz-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    margin-top: 25px;
}

.impressum-section h4,
.datenschutz-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 10px;
    margin-top: 20px;
}

.impressum-section p,
.datenschutz-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.impressum-section ul,
.datenschutz-section ul {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 20px;
}

.impressum-section li,
.datenschutz-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3B82F6;
}

.contact-info p {
    margin-bottom: 8px;
}

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

.impressum-note,
.datenschutz-note {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.impressum-note a,
.datenschutz-note a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-note a:hover,
.datenschutz-note a:hover {
    color: #1E40AF;
    text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .impressum-main,
    .datenschutz-main {
        padding: 60px 0;
    }

    .impressum-content,
    .datenschutz-content {
        padding: 40px 20px;
        margin: 0 20px;
    }

    .impressum-content h1,
    .datenschutz-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .impressum-section,
    .datenschutz-section {
        margin-bottom: 30px;
    }

    .impressum-section h2,
    .datenschutz-section h2 {
        font-size: 1.375rem;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .impressum-content,
    .datenschutz-content {
        padding: 30px 15px;
        margin: 0 15px;
    }

    .impressum-content h1,
    .datenschutz-content h1 {
        font-size: 1.75rem;
    }

    .impressum-section h2,
    .datenschutz-section h2 {
        font-size: 1.25rem;
    }

    .impressum-section h3,
    .datenschutz-section h3 {
        font-size: 1.125rem;
    }
}

/* Wissen Page Styles */
.wissen-main {
    padding: 80px 0;
    background: #ffffff; /* blog-style clean background */
    flex-grow: 1;
}

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

.wissen-header {
    text-align: center;
    margin-bottom: 60px;
}

.wissen-header .section-badge-center {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-weight: 700;
    color: #1d4ed8;
    background: #e0e7ff;
    border: 1px solid #c7d2fe;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.wissen-header .section-badge-center .material-icons {
    font-size: 18px;
}

.wissen-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.wissen-header .section-subtitle {
    max-width: 900px;
    margin: 16px auto 0;
    color: #6b7280;
    line-height: 1.7;
}

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

.wissen-content section {
    margin-bottom: 48px;
    background: transparent;
    border-radius: 0;
    padding: 0 0 24px 0;
    box-shadow: none;
    border-bottom: 1px solid #e5e7eb; /* subtle divider */
}

.wissen-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.wissen-content p,
.wissen-content ul {
    color: #374151;
    font-size: 1.0625rem; /* ~17px */
    line-height: 1.8;
    margin-bottom: 16px;
}

.wissen-content ul {
    padding-left: 1.25rem;
    list-style: disc;
}

.wissen-content li { margin-bottom: 8px; }

/* Links in article */
.wissen-content a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.wissen-content a:hover { color: #1d4ed8; }

.wissen-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 0;
    scroll-behavior: smooth;
}

.sticky-faq { background: transparent; border: none; padding: 0; }

.sticky-faq h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.faq-group {
    margin-bottom: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    display: none; /* Hide by default */
}

.faq-group.active {
    display: block; /* Show active one */
    border-left: 3px solid #3B82F6; /* subtle accent */
    padding-left: 12px;
}

.faq-group h4 {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    color: #6b7280;
    margin: 4px 0 8px;
}

.faq-group details { margin-bottom: 0; border-bottom: 1px solid #f3f4f6; }

.faq-group details:last-of-type {
    border-bottom: none;
}

.faq-group summary {
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    list-style: none;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-group summary:hover { color: #2563eb; }

.faq-group summary::-webkit-details-marker {
    display: none;
}

.faq-group summary::after {
    content: '\e5cc'; /* Material Icons chevron_right */
    font-family: 'Material Icons';
    font-size: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-group details[open] > summary {
    color: #3B82F6;
}

.faq-group details[open] > summary::after {
    transform: rotate(90deg);
}

.faq-group p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 8px 0 16px;
    padding-left: 16px;
    position: relative;
}

/* This is the new vertical blue line from the image */
.faq-group details[open] p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background-color: #3B82F6;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .wissen-layout {
        grid-template-columns: 1fr;
    }
    .wissen-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .wissen-header .section-title { font-size: 2.25rem; }
    .wissen-main { padding: 60px 0; }
}

/* Analysis Page Verification Form */
.email-gate-section .email-input-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.verification-section {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.verification-sent {
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    color: #065f46;
    width: 100%;
}

.verification-sent h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.verification-sent p {
    font-size: 14px;
    margin: 0;
}

.verification-form {
    width: 100%;
    max-width: 500px;
}

.verify-row-analysis {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.verify-row-analysis .input-wrapper input {
    height: 52px;
    padding-left: 48px;
}

.verify-row-analysis .btn-primary {
    height: 52px;
    padding: 0 24px;
    white-space: nowrap;
}

.btn-secondary-link {
    background: none;
    border: none;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.btn-secondary-link:hover {
    color: #1f2937;
}

.btn-secondary-link:disabled {
    color: #9ca3af;
    cursor: not-allowed;
}

.status-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
    max-width: 500px;
}
.status-message.error {
    background: #fef2f2;
    color: #991b1b;
}
.status-message.success {
    background: #f0fdf4;
    color: #065f46;
}

.report-access {
    margin-top: 24px;
}

.report-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2563EB;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.report-link-btn:hover {
    background: #1D4ED8;
}

/* Analysis Email Card */
.email-form-card, .verify-card {
  max-width: 720px;
  margin: 12px auto 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(17,24,39,0.06);
  border-radius: 14px;
  padding: 18px;
}

.email-form { display: grid; grid-template-columns: 1fr; gap: 12px; }

.email-input-wrapper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  height: 64px;
  padding: 0 8px;
  background: #fff;
}
.email-input-wrapper .material-icons { color:#6b7280; display:flex; align-items:center; justify-content:center; }
.email-input-wrapper input {
  border: none;
  height: 100%;
  padding: 0 8px;
  outline: none;
  font-size: 16px;
}

.submit-email-btn { height: 46px; align-self: center; justify-self: start; padding: 0 18px; border-radius: 10px; }

/* Verification card */
.verification-section .verification-sent {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center;
}
.verification-section .verification-sent .material-icons { color:#10B981; }

.verify-card { padding-top: 14px; }
.verify-row-analysis { grid-template-columns: 1fr auto; }
.verify-row-analysis .input-wrapper { border:1px solid #e5e7eb; border-radius: 10px; height: 52px; display:grid; grid-template-columns: 40px 1fr; align-items:center; padding:0 8px; }
.verify-row-analysis .input-wrapper .material-icons { color:#6b7280; }
.verify-row-analysis .input-wrapper input { border:none; outline:none; height:100%; font-size:16px; }
.verify-row-analysis .btn-primary { height: 46px; border-radius: 10px; }

.btn-secondary-link { margin-top: 8px; }

/* Success block tightening */
.email-success { max-width: 960px; margin: 12px auto; border: 1px solid #bbf7d0; background:#ecfdf5; border-radius: 14px; padding: 24px; text-align:center; }
.email-success h4 { margin: 6px 0 6px; }
.email-success .material-icons { color:#10B981; }

/* Status message width align */
.status-message { margin-left:auto; margin-right:auto; }

/* Report Actions Section - Professional & Converting */
.report-actions {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 32px;
    margin: 32px 0;
    text-align: center !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.report-actions * {
    text-align: center !important;
}

.report-actions h3 {
    color: #111827;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.report-actions p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-action.btn-primary {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-action.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-action.btn-secondary {
    background: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.btn-action.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-action .material-icons {
    font-size: 20px;
}

/* Solution highlight */
.solution-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #065f46;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid #a7f3d0;
}

.solution-highlight .material-icons {
    font-size: 16px;
    color: #059669;
}

/* Mobile optimizations for report actions */
@media (max-width: 768px) {
    .report-actions {
        padding: 28px 20px;
        margin: 24px 0;
    }
    
    .report-actions h3 {
        font-size: 1.5rem;
    }
    
    .report-actions p {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* New Report Access Card Styles */
.report-access-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 0;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.report-access-card > .report-step {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-access-card > .status-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s ease;
    position: relative;
    min-height: 420px;
}

.report-step.active {
    display: flex;
}

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

.step-header {
    margin-bottom: 32px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.step-icon .material-icons {
    font-size: 32px;
    color: white;
}

.step-icon.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.step-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.step-header p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

.step-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .step-form {
        grid-template-columns: 1fr auto;
    }
}

.input-group {
    position: relative;
}

.input-group .material-icons {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    font-size: 20px;
}

.input-group input {
    width: 100%;
    height: 52px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 0 16px 0 48px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-primary.full {
    width: 100%;
    height: 52px;
}

@media (min-width: 640px) {
    .step-form .btn-primary.full {
        width: auto;
        white-space: nowrap;
    }
}

.form-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
    margin-top: 24px;
}

.form-footer-note .material-icons {
    font-size: 16px;
    color: #10B981;
}

.btn-secondary-link .material-icons {
    font-size: 18px;
}

.btn-secondary-link:disabled {
    color: #9CA3AF;
}
