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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1f3a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #84cc16;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #65a30d;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #1a1f3a;
    color: #ffffff;
}

.btn.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

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

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

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1f3a;
}

.header-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #84cc16;
    text-decoration: none;
}

.header-phone:hover {
    color: #65a30d;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3748 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-content-centered {
    max-width: 100%;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.network-map,
.training-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px -3px rgb(0 0 0 / 0.1);
    object-fit: cover;
}

.network-map,
.training-photo {
    max-height: 400px;
}

.story-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #1a1f3a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.about-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.about-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.about-item h3 {
    color: #1a1f3a;
    margin-bottom: 1rem;
}

.about-item p {
    color: #6b7280;
}

/* Features Section */
.features {
    padding: 80px 0;
}

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

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #84cc16;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgb(0 0 0 / 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

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

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

.step {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

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

/* Products Section */
.products {
    padding: 80px 0;
}

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

.product-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #84cc16;
    transform: translateY(-4px);
}

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

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #84cc16;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f3a;
    margin: 1rem 0;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #84cc16;
    font-weight: 600;
}

/* Network Section */
.network {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.network-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
}

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

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Training Section */
.training {
    padding: 80px 0;
}

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

.training-features {
    margin-top: 2rem;
}

.training-feature {
    margin-bottom: 2rem;
}

.training-feature h4 {
    color: #1a1f3a;
    margin-bottom: 0.5rem;
}

.training-feature p {
    color: #6b7280;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.story-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.story-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

blockquote {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

cite {
    font-weight: 600;
    color: #1a1f3a;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item img {
    width: 32px;
    height: 32px;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1a1f3a;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #84cc16;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #65a30d;
}

.contact-cta {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h3 {
    color: #1a1f3a;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #1a1f3a;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

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

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

.footer-brand {
    max-width: 100%;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #84cc16;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-text,
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .network-content,
    .training-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .network-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .network-content .network-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-image-photo,
    .network-map,
    .training-photo {
        border-radius: 8px;
        max-height: 300px;
    }
    
    .story-card {
        text-align: center;
    }
    
    .contact-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .about, .features, .how-it-works, 
    .products, .network, .training, 
    .success-stories, .contact {
        padding: 60px 0;
    }
    
    .hero-cta .btn {
        min-width: 200px;
        padding: 14px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}