.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #065f46 0%, #059669 30%, #10b981 60%, #34d399 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px;
}
.hero-image-overlay img {
    opacity: 0.8 !important;
}

@media (max-width: 768px) {
    .hero {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-image-overlay img {
        width: 100vw !important;
        left: 50vw !important;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
.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 1000 1000"><path fill="rgba(255,255,255,0.05)" d="M0,300 Q250,100 500,300 T1000,300 L1000,0 L0,0 Z"/><path fill="rgba(255,255,255,0.03)" d="M0,600 Q250,400 500,600 T1000,600 L1000,300 L0,300 Z"/></svg>') no-repeat center;
    background-size: cover;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: organic-float 25s ease-in-out infinite;
}
@keyframes organic-float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-15px) rotate(1deg) scale(1.02); }
    66% { transform: translateY(-25px) rotate(-0.5deg) scale(0.98); }
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgb(28 105 0 / 20%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.platform-badge i {
    background: rgba(255, 255, 255, 0.9);
    color: #059669;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    transform: scaleX(0);
    animation: organic-underline 2.5s ease forwards 1.5s;
}
@keyframes organic-underline {
    to { transform: scaleX(1); }
}
.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}
.hero-visual {
    position: relative;
}
.mockup-container {
    position: relative;
    perspective: 1200px;
}
.mockup-screen {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-12deg) rotateX(8deg);
    transition: transform 0.4s ease;
    border: 3px solid rgba(16, 185, 129, 0.2);
}
.mockup-container:hover .mockup-screen {
    transform: rotateY(-6deg) rotateX(4deg);
}
.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 2rem;
}
.mockup-dots {
    display: flex;
    gap: 0.75rem;
}
.mockup-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e5e7eb;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #10b981; }
.mockup-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
}
.mockup-content {
    display: grid;
    gap: 1.5rem;
}
.dashboard-widget {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #10b981;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}
.dashboard-widget h4 {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.widget-stat {
    font-size: 1.3rem;
    font-weight: 700;
    color: #059669;
}
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}
.section-header p {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}
.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(16, 185, 129, 0.05);
    transition: all 0.4s ease;
    border-top: 5px solid #10b981;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    border-radius: 0 0 0 100px;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    border-top-color: #059669;
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}
.feature-icon i {
    font-size: 1.7rem;
    color: white;
}
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.2rem;
}
.feature-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}
.feature-list {
    list-style: none;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 500;
}
.feature-list i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.tools {
    padding: 8rem 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.tools::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 1000 1000"><path fill="rgba(255,255,255,0.03)" d="M0,500 Q250,300 500,500 T1000,500 L1000,1000 L0,1000 Z"/></svg>') no-repeat center;
    background-size: cover;
}
.tools-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}
.tools-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.tools-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}
.tool-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}
.tool-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    position: relative;
}
.tool-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.3;
    animation: tool-glow 3s ease-in-out infinite alternate;
}
@keyframes tool-glow {
    from { opacity: 0.3; transform: scale(1); }
    to { opacity: 0.6; transform: scale(1.05); }
}
.tool-icon i {
    font-size: 2rem;
    color: #1f2937;
}
.tool-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}
.tool-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}
.management-tools {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}
.management-header {
    text-align: center;
    margin-bottom: 5rem;
}
.management-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.management-header .subtitle {
    font-size: 1.2rem;
    color: #047857;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.management-header p {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}
.management-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(16, 185, 129, 0.05);
    transition: all 0.4s ease;
    border-top: 6px solid #10b981;
    position: relative;
    overflow: hidden;
}
.management-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    border-radius: 0 0 0 120px;
}
.management-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    border-top-color: #047857;
}
.management-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #047857);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}
.management-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #10b981, #047857);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.3;
}
.management-icon i {
    font-size: 2rem;
    color: white;
}
.management-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.2rem;
}
.management-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}
.management-features {
    list-style: none;
    margin-bottom: 2rem;
}
.management-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 500;
}
.management-features i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.management-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #047857;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.management-link:hover {
    color: #065f46;
    transform: translateX(3px);
}
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    position: relative;
}
.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}
.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #10b981;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #10b981;
    font-weight: 700;
    opacity: 0.3;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.testimonial-content {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}
.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.3rem;
}
.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.cta::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: float-cta-pattern 20s ease-in-out infinite;
}
@keyframes float-cta-pattern {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-20px); }
    100% { transform: translateX(0) translateY(0); }
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.cta .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}
.cta .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}
.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}
.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1024px) {
    .management-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-left: 0;
        padding-right: 0;
        min-height: 122vh;
        padding-top: 0px;
    }
    .hero .container {
        width: 100%;
        display: block;
        margin-bottom: 25vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: .7rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-visual {
        transform: scale(.7);
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .platform-badge {
        padding: 0.5rem 0.5rem;
        font-size: 0.6rem;
    }
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .management-grid {
        grid-template-columns: 1fr;
    }
    .management-card {
        padding: 2rem;
    }
    .testimonial-card {
        padding: 2rem;
    }
    .cta .btn-primary, .cta .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .tools-header h2,
    .management-header h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 480px) {
    .tools {
        padding: 5rem 0;
    }
    .management-tools {
        padding: 5rem 0;
    }
    .testimonials {
        padding: 5rem 0;
    }
    .cta {
        padding: 5rem 0;
    }
    .tool-item {
        padding: 2rem;
    }
    .management-card {
        padding: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .tools-header h2,
    .management-header h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-content p {
        font-size: 1.1rem;
    }
}
