/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: #1a1a1a;
    background: #f0f8f0;
    font-size: 14px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(134, 201, 146, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
}

.header.scrolled {
    background: rgba(134, 201, 146, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.logo:hover .logo-icon::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(76, 175, 80, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4efda 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 1;
    animation: slideUpFade 1s ease forwards 0.3s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.hero .highlight {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: #f0f8f0;
    color: #2e7d32;
    padding: 1rem 2rem;
    border: 2px solid #81c784;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #4caf50;
    color: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: slideUpFade 1s ease forwards 0.6s;
}

.dashboard-mockup {
    background: #f0f8f0;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.mockup-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.mockup-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.mockup-info p {
    font-size: 0.8rem;
    color: #6b7280;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mockup-stat {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #c8e6c9;
}

.mockup-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.mockup-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: #f0f8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: -2s;
}

.floating-card:nth-child(2) {
    bottom: 20%;
    left: -15%;
    animation-delay: -4s;
}

.floating-card:nth-child(3) {
    top: 50%;
    right: -20%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}

.section-header.visible {
    animation: slideUpFade 1s ease forwards;
}

.section-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f0f8f0;
    position: relative;
    scroll-margin-top: 100px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8fff8;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #c8e6c9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon::after {
    width: 100px;
    height: 100px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Modules Section */
.modules {
    padding: 6rem 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.15) 0%, transparent 50%);
}

.modules-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.modules-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modules-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.modules-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.module-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.module-card:hover::before {
    left: 100%;
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.module-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.module-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #f0f8f0;
    scroll-margin-top: 100px;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8fff8;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #c8e6c9;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.popular {
    border-color: #4caf50;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.25);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0.25rem;
}

.period {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
    font-size: 0.9rem;
}

