/* Reset and base styles */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow-x: hidden;
}

/* Custom properties */
:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    --accent-50: #f8fafc;
    --accent-100: #f1f5f9;
    --accent-200: #e2e8f0;
    --accent-300: #cbd5e1;
    --accent-400: #94a3b8;
    --accent-500: #64748b;
    --accent-600: #475569;
    --accent-700: #334155;
    --accent-800: #1e293b;
    --accent-900: #0f172a;
    
    --white: #ffffff;
    --black: #000000;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    justify-content: space-between;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

.nav-desktop.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.nav-logo-img {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}

.nav-logo-img img {
    width: 71px;
    height: 71px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    transition: colors 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--accent-800);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-600);
    background: rgba(14, 165, 233, 0.1);
}

.nav-cta {
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
    background: var(--primary-700);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Navigation */
.nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

.nav-mobile .nav-logo-img {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.nav-mobile .nav-logo-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-mobile.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: colors 0.3s;
}

.nav-menu-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.nav-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-mobile-menu.active {
    display: block;
}

.nav-mobile-menu .glass {
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nav-mobile-menu .glass::before {
    content: '×';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-600);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.nav-mobile-menu .glass::before:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--accent-900);
}

.mobile-nav-link {
    display: block;
    color: var(--accent-700);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary-600);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    padding-top: 10rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--accent-600);
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.btn-hero-primary {
    background: linear-gradient(to right, var(--primary-600), var(--primary-700));
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    margin-bottom: 2rem;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: linear-gradient(to right, var(--primary-700), var(--primary-800));
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.4);
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(0);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-900);
    line-height: 1.3;
}

.feature-card p {
    color: var(--accent-600);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Section styles */
.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

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

.process-step {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(0);
    border: 1px solid var(--primary-100);
}

.process-step:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: var(--primary-600);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-900);
}

.process-step p {
    color: var(--accent-600);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--accent-50);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.comparison-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
}

.comparison-card.traditional {
    background: white;
    border: 2px solid var(--accent-200);
    color: var(--accent-800);
}

.comparison-card.nextvolve {
    background: linear-gradient(to bottom right, var(--primary-600), var(--primary-700));
    color: white;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-600);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

.comparison-card h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-card li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.comparison-card li::before {
    content: "✓";
    margin-right: 1rem;
    font-weight: bold;
    color: var(--primary-600);
}

.comparison-card.traditional li::before {
    content: "✗";
    color: #ef4444;
}

.btn-nextvolve {
    width: 100%;
    background: white;
    color: var(--primary-600);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

.btn-nextvolve:hover {
    background: var(--primary-50);
    transform: scale(1.05);
}

/* Blog Section */
.blog-section {
    padding: 0;
    background: var(--accent-50);
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 0;
}

.blog-post {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(0);
    position: relative;
    min-height: 100vh;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.blog-post:hover {
    box-shadow: none;
    transform: translateY(0);
}

.blog-post-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    float: right;
    margin: 0 0 1rem 2rem;
    border-radius: 0.75rem;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    width: 100%;
    display: block;
}



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

.blog-category {
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-date {
    color: var(--accent-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--accent-900);
    line-height: 1.2;
}

.blog-post-description {
    color: var(--accent-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post-description.expanded {
    overflow: visible;
}

.blog-post-description.collapsed {
    max-height: 4.5em;
    overflow: hidden;
}

.btn-read-more {
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    align-self: flex-start;
}

.btn-see-less {
    background: var(--accent-500);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    align-self: flex-start;
}

.btn-read-more:hover, .btn-see-less:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-read-more:hover {
    background: var(--primary-700);
}

.btn-see-less:hover {
    background: var(--accent-600);
}

/* Blog Post Color Themes */
.blog-post-blue {
    border-top: 4px solid #0ea5e9;
}

.blog-post-blue .blog-category {
    background: #e0f2fe;
    color: #0369a1;
}

.blog-post-blue .btn-read-more {
    background: #0ea5e9;
}

.blog-post-blue .btn-read-more:hover {
    background: #0284c7;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.blog-post-green {
    border-top: 4px solid #10b981;
}

.blog-post-green .blog-category {
    background: #d1fae5;
    color: #047857;
}

.blog-post-green .btn-read-more {
    background: #10b981;
}

.blog-post-green .btn-read-more:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.blog-post-orange {
    border-top: 4px solid #f59e0b;
}

.blog-post-orange .blog-category {
    background: #fef3c7;
    color: #d97706;
}

.blog-post-orange .btn-read-more {
    background: #f59e0b;
}

.blog-post-orange .btn-read-more:hover {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: white;
}

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

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-900);
}

.newsletter-content p {
    color: var(--accent-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--accent-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-500);
}

.btn-newsletter {
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-newsletter:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

/* About Kukurio Section */
.about-kukurio-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #fb923c 100%);
    position: relative;
    overflow: hidden;
}

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

.about-header {
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    border-radius: 2px;
}

.decoration-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.about-description {
    margin-bottom: 4rem;
}

.about-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
    transition: all 0.3s;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--primary-600), var(--primary-700), var(--primary-800));
    position: relative;
    overflow: hidden;
}

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

