@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

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

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

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

/* Header */
header {
    background: linear-gradient(135deg, #00475f 0%, #003d52 100%);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #eaaf00;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #eaaf00;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #00475f 0%, #003d52 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(234,175,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.limited-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaaf00;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: #eaaf00;
    color: #00475f;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(234,175,0,0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234,175,0,0.4);
    background: #f4c430;
}

.btn-primary.full-width {
    width: 100%;
    text-align: center;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: white;
    border: 3px solid white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #00475f;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-stat.top-right {
    top: 20px;
    right: -10px;
    color: #00475f;
}

.floating-stat.bottom-left {
    bottom: 30px;
    left: -10px;
    background: #eaaf00;
    color: #00475f;
}

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

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Story Section */
.story-section {
    padding: 60px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    font-size: 2rem;
    color: #00475f;
    margin-bottom: 20px;
    font-weight: 800;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #00475f 0%, #003d52 100%);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #eaaf00;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #00475f;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #eaaf00;
}

.product-card.featured {
    border-color: #eaaf00;
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00475f;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-badge.hot {
    background: #ff4757;
}

.product-content {
    padding: 25px;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #eaaf00, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00475f;
    box-shadow: 0 5px 15px rgba(234,175,0,0.3);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #00475f;
    font-weight: 700;
    line-height: 1.3;
}

.product-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #00475f;
    border: 2px solid #00475f;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-product:hover {
    background: #00475f;
    color: white;
}

.btn-product i {
    transition: transform 0.3s ease;
}

.btn-product:hover i {
    transform: translateX(4px);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #eaaf00;
}

.feature-card.featured {
    background: linear-gradient(135deg, #00475f 0%, #003d52 100%);
    color: white;
    border-color: #eaaf00;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #eaaf00, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00475f;
    box-shadow: 0 5px 15px rgba(234,175,0,0.3);
}

.feature-card.featured .feature-icon {
    background: white;
    color: #00475f;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00475f;
    font-weight: 700;
}

.feature-card.featured h3 {
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.feature-card.featured p {
    color: rgba(255,255,255,0.9);
}

/* Ambassador Section */
.ambassador-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00475f 0%, #003d52 100%);
    position: relative;
    overflow: hidden;
}

.ambassador-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(234,175,0,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
    opacity: 0.5;
}

.ambassador-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ambassador-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #eaaf00, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00475f;
    box-shadow: 0 10px 30px rgba(234,175,0,0.4);
    animation: float 3s ease-in-out infinite;
}

.ambassador-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.ambassador-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.ambassador-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eaaf00, #f4c430);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #00475f;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.15rem;
    color: #00475f;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    display: inline-block;
    background: #00475f;
    color: white;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,71,95,0.3);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,71,95,0.4);
    background: #003d52;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: #00475f;
    border: 3px solid #00475f;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #00475f;
    color: white;
}

/* Footer */
footer {
    background: #00475f;
    color: white;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: #eaaf00;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #eaaf00;
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

.footer-bottom .disclaimer {
    margin-bottom: 20px;
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-badges span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 25px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.modal-with-steps {
    max-width: 550px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #eaaf00, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00475f;
}

.modal-title {
    font-size: 1.8rem;
    color: #00475f;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    font-size: 1rem;
}

.modal-body {
    margin-top: 20px;
}

/* Benefit List */
.benefit-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.benefit-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.benefit-item span {
    color: #333;
    font-size: 0.95rem;
}

.modal-cta {
    margin-top: 25px;
}

.modal-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* Eligibility Check Styles */
.question-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.question-card h4 {
    color: #00475f;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-option {
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #00475f;
    color: white;
    border: 2px solid #00475f;
}

.btn-option:hover {
    background: #003d52;
    border-color: #003d52;
}

.btn-option.outline {
    background: transparent;
    color: #00475f;
}

.btn-option.outline:hover {
    background: #00475f;
    color: white;
}

.success-message,
.info-message {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.success-message h4 {
    color: #155724;
    margin-bottom: 10px;
}

.success-message p {
    color: #155724;
    opacity: 0.9;
}

.info-message {
    background: #e7f3ff;
    border: 1px solid #b6d4fe;
}

.info-message i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.info-message h4 {
    color: #084298;
    margin-bottom: 10px;
}

.info-message p {
    color: #084298;
    opacity: 0.9;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #00475f 0%, #003d52 100%);
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    nav.mobile-menu-open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1rem;
    }

    nav a::after {
        display: none;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        order: -1;
    }

    .floating-stat {
        padding: 10px 15px;
    }

    .floating-stat.top-right {
        top: 10px;
        right: 10px;
    }

    .floating-stat.bottom-left {
        bottom: 10px;
        left: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .ambassador-content h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .modal-content {
        padding: 30px 25px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-option {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}