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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    line-height: 1.6;
    color: #1a1a2e;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
}

.logo:hover {
    color: #0ea5e9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #5a607f;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: #0ea5e9;
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.cta-button:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}

.cta-button::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
}

.section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 17px;
    max-width: 600px;
    margin: -40px auto 50px;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: #0284c7;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    position: relative;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
    line-height: 1.15;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero p {
    font-size: 19px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
}

.hero-button {
    background: #0ea5e9;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.hero-button:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.hero-subtext {
    margin-top: 16px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
    position: relative;
}

/* Stats Bar */
.stats-bar {
    padding: 0;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 40px 0;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid #e5e7eb;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* About Section */
.about {
    background: #fafbfc;
}

.about h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    font-size: 17px;
    color: #6b7280;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.about-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.about-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: #ffffff;
}

.services h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fafbfc;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #bfdbfe;
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon {
    font-size: 22px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Pricing Section */
.pricing {
    background: #f8fafc;
}

.pricing h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: white;
    border: 2px solid #0ea5e9;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12);
}

.pricing-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.18);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ea5e9;
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
}

.pricing-amount {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
}

.pricing-desc {
    color: #6b7280;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
    padding-left: 24px;
    position: relative;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    color: #0f172a;
    border: 1.5px solid #d1d5db;
}

.pricing-btn:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.pricing-btn.featured-btn {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

.pricing-btn.featured-btn:hover {
    background: #0284c7;
    border-color: #0284c7;
    color: white;
}

.pricing-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.pricing-note {
    text-align: center;
    color: #94a3b8;
    margin-top: 40px;
    font-size: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: #ffffff;
}

.how-it-works h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 20px 30px;
    flex: 1;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: #d1d5db;
    margin-top: 30px;
    flex-shrink: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 18px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8fafc;
}

.why-choose-us h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 22px 20px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #bfdbfe;
}

.feature-icon {
    font-size: 28px;
    min-width: 36px;
}

.feature-card p {
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
}

.testimonials h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fafbfc;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author {
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
    margin-bottom: 0 !important;
}

.testimonial-role {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 0 !important;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.final-cta p {
    font-size: 17px;
    margin-bottom: 36px;
    opacity: 0.85;
    position: relative;
}

.final-cta-button {
    background: white;
    color: #0c4a6e;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 4% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

.modal-scroll {
    max-height: 400px;
    overflow-y: auto;
    color: #6b7280;
    line-height: 1.7;
}

.modal-scroll h3 {
    color: #0f172a;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-scroll p {
    margin-bottom: 12px;
    font-size: 14px;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 28px;
    font-weight: bold;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #1a1a2e;
}

.modal h2 {
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
}

.modal > .modal-content > p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
    font-size: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: white;
}

.submit-btn {
    width: 100%;
    background: #0ea5e9;
    color: white;
    padding: 13px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.submit-btn:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 14px;
    margin-bottom: 0 !important;
}

.form-disclaimer a {
    color: #0ea5e9;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.success-message {
    display: none;
    text-align: center;
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.footer-section h3 {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-email {
    color: #0ea5e9 !important;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 8px;
        transition: left 0.3s ease;
        border-top: 1px solid #e5e7eb;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 16px;
        padding: 14px 24px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }

    .nav-links a:hover {
        background: #f1f5f9;
    }

    .nav-links a::after {
        display: none;
    }

    .cta-button {
        margin-top: 16px;
        padding: 14px 32px !important;
        font-size: 16px !important;
        width: auto !important;
    }

    .menu-toggle {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item {
        border-right: none;
        padding: 12px 0;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .services-grid,
    .features-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .testimonial-card {
        padding: 24px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 28px 20px;
    }

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

    .final-cta h2,
    .about h2,
    .services h2,
    .pricing h2,
    .how-it-works h2,
    .why-choose-us h2,
    .testimonials h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 32px;
    }
}