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

body {
    font-family: 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    color: #334155;
    line-height: 1.6;
}

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

/* ========== Navbar ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 20px;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.navbar-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #6366f1;
}

.nav-tab.active {
    color: #6366f1;
    font-weight: 700;
    position: relative;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 2px;
}

.navbar-cta {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s, transform 0.2s;
}

.navbar-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: 0.3s;
}

/* ========== Container ========== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Hero ========== */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe, #fce7f3);
    color: #7c3aed;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.hero-desc strong {
    color: #6366f1;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    padding: 14px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #6366f1;
    padding: 14px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #e2e8f0;
    transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 4px;
}

.hero-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    background: #e2e8f0;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.avatar-text {
    margin-left: 14px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ========== Trust Bar ========== */
.trust-bar {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
    gap: 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 1.6rem;
}

.trust-info {
    display: flex;
    flex-direction: column;
}

.trust-info strong {
    font-size: 0.95rem;
    color: #1e293b;
}

.trust-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ========== Section Header ========== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.05rem;
    color: #94a3b8;
}

/* ========== Features Section ========== */
.features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 28px 22px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== Why Us Section ========== */
.why-us-section {
    margin-bottom: 80px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-us-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-us-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.why-us-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ede9fe, #fce7f3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-card h3 {
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 1.05rem;
    font-weight: 700;
}

.why-us-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== Steps Section ========== */
.steps-section {
    margin-bottom: 80px;
}

.steps-timeline {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, #a855f7);
    border-radius: 2px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
}

.step-check {
    color: #10b981;
    font-size: 1.4rem;
    font-weight: 700;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========== Warranty Section ========== */
.warranty-section {
    margin-bottom: 80px;
}

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

.warranty-card {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.warranty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.warranty-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.warranty-card h3 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.warranty-card p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.warranty-card small {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ========== Testimonials ========== */
.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-scroll {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 16px;
    cursor: grab;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 340px;
    max-width: 380px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #94a3b8;
}

.testimonial-stars {
    margin-left: auto;
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.testimonial-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.testimonial-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 100px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.testimonial-nav-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

/* ========== Video Section ========== */
.video-section {
    margin-bottom: 80px;
}

.video-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.video-link {
    display: block;
    text-decoration: none;
}

.video-placeholder {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: 20px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: transform 0.2s;
}

.video-placeholder:hover {
    transform: scale(1.01);
}

.video-play {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
}

.video-placeholder p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* ========== FAQ Section ========== */
.faq-section {
    margin-bottom: 80px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-arrow {
    font-size: 1.3rem;
    color: #94a3b8;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== Quick Links ========== */
.quick-links-section {
    margin-bottom: 80px;
}

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

.link-card {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    color: #1e293b;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
}

.link-icon {
    font-size: 2rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.link-info {
    flex: 1;
}

.link-card h3 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.link-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.link-arrow {
    margin-left: auto;
    font-size: 1.3rem;
    color: #94a3b8;
    flex-shrink: 0;
}

/* ========== Customer Service ========== */
.customer-service {
    background: linear-gradient(135deg, #ede9fe, #fce7f3);
    padding: 48px 32px;
    border-radius: 24px;
    margin-bottom: 0;
    text-align: center;
}

.customer-service h2 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
}

.cs-subtitle {
    color: #64748b;
    margin-bottom: 28px;
    font-size: 1rem;
}

.service-info {
    max-width: 440px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.8);
    border-radius: 14px;
}

.service-label {
    color: #475569;
    font-weight: 600;
    font-size: 1.05rem;
}

.service-value {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-note {
    background: rgba(255,255,255,0.6);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: left;
}

.service-note p {
    color: #64748b;
    margin: 6px 0;
    font-size: 0.9rem;
}

/* ========== Footer ========== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 48px 20px 32px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1e293b;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #64748b;
}

/* ========== Modal ========== */
.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: #fff;
    margin: 20% auto;
    padding: 32px;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.close {
    color: #94a3b8;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 16px;
    top: 12px;
    cursor: pointer;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    text-align: center;
    margin-top: 12px;
}

#modal-message h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 8px;
}

#modal-message p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========== Hero Tags ========== */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.hero-tags .tag {
    font-size: 0.82rem;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 100px;
    font-weight: 500;
}

/* ========== Pricing Section ========== */
.pricing-section {
    margin-bottom: 80px;
}

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

.pricing-grid.single {
    max-width: 440px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: #6366f1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.12);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-badge.hot {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    vertical-align: top;
    line-height: 1.7;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-left: 4px;
}

.pricing-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

.btn-block {
    display: block;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 16px;
}

.pricing-note p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ========== Capabilities Section ========== */
.capabilities-section {
    margin-bottom: 80px;
}

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

.capability-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.capability-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.capability-card h3 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.capability-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== FAQ Full Page ========== */
.hero-sm {
    text-align: center;
    padding: 60px 0 40px;
}

.hero-sm .hero-title {
    font-size: 2.2rem;
}

.hero-sm .hero-desc {
    font-size: 1.05rem;
    max-width: 560px;
}

.faq-full {
    margin-bottom: 80px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-left: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 4px;
    flex-shrink: 0;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

    .trust-bar {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .customer-service {
        padding: 32px 20px;
    }

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

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

    .hero-tags {
        gap: 8px;
    }

    .hero-sm {
        padding: 40px 0 28px;
    }

    .hero-sm .hero-title {
        font-size: 1.6rem;
    }

    .faq-category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

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

    .pricing-grid.single {
        max-width: 100%;
    }

    .step-card {
        gap: 16px;
        padding: 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .steps-timeline::before {
        left: 24px;
    }

    .hero-avatars {
        flex-wrap: wrap;
    }
}
