/* ------------------  Base  ------------------ */
:root{
  --navy: #0b1220;
  --navy-2: #0e1628;
  --accent: #ffd451; /* warm yellow like design */
  --radius-xl: 22px;
  --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
  --shadow-sm: 0 8px 20px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html,body { scroll-behavior: smooth; margin:0; padding:0; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color:#0f1524;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background: #fff;
}

.container{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-padding{ padding: 80px 0; }

/* Accent button to match brand */
.btn { display:inline-block; text-decoration:none; border-radius: 999px; padding:10px 18px; font-weight:700; }
.btn-accent{
  background: var(--accent);
  color:#111;
  border: none;
  box-shadow: 0 8px 20px rgba(255,205,64,0.12);
}
.btn-dark{
  background: #111;
  color: #fff;
  border: none;
}
.btn-light{
  background: #fff;
  color: #111;
  border: 1px solid #eef0f4;
}

/* Navbar */
.navbar .nav-link{
  font-weight:500;
  color:#202531;
}
.navbar .nav-link:hover{ color:#000; }

/* ------------------  Hero  ------------------ */
.hero{
  padding-top: 120px;   /* space for fixed navbar */
  padding-bottom: 80px;
  background: radial-gradient(1000px 600px at 10% 10%, rgba(255,212,81,.1), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(255,255,255,.07), transparent 60%),
              url("assets/hero-bg.png") center/cover no-repeat,
              var(--navy);
  position: relative;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.hero:after{
  /* soft dark overlay for readability */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.0) 0%, rgba(11,18,32,.2) 40%, rgba(11,18,32,.6) 100%);
  pointer-events:none;
}
.hero .container{ position: relative; z-index:2; }
.hero-copy h1{ line-height:1.1; margin:0 0 12px; font-size:2.6rem; color:#fff; }
.hero-copy p{ max-width: 620px; color: rgba(255,255,255,0.9); margin:0; }

.hero .hero-buttons { margin-top: 18px; display:flex; gap:12px; align-items:center; }
.hero .hero-buttons .trial-note { color: rgba(255,255,255,.85); margin-left:8px; font-size:0.95rem; }

/* Right mockup image */
.hero-mockup{
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px);
  overflow:hidden;
}
.hero-mockup img {
  display:block;
  width:100%;
  height:auto;
  max-height:520px;
  object-fit:contain;
}

/* ------------------  Why Skylitee tiles  ------------------ */
.feature-card{
  background:#fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border:1px solid #f1f1f4;
  transition: transform .25s ease, box-shadow .25s ease;
  padding: 20px;
}
.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}
.feature-icon{
  width:220px;
  object-fit:contain;
}

/* ------------------  Reports (dark)  ------------------ */
.reports-section{
  position: relative;
  background: var(--navy);
  padding: 90px 0;
  color:#fff;
}
.reports-section .decor-line{
  height: 1px;
  width: 220px;
  background: rgba(255,255,255,.25);
  position: relative;
  border-radius: 999px;
}
.reports-section .decor-line:after{
  content:"";
  position:absolute; left:50%; top:50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 4px;
  background: var(--accent);
  border-radius: 999px;
}

/* ------------------  How Skylitee Helps (Vertical tabs)  ------------------ */
.help-tabs .nav-link{
  display:flex; align-items:center;
  gap:.75rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  border:1px solid #ececf2;
  background:#fff;
  color:#111827;
  box-shadow: var(--shadow-sm);
  font-weight:600;
  position: relative;
}
.help-tabs .nav-link + .nav-link{ margin-top: .75rem; }
.help-tabs .nav-link.active{
  color:#0f1524;
  background:#fff8dd;
  border-color:#ffe7a6;
  box-shadow: 0 10px 24px rgba(255,212,81,.25);
}
.help-tabs .nav-link.active:before{
  content:"";
  position:absolute; left:-10px; top:50%;
  transform: translateY(-50%);
  width:6px; height:28px; background: var(--accent);
  border-radius: 6px;
}

/* cards inside tab panes */
.help-card{
  background:#fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border:1px solid #f1f1f4;
}

/* ------------------  FAQ  ------------------ */
.qa-tile{ border:1px solid #f0f0f2; }

/* ------------------  CTA banner  ------------------ */
.cta-banner{
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0, #fff 50%, #0b1220 50%, #0b1220 100%);
}
.cta-inner{
  background: var(--accent);
  border-radius: 20px;
  padding: 28px 28px;
  box-shadow: 0 20px 40px rgba(255,212,81,.35);
}

/* ------------------  Footer  ------------------ */
.footer{
  background: var(--navy);
  padding: 70px 0 40px;
}
.footer .footer-links a{
  color:#fff; text-decoration:none; opacity:.8;
}
.footer .footer-links a:hover{ opacity:1; }

/* subtle border color helper */
.border-white-10{ border-color: rgba(255,255,255,.1)!important; }

/* ------------------  Responsive tweaks  ------------------ */
@media (max-width: 991.98px){
  .hero{ padding-top: 100px; padding-bottom: 60px; }
  .hero-copy h1{ font-size: 2rem; }
  .hero-copy p{ font-size: 1rem; }
}

@media (max-width: 575.98px){
  .feature-card{ padding: 20px; }
  .help-tabs .nav-link span{ font-size: .95rem; }
}

/* ==========================================================
   PRICING PAGE STYLES (FINAL REFINEMENT)
   ========================================================== */

/* ---------- Navbar active state ---------- */
.navbar .nav-link.active {
  background: var(--accent);
  border-radius: 10px;
  color: #111 !important;
  padding: 6px 14px;
  font-weight: 600;
}

/* ---------- Pricing Hero ---------- */
.hero-section-pricing {
  padding-top: 120px;  /* space for fixed navbar */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(6,8,12,0.98), rgba(11,18,32,0.98));
  color: #fff;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.hero-section-pricing h1 {
  font-size: 2.6rem;
  line-height: 1.05;
  font-weight: 700;
}
.hero-section-pricing p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
}
.hero-section-pricing .hero-img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(8px);
}
@media (min-width: 992px){
  .hero-section-pricing .hero-img { max-width: 540px; margin-left: auto; }
}

