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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
.highlight {
    color: #00cc66;
    font-weight: 600;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00cc66;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding-top: 70px;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #00cc66;
    color: white;
}

.btn-primary:hover {
    background: #00b359;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border-color: #e5e5e5;
}

.btn-secondary:hover {
    border-color: #00cc66;
    color: #00cc66;
    transform: translateY(-2px);
}

/* Story Section */
.story {
    padding: 5rem 0;
    background: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.story-explanation {
    margin-bottom: 3rem;
}

.name-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.name-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.word {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
}

.definition {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    max-width: 120px;
}

.plus, .equals {
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
}

.story-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f8fafc;
}

.product-showcase {
    max-width: 800px;
    margin: 0 auto;
}

/* Products Carousel - Peek Style */
.products-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 0 100px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    height: auto;
}

.carousel-slide {
    flex: 0 0 70%;
    width: 70%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.carousel-slide .product-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.carousel-slide.active .product-card {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Gradient Overlays for Peek Effect */
.carousel-viewport::before,
.carousel-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.carousel-viewport::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(248, 250, 252, 0.8) 30%, 
        rgba(248, 250, 252, 0) 100%);
}

.carousel-viewport::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(248, 250, 252, 0.8) 30%, 
        rgba(248, 250, 252, 0) 100%);
}

/* Enhanced Navigation - Fixed Positioning */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 204, 102, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 30;
    color: #666;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #00cc66;
    color: #00cc66;
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 204, 102, 0.25);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Navigation visibility enhancement */
.carousel-nav svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Enhanced Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.4s ease;
}

.carousel-dot:hover {
    border-color: #00cc66;
    transform: scale(1.2);
}

.carousel-dot:hover::before {
    background: #00cc66;
}

.carousel-dot.active {
    border-color: #00cc66;
    background: rgba(0, 204, 102, 0.1);
    transform: scale(1.3);
}

.carousel-dot.active::before {
    background: #00cc66;
    width: 8px;
    height: 8px;
}

/* Auto-play indicator */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #00cc66, #00a855);
    border-radius: 2px;
    transition: width 0.1s linear;
    opacity: 0.7;
}

