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

:root {
    --primary: #10B981;
    --primary-dark: #059669;
    --secondary: #3B82F6;
    --dark: #1F2937;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Sustainability Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        /* Yaprak simgeleri */
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 40% 70%, rgba(16, 185, 129, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.4) 0%, transparent 2%),
        /* Dünya küresi simgeleri */
        radial-gradient(circle at 60% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 3%),
        radial-gradient(circle at 15% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 3%),
        /* CO2 azaltma okları - aşağı yönde */
        linear-gradient(180deg, rgba(16, 185, 129, 0.3) 0%, transparent 20%),
        linear-gradient(180deg, transparent 80%, rgba(16, 185, 129, 0.3) 100%);
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        200px 200px,
        200px 200px;
    background-position: 
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        100px 100px;
    pointer-events: none;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo:hover {
    opacity: 0.8;
}

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

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

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

/* Yeşil yaprak desenli arka plan */
.hero::before {
    content: '🍃 🌱 🌍 ♻️ 🍃 🌿 🌎 📊 🍃 🌱 🌿 🌍';
    position: absolute;
    top: 10%;
    left: -5%;
    right: -5%;
    font-size: 60px;
    opacity: 0.05;
    letter-spacing: 80px;
    line-height: 150px;
    word-spacing: 40px;
    white-space: nowrap;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

/* Hero Wrapper - Split Layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: var(--white);
    padding: 16px;
    transition: var(--transition);
    animation: float-image 6s ease-in-out infinite;
}

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

.hero-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.3);
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: var(--transition);
}

/* Hero Image Badge */
.hero-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    }
}

.badge-icon {
    font-size: 16px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.3);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Badge Preview */
.hero-badge-preview {
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

.badge-preview-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    padding: 20px;
    transition: var(--transition);
    animation: slide-up 0.8s ease-out 0.3s both;
}

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

.badge-preview-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px -12px rgba(16, 185, 129, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.2);
}

.hero-badge-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.badge-preview-wrapper:hover .hero-badge-img {
    transform: scale(1.02);
}

/* Badge Preview Label */
.badge-preview-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.label-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.label-text {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .badge-preview-wrapper {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .hero-image-badge {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-badge-preview {
        margin-top: 24px;
    }
    
    .badge-preview-wrapper {
        padding: 12px;
    }
    
    .badge-preview-label {
        bottom: 16px;
        left: 16px;
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .label-icon {
        font-size: 16px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle leaf pattern for features */
.features::before {
    content: '🍃';
    position: absolute;
    top: -20px;
    right: 5%;
    font-size: 200px;
    opacity: 0.03;
    transform: rotate(-15deg);
    pointer-events: none;
}

.features::after {
    content: '🌱';
    position: absolute;
    bottom: 50px;
    left: 5%;
    font-size: 180px;
    opacity: 0.03;
    transform: rotate(25deg);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

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

.feature-card {
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    width: 200px;
    height: 200px;
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #F3F4F6 100%);
    position: relative;
    overflow: hidden;
}

.screenshots::before {
    content: '🌍';
    position: absolute;
    top: 10%;
    left: -50px;
    font-size: 250px;
    opacity: 0.04;
    pointer-events: none;
    animation: rotate 50s linear infinite;
}

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

.screenshot-main {
    margin-bottom: 60px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: var(--white);
    padding: 20px;
}

.screenshot-main figcaption {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 12px;
    font-style: italic;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.screenshot-main:hover .screenshot-img {
    transform: scale(1.02);
}

/* Screenshots Gallery */
.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

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

.gallery-item figcaption {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-top: 12px;
    padding: 0 8px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .screenshots-gallery {
        grid-template-columns: 1fr;
    }
}

.screenshot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.screenshot-feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.screenshot-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.screenshot-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.screenshot-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.screenshot-feature p {
    color: var(--gray);
    font-size: 14px;
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.modules::before {
    content: '♻️';
    position: absolute;
    bottom: -50px;
    right: 5%;
    font-size: 300px;
    opacity: 0.02;
    transform: rotate(-20deg);
    pointer-events: none;
}

.modules::after {
    content: '📊';
    position: absolute;
    top: 10%;
    left: 2%;
    font-size: 120px;
    opacity: 0.03;
    pointer-events: none;
}

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

.module-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.module-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.module-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.module-card.featured::before {
    content: 'Yeni';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.module-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.module-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: var(--light-gray);
    color: var(--gray);
}

.module-badge.featured {
    background: var(--primary);
    color: var(--white);
}

.module-card > p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

.module-features li {
    padding: 8px 0;
    color: var(--dark);
    position: relative;
    padding-left: 24px;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Module Preview */
.module-with-preview {
    position: relative;
    overflow: hidden;
}

.module-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    z-index: 10;
}

.module-with-preview:hover .module-preview {
    opacity: 1;
}

.module-preview img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Compliance Section */
.compliance {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.compliance::before {
    content: '✅';
    position: absolute;
    top: 5%;
    right: 8%;
    font-size: 150px;
    opacity: 0.03;
    pointer-events: none;
}

.compliance::after {
    content: '🌎';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 180px;
    opacity: 0.03;
    pointer-events: none;
}

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

.compliance-card {
    padding: 32px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.compliance-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.compliance-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.compliance-card p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 14px;
}

.status {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.technology .section-header h2,
.technology .section-header p {
    color: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.tech-item {
    text-align: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.tech-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.tech-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Animated sustainability icons in CTA */
.cta::before {
    content: '🌱 🍃 🌍 ♻️';
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 80px;
    opacity: 0.08;
    letter-spacing: 100px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

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

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.demo-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

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

.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.demo-form input:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.demo-form textarea {
    resize: vertical;
    margin-bottom: 24px;
}

.demo-form button {
    width: 100%;
    border: none;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
}
