* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #191919;
    line-height: 1.5;
    min-height: 100vh;
}

.page-pricing {
    max-width: 480px;
    margin: 0 auto;
    background: #f3f2ef;
}

/* Fixed nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0dfdc;
    z-index: 100;
    padding: 0 24px;
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    height: 64px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
}

.nav-links a:hover {
    color: #0a66c2;
}

.header {
    background: #fff;
    padding: 24px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #e0dfdc;
}

.header-logo {
    width: auto;
    height: 250px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
}

.header p {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.content {
    padding: 16px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: #0a66c2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 12px;
    padding-left: 2px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid #e0dfdc;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-card p {
    margin: 0;
}

.info-card strong {
    color: #0a66c2;
    font-weight: 600;
}

.tariff-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
    border: 1px solid #e0dfdc;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.tariff-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.tariff-card:active {
    border-color: #0a66c2;
}

.tariff-card.featured {
    border: 2px solid #0a66c2;
    background: #f0f7ff;
}

.tariff-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.tariff-name {
    font-size: 17px;
    font-weight: 600;
    color: #191919;
}

.tariff-price {
    font-size: 20px;
    font-weight: 600;
    color: #0a66c2;
    white-space: nowrap;
}

.tariff-price span {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.tariff-details {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.tariff-details strong {
    color: #191919;
    font-weight: 600;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary {
    background: #0a66c2;
    color: #fff;
}

.btn-primary:hover {
    background: #004182;
}

.btn-outline {
    background: #fff;
    color: #0a66c2;
    border: 1.5px solid #0a66c2;
}

.btn-outline:hover {
    background: #f0f7ff;
}

.badge {
    display: inline-block;
    background: #0a66c2;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer {
    text-align: center;
    padding: 24px 20px;
    font-size: 12px;
    color: #666;
    background: #fff;
    border-top: 1px solid #e0dfdc;
    margin-top: 20px;
    line-height: 2;
}

.footer a {
    color: #0a66c2;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

.divider {
    border: none;
    border-top: 1px solid #e0dfdc;
    margin: 4px 0 16px;
}

/* Landing */
.hero {
    background: linear-gradient(180deg, #f3f2ef 0%, #e8f0fe 100%);
    padding: 144px 24px 60px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: #0a66c2;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto 28px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 64px 0;
    background: #fff;
}

.section-alt {
    background: #f3f2ef;
}

.section .section-title {
    font-size: 28px;
    font-weight: 600;
    color: #191919;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-transform: none;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: #0a66c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #666;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e0dfdc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0a66c2;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.audience-card {
    text-align: center;
    padding: 24px;
}

.audience-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 14px;
    color: #666;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e0dfdc;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.pricing-card.featured {
    border: 2px solid #0a66c2;
    background: #f0f7ff;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 600;
    color: #0a66c2;
    margin-bottom: 8px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.price-per {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.pricing-card .btn {
    display: block;
    text-align: center;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.pricing-note a {
    color: #0a66c2;
    font-weight: 600;
    text-decoration: none;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.partner-card {
    padding: 32px;
}

.partner-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a66c2;
    margin-bottom: 4px;
}

.partner-card p {
    font-size: 14px;
    color: #666;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 16px;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e0dfdc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0a66c2;
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #0a66c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.scroll-top:hover {
    background: #004182;
    transform: translateY(-2px);
}

/* Landing footer */
.landing-footer {
    background: #191919;
    color: #999;
    padding: 30px 0 20px;
}

.landing-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.landing-footer .footer-col h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.landing-footer .footer-col p {
    font-size: 12px;
    margin-bottom: 4px;
}

.landing-footer .footer-col a {
    display: block;
    font-size: 12px;
    color: #999;
    text-decoration: none;
    margin-bottom: 4px;
}

.landing-footer .footer-col a:hover {
    color: #fff;
}

.landing-footer .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 12px;
    text-align: center;
    font-size: 11px;
}

.btn-inline {
    display: inline-block;
    width: auto;
    padding: 14px 32px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 13px;
    }
    .hero {
        padding: 124px 20px 40px;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero p {
        font-size: 14px;
    }
    .section {
        padding: 40px 0;
    }
    .section .section-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .landing-footer {
        padding: 30px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer br {
        display: block;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 12px;
    }
}