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

html {
    scroll-behavior: smooth;
}

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

/* Global Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading styles */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #16a34a;
}

.cta-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.cta-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%), url('images/animal_pattern.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/animal_pattern.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.03;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 0 0 400px;
    max-width: 400px;
}

.hero-visual {
    flex: 1;
    position: relative;
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.04em;
}

.hero-subtitle-main {
    color: #16a34a;
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.primary-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.primary-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.25);
}

.secondary-btn {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.secondary-btn:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-1px);
}

.hero-note {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

.floating-widgets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.widget-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.widget-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.widget-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.widget-4 {
    top: 35%;
    right: 2%;
    animation-delay: 2.2s;
}

.widget-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-content {
    display: flex;
    flex-direction: column;
}

.widget-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.widget-desc {
    font-size: 12px;
    color: #6b7280;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}

/* What's New Section */
.whats-new {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('images/animal_pattern.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 32px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.dark-card {
    background: #1a1a1a;
    color: white;
}

.green-card {
    background: #16a34a;
    color: white;
}

.light-card {
    background: #f8fafc;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.card-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.card-link:hover {
    opacity: 0.8;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.story-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-intro {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.story-text p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-highlight {
    background: rgba(22, 163, 74, 0.05);
    border-left: 4px solid #16a34a;
    padding: 20px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.story-highlight p {
    margin: 0;
    color: #1a1a1a;
    font-size: 16px;
}

.story-question {
    font-size: 18px;
    font-weight: 600;
    color: #16a34a;
    font-style: italic;
}

.story-visual {
    position: relative;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #16a34a;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #ffffff;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-header.centered h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-header.centered p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.workflow-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

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

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

.workflow-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #16a34a;
}

.workflow-icon {
    font-size: 32px;
}

.workflow-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.workflow-card > p {
    font-size: 16px;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 16px;
}

.workflow-card ul {
    list-style: none;
}

.workflow-card li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.workflow-card li::before {
    content: '•';
    color: #16a34a;
    position: absolute;
    left: 0;
}

.workflow-result {
    text-align: center;
    background: rgba(22, 163, 74, 0.05);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.workflow-result p {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
}

/* Product Demo Section */
.product-demo {
    padding: 100px 0;
    background: #f8fafc;
}

.demo-content {
    text-align: center;
}

.demo-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.demo-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.phone-mockups {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.phone-container {
    text-align: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.phone-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-interface {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-height: 80%;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.status-badge {
    background: #fef3c7;
    color: #f59e0b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 12px;
}

.task-icon {
    font-size: 16px;
}

.validation-screen {
    text-align: center;
}

.photo-upload {
    background: #f0f9ff;
    border: 2px dashed #3b82f6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.upload-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.validation-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: #16a34a;
}

.dashboard {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
}

.phone-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0.98)), url('images/animal_pattern.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}

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

.feature-item {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Image Gallery Section */
.image-gallery {
    padding: 100px 0;
    background: #ffffff;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 1;
    aspect-ratio: 11/9;
}

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

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

.gallery-item:hover .gallery-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: 32px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Business Solutions Section */
.business-solutions {
    padding: 100px 0;
    background: #f8fafc;
}

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

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

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

.large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.card-content > p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

.solution-points {
    margin-bottom: 32px;
}

.solution-points p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.6;
}

.solution-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.solution-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
}

.card-image {
    position: relative;
    overflow: hidden;
}

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

.solution-card:not(.large-card) .card-content {
    padding: 32px;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.solution-card li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.solution-card li::before {
    content: '•';
    color: #16a34a;
    position: absolute;
    left: 0;
}

.partner-note {
    font-size: 14px;
    color: #16a34a;
    font-style: italic;
    margin-bottom: 24px !important;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: #ffffff;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

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

.case-study-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 24px;
}

.case-study-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.case-study-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-study-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.case-study-link:hover {
    color: #15803d;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

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

.cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 32px !important;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.cta-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

/* Footer */
.footer {
    background: #f8fafc;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 16px;
}

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

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

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #16a34a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

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

.footer-links span {
    color: #6b7280;
    font-size: 14px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #16a34a;
}

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

.social-link {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .large-card {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        flex: none;
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-img {
        min-height: 300px;
        max-height: 400px;
    }
    
    .widget {
        min-width: 160px;
        padding: 12px;
        font-size: 12px;
    }
    
    .widget-1 {
        top: 8%;
        right: 2%;
    }
    
    .widget-2 {
        top: 50%;
        left: 2%;
    }
    
    .widget-3 {
        bottom: 8%;
        right: 2%;
    }
    
    .widget-4 {
        top: 30%;
        right: 1%;
    }
    
    .widget-title {
        font-size: 11px;
    }
    
    .widget-desc {
        font-size: 10px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockups {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .widget {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header.centered h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