/* ---------- Why Pricing Simple ---------- */
.why-pricing .img-fluid { max-width: 380px; }

/* ---------- Trial Plans ---------- */
.trial-plans-section {
  margin-top: -36px;
  padding: 64px 0 90px;
  background: linear-gradient(180deg, rgba(11,18,32,1), rgba(7,9,12,1));
  border-radius: 22px 22px 0 0;
  color: #fff;
}
.toggle-tabs .nav-link {
  color: rgba(255,255,255,0.95);
  border-radius: 999px;
  padding: 8px 20px;
  margin: 0 6px;
  border: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  font-weight: 600;
  transition: all .18s ease;
}
.toggle-tabs .nav-link.active {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

/* Plan card */
.plan-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(2,6,23,0.25);
  color: #fff;
  transition: all .28s ease;
  min-height: 360px;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2,6,23,0.36);
}
.plan-card .price {
  font-size: 2.05rem;
  font-weight: 800;
  color: var(--accent);
  margin: .6rem 0 1rem;
}
.plan-card ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.plan-card ul li {
  color: rgba(255,255,255,0.94);
  font-weight: 500;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-card ul li .check {
  width: 26px; height: 26px;
  background: rgba(255,213,81,0.12);
  color: var(--accent);
  border-radius: 50%;
  font-size: 13px;
  display: inline-flex; align-items:center; justify-content:center;
}
.plan-card .btn-light {
  background: #fff;
  color: #111;
  border: none;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.18);
}

/* ---------- Agencies & Store Owners (UPDATED LAYOUT) ---------- */
.agency-section .card {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #f1f1f4;
  box-shadow: var(--shadow-sm);
}
.agency-section .card img { border-radius: 10px; max-height:160px; object-fit:cover; }

