* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e3a5f;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1e3a5f;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
   
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
   
}

.nav-links a:hover {
  
      color: #fb9600;
}

/* Hero Section */
.hero {
    margin-top: 72px;
    padding: 80px 0;
    text-align: center;
    background: #fafafa;
}

.hero-icon {
    width: 100px;
    height: 100px;
    background: #f90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.hero-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.store-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.store-btn {
    background: #000;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.stats-preview {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-item svg {
    width: 20px;
    height: 20px;
    fill: #f90;
}

/* Features */
.features {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f90;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Full Features */
.full-features {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.full-features h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.full-features > .container > p {
    color: #666;
    margin-bottom: 50px;
}

.full-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.full-feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.full-feature-card:hover {
    transform: translateY(-3px);
}

.full-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f90;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.full-feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1e3a5f;
}

.full-feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Why Mobile */
.why-mobile {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.why-mobile h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-mobile > .container > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-3px);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: #f90;
}

.why-card h3 {
    margin-bottom: 10px;
    color: #1e3a5f;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Stats Bar */
.stats-bar {
    background: #1e3a5f;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f90;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.how-it-works > .container > p {
    color: #666;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #f90;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reviews > .container > p {
    color: #666;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #f90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 50px;
}

.review-name {
    font-weight: 600;
    color: #1e3a5f;
}

.review-role {
    font-size: 0.85rem;
    color: #666;
}

.review-text {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-stars {
    color: #f90;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

/* QR Section */
.qr-section {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.qr-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.qr-section > .container > p {
    color: #666;
    margin-bottom: 50px;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.qr-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.qr-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.qr-placeholder svg {
    width: 100px;
    height: 100px;
    fill: #333;
}

.qr-card p {
    color: #666;
    font-size: 0.9rem;
}

.qr-or {
    color: #666;
    margin: 30px 0;
    font-size: 1rem;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trial-banner {
    background: #f90;
    color: white;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card.popular {
    border-color: #f90;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f90;
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.price {
    font-size: 2.5rem;
    color: #f90;
    font-weight: bold;
    margin-bottom: 5px;
}

.price-period {
    color: #666;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #1e3a5f;
    background: white;
    color: #1e3a5f;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: #1e3a5f;
    color: white;
}

.pricing-card.popular .pricing-btn {
    background: #f90;
    border-color: #f90;
    color: white;
}

.pricing-card.popular .pricing-btn:hover {
    background: #e68a00;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq > .container > p {
    color: #666;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    color: #1e3a5f;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    fill: #f90;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e3a5f;
    text-align: center;
    color: white;
}

.cta-section .hero-icon {
    background: transparent;
    border: 3px solid #f90;
    width: 80px;
    height: 100px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.cta-section .hero-icon svg {
    width: 40px;
    height: 60px;
    fill: #f90;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section > .container > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-section .store-btn {
    background: white;
    color: #1e3a5f;
}

.cta-section .store-btn svg {
    fill: #1e3a5f;
}

.cta-section .store-btn:hover {
    background: #f0f0f0;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-features .check {
    color: #f90;
    font-weight: bold;
}

/* Footer */
footer {
    background: #0f1f33;
    color: white;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #f90;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .pricing-card.popular { transform: scale(1); }
    .stats-grid, .why-grid { grid-template-columns: 1fr; }
    .full-features-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}