.cta-left h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-left p {
    font-size: 1.25rem;
    color: var(--primary-100);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-700);
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background: var(--primary-50);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-right h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-feature h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-feature p {
    color: var(--primary-200);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-items {
    max-width: 64rem;
    margin: 0 auto;
    margin-top: 4rem;
}

.faq-item {
    background: var(--accent-50);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
    background: var(--accent-100);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--accent-600);
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-200);
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    background: var(--accent-50);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partner-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.partner-item:hover .partner-logo {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.partner-item:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-900);
    margin: 0;
    transition: color 0.3s;
}

.partner-item:hover .partner-name {
    color: var(--primary-600);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--accent-50);
}

.gallery-description {
    text-align: center;
    color: var(--accent-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }
    
    .gallery-large {
        grid-row: span 1;
    }
}

/* Footer */
.footer {
    background: var(--accent-900);
    color: white;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-company p {
    color: var(--accent-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-contact div {
    color: var(--accent-300);
}

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

.footer-section h3 {
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--primary-400);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--accent-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--accent-800);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--accent-400);
    font-size: 0.875rem;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-900);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-500);
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

.modal-close:hover {
    background: var(--accent-100);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--accent-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--accent-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.btn-modal-submit {
    width: 100%;
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-modal-submit:hover {
    background: var(--primary-700);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--accent-50);
}

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

.team-member {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(0);
    position: relative;
}

.team-member:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.member-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image {
    width: 100%;
    height: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 165, 233, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    text-decoration: none;
    transition: all 0.3s;
    transform: scale(0.8);
}

.team-member:hover .social-link {
    transform: scale(1);
}

.social-link:hover {
    background: var(--primary-600);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--accent-900);
}

.member-position {
    color: var(--primary-600);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--accent-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Values Section */
.team-values-section {
    padding: 5rem 0;
    background: white;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--accent-50);
    transition: all 0.3s;
    transform: translateY(0);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-900);
}

.value-card p {
    color: var(--accent-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Work Section */
.work-section {
    padding: 5rem 0;
    background: white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.work-item {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(0);
}

.work-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.work-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-content {
    padding: 2rem;
}

.work-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-900);
}

.work-content p {
    color: var(--accent-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--accent-50);
}

@media (max-width: 768px) {
    .services-section {
        padding: 2rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(0);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-900);
}

.service-content p {
    color: var(--accent-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--accent-700);
    font-size: 0.95rem;
}

.service-features li::before {
    content: "✓";
    margin-right: 0.75rem;
    font-weight: bold;
    color: var(--primary-600);
    font-size: 1rem;
}

.service-content .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .nav-mobile {
        display: none;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .cta-left h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1023px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.nextvolve {
        transform: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-item {
        margin: 0 1rem;
    }
    
    .work-content {
        padding: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        margin: 0 1rem;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        margin: 0 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .blog-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .blog-post {
        margin: 0 auto;
        min-height: 100vh;
        width: 95%;
        padding: 2rem 1.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-image {
        width: 250px;
        height: 250px;
        margin: 0 0 1rem 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

/* Contact Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    background: var(--primary-700);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-600), var(--primary-700), var(--primary-800));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
