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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #005994;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #005994;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: transparent;
    color: #005994;
    background: white;
    border: 2px solid #005994;
}

.btn-secondary:hover {
    background: #005994;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #005994 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #fbbf24;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.guarantee-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #005994;
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #005994;
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.platform-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stats .stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #005994;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #f9fafb;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.solution-card ul {
    list-style: none;
    margin-top: 1rem;
}

.solution-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-card li::before {
    content: "★";
    color: #fbbf24;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-intro {
    background: linear-gradient(135deg, #005994 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #005994;
}

.pricing-card.featured {
    border-color: #dc2626;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #005994;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: "★";
    color: #10b981;
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    color: #6b7280;
    font-size: 0.9rem;
}

.author-company {
    color: #2563eb;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-line {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-links {
    text-align: center;
      margin-top: 2rem;
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 10px;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}
.footer-link {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-item h3 {
    color: #fbbf24;
    font-size: 1.125rem;
}
.footer-item ul li {
    margin-bottom: 0.5rem;
}
.footer-social h3 {
    color: #fbbf24;
    font-size: 1.125rem;
}
.footer-bottom {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #9ca3af;
}

/* Utility and custom classes for Social Partner plans */
.brand-blue-bg {
    background: linear-gradient(135deg, #005994 0%, #005994 100%);
}
.brand-red-60 {
    background: #dc2626;
}
.text-white {
    color: #fff !important;
}
.text-gray-200 {
    color: #e5e7eb !important;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem;
}
.w-full {
    width: 100%;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.font-semibold {
    font-weight: 600;
}
.hover\:opacity-80:hover {
    opacity: 0.8;
}
.transition-opacity {
    transition: opacity 0.2s;
}
.text-sm {
    font-size: 0.875rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.grid {
    display: grid;
}
.grid-cols-1 {
    grid-template-columns: 1fr;
}
.md\:grid-cols-3 {
    /* For demonstration, always 3 columns on desktop, 1 on mobile */
}
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
.gap-8 {
    gap: 2rem;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.text-2xl {
    font-size: 1.5rem;
}
.text-4xl {
    font-size: 2.25rem;
}
.p-6 {
    padding: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .feature-list {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee-list {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}