/* ==========================================================================
   Rifiuto Smart - CSS Styles
   Mobile-First Responsive Design with Modern Utilities
   ========================================================================== */

/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #6B7280;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.875rem;
    min-height: 48px; /* Touch-friendly */
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    background: white;
    color: #374151;
    border-color: #D1D5DB;
}

.btn-secondary:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    height: 40px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #374151;
    margin: 2px 0;
    transition: 0.3s;
}

/* Desktop Navigation - Hidden on mobile */
.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #10B981;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #10B981;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-icon {
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-link:hover {
    background: #F9FAFB;
    color: #10B981;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 2rem 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding-top: 4rem;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: #374151;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid #F3F4F6;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #10B981;
}

.mobile-cta {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23D1FAE5" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10B981;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.hero-visual {
    margin-top: 3rem;
}

.dashboard-preview {
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-mockup {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Social Proof Banner */
.social-proof {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.social-proof-title {
    text-align: center;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partners-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.7;
}

.partner-logo {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 500;
    white-space: nowrap;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem/Solution Section */
.problem-solution {
    background: #F9FAFB;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card.solution {
    border: 2px solid #10B981;
    position: relative;
}

.feature-card.solution::before {
    content: '✨ SOLUZIONE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6B7280;
    margin-bottom: 1rem;
}

.feature-link {
    color: #10B981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.feature-link:hover {
    color: #059669;
}

/* Product Tour */
.product-tour {
    background: white;
}

.tour-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tour-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tour-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.tour-tab:hover,
.tour-tab.active {
    background: #ECFDF5;
    border-color: #10B981;
}

.tab-icon {
    font-size: 1.5rem;
}

.tab-text {
    font-weight: 500;
    color: #374151;
}

.tour-content {
    position: relative;
}

.tour-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.tour-panel.active {
    display: grid;
}

.panel-visual {
    order: 2;
}

.feature-mockup {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.panel-text {
    order: 1;
}

.panel-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.panel-text p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background: #F9FAFB;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-video {
    position: relative;
    aspect-ratio: 16/9;
    background: #F3F4F6;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.testimonial-info {
    padding: 1.5rem;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 500;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #6B7280;
    font-style: italic;
}

/* Resources Preview */
.resources-preview {
    background: white;
}

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

.resource-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-image {
    aspect-ratio: 16/9;
}

.resource-image svg {
    width: 100%;
    height: 100%;
}

.resource-content {
    padding: 1.5rem;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.resource-excerpt {
    color: #6B7280;
    margin-bottom: 1rem;
}

.resource-link {
    color: #10B981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: #059669;
}

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

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
}

/* Form Styles */
.demo-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

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

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.4;
}

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

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

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 36px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #D1D5DB;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 0.5rem;
    color: #D1D5DB;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #10B981;
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #10B981;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-info p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.certification {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 500;
}

/* Responsive Design - Tablet (768px+) */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Navigation */
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    .mobile-menu {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Grids */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid .feature-card.solution {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tour-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-panel {
        grid-template-columns: 1fr 1fr;
    }
    
    .panel-visual {
        order: 1;
    }
    
    .panel-text {
        order: 2;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Responsive Design - Desktop (1024px+) */
@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }
    
    section {
        padding: 6rem 0;
    }
    
    /* Hero */
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
        max-width: none;
    }
    
    /* Grids */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid .feature-card.solution {
        grid-column: auto;
        max-width: none;
    }
    
    .tour-tabs {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #10B981;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .text-gradient {
        -webkit-text-fill-color: #059669;
        background: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Demo Page Styles */
.demo-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.demo-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.demo-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.demo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    color: #1F2937;
    font-weight: 600;
}

.benefit-text span {
    color: #6B7280;
    font-size: 0.875rem;
}

.demo-form-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.demo-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-form-content {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.form-subtitle {
    color: #6B7280;
    font-size: 1.125rem;
}

.demo-request-form {
    max-width: none;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-help {
    color: #6B7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.checkbox-item:hover {
    background: #F9FAFB;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: #10B981;
    border-color: #10B981;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.4;
}

.consent-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consent-group .checkbox-item {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1rem;
}

.consent-group .checkbox-item.required {
    border-color: #10B981;
    background: #ECFDF5;
}

.form-security {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.security-icon {
    font-size: 1rem;
}

.demo-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
    border-bottom: 1px solid #F3F4F6;
}

.info-list li:last-child {
    border-bottom: none;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-content strong {
    color: #1F2937;
    font-weight: 600;
}

.step-content span {
    color: #6B7280;
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.contact-icon {
    font-size: 1rem;
}

.contact-item a {
    color: #10B981;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.testimonial-card {
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
    border: 1px solid #10B981;
}

.testimonial {
    margin: 0;
}

.testimonial p {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #059669;
    font-style: normal;
    font-size: 0.875rem;
}

.demo-faq {
    padding: 4rem 0;
    background: white;
}

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

.faq-item {
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.6;
}

/* Platform Page Styles */
.platform-preview {
    max-width: 600px;
    margin: 0 auto;
}

.platform-mockup {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    list-style: none;
    padding: 0;
}

.breadcrumb li {
    color: #6B7280;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #9CA3AF;
}

.breadcrumb a {
    color: #10B981;
    text-decoration: none;
}

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

.features-overview {
    padding: 4rem 0;
    background: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.detailed-features {
    padding: 4rem 0;
    background: #F9FAFB;
}

.feature-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #E5E7EB;
}

.feature-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-detail.reverse .feature-content {
    direction: rtl;
}

.feature-detail.reverse .feature-text {
    direction: ltr;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.feature-intro {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.feature-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin: 2rem 0 1rem 0;
}

.feature-details ul {
    list-style: none;
    padding: 0;
}

.feature-details li {
    padding: 0.5rem 0;
    color: #374151;
    line-height: 1.6;
}

.integration-section {
    padding: 4rem 0;
    background: white;
}

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

.integration-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.integration-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.integration-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.integration-card li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.technical-specs {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
}

.spec-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.875rem;
    line-height: 1.5;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: #1F2937;
    font-weight: 600;
}

.platform-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.platform-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.platform-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.platform-cta .cta-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.platform-cta .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.platform-cta .cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.platform-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
    font-size: 0.875rem;
}

.platform-cta .feature-icon {
    color: #10B981;
}

/* Responsive Design for New Pages */
@media (min-width: 768px) {
    .demo-hero-title {
        font-size: 3rem;
    }
    
    .demo-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-form-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .feature-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .platform-cta .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .demo-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .checkbox-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.pricing-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.pricing-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.pricing-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.guarantee-icon {
    color: #10B981;
    font-size: 1rem;
}

.pricing-plans {
    padding: 4rem 0;
    background: white;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D5DB;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #10B981;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: #10B981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border-color: #10B981;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
}

.price-period {
    font-size: 1.125rem;
    color: #6B7280;
}

.price-note {
    font-size: 0.875rem;
    color: #6B7280;
}

.plan-features {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-action {
    text-align: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.plan-action .plan-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.comparison-table {
    padding: 4rem 0;
    background: #F9FAFB;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-grid {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-grid th,
.comparison-grid td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-grid th {
    background: #F9FAFB;
    font-weight: 600;
    color: #1F2937;
    position: sticky;
    top: 0;
    z-index: 10;
}

.feature-column {
    width: 40%;
    font-weight: 500;
}

.plan-column {
    width: 20%;
    text-align: center;
}

.plan-column.featured {
    background: #ECFDF5;
    position: relative;
}

.plan-column.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #10B981;
}

.category-row {
    background: #F3F4F6;
}

.category-title {
    font-weight: 600;
    color: #1F2937;
    font-size: 1rem;
    padding: 1.5rem 1rem;
}

.feature-name {
    font-weight: 500;
    color: #374151;
}

.feature-value {
    text-align: center;
    font-weight: 500;
}

.feature-value:contains("✅") {
    color: #10B981;
}

.feature-value:contains("❌") {
    color: #EF4444;
}

.pricing-faq {
    padding: 4rem 0;
    background: white;
}

.pricing-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.pricing-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pricing-cta .cta-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.pricing-cta .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.pricing-cta .cta-guarantee {
    color: #D1D5DB;
    font-size: 0.875rem;
}

/* Responsive Design for Pricing */
@media (min-width: 768px) {
    .pricing-hero-title {
        font-size: 3rem;
    }
    
    .pricing-guarantee {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card.featured {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        transform: scale(1.02);
    }
    
    .pricing-cta .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .pricing-guarantee {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan-card.featured {
        grid-column: auto;
        max-width: none;
        transform: scale(1.05);
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
}

.mission-section {
    padding: 4rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-description {
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.mission-text p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
}

.values-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.value-description {
    color: #6B7280;
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.member-photo svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #10B981;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.member-social a:hover {
    transform: scale(1.1);
}

.team-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
    border-radius: 1rem;
    border: 1px solid #10B981;
}

.team-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.team-cta p {
    color: #6B7280;
    margin-bottom: 2rem;
}

.company-info {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.info-content p {
    color: #6B7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-content a {
    color: #10B981;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.timeline-section {
    padding: 4rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 1rem;
    margin: 0 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6B7280;
    line-height: 1.5;
}

.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.about-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-cta .cta-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.about-cta .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Responsive Design for About Page */
@media (min-width: 768px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mission-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
}

/* Resources Page Styles */
.resources-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.resources-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.resources-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.resources-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.resources-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-categories {
    padding: 4rem 0;
    background: white;
}

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

.category-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.category-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    color: #10B981;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: #059669;
}

.featured-content {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.featured-article {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.featured-article:hover {
    transform: translateY(-4px);
}

.article-image {
    width: 100%;
    height: 200px;
}

.article-image svg {
    width: 100%;
    height: 100%;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-category {
    background: #ECFDF5;
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-date {
    color: #6B7280;
    font-size: 0.875rem;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.blog-section {
    padding: 4rem 0;
    background: white;
}

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

.blog-post {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.2s ease;
}

.blog-post:hover {
    transform: translateY(-2px);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-category {
    background: #EFF6FF;
    color: #1D4ED8;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-date {
    color: #6B7280;
    font-size: 0.875rem;
}

.post-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.read-more {
    color: #10B981;
    font-weight: 500;
    text-decoration: none;
}

.case-studies-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-study-logo {
    width: 60px;
    height: 60px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.case-study-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.case-study-info p {
    color: #6B7280;
    font-size: 0.875rem;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: #6B7280;
}

.case-study-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.case-study-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-study-date {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.case-study-link {
    color: #10B981;
    font-weight: 500;
    text-decoration: none;
}

.guides-section {
    padding: 4rem 0;
    background: white;
}

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

.guide-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.guide-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-pages,
.guide-level {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.guide-download {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.guide-download:hover {
    background: #059669;
}

.webinars-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.webinar-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.webinar-card.upcoming {
    border: 2px solid #10B981;
}

.webinar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10B981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.webinar-card.upcoming .webinar-badge {
    background: #EF4444;
}

.webinar-date {
    background: #1F2937;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.webinar-content {
    padding: 1.5rem;
}

.webinar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.webinar-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.webinar-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.webinar-register,
.webinar-watch {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.webinar-register:hover,
.webinar-watch:hover {
    background: #059669;
}

.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    color: #10B981;
    font-size: 1.125rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: #D1D5DB;
    text-align: center;
    margin-top: 1rem;
}

.solutions-section {
    padding: 4rem 0;
    background: white;
}

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

.solution-card {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-card.featured {
    border-color: #10B981;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.solution-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.solution-header {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    color: #6B7280;
    font-weight: 500;
}

.solution-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.solution-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
}

.benefit-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.25rem;
}

.benefit-label {
    font-size: 0.75rem;
    color: #6B7280;
}

.solution-cta {
    display: block;
    background: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s ease;
}

.solution-cta:hover {
    background: #059669;
}

.resources-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.resources-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.resources-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.resources-cta .cta-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.resources-cta .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.resources-cta .cta-guarantee {
    color: #D1D5DB;
    font-size: 0.875rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design for Resources */
@media (min-width: 768px) {
    .resources-hero-title {
        font-size: 3rem;
    }
    
    .resources-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-signup {
        flex-direction: row;
        align-items: end;
    }
    
    .newsletter-signup .form-group {
        flex: 1;
    }
    
    .resources-cta .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.method-icon {
    font-size: 1.5rem;
}

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

.method-info strong {
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-info span {
    color: #6B7280;
    font-size: 0.875rem;
}

.contact-form-section {
    padding: 4rem 0;
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-content {
    max-width: 800px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.form-subtitle {
    color: #6B7280;
    line-height: 1.6;
}

.contact-form {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

.consent-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: #10B981;
    border-color: #10B981;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.checkbox-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.checkbox-text a {
    color: #10B981;
    text-decoration: none;
}

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

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

.submit-btn {
    position: relative;
    min-width: 200px;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-security {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.security-icon {
    color: #10B981;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail strong {
    display: block;
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.contact-detail a {
    color: #10B981;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.specialized-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.specialized-contact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info strong {
    display: block;
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info p {
    margin: 0 0 0.25rem 0;
}

.contact-info small {
    color: #6B7280;
    font-size: 0.75rem;
}

.support-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
}

.hours-item strong {
    color: #1F2937;
}

.hours-item span {
    color: #6B7280;
    font-weight: 500;
}

.hours-note {
    background: #ECFDF5;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #10B981;
}

.hours-note p {
    margin: 0;
    color: #059669;
    font-size: 0.875rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: #F3F4F6;
}

.social-icon {
    font-size: 1.25rem;
}

.contact-faq {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.6;
}

.faq-answer a {
    color: #10B981;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design for Contact */
@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Solutions Pages Styles */
.solution-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.solution-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solution-badge {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.solution-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.solution-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.challenges-section {
    padding: 4rem 0;
    background: white;
}

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

.challenge-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.challenge-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.challenge-description {
    color: #6B7280;
    line-height: 1.6;
}

.features-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.success-stories {
    padding: 4rem 0;
    background: white;
}

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

.story-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.story-card.featured {
    border-color: #10B981;
    transform: scale(1.02);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-logo {
    width: 60px;
    height: 60px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.story-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.story-info p {
    color: #6B7280;
    font-size: 0.875rem;
}

.story-quote {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid #10B981;
}

.story-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: #6B7280;
}

.story-author {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
}

.implementation-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    color: #10B981;
    font-weight: 500;
    font-size: 0.875rem;
}

.pricing-section {
    padding: 4rem 0;
    background: white;
}

.pricing-card-container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.pricing-card.featured {
    border-color: #10B981;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #10B981;
}

.price-period {
    font-size: 1.125rem;
    color: #6B7280;
}

.price-note {
    color: #6B7280;
    font-size: 0.875rem;
}

.pricing-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.pricing-guarantee {
    margin-top: 1rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.faq-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.6;
}

/* Advanced Features for Comuni Medi */
.advanced-features {
    padding: 4rem 0;
    background: white;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-visual {
    width: 100%;
    height: 300px;
}

.feature-visual svg {
    width: 100%;
    height: 100%;
}

.integration-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.integration-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.integration-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.example-tag {
    background: #ECFDF5;
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.roi-calculator {
    padding: 4rem 0;
    background: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-inputs h3,
.calculator-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

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

.input-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.calculator-results {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.result-item:last-child {
    border-bottom: none;
}

.result-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Enterprise Features for Unioni Comuni */
.multi-municipality {
    padding: 4rem 0;
    background: white;
}

.multi-municipality-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-visual {
    width: 100%;
    height: 400px;
}

.showcase-visual svg {
    width: 100%;
    height: 100%;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item .feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6B7280;
    line-height: 1.5;
}

.enterprise-features {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.enterprise-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.enterprise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.enterprise-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.enterprise-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.enterprise-benefits {
    list-style: none;
    padding: 0;
}

.enterprise-benefits li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.success-story-detailed {
    padding: 4rem 0;
    background: white;
}

.detailed-story {
    max-width: 1000px;
    margin: 0 auto;
}

.story-overview {
    margin-bottom: 3rem;
}

.story-timeline {
    color: #10B981;
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.story-challenge,
.story-solution {
    margin: 2rem 0;
}

.story-challenge h4,
.story-solution h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.story-results-detailed h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.result-card .result-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-card .result-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.result-card .result-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.result-card .result-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.4;
}

.implementation-enterprise {
    padding: 4rem 0;
    background: #F9FAFB;
}

.implementation-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-duration {
    color: #10B981;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline-deliverables {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pricing-enterprise {
    padding: 4rem 0;
    background: white;
}

.enterprise-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.pricing-info p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pricing-factors h4,
.pricing-benefits h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.pricing-factors ul,
.pricing-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-factors li,
.pricing-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.cta-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #10B981;
}

.cta-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Guide and Webinar Pages Styles */
.guide-hero,
.webinar-hero {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    padding: 4rem 0 2rem;
}

.guide-hero-content,
.webinar-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guide-badge,
.webinar-badge {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.guide-hero-title,
.webinar-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.guide-hero-subtitle,
.webinar-hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.guide-stats,
.webinar-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.guide-download-cta {
    margin-top: 2rem;
}

.download-note {
    margin-top: 1rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.guide-toc {
    padding: 4rem 0;
    background: white;
}

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

.toc-chapter {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #10B981;
    transition: transform 0.2s ease;
}

.toc-chapter:hover {
    transform: translateY(-2px);
}

.chapter-number {
    display: inline-block;
    background: #10B981;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chapter-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.chapter-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.chapter-topics {
    list-style: none;
    padding: 0;
}

.chapter-topics li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.chapter-topics li::before {
    content: '•';
    color: #10B981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.guide-features {
    padding: 4rem 0;
    background: #F9FAFB;
}

.guide-preview {
    padding: 4rem 0;
    background: white;
}

.preview-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tab-btn.active {
    border-color: #10B981;
    background: #10B981;
    color: white;
}

.tab-btn:hover:not(.active) {
    border-color: #10B981;
    color: #10B981;
}

.tab-content {
    background: #F9FAFB;
    border-radius: 1rem;
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.preview-text {
    color: #374151;
    line-height: 1.6;
}

.preview-text p {
    margin-bottom: 1rem;
}

.preview-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.preview-text li {
    margin-bottom: 0.5rem;
}

.guide-testimonials {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.author-info strong {
    display: block;
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6B7280;
    font-size: 0.875rem;
}

.guide-download {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

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

.download-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.download-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.download-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.form-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.download-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.download-privacy {
    font-size: 0.875rem;
    color: #D1D5DB;
    margin-top: 1rem;
}

.related-resources {
    padding: 4rem 0;
    background: white;
}

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

.resource-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.resource-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #10B981;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: #059669;
}

/* Webinar Specific Styles */
.upcoming-webinars {
    padding: 4rem 0;
    background: white;
}

.past-webinars {
    padding: 4rem 0;
    background: #F9FAFB;
}

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

.webinar-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.2s ease;
}

.webinar-card:hover {
    transform: translateY(-4px);
}

.webinar-card.featured {
    border: 2px solid #10B981;
    transform: scale(1.02);
}

.webinar-card.upcoming {
    border-left: 4px solid #EF4444;
}

.webinar-card.available {
    border-left: 4px solid #10B981;
}

.webinar-card .webinar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10B981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.webinar-card.upcoming .webinar-badge {
    background: #EF4444;
}

.webinar-date {
    background: #1F2937;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.date-year {
    font-size: 0.75rem;
    opacity: 0.8;
}

.webinar-content {
    padding: 2rem;
}

.webinar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.webinar-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.webinar-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.detail-icon {
    color: #10B981;
}

.webinar-agenda {
    margin-bottom: 1.5rem;
}

.webinar-agenda h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.webinar-agenda ul {
    list-style: none;
    padding: 0;
}

.webinar-agenda li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.webinar-agenda li::before {
    content: '▶';
    color: #10B981;
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.webinar-speakers {
    margin-bottom: 1.5rem;
}

.webinar-speakers h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.speakers-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.speaker strong {
    display: block;
    color: #1F2937;
    font-weight: 600;
    font-size: 0.875rem;
}

.speaker span {
    color: #6B7280;
    font-size: 0.75rem;
}

.webinar-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.stat-icon {
    color: #10B981;
}

.webinar-register,
.webinar-watch {
    display: block;
    width: 100%;
    background: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.webinar-register:hover,
.webinar-watch:hover {
    background: #059669;
}

.webinar-categories {
    padding: 4rem 0;
    background: white;
}

.category-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    color: #10B981;
    font-weight: 500;
    font-size: 0.875rem;
}

.webinar-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.webinar-cta {
    padding: 4rem 0;
    background: #F9FAFB;
}

.webinar-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.webinar-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.webinar-cta .cta-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.webinar-cta .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.webinar-cta .cta-guarantee {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Responsive Design for Guide and Webinar Pages */
@media (min-width: 768px) {
    .guide-hero-title,
    .webinar-hero-title {
        font-size: 3rem;
    }
    
    .guide-stats,
    .webinar-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .form-inline {
        grid-template-columns: 1fr 1fr 1fr auto;
    }
    
    .download-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .webinar-cta .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .form-inline {
        grid-template-columns: 1fr;
    }
    
    .webinar-details {
        gap: 0.75rem;
    }
    
    .webinar-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .final-cta,
    .mobile-menu-btn,
    .demo-info-sidebar,
    .contact-info-sidebar {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .demo-form-container,
    .contact-form-container {
        grid-template-columns: 1fr;
    }
}