.pricing-features i {
    color: #10b981;
    font-size: 1rem;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8fff8;
    scroll-margin-top: 100px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f0f8f0;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #c8e6c9;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #6b7280;
    font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #f8fff8;
    color: #2e7d32;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #4caf50;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-links a:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4caf50;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 1.0s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 1.1s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 1.2s; }

/* Page-specific styles for new pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.last-updated {
    background: #e8f5e8;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-block ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin: 10px 0;
}

/* Cookie Policy Tables */
.cookie-category {
    margin: 30px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #27ae60;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.browser-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.browser-instructions p {
    margin: 10px 0;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Blog Styles */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #27ae60;
    background: white;
    color: #27ae60;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #27ae60;
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.category {
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.blog-post h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2ecc71;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 12px 24px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #2ecc71;
}

.pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pagination-info {
    color: #666;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: #27ae60;
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: #27ae60;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
}

/* Guides Styles */
.guides-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.guides-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guides-categories {
    margin-bottom: 40px;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #27ae60;
    background: white;
    color: #27ae60;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
    background: #27ae60;
    color: white;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.guide-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card.featured {
    border: 3px solid #27ae60;
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.guide-badge {
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.guide-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.guide-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reading-time {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.difficulty {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.guide-card .difficulty {
    background: #e8f5e8;
    color: #27ae60;
}

.guide-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #2ecc71;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    background: white;
}

.help-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.help-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.help-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.help-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.help-option:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-5px);
    border-color: #27ae60;
}

.help-option i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.help-option span {
    font-weight: 600;
}

/* Webinar Styles */
.webinar-tabs {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.webinar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    border: 2px solid #27ae60;
    background: white;
    color: #27ae60;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #27ae60;
    color: white;
}

.webinars-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.webinars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.webinar-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.webinar-card:hover {
    transform: translateY(-5px);
}

.webinar-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webinar-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.webinar-card.upcoming .webinar-status {
    background: #27ae60;
}

.webinar-card.on-demand .webinar-status {
    background: #3498db;
}

.webinar-card.past .webinar-status {
    background: #95a5a6;
}

.webinar-content {
    padding: 25px;
}

.webinar-date,
.webinar-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.webinar-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.webinar-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.webinar-presenter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.webinar-presenter img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.webinar-presenter div {
    display: flex;
    flex-direction: column;
}

.webinar-presenter strong {
    color: #2c3e50;
    margin-bottom: 2px;
}

.webinar-presenter span {
    color: #666;
    font-size: 0.9rem;
}

.webinar-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.webinar-cta {
    padding: 60px 0;
    background: #27ae60;
    color: white;
    text-align: center;
}

.webinar-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.webinar-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.webinar-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.webinar-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.webinar-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.webinar-form button {
    padding: 15px 30px;
    background: white;
    color: #27ae60;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.webinar-form button:hover {
    background: #f8f9fa;
}

/* Case Studies Styles */
.case-studies-filter {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.case-studies-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card.featured {
    border: 3px solid #27ae60;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e8f5e8;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.company-info p {
    color: #666;
    font-size: 0.9rem;
}

.case-study-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-content h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.case-study-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 15px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.case-study-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #2ecc71;
}

/* Success Stats */
.success-stats {
    padding: 80px 0;
    background: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.stats-header {
    margin-bottom: 50px;
}

.stats-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stats-header p {
    color: #666;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-container h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #2c3e50;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Case Study CTA */
.case-study-cta {
    padding: 80px 0;
    background: #27ae60;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #27ae60;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #27ae60;
}

/* Platform Overview Section */
.platform-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    scroll-margin-top: 100px;
}

.platform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.platform-features {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.platform-feature-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.platform-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-header {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e8f5e8;
}

.feature-header:hover {
    background: #f8fff8;
}

.feature-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #27ae60;
    transition: transform 0.3s ease;
}

.platform-feature-item.active .toggle-icon {
    transform: rotate(180deg);
}

.feature-content {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.platform-feature-item.active .feature-content {
    max-height: 1000px;
    padding: 2.5rem;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.feature-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-feature-primary {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-feature-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-feature-secondary {
    background: transparent;
    color: #27ae60;
    padding: 1rem 2rem;
    border: 2px solid #27ae60;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-feature-secondary:hover {
    background: #27ae60;
    color: white;
}

.feature-visual {
    position: relative;
    min-height: 400px;
}

/* Payroll Mockup */
.payroll-mockup {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e8f5e8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
}

.payroll-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e8;
}

.employee-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.employee-avatar {
    width: 50px;
    height: 50px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.employee-details h4 {
    margin: 0;
    font-size: 1.3rem;
    color: #2c3e50;
}

.employee-details span {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.pay-period {
    text-align: right;
    color: #666;
}

.ytd-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0.5rem;
}

.pay-breakdown {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e8f5e8;
}

.pay-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pay-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pay-item span:first-child {
    color: #666;
}

.pay-item span:last-child {
    font-weight: 600;
    color: #2c3e50;
}

.benefits-section {
    margin-bottom: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e8f5e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefit-card span:first-child {
    color: #666;
    font-size: 0.9rem;
}

.benefit-amount {
    font-weight: 600;
    color: #27ae60;
}

.time-off-section {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8f5e8;
}

.time-off-card {
    position: relative;
}

.time-off-card span:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.status.approved {
    background: #d4edda;
    color: #155724;
}

.calendar-mini {
    background: #f8fff8;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-days span {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-dates span {
    text-align: center;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-dates span.selected {
    background: #27ae60;
    color: white;
}

.time-off-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Hiring Mockup */
.hiring-mockup {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e8f5e8;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.hiring-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.candidate-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pipeline-stage {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e8f5e8;
}

.pipeline-stage h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #2c3e50;
}

.candidate-count {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.onboarding-checklist {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8f5e8;
}

.onboarding-checklist h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item.completed {
    opacity: 0.7;
}

.checklist-item.completed span {
    text-decoration: line-through;
}

.checklist-item i {
    font-size: 1.2rem;
}

.checklist-item.completed i {
    color: #27ae60;
}

.checklist-item i.fa-circle {
    color: #ddd;
}

/* Reporting Mockup */
.reporting-mockup {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e8f5e8;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.reporting-mockup::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e8;
}

.dashboard-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.date-range {
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8f5e8;
    text-align: center;
}

.metric-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.9rem;
    font-weight: 600;
}

.metric-trend.up {
    color: #27ae60;
}

.metric-trend.down {
    color: #e74c3c;
}

.chart-placeholder {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #e8f5e8;
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 100%;
}

.bar {
    width: 30px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

/* Performance Mockup */
.performance-mockup {
    background: #f8fff8;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e8f5e8;
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e8;
}

.performance-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.review-period {
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.performance-metrics {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.performance-score {
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.score-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.performance-areas {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8f5e8;
}

.area-item {
       display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.area-item:last-child {
    border-bottom: none;
}

.area-item span {
    font-weight: 600;
    color: #2c3e50;
}

.rating-stars {
    color: #f39c12;
    font-size: 1.2rem;
}

.goals-section {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8f5e8;
}

.goals-section h5 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.goal-item {
    margin-bottom: 1rem;
}

.goal-item:last-child {
    margin-bottom: 0;
}

.goal-item span {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e8f5e8;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Feature Bullet Points */
.feature-highlights {
    margin: 1.5rem 0;
}

.feature-bullet-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-bullet-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f8f0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    transition: all 0.3s ease;
}

.feature-bullet-points li:last-child {
    border-bottom: none;
}

.feature-bullet-points li:hover {
    background: rgba(39, 174, 96, 0.05);
    padding-left: 0.5rem;
    border-radius: 8px;
}

.feature-bullet-points li i {
    color: #27ae60;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Compact Platform Overview Styles */
.platform-overview {
    padding: 70px 0; /* Reduced from 100px */
}

.platform-feature-item {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.feature-header {
    padding: 1.5rem 2rem; /* Reduced from 2rem 2.5rem */
}

.feature-header h3 {
    font-size: 1.5rem; /* Reduced from 1.8rem */
}

.platform-feature-item.active .feature-content {
    padding: 2rem; /* Reduced from 2.5rem */
}

.feature-content {
    gap: 2rem; /* Reduced from 3rem */
}

.feature-description p {
    font-size: 1rem; /* Reduced from 1.1rem */
    line-height: 1.6; /* Reduced from 1.7 */
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.btn-feature-primary, .btn-feature-secondary {
    padding: 0.8rem 1.5rem; /* Reduced from 1rem 2rem */
    font-size: 0.9rem; /* Added smaller font size */
}

.feature-visual {
    min-height: 350px; /* Reduced from 400px */
}

/* Compact Mockup Styles */
.payroll-mockup, .hiring-mockup, .reporting-mockup, .performance-mockup {
    padding: 1.5rem; /* Reduced from 2rem */
}

.mockup-header, .dashboard-header, .performance-header {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.employee-details h4 {
    font-size: 1.1rem; /* Reduced from 1.3rem */
}

.employee-details span {
    font-size: 1.6rem; /* Reduced from 2rem */
}

.pay-breakdown, .onboarding-checklist, .analytics-grid, .performance-metrics {
    padding: 1.2rem; /* Reduced padding */
}

.candidate-count {
    font-size: 1.6rem; /* Reduced from 2rem */
}

.metric-value {
    font-size: 1.4rem; /* Reduced font size */
}

.score-circle {
    width: 100px; /* Reduced from 120px */
    height: 100px; /* Reduced from 120px */
}

.score-value {
    font-size: 2rem; /* Reduced from 2.5rem */
}

/* Responsive Design - Main Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modules-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    .header {
        padding: 0.75rem 0;
        height: 70px;
    }
    
    .hero {
        padding-top: 100px !important;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .modules-header h2 {
        font-size: 1.8rem;
    }
    
    .modules-header p {
        font-size: 1rem;
    }
    
    .module-card h4 {
        font-size: 1rem;
    }
    
    .module-card p {
        font-size: 0.85rem;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Platform Overview Responsive */
    .platform-overview {
        padding: 50px 0;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-header {
        padding: 1.2rem 1.5rem;
    }
    
    .feature-header h3 {
        font-size: 1.3rem;
    }
    
    .platform-feature-item.active .feature-content {
        padding: 1.5rem;
    }
    
    .feature-description p {
        font-size: 0.95rem;
    }
    
    .feature-bullet-points li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .feature-visual {
        min-height: 280px;
    }
    
    .payroll-mockup, .hiring-mockup, .reporting-mockup, .performance-mockup {
        padding: 1.2rem;
    }
    
    .candidate-pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .mockup-info h3 {
        font-size: 0.9rem;
    }
    
    .mockup-info p {
        font-size: 0.75rem;
    }
    
    .mockup-stat-number {
        font-size: 1.2rem;
    }
    
    .mockup-stat-label {
        font-size: 0.7rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .modules-header h2 {
        font-size: 1.6rem;
    }
    
    .modules-header p {
        font-size: 0.9rem;
    }
    
    .module-card h4 {
        font-size: 0.95rem;
    }
    
    .module-card p {
        font-size: 0.8rem;
    }
    
    .pricing-header h3 {
        font-size: 1rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-author p {
        font-size: 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
}
