:root {
    --deep-navy: #0A1633;
    --emerald: #15965C;
    --sand: #E6E1D9;
    --coral: #FF6F61;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --border-gray: #E9ECEF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--deep-navy);
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* Buttons */
.btn-primary {
    background-color: var(--emerald);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #138a52;
}

.btn-secondary {
    background-color: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2951 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

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

.brand-identity {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.brand-name {
    color: var(--white);
    margin: 0;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--sand);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--sand);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 160px;
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.intro h2 {
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--medium-gray);
    font-weight: 500;
}

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

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

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 22, 51, 0.08);
    text-align: center;
    border: 1px solid var(--border-gray);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.feature-icon-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--sand);
    border-radius: 6px;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 22, 51, 0.08);
    border-left: 4px solid var(--emerald);
}

.benefit h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

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

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

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 22, 51, 0.08);
    text-align: center;
    border: 1px solid var(--border-gray);
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--coral);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-card h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--medium-gray);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:before {
    content: "✓";
    color: var(--emerald);
    font-weight: bold;
    margin-right: 0.5rem;
}

.purchase-btn {
    width: 100%;
}

/* Trust Section */
.trust {
    padding: 80px 0;
}

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

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

.image-placeholder {
    width: 120px;
    height: 60px;
    background-color: var(--sand);
    margin: 0 auto 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.trust-item p {
    font-style: italic;
    font-size: 1.1rem;
}

.trust-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Security Section */
.security {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.security-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.security-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(10, 22, 51, 0.08);
}

.security-item h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

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

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

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

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

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

.contact-item h3 {
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--emerald);
    text-decoration: none;
}

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

.contact-form h3 {
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--emerald);
}

.contact-form-styled {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 22, 51, 0.08);
    border: 1px solid var(--border-gray);
}

.contact-form-styled input,
.contact-form-styled select,
.contact-form-styled textarea {
    background: var(--light-gray);
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-styled input:focus,
.contact-form-styled select:focus,
.contact-form-styled textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(21, 150, 92, 0.1);
}

.contact-form-styled button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form-styled button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 150, 92, 0.3);
}

/* Footer */
.footer {
    background-color: var(--deep-navy);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

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

.footer-tagline {
    color: var(--sand);
    font-size: 0.875rem;
}

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

.footer-column h4 {
    color: var(--sand);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

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

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
}

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

.footer-bottom {
    border-top: 1px solid #2a3a5c;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--sand);
}

/* Remove any potential horizontal scroll */
body {
    overflow-x: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 50px 0;
        min-height: 60vh;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-identity {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 220px;
        min-width: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .brand-name {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}