/* New: Flexible two-row layout for "Why Agencies & Store Owners Love It"
   Row 1: left image, right content
   Row 2: left content, right image
   We keep backward compatibility with existing .agencies .flex .image-block selectors
*/
.agencies {
  padding: 80px 20px;
  --gap: 40px;
}
.agencies .grid-row {
  display:flex;
  gap: var(--gap);
  align-items:center;
  flex-wrap:wrap;
}
.agencies .grid-row.reverse {
  flex-direction: row-reverse;
}
.agencies .grid-row .text {
  flex: 1 1 420px;
  min-width: 280px;
}
.agencies .grid-row .image,
.agencies .image-block {
  flex: 1 1 420px;
  min-width: 260px;
  text-align: center;
}
.agencies .image-block img,
.agencies .grid-row .image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: inline-block;
  border-radius: 12px;
}

/* textual lists inside the text pane */
.agencies .text h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.agencies .text .sub-section {
  margin-bottom: 20px;
}
.agencies .text ul {
  list-style: none;
  padding-left: 0;
}
.agencies .text ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}
.agencies .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Backwards compatible small variant used earlier (.flex) */
.agencies .flex { display:flex; gap:var(--gap); align-items:center; flex-wrap:wrap; }
.agencies .flex .text-block { flex:1; }
.agencies .flex .image-block { flex:1; }

