/* --- Sticky Nav --- */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}
.nav-cta {
    padding: 10px 24px;
    background: #0061ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-cta:hover { background: #004fd6; }

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
}
.hero-pm {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d50 50%, #0a1628 100%);
}
.hero-decor {
    background: linear-gradient(135deg, #2d1b3d 0%, #4a1942 50%, #2d1b3d 100%);
}
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.hero-text { max-width: 650px; }
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-section h1 {
    font-size: 48px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
}
.highlight { color: #4da3ff; }
.highlight-decor { color: #ff6b9d; }
.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat strong {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
}
.hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}
.cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}

/* --- CTA Buttons --- */
.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); opacity: 0.95; }
.cta-pm { background: #0061ff; color: #fff; }
.cta-decor { background: #e91e63; color: #fff; }
.cta-white { background: #fff; color: #1a1a2e; }

/* --- Sections --- */
.section { padding: 80px 24px; }
.section-light { background: #f7f9fc; }
.section-white { background: #fff; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 800;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 48px;
}
.section-cta { text-align: center; margin-top: 40px; }

/* --- Steps --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step-card {
    text-align: center;
    padding: 32px 24px;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0061ff, #003d99);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- Pricing Table --- */
.pricing-table {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.pricing-table th {
    background: #1a1a2e;
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}
.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #444;
}
.pricing-table tr:hover td { background: #f7f9fc; }

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 28px 24px;
}
.stars { font-size: 16px; margin-bottom: 12px; }
.testimonial-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author strong { color: #1a1a2e; }
.testimonial-author span { color: #888; font-size: 13px; margin-left: 6px; }

/* --- FAQ --- */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #e5e5e5;
}
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q::after {
    content: '+';
    font-size: 22px;
    color: #888;
    transition: transform 0.3s;
}
.faq-item.active .faq-q::after {
    content: '-';
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-a {
    max-height: 300px;
}
.faq-a p {
    padding: 0 0 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* --- Cities --- */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.city-tag {
    background: #f0f4ff;
    color: #0061ff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.city-tag:hover {
    background: #0061ff;
    color: #fff;
}

/* --- Final CTA --- */
.section-cta-final { padding: 80px 24px; }
.cta-bg-pm { background: linear-gradient(135deg, #0061ff 0%, #003d99 100%); }
.cta-bg-decor { background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%); }

/* --- Footer --- */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    padding: 48px 24px 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}
.footer p {
    font-size: 14px;
    line-height: 1.8;
}
.footer-bottom {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* --- Sticky Bottom (Mobile) --- */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* --- Popup --- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 440px;
    width: 100%;
    position: relative;
    animation: popupSlide 0.3s ease;
}
@keyframes popupSlide {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.popup-card h2 {
    font-size: 22px;
    margin-bottom: 4px;
    color: #1a1a2e;
}
.popup-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.popup-close:hover { color: #333; }
.popup-card .form-group { margin-bottom: 12px; }
.popup-card input,
.popup-card select,
.popup-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e5ec;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}
.popup-card input:focus,
.popup-card select:focus,
.popup-card textarea:focus {
    border-color: #0061ff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 30px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { gap: 20px; }
    .hero-stat strong { font-size: 22px; }
    .steps-grid,
    .services-grid,
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .sticky-bottom { display: block; }
    .section { padding: 48px 16px; }
    .hero-section { padding: 80px 16px 40px; }
    .cta-btn { padding: 14px 28px; font-size: 15px; }
    body { padding-bottom: 56px; }
}
