/* Marketing Pages Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #00344d;
    color: #ffffff;
    line-height: 1.6;
}

/* Hamburger Menu */
.hamburger {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 2000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(0, 136, 204, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: #0088cc;
    transform: scale(1.05);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #004d6d;
    z-index: 1999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.side-nav.active {
    left: 0;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #0088cc;
}

.nav-header h2 {
    color: #0088cc;
    margin: 0;
    font-size: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #0088cc;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.side-nav li {
    margin: 0;
}

.side-nav a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.side-nav a:hover,
.side-nav a.active {
    background: rgba(0, 136, 204, 0.1);
    border-left-color: #0088cc;
    padding-left: 25px;
}

.side-nav a.cta-link {
    margin: 20px;
    background: #0088cc;
    border-radius: 8px;
    text-align: center;
    border-left: none;
}

.side-nav a.cta-link:hover {
    background: #c0354e;
    padding-left: 20px;
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #00344d 0%, #004d6d 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 20px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin: 0 0 10px;
    color: white;
    letter-spacing: 2px;
}

.hero-title .highlight {
    color: #0088cc;
}

.hero-title .red-x {
    color: #e94560;
    font-weight: 900;
}

.hero-tagline {
    font-size: 24px;
    color: #0088cc;
    margin: 0 0 20px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #0088cc;
    color: white;
}

.btn-primary:hover {
    background: #c0354e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    color: #0088cc;
    margin: 0 0 5px;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: #004d6d;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #1a1a2e;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    color: white;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #1a1a2e;
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #004d6d;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #e94560;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e94560 0%, #c0354e 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Hero */
.page-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #00344d 0%, #004d6d 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: white;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    background: #1a1a2e;
}

.content-section.alt-bg {
    background: #004d6d;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: white;
}

.content-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.large-text {
    font-size: 22px !important;
    font-weight: 500;
    color: white !important;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #e94560;
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.comparison-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Values List */
.values-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
}

.value-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: #1a1a2e;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #004d6d;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #e94560;
}

.pricing-card.featured {
    border-color: #e94560;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0088cc;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: #0088cc;
    vertical-align: super;
}

.amount {
    font-size: 56px;
    font-weight: bold;
    color: white;
}

.period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features Breakdown */
.features-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-detail {
    text-align: center;
}

.feature-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-detail h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.feature-detail p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Use Cases */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.use-case h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.use-case p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #004d6d;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0088cc;
}

.faq-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background: #004d6d;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    color: #0088cc;
    margin: 0 0 5px;
    font-size: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0088cc;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}