/* ---------- Testimonials ---------- */
.testimonials-wrapper {
  padding: 80px 0 100px;
  background-color:#000000;
  color:#FFFFFF;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  min-height: 200px;
  position: relative;
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 8px; }
.testimonial-card p { color: #4b5563; font-style: italic; margin-bottom: 1rem; }
.testimonial-card .author { color: #111827; font-weight:600; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0);
  width: 32px;
  height: 32px;
}

/* ---------- CTA Yellow Patch (overlaps footer) ---------- */
.cta-yellow-section {
  position: relative;
  z-index: 2;
  margin-bottom: -60px; /* overlap footer */
}
.cta-yellow {
  background: linear-gradient(90deg, var(--accent), #ffd04a 60%);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 30px 80px rgba(255,205,64,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-yellow .big-price { font-size: 1.35rem; font-weight:800; color:#111; }
.cta-yellow .btn-dark { font-weight:700; border-radius:999px; padding:10px 26px; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
  .hero-section-pricing { padding-top: 100px; padding-bottom: 40px; }
  .hero-section-pricing h1 { font-size: 2rem; }
  .trial-plans-section { margin-top: -24px; padding: 40px 0; }
  .plan-card { padding: 24px; min-height: 320px; }
  .cta-yellow { flex-direction: column; text-align: center; gap: 18px; }
  .agencies .grid-row { gap: 26px; }
}
@media (max-width: 575.98px) {
  .hero-section-pricing { padding-top: 88px; padding-bottom: 32px; }
  .hero-section-pricing h1 { font-size: 1.6rem; }
  .toggle-tabs .nav-link { padding: 8px 12px; margin: 6px 4px; font-size: .95rem; }
  .plan-card { padding: 18px; border-radius: 14px; min-height: auto; }
  .plan-card .price { font-size: 1.3rem; }
  .why-pricing img { max-width: 260px; }
  .cta-yellow { padding: 32px 20px; }
  /* agencies stack vertically on small screens */
  .agencies .grid-row,
  .agencies .flex { flex-direction: column; text-align: center; }
  .agencies .grid-row.reverse { flex-direction: column; }
  .agencies .grid-row .text,
  .agencies .grid-row .image { min-width: 100%; }
}

/* ---------------------
   Features Page Styles
----------------------*/
.features-page {
  font-family: 'Inter', sans-serif;
}

/* Hero */
.features-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.features-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.features-hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.hero-buttons .trial-note {
  font-size: 0.9rem;
  color: #ccc;
}

/* Easy Language */
.easy-language {
  padding: 60px 20px;
}
.easy-language .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.easy-language .text-block {
  flex: 1;
}
.easy-language h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Prevent very tall store illustrations - constrain with object-fit */
.easy-language .image-block img,
.hero .store-illustration img,
.agencies .image-block img,
.why-pricing img,
.hero-mockup img {
  max-width: 100%;
  height: auto;
  max-height: 320px; /* prevents extremely tall images */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.features-grid .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.features-grid .section-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}
.features-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Scoped feature-card styling inside features-grid so it does not override the white tile .feature-card used elsewhere */
.features-grid .feature-card {
  background: rgba(255,255,255,0.02);
  padding: 28px 22px;
  border-radius: 18px;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(2,6,23,0.28);
  transition: transform .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.features-grid .feature-card:hover { transform: translateY(-6px); }
.features-grid .feature-card h3 {
  margin: 15px 0 8px;
  font-size: 1.1rem;
  color: #fff;
}
.features-grid .feature-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-top: auto;
}
.features-grid .feature-card img {
  max-width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

/* Agencies (compatibility kept above) */

/* Testimonials tweaks (if used inside features page) */
.testimonials-wrapper {
  padding-top: 60px;
  padding-bottom: 80px;
}
.testimonial-card { padding: 26px; min-height: 170px; }

@media (max-width: 768px) {
  .features-hero h1 {
    font-size: 2rem;
  }
  .easy-language .flex,
  .agencies .flex {
    flex-direction: column;
    text-align: center;
  }
  .features-grid .feature-card {
    text-align: center;
  }
  .features-grid .feature-card img { margin-left: auto; margin-right: auto; }
  .agencies .image-block img { margin-top: 20px; }
  .agencies ul li::before { top: 8px; }
  .hero-mockup img { max-height: 360px; }
}

/* small screens */
@media (max-width: 575.98px) {
  .features-grid { padding: 40px 16px; }
  .features-grid .grid { gap: 18px; }
  .feature-card { padding: 18px; }
  .features-grid .feature-card img { max-width: 60px; height: 60px; }
  .easy-language .image-block img { max-height: 260px; }
  .hero-mockup img { max-height: 300px; }
  .agencies .image-block img { max-width: 320px; }
}

/* =========================
   ABOUT PAGE STYLES
   ========================= */

/* The About hero reuses .hero. Next sections: Vision/Mission tiles, Values, Coming Soon, CTA */

.about-vision {
  max-width: 1180px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.tile {
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  color: #fff;
  min-height: 200px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
  position: relative;
}
.tile h3 {
  font-size: 1.45rem;
  margin: 0 0 8px;
  display:flex;
  align-items:center;
  gap:10px;
}
.tile p { color: rgba(255,255,255,0.9); line-height:1.6; margin:0; font-size:0.98rem; }

.tile--dark {
  background: linear-gradient(180deg,#0e2a49,#0b1830);
  border: 1px solid rgba(255,255,255,0.03);
}
.tile--light {
  background: linear-gradient(180deg,#d9f3ff,#cfefff);
  color: #052033;
  border: 1px solid rgba(5,32,51,0.06);
}
.tile--light p { color: rgba(5,32,51,0.9); }

/* Values grid - 3 on wide screens and responsive */
.about-values {
  max-width: 1180px;
  margin: 28px auto 16px;
  padding: 10px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background:#fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-height: 120px;
}
.value-card .vc-title { font-weight:700; margin-bottom:6px; color:#111827; }
.value-card p { color:#6b7280; margin:0; }

/* Make the second row contain two wide cards and centered on larger screens */
.about-values .wide {
  grid-column: span 2;
}

/* Coming soon / dark feature strip */
.coming-soon {
  padding: 60px 20px;
  background: linear-gradient(180deg,#0b0b0b 0%, #1f1918 60%, #2b261f 100%);
  color:#fff;
  margin-top: 36px;
}
.coming-soon .container { max-width:1200px; margin:0 auto; }
.coming-grid {
  display:flex;
  gap:20px;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;
  margin-top: 26px;
}
.coming-card {
  background: rgba(255,255,255,0.03);
  min-width: 220px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  text-align:center;
}
.coming-card h4 { margin: 10px 0 6px; color: #fff; font-size: 1.05rem; }
.coming-card p { color: rgba(255,255,255,0.75); margin:0; font-size:.95rem; }

/* small subtle icon inside coming card */
.coming-card .icon {
  width:64px; height:64px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  margin-bottom: 10px;
}

/* reuse cta-yellow-section and cta-yellow for the pricing patch */

/* =========================
   REPORTS PAGE STYLES
   ========================= */

/* Hero uses features-hero / hero-section-pricing style set — additional tweak: split layout */
.reports-hero {
  padding: 64px 20px 36px;
  color:#fff;
  background: radial-gradient(900px 420px at 10% 10%, rgba(255,212,81,.06), transparent 40%),
              linear-gradient(180deg,#000,#0b1220);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.reports-hero .container { max-width:1200px; margin:0 auto; }
.reports-hero .hero-row {
  display:flex; gap: 28px; align-items:center; flex-wrap:wrap;
}
.reports-hero .hero-left { flex:1 1 520px; min-width:280px; }
.reports-hero .hero-right { flex:1 1 420px; text-align:center; }

/* Report types heading & subtitle */
.report-types-hero {
  padding: 52px 0 20px;
  text-align: center;
  background: #fff;
}
.report-types-hero h2 {
  font-size: 1.9rem;
  margin: 6px 0 8px;
  color:#111827;
}
.report-types-hero p {
  color: #6b7280;
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Report types grid (cards) */
.report-types {
  max-width: 1200px;
  margin: 32px auto;
  padding: 10px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.report-card {
  background:#fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f1f4;
  min-height: 200px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.report-card h4 { margin:0; font-size:1.05rem; color:#111827; }
.report-card .report-desc { color:#6b7280; font-size:0.95rem; margin-top:6px; margin-bottom:10px; }
.report-card .preview {
  margin-top:auto;
  border-radius: 8px;
  overflow:hidden;
  border:1px solid #eef2f6;
  background:#fbfdff;
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.report-card .preview img { max-width:100%; max-height:72px; object-fit:contain; display:block; }

/* Center variant used for AI Recommendations (spans full width) */
.report-card.center { grid-column: 1 / -1; max-width: 720px; margin: 0 auto; }

/* How Reports Help (two-column alternating) */
.how-reports {
  padding: 60px 20px;
  max-width:1200px;
  margin: 0 auto 36px;
}
.how-reports .grid-row {
  display:flex;
  gap: 30px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom: 36px;
}
.how-reports .grid-row .image {
  flex: 1 1 420px;
  text-align:center;
  min-width:260px;
}
.how-reports .grid-row .image img {
  width:100%;
  max-width:520px;
  border-radius:14px;
  object-fit:cover;
  box-shadow: var(--shadow-sm);
}
.how-reports .grid-row .text {
  flex: 1 1 420px;
  min-width:260px;
}
.how-reports .grid-row.alt { flex-direction: row-reverse; }
.how-reports h3 { margin:0 0 12px; font-size:1.45rem; color:#0b1220; }
.how-reports p { color:#374151; margin:0 0 12px; }
.how-reports ul { list-style:none; padding-left:0; margin:0; }
.how-reports ul li { padding-left:22px; position:relative; margin-bottom:10px; color:#374151; }
.how-reports ul li:before {
  content: "";
  position:absolute; left:0; top:10px;
  width:8px; height:8px; background:var(--accent); border-radius:50%;
}

/* FAQ (accessible using details element) */
.faq {
  max-width: 920px;
  margin: 20px auto 60px;
  padding: 0 18px;
}
.faq h2 { text-align:center; margin-bottom:18px; font-size:1.6rem; color:#111827; }
.qa-tile {
  background:#fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #eef0f4;
  margin-bottom: 12px;
}
.qa-tile summary {
  list-style:none;
  cursor:pointer;
  font-weight:600;
  outline: none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.qa-tile summary::-webkit-details-marker { display:none; }
.qa-tile p { margin: 8px 0 0; color:#6b7280; }
.qa-tile[open] { box-shadow: 0 6px 18px rgba(2,6,23,0.06); }

/* small plus/minus icon using pseudo element on summary */
.qa-tile summary:after {
  content: "+";
  font-weight:700;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 6px 10px;
  color:#111;
  margin-left:12px;
}
.qa-tile[open] summary:after { content: "-"; }

/* CTA Yellow patch reuse: .cta-yellow-section / .cta-yellow */
.cta-yellow-section {
  padding: 36px 0 80px;
}
.cta-yellow {
  background: linear-gradient(90deg, var(--accent), #ffd04a 60%);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 30px 80px rgba(255,205,64,0.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.cta-yellow .big-price { font-size:1.25rem; font-weight:800; color:#111; }
.cta-yellow .sub { color: rgba(17,17,17,0.7); }

/* ------------------  Accessibility / small improvements ------------------ */
.btn-accent,
.btn-dark,
.btn-light { cursor:pointer; }

/* Responsive for About and Reports */
@media (max-width: 992px) {
  .about-vision { grid-template-columns: 1fr; padding: 12px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .report-types { grid-template-columns: repeat(2, 1fr); }
  .report-card.center { grid-column: 1 / -1; }
  .how-reports .grid-row.alt { flex-direction: column; }
  .how-reports .grid-row { flex-direction: column; }
  .cta-yellow { flex-direction: column; text-align:center; gap:12px; }
}
@media (max-width: 576px) {
  .about-values { grid-template-columns: 1fr; gap:14px; padding: 10px; }
  .report-types { grid-template-columns: 1fr; padding: 8px; }
  .reports-hero .hero-row { flex-direction: column; }
  .cta-yellow { padding: 28px 18px; }
}

/* End of file */

/* =========================================================
   === REPORTS OVERRIDES (Appended: safe, targeted changes)
   === Additions only — no existing rules above were modified
   ========================================================= */

/* Larger previews inside the Report Types cards so images are more visible (user requested) */
.report-types .report-card {
  /* slightly increase min-height for better balance with larger preview */
  min-height: 220px;
}

/* make the preview area visually dominant */
.report-types .report-card .preview {
  min-height: 120px;       /* larger preview area on desktop */
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #eef2f6;
  background: #fbfdff;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* allow larger preview images */
.report-types .report-card .preview img {
  max-height: 110px;       /* increased max height for desktop */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display:block;
}

/* center / AI card spans width and looks more prominent */
.report-types .report-card.center {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
}

/* tighten vertical spacing on mobile to remove big empty gaps */
@media (max-width: 992px) {
  .hero { padding-top: 60px; padding-bottom: 30px; }
  .easy-language { padding: 28px 12px; }
  .report-types { margin: 18px auto 28px; gap: 18px; padding: 0 12px 12px; }
  /* tablet preview size slightly smaller */
  .report-types .report-card .preview { min-height: 110px; }
  .report-types .report-card .preview img { max-height: 95px; }
  .how-reports .grid-row { gap: 22px; margin-bottom: 28px; }
  .cta-yellow { padding: 22px; }
}

/* mobile-specific reductions */
@media (max-width: 576px) {
  .hero { padding-top: 48px; padding-bottom: 20px; }
  .easy-language { padding: 18px 12px; }
  .report-types { padding: 6px 12px 18px; gap: 14px; }
  .report-types .report-card { padding: 14px; min-height: auto; }
  .report-types .report-card .preview { min-height: 100px; padding: 8px; }
  .report-types .report-card .preview img { max-height: 90px; }
  .how-reports { padding: 20px 12px; margin-bottom: 20px; }
  .how-reports .grid-row { gap: 16px; margin-bottom: 20px; }
  .cta-yellow { padding: 16px; }
  .report-types-hero { padding: 28px 12px 12px; }
}

/* Accessibility: ensure details/summary remain usable when changes applied */
.qa-tile { transition: box-shadow .12s ease; }