/* Peek carousel specific enhancements */
@media (min-width: 768px) {
    .carousel-slide:not(.active) .product-card {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-slide:not(.active) .product-card:hover {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-product {
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    border: 2px solid #00cc66;
    box-shadow: 0 8px 30px rgba(0, 204, 102, 0.15);
    transform: scale(1.02);
}

.featured-product:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 204, 102, 0.2);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00cc66 0%, #00b359 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 204, 102, 0.3);
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.product-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-image {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.1rem;
    color: #00cc66;
    font-weight: 500;
}

.product-badge {
    display: inline-block;
    background: #00cc66;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.featured-badge {
    background: linear-gradient(135deg, #00cc66 0%, #00b359 100%);
    box-shadow: 0 2px 10px rgba(0, 204, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 10px rgba(0, 204, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 204, 102, 0.5);
    }
    100% {
        box-shadow: 0 2px 10px rgba(0, 204, 102, 0.3);
    }
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.2rem;
}

.product-story {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    border-radius: 12px;
    border-left: 4px solid #00cc66;
}

.story-highlight {
    font-size: 0.95rem;
    color: #2d5a2d;
    line-height: 1.6;
    margin: 0;
}

.story-highlight strong {
    color: #00cc66;
}

.product-actions {
    text-align: center;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00cc66;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00cc66;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .name-breakdown {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plus, .equals {
        transform: rotate(90deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-slide {
        min-height: 400px;
        padding: 1.5rem;
        flex: 0 0 90%;
        width: 90%;
    }
    
    .carousel-viewport {
        border-radius: 16px;
    }
    
    .products-carousel {
        padding: 2rem 0;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .featured-product {
        transform: none;
    }
    
    .featured-product:hover {
        transform: translateY(-5px);
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .carousel-slide {
        min-height: 350px;
        padding: 1rem;
        flex: 0 0 95%;
        width: 95%;
        opacity: 1;
        transform: scale(1);
    }
    
    .carousel-slide .product-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .products-carousel {
        padding: 1.5rem 0;
    }
    
    /* Hide peek effect on small screens */
    .carousel-viewport::before,
    .carousel-viewport::after {
        display: none;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .product-card {
        padding: 1.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid #00cc66;
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact page styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00cc66;
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #00cc66;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* About page styles */
.about-section {
    padding: 4rem 0;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.service-item,
.value-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.service-item h3,
.value-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-item p,
.value-item p {
    color: #666;
    line-height: 1.6;
}

.product-showcase {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.product-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Founder Section Styles */
.founder-section {
    margin-bottom: 4rem;
}

.founder-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 2rem;
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-story {
    flex: 1;
}

.founder-story h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.founder-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive founder section */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .founder-image {
        flex: none;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .founder-story h2 {
        font-size: 1.8rem;
        text-align: center;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timeline-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.challenge-box {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.challenge-box strong {
    color: #e74c3c;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 12px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Innovations Grid */
.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.innovation-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.innovation-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.innovation-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .innovations-grid {
        grid-template-columns: 1fr;
    }
}

/* Story Page Styles */
.story-section {
    padding: 4rem 0;
}

.story-intro {
    margin-bottom: 4rem;
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-content {
    margin-bottom: 4rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lesson-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.lesson-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.lesson-item p {
    color: #666;
    line-height: 1.6;
}

/* Story CTA */
.story-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    margin-top: 4rem;
}

.story-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.story-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

/* Responsive Story Page */
@media (max-width: 768px) {
    .story-intro h2,
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-intro p {
        font-size: 1.1rem;
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Development CTA */
.development-cta {
    text-align: center;
    margin-top: 2rem;
}

.product-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #00cc66 0%, #00b359 100%);
    color: white;
    border-radius: 8px;
    margin-top: 3rem;
}

.about-cta h2 {
    margin-bottom: 1rem;
    color: white;
}

.about-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Terms page styles */
.terms-section {
    padding: 4rem 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section-content {
    margin-bottom: 3rem;
}

.terms-section-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.terms-section-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section-content li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-section-content a {
    color: #00cc66;
    text-decoration: none;
}

.terms-section-content a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

/* AI Innovation Page Styles */
.ai-innovation-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.ai-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid #e0f2fe;
}

.ai-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.ai-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Philosophy Grid */
.ai-philosophy {
    margin-bottom: 4rem;
}

.ai-philosophy h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00cc66, #00a855);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.philosophy-item h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00cc66;
    border-radius: 50%;
    flex-shrink: 0;
}

.philosophy-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Examples Grid */
.ai-examples {
    margin-bottom: 4rem;
}

.ai-examples h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.example-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.example-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #00cc66;
    padding-bottom: 0.5rem;
}

.example-card p {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.6;
}

.example-card p strong {
    color: #2d3748;
}

/* Challenges Section */
.ai-challenges {
    margin-bottom: 4rem;
}

.ai-challenges h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.challenges-list {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.challenge-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Tips Grid */
.ai-tips {
    margin-bottom: 4rem;
}

.ai-tips h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.tip-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tip-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Future Content */
.future-content {
    margin-bottom: 4rem;
}

.future-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.preview-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f59e0b;
    position: relative;
}

.preview-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.preview-item p {
    color: #78350f;
    line-height: 1.6;
}

/* CTA Section */
.ai-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.ai-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.ai-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for AI Innovation */
@media (max-width: 768px) {
    .philosophy-grid,
    .examples-grid,
    .tips-grid,
    .content-preview {
        grid-template-columns: 1fr;
    }
    
    .ai-intro h2 {
        font-size: 2rem;
    }
    
    .ai-philosophy h2,
    .ai-examples h2,
    .ai-challenges h2,
    .ai-tips h2,
    .future-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
} 