/* ==========================================================================
   Reporter Software — stylesheet
   Design tokens
   Color   : ink #0F2A2E · teal #00A3AE · teal-dark #076B74 · amber #E1A339
             paper #FBFAF7 · sand #F1EEE4 · slate #55635F · line #E3E0D4
   Type    : display "Baloo Da 2" (Bengali-friendly, rounded, confident)
             body    "Noto Sans Bengali" (Bangla + Latin)
   Layout  : left-aligned content blocks, 1180px content width,
             split hero (message / trial form), zig-zag feature rows
   ========================================================================== */

:root {
  --ink: #0f2a2e;
  --ink-70: rgba(15, 42, 46, 0.7);
  --teal: #00a3ae;
  --teal-dark: #076b74;
  --teal-tint: #e4f6f7;
  --amber: #e1a339;
  --amber-tint: #fbf1de;
  --paper: #fbfaf7;
  --sand: #f1eee4;
  --slate: #55635f;
  --line: #e3e0d4;
  --white: #ffffff;
  --danger: #c14a3c;

  --font-display: "Baloo Da 2", "Noto Sans Bengali", "Hind Siliguri", sans-serif;
  --font-body: "Noto Sans Bengali", "Hind Siliguri", "Inter", sans-serif;

  --wrap: 1180px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 2px 4px rgba(15, 42, 46, 0.05), 0 12px 28px -14px rgba(15, 42, 46, 0.22);
  --shadow-pop: 0 20px 45px -18px rgba(15, 42, 46, 0.35);
  --section-y: clamp(56px, 8vw, 104px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1.3em; }
.white{
  color: white;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.icon { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.15em; margin-inline-end: 0.4em; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

/* Grid items default to a content-based minimum width (min-width: auto),
   which lets an image's native intrinsic size force its track wider than
   the viewport instead of shrinking with max-width:100%. Resetting grid/flex
   item children to min-width:0 lets every column below shrink properly
   on tablet-width screens. */
.hero__grid > *, .why-grid > *, .feature-row > *, .about-grid > *,
.card-grid > *, .contact-grid > *, .support-grid > *, .testimonial-grid > *,
.footer__grid > *, .checklist > * {
  min-width: 0;
}
.section { padding-block: var(--section-y); }
.section--alt { background: var(--sand); }
.section--dark { background: var(--ink); color: #dfeceb; }
.section--dark h2, .section--dark h3 { color: #ffffff; }

.eyebrow-block { text-align: center; margin-bottom: 40px; }
.eyebrow-block h2 { font-size: clamp(24px, 3vw, 32px); }
.eyebrow-block p { color: var(--slate); font-size: 1.05em; }
.section--dark .eyebrow-block p { color: #c7dbd9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, background-color 0.15s ease, border-color .15s ease, color .15s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: inherit; }
.btn--ghost:hover { border-color: #fff; }
.btn--outline { background: transparent; border-color: var(--teal); color: var(--teal-dark); }
.btn--outline:hover { background: var(--teal-tint); }
.btn--small { padding: 9px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Topbar + Header
   ========================================================================== */
.topbar { background: var(--ink); color: #cfe4e1; font-size: 0.85rem; }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; flex-wrap: wrap; padding-block: 6px; }
.topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contact a { color: #cfe4e1; display: inline-flex; align-items: center; }
.topbar__contact a:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__social { display: flex; gap: 10px; }
.topbar__social a { color: #cfe4e1; display: inline-flex; }
.topbar__social a:hover { color: var(--amber); }
.topbar__lang a { color: #cfe4e1; }
.topbar__lang a:hover { color: #fff; }
@media (max-width: 640px) { .topbar__email, .topbar__phone { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(15,42,46,0.4); }
.site-header__row { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; gap: 20px; }
.brand__logo { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-menu { display: flex; align-items: center; gap: 26px; font-weight: 600; }
.main-menu a { color: var(--ink); position: relative; padding-block: 4px; }
.main-menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--teal); transform: scaleX(0); transition: transform 0.2s ease;
}
.main-menu a:hover::after, .main-menu a.is-active::after { transform: scaleX(1); }
.main-menu a.is-active { color: var(--teal-dark); }
.main-nav__cta { white-space: nowrap; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line); border-radius: var(--radius-s);
  cursor: pointer;
}
.nav-toggle__bar { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; z-index:1;}
  .main-nav { gap: 12px; }
  .main-menu {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); height: 100vh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 90px 28px 28px; gap: 22px; box-shadow: var(--shadow-pop);
    transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto;
  }
  .main-menu.is-open { transform: translateX(0); }
  .main-nav__cta { display: none; }
  body.nav-open { overflow: hidden; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--ink) 0%, #123c40 30%);
  color: #eaf5f4;
  padding-block: clamp(48px, 7vw, 88px);
  overflow: clip;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); padding: 6px 14px; border-radius: 999px;
  font-size: 0.85rem; margin-bottom: 22px; color: #bfe0dd;
}
.hero h1 { color: #fff; font-size: clamp(30px, 4.2vw, 46px);  }
.hero__lede { font-size: 1.15rem; color: #cfe4e1; max-width: 56ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-block: 26px 30px; }
.hero__rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: #cfe4e1; font-size: 0.95rem; }
.hero__stars { color: var(--amber); letter-spacing: 2px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: #a9c8c4; font-size: 0.9rem; }
.hero__badges li { display: flex; align-items: center; }

.hero__video { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-pop); margin-top: 30px; aspect-ratio: 16/9; background: #06181a; }
.hero__video iframe { width: 100%; height: 100%; border: 0; }

.trial-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius-l);
  padding: 28px; box-shadow: var(--shadow-pop); border: 1px solid var(--line);
}
.trial-card__eyebrow { text-align: center; font-size: 0.85rem; color: var(--slate); text-decoration: underline; text-underline-offset: 4px; margin-bottom: 6px; }
.trial-card h2 { text-align: center; color: var(--teal-dark); font-size: 1.5rem; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 11px 13px; border-radius: var(--radius-s); border: 1.5px solid var(--line);
  font: inherit; background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus { border-color: var(--teal); background: #fff; }
.form-status { margin-top: 10px; text-align: center; font-weight: 600; color: var(--teal-dark); }
.trial-card__note { text-align: center; font-size: 0.82rem; color: var(--slate); margin-top: 12px; margin-bottom: 0; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .trial-card { max-width: 480px; }
}

/* ==========================================================================
   Trust / stat strip
   ========================================================================== */   
.trust-strip { padding-top: 40px; }
.trust-strip__row { display: flex; flex-wrap: wrap; gap: 28px 44px; justify-content: space-between; align-items: center; padding-block: 22px; }
.trust-strip__item { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.trust-strip__item .icon { color: var(--teal); width: 1.3em; height: 1.3em; }
.trust-strip__item {
  padding: 5px 10px;
  background-color: #dafdfd;  
}
@media (max-width: 560px) { .trust-strip { padding-top: 40px; } }



/* ==========================================================================
   Checklist ("Why Reporter")
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.checklist { display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.05rem; }
.checklist .icon-tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-dark);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
}
.why-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } .why-media { order: -1; } }

/* ==========================================================================
   Use-cases / industries strip
   ========================================================================== */
.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.industries li {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 0.92rem; color: var(--ink);
}

/* ==========================================================================
   Feature rows (zig-zag)
   ========================================================================== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.feature-row + .feature-row { margin-top: 72px; }
.feature-row__media img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.feature-row__body .tag { display: inline-block; background: var(--teal-tint); color: var(--teal-dark); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.02em; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.feature-row__body h3 { font-size: 1.5rem; }
.feature-row__body p { color: var(--slate); font-size: 1.02rem; }
mark { background: #dafdfd; color: var(--ink); padding: 0 3px; border-radius: 3px; }
.feature-row--reverse .feature-row__media { order: 2; }
@media (max-width: 860px) {
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__media { order: -1; }
}

/* ==========================================================================
   Cards grid (special features / support)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 26px; box-shadow: var(--shadow-card);
}
.feature-card .icon-badge {
  width: 46px; height: 46px; border-radius: var(--radius-s); background: var(--teal-tint); color: var(--teal-dark);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card .icon-badge .icon { width: 1.4em; height: 1.4em; margin: 0; }
.feature-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--slate); font-size: 0.96rem; margin: 0; }
@media (max-width: 860px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.support-item { display: flex; gap: 14px; }
.support-item .icon-badge { flex: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--amber); display: inline-flex; align-items: center; justify-content: center; }
.support-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.support-item p { color: #bcd6d2; font-size: 0.92rem; margin: 0; }
@media (max-width: 860px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .support-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); background: #fff; }
.testimonial-card img { width: 100%; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   About / partner
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 46px; align-items: center; }
.about-grid img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 14px; max-width: 860px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--teal-dark); flex: none; line-height: 1; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; color: var(--slate); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 26px; text-align: center; box-shadow: var(--shadow-card); }
.contact-card .icon-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-dark); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { color: var(--slate); margin: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff; border-radius: var(--radius-l); padding: clamp(32px, 5vw, 56px);
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #dff4f2; margin: 0; }
.cta-band .btn--primary { background: #fff; color: var(--teal-dark); }
.cta-band .btn--primary:hover { background: var(--amber-tint); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #b9d3d0; padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 40px; }
.footer__col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer__col ul {  gap: 10px; }
.footer__col a { color: #b9d3d0; font-size: 0.94rem; }
.footer__col a:hover { color: #fff; }
.footer__brand p { color: #a3c1bd; font-size: 0.92rem; margin-block: 14px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); align-items: center; justify-content: center; }
.footer__contact address { font-style: normal; font-size: 0.92rem; line-height: 1.9; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 18px; }
.footer__bottom-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 0.85rem; color: #93b3af; }
.dmca-badge { color: #93b3af; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Misc
   ========================================================================== */
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-s); z-index: 100; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

#back-to-top {
  position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-pop); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s; cursor: pointer; z-index: 50;
}
#back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }




/* Trust signal below the main submit button */
.form-trust-signal {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 12px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-trust-signal .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}







/* ==========================================================================
   Reporter Software - Pricing & Features Stylesheet
   ========================================================================== */

:root {
  --primary: #0f2a2e;
  --primary-light: #163d43;
  --accent: #00897b;
  --accent-hover: #00695c;
  --bg-main: #f8f9fa;
  --bg-alt: #ffffff;
  --text-main: #2d3748;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

/* Base Layout Container */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.section-intro h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Baloo Da 2', cursive, sans-serif;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Pricing Intro Header */
.pricing-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-intro h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: 'Baloo Da 2', cursive, sans-serif;
}

.pricing-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   Plans / Pricing Cards Grid
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.plan-card--highlight {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.plan-card--highlight::before {
  content: "সবচেয়ে জনপ্রিয়";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.plan-card__header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.plan-card__header h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-price__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.plan-price__amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-price__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.plan-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px dashed #edf2f7;
}

.plan-list li:last-child {
  border-bottom: none;
}

.plan-list li.is-muted {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 10px;
}

.plan-card__footer {
  margin-top: auto;
}

/* ==========================================================================
   Extra Features Grid (Professional Cards)
   ========================================================================== */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.extra-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.extra-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.extra-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.extra-card__head h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.extra-card__price {
  background: #e6f4f1;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.extra-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Add-ons Grid
   ========================================================================== */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.addon-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.addon-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.addon-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.addon-card__head h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.addon-card__price {
  background: #edf2f7;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.addon-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   CTA Band Section
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Baloo Da 2', cursive, sans-serif;
}

.cta-band p {
  color: #cbd5e1;
  font-size: 1rem;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--primary);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

/* Utilities */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

@media (max-width: 768px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}




/* ==========================================================================
   Reporter Software - Pricing & Features Stylesheet
   ========================================================================== */

:root {
  --primary: #0f2a2e;
  --primary-light: #163d43;
  --accent: #00897b;
  --accent-hover: #00695c;
  --bg-main: #f8f9fa;
  --bg-alt: #ffffff;
  --text-main: #2d3748;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

/* Base Layout Container */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.section-intro h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Baloo Da 2', cursive, sans-serif;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Pricing Intro Header */
.pricing-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-intro h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: 'Baloo Da 2', cursive, sans-serif;
}

.pricing-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   Plans / Pricing Cards Grid
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.plan-card--highlight {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.plan-card--highlight::before {
  content: "সবচেয়ে জনপ্রিয়";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.plan-card__header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.plan-card__header h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-price__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.plan-price__amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-price__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.plan-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px dashed #edf2f7;
}

.plan-list li:last-child {
  border-bottom: none;
}

.plan-list li.is-muted {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 10px;
}

.plan-card__footer {
  margin-top: auto;
}

/* ==========================================================================
   Extra Features Grid (Professional Cards)
   ========================================================================== */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.extra-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.extra-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.extra-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.extra-card__head h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.extra-card__price {
  background: #e6f4f1;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.extra-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Add-ons Grid
   ========================================================================== */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.addon-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.addon-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.addon-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.addon-card__head h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.addon-card__price {
  background: #edf2f7;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.addon-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   CTA Band Section
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Baloo Da 2', cursive, sans-serif;
}

.cta-band p {
  color: #cbd5e1;
  font-size: 1rem;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--primary);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

/* Utilities */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

@media (max-width: 768px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}







/* ==========================================================================
   Facebook Review Screenshots Grid Styles
   ========================================================================== */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.screenshot-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.screenshot-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.screenshot-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-tag {
  font-size: 0.78rem;
  background: #e6f4f1;
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.icon-fb-small {
  width: 18px;
  height: 18px;
  fill: #1877f2;
}

.screenshot-img-wrapper {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-img-wrapper img {
  transform: scale(1.02);
}








/* ---- Button loading state ---- */

#trial-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

#trial-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.btn-spinner {
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: btn-spin 0.7s linear infinite;
}

/* The [hidden] attribute alone loses to the class selector above
   (same specificity, but this stylesheet loads after the UA default),
   so it needs to be stated explicitly here. */
.btn-spinner[hidden] {
  display: none;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-spinner {
    animation-duration: 1.4s;
  }
}

/* ---- Modal ---- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: modal-pop 0.18s ease-out;
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .modal { animation: none; }
}

.modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #888;
  padding: 0.25rem;
}

.modal__close:hover,
.modal__close:focus-visible {
  color: #333;
}

.modal__icon {
  font-size: 2.25rem;
  margin: 0 0 1rem;
  line-height: 1;
}

.modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.modal__message {
  margin: 0 0 1.5rem;
  color: #555;
  line-height: 1.5;
}

.modal--success .modal__title { color: #00A8B6; }
.modal--error .modal__title { color: #c1361c; }

/* Visible keyboard focus for accessibility */
.modal__close:focus-visible,
#trial-modal-ok:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}