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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #475569;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: #475569;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-product {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #e55533;
}

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

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

.btn-product {
    background: #475569;
    color: white;
    width: 100%;
    text-align: center;
}

.btn-product:hover {
    background: #334155;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    color: white;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

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

.brand-name {
    font-size: 2rem;
    font-weight: 300;
    color: #FF6B47;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 2px solid transparent;
}

.product-card.featured {
    border-color: #FF6B47;
    transform: scale(1.05);
}

.product-image {
    height: 120px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img, .why-img, .story-img, .sync-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B47;
    margin: 20px 0;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF6B47;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

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

.why-text {
    text-align: left;
}

.why-text ul {
    list-style: none;
}

.why-text li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.why-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B47;
    font-weight: bold;
}

.why-image {
    height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-img {
    border-radius: 16px;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.story-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.story-card {
    text-align: center;
}

.story-image {
    height: 200px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-img {
    border-radius: 16px;
}

/* Sync Section */
.sync-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

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

.sync-text {
    text-align: left;
}

.sync-image {
    height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sync-img {
    border-radius: 16px;
}
.sync-features {
    margin-top: 20px;
}

.sync-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.sync-icon {
    font-size: 1.5rem;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.community-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

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

.community-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    color: white;
    text-align: center;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.benefit-check {
    color: #FF6B47;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 300;
    color: #FF6B47;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .why-content, .sync-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-text, .sync-text {
        text-align: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-name, .footer-brand-name {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}