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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #111827;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #1E3A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    box-shadow: 0 0 60px rgba(0, 102, 255, 0.3), 0 0 100px rgba(0, 102, 255, 0.1);
}

.card-white {
    background: white;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 102, 255, 0.05), 0 2px 4px -1px rgba(0, 102, 255, 0.03);
    transition: all 0.3s;
}

.card-white:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 102, 255, 0.1), 0 10px 10px -5px rgba(0, 102, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 16px;
}

.navbar-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 12px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.05);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo-img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s;
}

.navbar-logo:hover .navbar-logo-img {
    transform: scale(1.05);
}

.navbar-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111827;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-link {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    text-decoration: none;
    transition: all 0.2s;
}

.navbar-link:hover {
    background: #F3F4F6;
    color: #111827;
}

.navbar-link.active {
    background: #0066FF;
    color: white;
}

.navbar-divider {
    width: 1px;
    height: 24px;
    background: #E5E7EB;
    margin: 0 8px;
}

.navbar-btn {
    padding: 8px 20px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
}

.navbar-mobile-btn {
    display: flex;
    padding: 8px;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
}

.navbar-mobile-btn:hover {
    background: #F3F4F6;
}

@media (min-width: 768px) {
    .navbar-mobile-btn {
        display: none;
    }
}

.navbar-mobile {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

.navbar-mobile.open {
    display: block;
}

.navbar-mobile-link {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s;
}

.navbar-mobile-link:hover {
    background: #F3F4F6;
}

.navbar-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 1px solid #93C5FD;
    color: #111827;
}

.btn-outline:hover {
    background: #EFF6FF;
}

/* Main Content */
.main-content {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    min-height: 100vh;
}

/* Background Effects */
.bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.bg-orb-1 {
    top: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: linear-gradient(to right, #DBEAFE, #BFDBFE);
    opacity: 0.5;
}

.bg-orb-2 {
    bottom: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: linear-gradient(to right, #BFDBFE, #93C5FD);
    opacity: 0.4;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    margin-bottom: 24px;
}

.page-badge svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.page-badge span {
    font-size: 14px;
    color: #374151;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 72px;
    }
}

.page-subtitle {
    font-size: 20px;
    color: #4B5563;
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Pricing Card */
.pricing-card-wrapper {
    max-width: 672px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 24px;
    padding: 48px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    margin-bottom: 24px;
}

.pricing-badge svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.pricing-badge span {
    font-size: 14px;
    font-weight: 500;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 60px;
    font-weight: 700;
}

.pricing-period {
    font-size: 24px;
    color: #4B5563;
}

.pricing-description {
    color: #4B5563;
}

/* Trial Info */
.trial-info {
    margin-bottom: 32px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, #EFF6FF, white);
    border: 1px solid #BFDBFE;
}

.trial-info-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trial-info-icon {
    color: #0066FF;
    flex-shrink: 0;
    margin-top: 4px;
}

.trial-info-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.trial-info-text {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.trial-info-text .bold {
    font-weight: 700;
    color: #111827;
}

.trial-info-text .highlight {
    font-weight: 700;
    color: #0066FF;
}

.trial-info-note {
    font-size: 12px;
    color: #4B5563;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item.highlight {
    padding: 12px;
    border-radius: 8px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.highlight {
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
}

.feature-icon.normal {
    background: #EFF6FF;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-icon.highlight svg {
    color: white;
}

.feature-icon.normal svg {
    color: #0066FF;
}

.feature-title {
    font-weight: 500;
    color: #111827;
    margin-bottom: 2px;
}

.feature-description {
    font-size: 14px;
    color: #4B5563;
}

/* CTA */
.cta-button {
    width: 100%;
    padding: 24px 32px;
    font-size: 18px;
}

.cta-note {
    text-align: center;
    font-size: 14px;
    color: #4B5563;
    margin-top: 24px;
}

/* Features Grid Section */
.features-section {
    margin-top: 128px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-subtitle {
    font-size: 20px;
    color: #4B5563;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 32px;
    border-radius: 16px;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.feature-card-description {
    color: #4B5563;
    line-height: 1.75;
}

/* FAQ Section */
.faq-section {
    margin-top: 128px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    border-radius: 16px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.faq-answer {
    color: #4B5563;
    line-height: 1.75;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #EFF6FF, #DBEAFE);
    margin-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1E3A8A;
}

.footer-description {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.footer-subdesc {
    color: #6B7280;
    font-size: 12px;
}

.footer-section-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #1E3A8A;
    font-size: 14px;
}

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

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B5563;
}

.footer-links a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B5563;
}

.footer-contact-item a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #0066FF;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.footer-language {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.footer-language select {
    background: white;
    border: 1px solid #BFDBFE;
    color: #374151;
    border-radius: 8px;
    padding: 8px 32px 8px 16px;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066FF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
}

.footer-language select:hover {
    border-color: #0066FF;
}

.footer-disclaimer {
    background: rgba(191, 219, 254, 0.5);
    padding: 24px;
}

.footer-disclaimer p {
    max-width: 1024px;
    margin: 0 auto;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.75;
    text-align: center;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}