@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-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    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.9;
        transform: scale(1.03);
    }
}

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

.hero-subtitle {
    font-size: 1.4rem;
    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: 30px;
}

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

.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);
}

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

.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 / Breakup Visual */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breakup-visual {
    width: 100%;
    position: relative;
}

.broken-heart-container {
    text-align: center;
    margin-bottom: 30px;
}

.broken-heart {
    font-size: 5rem;
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(231, 76, 60, 0.4));
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.comparison-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    width: 180px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.comparison-card.bad {
    border: 3px solid #e74c3c;
}

.comparison-card.good {
    border: 3px solid #27ae60;
    background: linear-gradient(135deg, #f8fff8, #e8f5e9);
}

.comparison-card .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.comparison-card.bad .card-icon {
    color: #e74c3c;
}

.comparison-card.good .card-icon {
    color: #27ae60;
}

.comparison-card span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #00475f;
    margin-bottom: 15px;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card li {
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.comparison-card.bad li i {
    color: #e74c3c;
}

.comparison-card.good li i {
    color: #27ae60;
}

.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: 0;
    right: 0;
    color: #00475f;
}

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

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

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

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

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

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

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

/* 5 Reasons Grid - Asymmetric Layout */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
}

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

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

.reason-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eaaf00, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #00475f;
    box-shadow: 0 4px 10px rgba(234,175,0,0.4);
}

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

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

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

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

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

.reason-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

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

/* Last two cards - centered row */
.reasons-grid .reason-card:nth-child(4),
.reasons-grid .reason-card:nth-child(5) {
    grid-column: span 1;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 3rem;
    color: #00475f;
    margin-bottom: 20px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #00475f;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00475f;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,71,95,0.3);
}

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

/* Learn More Section */
.learn-more-section {
    padding: 80px 0;
    background: white;
}

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

.learn-more-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.learn-more-card:hover {
    background: white;
    border-color: #eaaf00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.learn-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #00475f, #003d52);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #eaaf00;
}

.learn-card-content h3 {
    font-size: 1.1rem;
    color: #00475f;
    margin-bottom: 5px;
    font-weight: 700;
}

.learn-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.learn-card-arrow {
    margin-left: auto;
    color: #eaaf00;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.learn-more-card:hover .learn-card-arrow {
    transform: translateX(5px);
}

.learn-more-cta {
    text-align: center;
}

.btn-outline {
    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: 1rem;
    transition: all 0.3s ease;
}

.btn-outline: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-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;
}

@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;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #00475f;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #eaaf00;
    box-shadow: 0 0 0 3px rgba(234,175,0,0.1);
}

.checkbox-group {
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #eaaf00;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.btn-submit {
    background: linear-gradient(135deg, #eaaf00, #f4c430);
    color: #00475f;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234,175,0,0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

.form-message {
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid .reason-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .learn-more-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: 1;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reasons-grid .reason-card:nth-child(5) {
        max-width: none;
    }
}

@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 h1 {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }
    
    .comparison-cards {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .comparison-card {
        width: 150px;
        padding: 15px 12px;
    }
    
    .comparison-card span {
        font-size: 0.8rem;
    }
    
    .comparison-card li {
        font-size: 0.7rem;
    }
    
    .comparison-card .card-icon {
        font-size: 1.5rem;
    }
    
    .broken-heart {
        font-size: 4rem;
    }

    .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: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .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: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-dark {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .comparison-cards {
        gap: 8px;
    }
    
    .comparison-card {
        width: 140px;
        padding: 12px 10px;
    }
    
    .comparison-card span {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .comparison-card li {
        font-size: 0.65rem;
        margin-bottom: 5px;
    }
    
    .comparison-card .card-icon {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .broken-heart {
        font-size: 3rem;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
    
    .reason-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}