/* CSS Variables for Corporate Theme */
:root {
    --primary-color: #0056b3; /* Corporate Blue */
    --primary-hover: #004494;
    --secondary-color: #f8f9fa; /* Light Gray */
    --text-main: #212529; /* Dark Gray for readability */
    --text-muted: #6c757d;
    --bg-main: #ffffff;
    --bg-light-blue: #f0f7ff;
    --accent-color: #10b981; /* Emerald Green for success/trust */
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --border-radius: 8px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

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

.section-padding {
    padding: 80px 0;
}

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

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-main);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111827;
}

.logo-accent {
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(to right bottom, #ffffff, #f3f4f6);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--bg-light-blue);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #111827;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.success-card .icon {
    font-size: 2rem;
}

.success-card .text strong {
    display: block;
    font-size: 1rem;
    color: #111827;
}

.success-card .text span {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

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

/* Partners Section */
.partners-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.partners-text {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partners-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partners-grid img {
    height: 30px;
    object-fit: contain;
}

.partner-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #4b5563;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-light-blue);
    margin-bottom: 15px;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111827;
}

.process-card p {
    color: var(--text-muted);
}

/* Pricing Section */
.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.4rem;
    color: #111827;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.price span:first-child {
    font-size: 1.5rem;
    margin-top: 5px;
    margin-right: 2px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 10px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
}

.features-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
}

/* Licenses Grid */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.license-item {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.license-item:hover {
    box-shadow: var(--shadow-md);
    border-color: #d1d5db;
}

.license-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.license-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #111827;
}

.license-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Final */
.final-cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: white;
    padding: 80px 0 0;
}

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

.footer-brand .logo-text, .footer-brand .logo-accent {
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section p {
        margin: 0 auto 35px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .trust-indicators {
        justify-content: center;
    }
    .process-grid, .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile hide for now */
    }
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .process-grid, .licenses-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: white !important;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Currency Toggle */
.currency-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
    margin-top: 20px;
}

.currency-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-size: 0.9rem;
}

.currency-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}
