*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Georgia','Times New Roman',Times,serif;background:#f8f9fa;color:#1a1a1a;line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.site-shell{min-height:100vh;display:flex;flex-direction:column;background:#fff}

/* Main Navbar */
.main-navbar{
  background:#fff;border-bottom:2px solid #b91c1c;
  position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
  margin-top:1rem;
}
.navbar-container{
  max-width:1200px;margin:0 auto;padding:0 1.25rem;
  display:flex;align-items:center;justify-content:center;
  height:60px;
}
.navbar-menu{
  display:flex;list-style:none;margin:0;padding:0;gap:.5rem;
  overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;
}
.navbar-menu::-webkit-scrollbar{display:none}
.navbar-menu li{margin:0;flex-shrink:0}
.nav-link{
  display:block;padding:1rem 1.5rem;color:#333;font-weight:600;
  font-family:'Arial',sans-serif;font-size:.95rem;
  text-decoration:none;transition:color .2s,background .2s;
  border-bottom:3px solid transparent;white-space:nowrap;
}
.nav-link:hover{color:#b91c1c;background:#fef2f2}
.nav-link.active{
  color:#b91c1c;border-bottom-color:#b91c1c;
  background:#fef2f2;
}

/* Section Content */
.content-section{
  padding:3rem 0;background:#fff;min-height:calc(100vh - 60px);
}
.section-inner{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section-title{
  font-size:2.5rem;font-weight:900;color:#000;
  font-family:'Georgia','Times New Roman',Times,serif;
  margin:0 0 1.5rem;text-align:center;border-bottom:3px solid #b91c1c;
  padding-bottom:1rem;display:flex;align-items:center;justify-content:center;gap:1rem;
}
.section-title .title-cta{
  font-size:.9rem;padding:.5rem 1rem;margin-left:auto;
  font-family:'Arial',sans-serif;font-weight:600;white-space:nowrap;
}
.section-intro{
  font-size:1.2rem;color:#444;line-height:1.7;
  text-align:center;max-width:800px;margin:0 auto 2.5rem;
  font-family:'Georgia',serif;
}

/* Section Grid */
.section-grid{
  display:grid;grid-template-columns:2fr 1fr;gap:2.5rem;
}
.section-main{font-family:'Georgia',serif}
.section-sidebar{font-family:'Arial',sans-serif}

/* About Features */
.about-features{display:flex;flex-direction:column;gap:2rem;margin-top:2rem}
.about-feature{
  display:flex;gap:1.5rem;align-items:flex-start;
  padding:1.5rem;background:#f8f9fa;border-left:4px solid #b91c1c;
  border-radius:4px;
}
.feature-number{
  font-size:2.5rem;font-weight:900;color:#b91c1c;
  font-family:'Arial',sans-serif;min-width:60px;
}
.about-feature h3{
  margin:0 0 .5rem;font-size:1.2rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;
}
.about-feature p{margin:0;color:#555;line-height:1.6}

/* Products Grid */
.products-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  margin-top:2rem;
}
.product-card{
  background:#f8f9fa;border:1px solid #e5e7eb;padding:1.5rem;
  border-radius:4px;transition:border-color .2s,box-shadow .2s;
  text-align:center;
}
.product-card:hover{border-color:#b91c1c;box-shadow:0 4px 12px rgba(185,28,28,.15)}
.product-icon{font-size:3rem;display:block;margin-bottom:1rem}
.product-card h3{
  margin:0 0 .75rem;font-size:1.1rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;
}
.product-card p{margin:0;font-size:.9rem;color:#555;line-height:1.5}

/* Guide Steps */
.guide-steps{display:flex;flex-direction:column;gap:1.5rem;margin-top:2rem}
.guide-step{
  display:flex;gap:1.5rem;align-items:flex-start;
  padding:1.5rem;background:#f8f9fa;border-radius:4px;
  border-left:4px solid #b91c1c;
}
.step-number{
  font-size:2rem;font-weight:900;color:#b91c1c;
  font-family:'Arial',sans-serif;min-width:50px;height:50px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;border:2px solid #b91c1c;border-radius:50%;
}
.step-content h3{
  margin:0 0 .5rem;font-size:1.2rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;
}
.step-content p{margin:0;color:#555;line-height:1.6}
.guide-cta{text-align:center;padding:2rem 0;margin-top:2rem}

/* Pricing Section */
.pricing-section{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem;
  max-width:1200px;margin-left:auto;margin-right:auto;
}
.pricing-card{
  background:#fff;border:2px solid #e5e7eb;border-radius:8px;
  padding:2rem;width:100%;
  box-shadow:0 4px 16px rgba(0,0,0,.1);
}
.pricing-card.featured{
  border-color:#b91c1c;box-shadow:0 8px 24px rgba(185,28,28,.2);
}
.pricing-header{text-align:center;margin-bottom:2rem}
.pricing-badge{
  display:inline-block;background:#b91c1c;color:#fff;
  padding:.4rem 1rem;font-size:.85rem;font-weight:700;
  border-radius:20px;margin-bottom:1rem;text-transform:uppercase;
  letter-spacing:.5px;
}
.pricing-header h3{
  margin:0 0 1rem;font-size:1.5rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;
}
.pricing-amount{
  display:flex;align-items:center;justify-content:center;gap:5px;
  margin-bottom:.5rem;
}
.currency{font-size:2rem;font-weight:700;color:#b91c1c}
.price{font-size:4rem;font-weight:900;color:#b91c1c;line-height:1}
.period{font-size:1.2rem;color:#666;font-weight:500}
.pricing-note{margin:.5rem 0 0;font-size:.9rem;color:#666;font-style:italic}
.pricing-features{margin-bottom:2rem}
.features-list{margin:0;padding:0;list-style:none}
.features-list li{
  display:flex;align-items:center;gap:.75rem;padding:.75rem 0;
  color:#333;font-size:.95rem;border-bottom:1px solid #f3f4f6;
}
.features-list li:last-child{border-bottom:0}
.pricing-cta{text-align:center}
.pricing-info{
  margin-top:3rem;padding:2rem;background:#f8f9fa;border-radius:4px;
}
.pricing-info h3{
  margin:0 0 1rem;font-size:1.3rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;border-bottom:2px solid #b91c1c;
  padding-bottom:.5rem;
}
.info-list{margin:0;padding:0;list-style:none}
.info-list li{
  padding:.75rem 0;color:#333;font-size:.95rem;
  border-bottom:1px solid #e5e7eb;
}
.info-list li:last-child{border-bottom:0}
.info-list strong{color:#b91c1c;font-weight:600}

/* Policy Content */
.policy-content{
  max-width:900px;margin:0 auto;
}
.policy-section{
  margin-bottom:2.5rem;padding-bottom:2rem;
  border-bottom:1px solid #e5e7eb;
}
.policy-section:last-child{
  border-bottom:none;margin-bottom:0;padding-bottom:0;
}
.policy-section h3{
  font-size:1.4rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;margin:0 0 1rem;
}
.policy-section p{
  font-size:1rem;color:#444;line-height:1.7;margin-bottom:1rem;
  font-family:'Georgia',serif;
}
.policy-list{
  margin:0;padding:0 0 0 1.5rem;list-style:disc;
}
.policy-list li{
  font-size:1rem;color:#444;line-height:1.6;margin-bottom:.75rem;
  font-family:'Georgia',serif;
}
.policy-list ul{
  margin:.5rem 0;padding:0 0 0 1.5rem;list-style:circle;
}
.policy-list ul li{
  font-size:.95rem;margin-bottom:.5rem;
}
.policy-last-updated{
  text-align:center;color:#666;font-style:italic;
  font-size:.9rem;margin-top:2rem;padding-top:1.5rem;
  border-top:1px solid #e5e7eb;
}

/* Main panel */
.panel{display:flex;flex-direction:column;flex:1}

/* Hero */
.hero{
  flex:1;display:flex;align-items:flex-start;
  padding:0;background:#fff;
}
.hero-inner{max-width:1200px;margin:0 auto;width:100%;padding:2rem 1.25rem}

/* Newspaper Masthead */
.newspaper-masthead{
  text-align:center;border-bottom:3px solid #b91c1c;padding-bottom:1.5rem;margin-bottom:2rem;
}
.masthead-top{
  display:flex;justify-content:space-between;align-items:center;
  font-family:'Arial',sans-serif;font-size:.75rem;color:#666;text-transform:uppercase;
  letter-spacing:1px;margin-bottom:.5rem;
}
.edition-tag{background:#b91c1c;color:#fff;padding:2px 8px;font-weight:700}
.date-line{color:#666}
.masthead-title{
  margin:0;font-size:clamp(2.5rem,6vw,4rem);font-weight:900;color:#000;
  font-family:'Georgia','Times New Roman',Times,serif;letter-spacing:-1px;line-height:1;
}
.masthead-tagline{
  margin:.5rem 0 0;font-size:1.1rem;color:#666;font-style:italic;
  font-family:'Georgia',serif;
}
.masthead-cta{
  margin-top:1rem;text-align:center;
}
.masthead-cta .btn-primary{
  font-size:1rem;padding:.75rem 1.5rem;
}

/* Hero Grid */
.hero-grid{
  display:grid;grid-template-columns:1.8fr 1fr;gap:2.5rem;margin-top:1rem;
}

/* Main Content */
.hero-main{font-family:'Georgia',serif}
.headline-box{border-left:4px solid #b91c1c;padding-left:1.5rem;margin-bottom:2rem}
.main-headline{
  margin:0 0 1rem;font-size:clamp(1.8rem,4vw,2.5rem);font-weight:700;color:#000;
  line-height:1.2;font-family:'Georgia','Times New Roman',Times,serif;
}
.deck{
  margin:0;font-size:1.15rem;color:#444;line-height:1.7;max-width:45rem;
}

/* Features Grid */
.features-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:2.5rem;
}
.feature-item{
  background:#f8f9fa;border:1px solid #e5e7eb;padding:1.25rem;border-radius:4px;
  transition:border-color .2s,box-shadow .2s;
}
.feature-item:hover{border-color:#b91c1c;box-shadow:0 2px 8px rgba(185,28,28,.1)}
.feature-icon{font-size:2rem;display:block;margin-bottom:.5rem}
.feature-item h3{
  margin:0 0 .5rem;font-size:1rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;text-transform:uppercase;letter-spacing:.5px;
}
.feature-item p{margin:0;font-size:.9rem;color:#555;line-height:1.5}

/* Dashboard Showcase */
.dashboard-showcase{
  margin-top:2.5rem;
}
.dashboard-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
}
.dashboard-item{
  background:#fff;border:1px solid #e5e7eb;border-radius:8px;
  padding:1rem;box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.dashboard-item h3{
  margin:0 0 1rem;font-size:1rem;font-weight:700;color:#000;
  font-family:'Arial',sans-serif;text-align:center;
}
.dashboard-img{
  width:100%;height:auto;border-radius:6px;display:block;
}

/* CTA Section */
.cta-section{text-align:center;padding:2rem 0;border-top:1px solid #e5e7eb}
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;
  background:#b91c1c;color:#fff;font-weight:700;font-size:1rem;
  padding:1rem 2rem;border-radius:4px;border:0;cursor:pointer;
  font-family:'Arial',sans-serif;text-transform:uppercase;letter-spacing:1px;
  transition:background .2s,transform .1s;
}
.btn-primary:hover{background:#991b1b;transform:translateY(-2px)}
.cta-note{margin:.75rem 0 0;font-size:.85rem;color:#666;font-style:italic}

/* Sidebar */
.hero-sidebar{font-family:'Arial',sans-serif}
.sidebar-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:4px;padding:1.5rem;margin-bottom:1.5rem;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
}
.sidebar-card h3{
  margin:0 0 1rem;font-size:1.1rem;font-weight:700;color:#000;
  border-bottom:2px solid #b91c1c;padding-bottom:.5rem;
}
.sidebar-card.highlight{
  background:#fffbeb;border:2px solid #f59e0b;
}
.sidebar-card.highlight h3{border-color:#f59e0b;color:#92400e}
.offer-text{margin:0 0 .25rem;font-size:1.3rem;font-weight:700;color:#92400e}
.offer-sub{margin:0 0 1rem;font-size:.9rem;color:#b45309;font-weight:600}
.btn-secondary{
  display:inline-block;background:#f59e0b;color:#fff;font-weight:700;font-size:.9rem;
  padding:.75rem 1.5rem;border-radius:4px;border:0;cursor:pointer;
  text-transform:uppercase;letter-spacing:.5px;transition:background .2s;
}
.btn-secondary:hover{background:#d97706}

/* Benefits List */
.benefits-list{margin:0;padding:0;list-style:none}
.benefits-list li{
  display:flex;align-items:center;gap:.75rem;padding:.6rem 0;
  color:#333;font-size:.9rem;border-bottom:1px solid #f3f4f6;
}
.benefits-list li:last-child{border-bottom:0}
.check{color:#b91c1c;font-weight:700;font-size:1.1rem}

/* Footer */
.site-footer{
  background:#1a1a1a;border-top:4px solid #b91c1c;padding:0;margin-top:auto;
  font-family:'Arial',sans-serif;
}
.footer-inner{max-width:1200px;margin:0 auto;padding:3rem 1.25rem 2rem}

/* Footer Masthead */
.footer-masthead{
  text-align:center;border-bottom:2px solid #333;padding-bottom:2rem;margin-bottom:2rem;
}
.footer-logo h2{
  margin:0;font-size:2rem;font-weight:900;color:#fff;
  font-family:'Georgia','Times New Roman',Times,serif;letter-spacing:-1px;
}
.footer-logo p{
  margin:.5rem 0 0;font-size:1rem;color:#999;font-style:italic;
}

/* Footer Grid */
.footer-grid{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem;margin-bottom:2.5rem;
}
.footer-grid h3{
  margin:0 0 1rem;font-size:1rem;color:#fff;font-weight:700;
  border-bottom:2px solid #b91c1c;padding-bottom:.5rem;
  text-transform:uppercase;letter-spacing:.5px;
}
.footer-grid p{font-size:.9rem;color:#ccc;line-height:1.6;margin-bottom:1rem}
.footer-grid ul{margin:0;padding:0;list-style:none}
.footer-grid li{margin-bottom:.75rem;font-size:.9rem;color:#ccc;line-height:1.5}
.footer-grid a:hover{color:#fff;text-decoration:underline}
.footer-grid a{color:#ccc;transition:color .2s}
.footer-grid strong{color:#fff;font-weight:600}

/* Payment Methods Section */
.payment-methods{margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid #333}
.payment-methods h4{margin:0 0 .75rem;font-size:.85rem;color:#fff;font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.razorpay-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:#2d2d2d;border:1px solid #444;border-radius:4px;padding:.6rem .9rem;
  margin-bottom:.5rem;
}
.razorpay-icon{font-size:1.2rem}
.razorpay-badge span:last-child{font-size:.85rem;color:#fff;font-weight:500}
.payment-note{margin:.5rem 0 0;font-size:.8rem;color:#999;font-style:italic}

/* Footer Bottom */
.footer-bottom{
  padding-top:2rem;border-top:2px solid #333;
}
.footer-legal{
  display:flex;justify-content:center;align-items:center;
  font-size:.85rem;color:#999;flex-wrap:wrap;gap:.5rem;
  margin-bottom:1.5rem;
}
.footer-legal a{color:#ccc;transition:color .2s;font-weight:500}
.footer-legal a:hover{color:#fff;text-decoration:underline}
.footer-legal .separator{color:#666;margin:0 .5rem}

.footer-copyright{
  text-align:center;
}
.footer-copyright p{margin:0;font-size:.85rem;color:#666}
.footer-copyright a{color:#999;transition:color .2s}
.footer-copyright a:hover{color:#fff;text-decoration:underline}

@media(max-width:860px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card{order:-1}
  .footer-grid{grid-template-columns:1fr 1fr}
  .section-grid{grid-template-columns:1fr}
  .products-grid{grid-template-columns:repeat(2,1fr)}
}

/* Tablet Responsive */
@media(max-width:860px){
  .pricing-section{
    grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:1.5rem;
  }
}

/* Mobile Responsive */
@media(max-width:768px){
  /* Navbar Mobile */
  .navbar-container{
    padding:0 1rem;justify-content:flex-start;
  }
  .navbar-menu{
    overflow-x:auto;scroll-snap-type:x mandatory;
  }
  .navbar-menu li{
    scroll-snap-align:start;
  }
  .nav-link{
    padding:.75rem 1rem;font-size:.85rem;
  }

  .hero-inner{padding:1.5rem 1rem}

  /* Newspaper Masthead */
  .newspaper-masthead{padding-bottom:1rem;margin-bottom:1.5rem}
  .masthead-top{flex-direction:column;gap:.25rem;text-align:center}
  .masthead-title{font-size:2rem}
  .masthead-tagline{font-size:.9rem}
  
  /* Hero Grid */
  .hero-grid{display:flex;flex-direction:column;gap:2rem}
  
  /* Main Content */
  .hero-main{order:1}
  .headline-box{border-left-width:3px;padding-left:1rem}
  .main-headline{font-size:1.6rem}
  .deck{font-size:1rem}
  
  /* Features Grid */
  .features-grid{grid-template-columns:1fr;gap:1rem}
  .feature-item{padding:1rem}
  .feature-icon{font-size:1.5rem}
  .feature-item h3{font-size:.9rem}

  /* Dashboard Showcase Mobile */
  .dashboard-showcase{margin-top:2rem}
  .dashboard-grid{grid-template-columns:1fr;gap:1rem}
  .dashboard-item{padding:.75rem}
  .dashboard-item h3{font-size:.9rem;margin-bottom:.75rem}
  .dashboard-img{border-radius:4px}
  .feature-item p{font-size:.85rem}
  
  /* CTA Section */
  .cta-section{padding:1.5rem 0}
  .btn-primary{width:100%;padding:.9rem 1.5rem;font-size:.95rem}
  .cta-note{font-size:.8rem}
  
  /* Sidebar */
  .hero-sidebar{order:2}
  .sidebar-card{padding:1.25rem;margin-bottom:1.25rem}
  .sidebar-card h3{font-size:1rem;margin-bottom:.75rem}
  .benefits-list li{font-size:.85rem;padding:.5rem 0}
  .offer-text{font-size:1.1rem}
  .offer-sub{font-size:.85rem}
  .btn-secondary{width:100%;padding:.65rem 1.25rem;font-size:.85rem}
  
  /* Footer */
  .site-footer{padding:2rem 1rem 1.5rem}
  .footer-inner{padding:2rem 1rem 1.5rem}

  .footer-masthead{padding-bottom:1rem;margin-bottom:1.5rem}
  .footer-logo h2{font-size:1.5rem}
  .footer-logo p{font-size:.9rem}

  .footer-grid{grid-template-columns:1fr;gap:1.5rem;margin-bottom:2rem}
  .footer-grid h3{font-size:.9rem;margin-bottom:.75rem}
  .footer-grid p{font-size:.85rem}
  .footer-grid li{font-size:.85rem;margin-bottom:.5rem}

  .section-title{
    flex-direction:column;gap:.5rem;text-align:center;
  }
  .section-title .title-cta{
    margin-left:0;font-size:.8rem;padding:.4rem .8rem;
  }

  .payment-methods{margin-top:1rem;padding-top:1rem}
  .razorpay-badge{padding:.5rem .75rem;font-size:.8rem}
  .payment-note{font-size:.75rem}

  .footer-bottom{padding-top:1.5rem}
  .footer-legal{font-size:.75rem;gap:.25rem;flex-wrap:wrap;justify-content:center;margin-bottom:1rem}
  .footer-legal .separator{margin:0 .25rem}
  .footer-copyright p{font-size:.75rem}

  /* Section Content Mobile */
  .content-section{padding:2rem 0}
  .section-inner{padding:0 1rem}
  .section-title{font-size:1.8rem;margin-bottom:1rem}
  .section-intro{font-size:1rem;margin-bottom:1.5rem}

  /* About Features Mobile */
  .about-features{gap:1.5rem;margin-top:1.5rem}
  .about-feature{padding:1rem;flex-direction:column;gap:1rem}
  .feature-number{font-size:2rem;min-width:40px}
  .about-feature h3{font-size:1rem}
  .about-feature p{font-size:.9rem}

  /* Products Grid Mobile */
  .products-grid{grid-template-columns:1fr;gap:1rem;margin-top:1.5rem}
  .product-card{padding:1rem}
  .product-icon{font-size:2rem;margin-bottom:.75rem}
  .product-card h3{font-size:1rem}
  .product-card p{font-size:.85rem}

  /* Guide Steps Mobile */
  .guide-steps{gap:1rem;margin-top:1.5rem}
  .guide-step{padding:1rem;flex-direction:column;gap:1rem}
  .step-number{font-size:1.5rem;min-width:40px;height:40px}
  .step-content h3{font-size:1rem}
  .step-content p{font-size:.9rem}
  .guide-cta{padding:1.5rem 0;margin-top:1.5rem}
  .guide-cta .btn-primary{width:100%;padding:.9rem 1.5rem;font-size:.95rem}

  /* Pricing Section Mobile */
  .pricing-section{
    grid-template-columns:1fr;gap:1.5rem;margin-top:1.5rem;
  }
  .pricing-card{padding:1.5rem}
  .pricing-header h3{font-size:1.2rem}
  .currency{font-size:1.5rem}
  .price{font-size:3rem}
  .period{font-size:1rem}
  .pricing-note{font-size:.85rem}
  .features-list li{font-size:.85rem;padding:.5rem 0}
  .pricing-info{margin-top:2rem;padding:1.5rem}
  .pricing-info h3{font-size:1.1rem}
  .info-list li{font-size:.85rem;padding:.5rem 0}
}

/* Extra Small Mobile */
@media(max-width:480px){
  .masthead-title{font-size:1.75rem}
  .main-headline{font-size:1.4rem}
  .deck{font-size:.95rem}
  
  .feature-item{padding:.875rem}
  .feature-icon{font-size:1.25rem}
  .feature-item h3{font-size:.85rem}
  .feature-item p{font-size:.8rem}
  
  .sidebar-card{padding:1rem}
  .benefits-list li{font-size:.8rem}
  
  .footer-logo h2{font-size:1.25rem}
  .footer-grid{gap:1.5rem}
}
