/* CSS Variables for Brand Colors */
:root {
    --cobalt: #1F3B5B;
    --mint: #2ED3B7;
    --ash: #9CA3AF;
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --dark-gray: #374151;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--cobalt);
    font-weight: 600;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h5 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--ash);
    line-height: 1.5;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-product, a.btn-primary, a.btn-secondary, a.btn-product {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #26C1A6;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cobalt);
    border: 2px solid var(--cobalt);
}

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

.btn-product {
    background-color: var(--cobalt);
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

.btn-product:hover {
    background-color: #2D5282;
}

.btn-product.primary {
    background-color: var(--mint);
    color: var(--cobalt);
}

.btn-product.primary:hover {
    background-color: #26C1A6;
}

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

/* Logo and Brand */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cobalt);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

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

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 40px 0;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.hero-header {
    padding: 20px 0;
    margin-bottom: 60px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--cobalt);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--ash);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Value Proposition - moved outside hero */
.value-prop {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.value-prop h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

.value-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--cobalt);
}

.value-item p {
    color: var(--ash);
    line-height: 1.5;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--mint);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Products Section */
.products {
    background-color: var(--light-gray);
}

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

.product-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card.featured {
    border: 2px solid var(--mint);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--mint);
    color: var(--cobalt);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cobalt);
    margin-bottom: 20px;
}

.product-price span {
    font-size: 1rem;
    color: var(--ash);
}

.product-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
}

/* How It Works */
.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-color: var(--mint);
    color: var(--cobalt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px auto 0 auto;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
}

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Use Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.case-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Trust Section */
.trust {
    background-color: var(--cobalt);
    color: var(--white);
}

.trust h2, .trust h3 {
    color: var(--white);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--mint);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    margin-top: 10px;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.trust-icon {
    width: 30px;
    height: 30px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--mint);
    text-decoration: none;
}

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

.contact-details address {
    font-style: normal;
    color: var(--ash);
}

.contact-cta {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

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

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

.footer-brand {
    max-width: 350px;
}

.footer-brand p {
    color: var(--ash);
    margin-top: 20px;
}

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

.footer-column h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--ash);
    text-decoration: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-column a:hover {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid var(--ash);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--ash);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: none;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        min-width: 160px;
    }
    
    .hero-image {
        height: 280px;
    }
    
    .step-image,
    .case-image {
        height: 180px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: left;
    }
    
    .trust-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-main {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 200px;
    }
    
    .hero-image {
        height: 220px;
    }
    
    .step-image,
    .case-image {
        height: 150px;
    }
    
    .value-grid,
    .features-grid,
    .products-grid,
    .steps-grid,
    .benefits-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}