/* =============================================
   ACR REPAIRS – INNER PAGE STYLES
   Extends /v4/style.css
   ============================================= */

/* ===== INNER PAGE HERO ===== */
.inner-hero {
  position: relative;
  padding: 160px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 60%);
  pointer-events: none;
}
.inner-hero::after {
  content: ''; position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06), transparent 60%);
  pointer-events: none;
}
.inner-hero-content {
  position: relative; z-index: 2;
  max-width: 100%;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px; font-size: 0.82rem; color: var(--text-on-dark-muted);
}
.breadcrumbs a {
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs svg { width: 14px; height: 14px; opacity: 0.5; flex-shrink: 0; }
.breadcrumbs .current { color: var(--accent); font-weight: 600; }

.inner-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 16px; letter-spacing: -0.03em;
  line-height: 1.1;
}
.inner-hero-sub {
  font-size: 1.1rem; color: var(--text-on-dark-muted);
  line-height: 1.7; margin-bottom: 28px; max-width: 600px;
}
.inner-hero-sub > :first-child { margin-top: 0; }
.inner-hero-sub > :last-child { margin-bottom: 0; }
.inner-hero-sub strong { color: var(--white); }
.inner-hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ===== PAGE BUILDER LAYOUT ===== */
.page-builder-section {
  padding: 0px 0;
  background: var(--white);
}
.page-builder-section--full {
  width: 100%;
}
.page-builder-section--full > :first-child,
.page-builder-container > :first-child {
  margin-top: 0;
}
.page-builder-section--full > :last-child,
.page-builder-container > :last-child {
  margin-bottom: 0;
}
.page-builder-container,
.page-builder-section--full > :where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, table) {
  color: var(--text);
}
.page-builder-container > :where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, table),
.page-builder-section--full > :where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, table) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-builder-container :where(h1, h2, h3, h4, h5, h6),
.page-builder-section--full > :where(h1, h2, h3, h4, h5, h6) {
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.page-builder-container :where(h1),
.page-builder-section--full > h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 18px;
}
.page-builder-container :where(h2),
.page-builder-section--full > h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 34px 0 12px;
}
.page-builder-container :where(h3),
.page-builder-section--full > h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  margin: 28px 0 10px;
}
.page-builder-container :where(h4, h5, h6),
.page-builder-section--full > :where(h4, h5, h6) {
  font-size: 1rem;
  margin: 24px 0 8px;
}
.page-builder-container :where(p),
.page-builder-section--full > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 18px;
}
.page-builder-container > p:has(> strong:only-child),
.page-builder-section--full > p:has(> strong:only-child) {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-top: 30px;
  margin-bottom: 10px;
}
.page-builder-container :where(strong, b),
.page-builder-section--full > :where(strong, b) {
  color: var(--text);
  font-weight: 800;
}
.page-builder-container :where(a:not(.btn)),
.page-builder-section--full > a:not(.btn) {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.page-builder-container :where(a:not(.btn):hover),
.page-builder-section--full > a:not(.btn):hover {
  color: var(--accent-hover);
}
.page-builder-container > :where(ul, ol),
.page-builder-section--full > :where(ul, ol) {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 auto 24px;
  padding-left: 24px;
}
.page-builder-container > ul,
.page-builder-section--full > ul {
  list-style: disc;
}
.page-builder-container > ol,
.page-builder-section--full > ol {
  list-style: decimal;
}
.page-builder-container > :where(ul, ol) li,
.page-builder-section--full > :where(ul, ol) li {
  margin-bottom: 8px;
}
.page-builder-container :where(blockquote),
.page-builder-section--full > blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text);
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 28px;
}
.page-builder-container :where(table),
.page-builder-section--full > table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 24px;
  margin-bottom: 28px;
}
.page-builder-container :where(th, td),
.page-builder-section--full > table :where(th, td) {
  padding: 12px 14px;
  border: 1px solid var(--gray-100);
  text-align: left;
}
.page-builder-container :where(th),
.page-builder-section--full > table th {
  background: var(--off-white);
  color: var(--text);
  font-weight: 800;
}
.page-builder-container > :where(h1, h2, h3, h4, h5, h6):first-child,
.page-builder-section--full > :where(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

/* ===== OUR SERVICES PAGE ===== */
.os-section { padding: 80px 0; }
.os-section--white { background: var(--white); }
.os-section--alt { background: var(--off-white); }
.os-section-header { text-align: center; margin-bottom: 48px; }
.os-section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800; color: var(--text); margin-bottom: 12px;
}
.os-section-header p {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 640px; margin: 0 auto; line-height: 1.7;
}
.os-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.os-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 32px;
  transition: all var(--transition); opacity: 1;
}
.os-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}
.os-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.os-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.os-card p {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.os-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
}
.os-card-link:hover { gap: 10px; }
.os-trust-header {
  text-align: center; margin-bottom: 48px;
  position: relative; z-index: 2;
}
.os-trust-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900; color: var(--white); margin-bottom: 12px;
}
.os-trust-header p {
  color: var(--text-on-dark-muted); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 64px 0;
  background: var(--white);
}
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.intro-content p {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PROBLEM / USE CASE CARDS ===== */
.problems-section {
  padding: 80px 0;
  background: var(--off-white);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  text-align: center;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}
.problem-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.problem-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.problem-card p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SOLUTION / FEATURES CARDS ===== */
.solutions-section {
  padding: 80px 0;
  background: var(--white);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.solution-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.2);
}
.solution-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.solution-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.solution-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PDF VIEWER ===== */
.avt-pdf-viewer-section {
  padding: 64px 0;
  background: var(--white);
}
.avt-pdf-viewer {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #202124;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.avt-pdf-viewer-frame {
  display: block;
  width: 100%;
  height: var(--avt-pdf-height, 760px);
  border: 0;
}
.avt-pdf-viewer-actions,
.avt-pdf-viewer-empty {
  max-width: 100%;
  margin: 12px auto 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.avt-pdf-viewer-actions a {
  color: var(--accent);
  font-weight: 700;
}

/* ===== INNER WHY-US (reusable mini version) ===== */
.inner-trust-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.inner-trust-section::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
  pointer-events: none;
}
.inner-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}
.inner-trust-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.inner-trust-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}
.inner-trust-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.inner-trust-card h3 {
  color: var(--white); font-size: 1rem;
  font-weight: 700; margin-bottom: 6px;
}
.inner-trust-card p {
  color: var(--text-on-dark-muted);
  font-size: 0.86rem; line-height: 1.5;
}
.inner-trust-card p.inner-trust-stat,.inner-trust-stat {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: var(--accent); display: block;
  margin-bottom: 4px;
}
.image-center img{
  margin: 0 auto;
}

/* ===== INNER PROCESS (reusable 3-step) ===== */
.inner-process-section {
  padding: 80px 0;
  background: var(--off-white);
}
.inner-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.inner-process-grid::before {
  content: ''; position: absolute;
  top: 40px; left: 15%; right: 15%;
  height: 2px;
  background: var(--gray-200);
}
.inner-process-step {
  text-align: center; position: relative;
}
.inner-process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--off-white);
  position: relative; z-index: 2;
}
.inner-process-step h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.inner-process-step p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; max-width: 280px; margin: 0 auto;
}

/* ===== INNER TESTIMONIALS (reusable) ===== */
.inner-testimonials-section {
  padding: 80px 0;
  background: var(--white);
}
.inner-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inner-testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.inner-testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}
.inner-testimonial-stars {
  color: #fbbf24; font-size: 1rem;
  letter-spacing: 2px; margin-bottom: 14px;
}
.inner-testimonial-card blockquote {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 18px;
  font-style: italic;
}
.inner-testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.inner-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem;
  flex-shrink: 0;
}
.inner-testimonial-author strong {
  display: block; font-size: 0.88rem; color: var(--text);
}
.inner-testimonial-author span {
  font-size: 0.78rem; color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--off-white);
}
.faq-list {
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
}
.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.08);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none;
  width: 100%; text-align: left;
  cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.2);
}
.pricing-card h3 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 4px; color: var(--text);
}
.pricing-range {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--accent); margin-bottom: 6px;
}
.pricing-card p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.5;
}

/* ===== BLOG LISTING (inner page) ===== */
.blog-listing-section {
  padding: 80px 0;
  background: var(--white);
}
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-listing-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.blog-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-listing-img {
  height: 200px; overflow: hidden;
  background: var(--navy);
}
.blog-listing-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.blog-listing-card:hover .blog-listing-img img {
  transform: scale(1.05);
}
.blog-listing-body {
  padding: 24px;
}
.blog-listing-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.blog-listing-date {
  font-size: 0.78rem; color: var(--text-muted);
  font-weight: 600;
}
.blog-listing-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
  line-height: 1.35;
}
.blog-listing-card h3 a:hover { color: var(--accent); }
.blog-listing-card p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 14px;
}

/* ===== BLOG DETAIL (single post) ===== */
.blog-detail-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 16px;
}
.blog-detail-date {
  font-size: 0.85rem; color: var(--text-on-dark-muted);
  font-weight: 600;
}
.blog-detail-section {
  padding: 60px 0 80px;
  background: var(--off-white);
}
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
.blog-detail-content {
  min-width: 0;
}
.blog-detail-featured-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}
.blog-detail-featured-img img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}

/* Author / Info Bar */
.blog-detail-info-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.blog-detail-author {
  display: flex; align-items: center; gap: 12px;
}
.blog-detail-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.blog-detail-author-name {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--text);
}
.blog-detail-author-role {
  display: block; font-size: 0.78rem; color: var(--text-muted);
}
.blog-detail-reading {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
}

/* Intro paragraph */
.blog-detail-intro {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 500;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}

/* Content blocks */
.blog-detail-block {
  margin-bottom: 36px;
  scroll-margin-top: 100px;
}
.blog-detail-block h2 {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.3rem; font-weight: 800;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.blog-detail-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent); color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 800;
  flex-shrink: 0;
}
.blog-detail-content p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 16px;
}
.blog-detail-content p strong {
  color: var(--text); font-weight: 700;
}

/* Tip / Watch-for callouts */
.blog-detail-tip {
  display: flex; gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 12px;
}
.blog-detail-tip svg {
  color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.blog-detail-tip p {
  margin: 0; font-size: 0.9rem; line-height: 1.6;
}

/* Highlight block */
.blog-detail-block-highlight {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.blog-detail-block-highlight h2 {
  margin-bottom: 14px;
}

/* In-article CTA box */
.blog-detail-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  margin: 44px 0 32px;
  text-align: center;
  position: relative; overflow: hidden;
}
.blog-detail-cta-box::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 60%);
  pointer-events: none;
}
.blog-detail-cta-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--accent);
}
.blog-detail-cta-box h3 {
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); margin-bottom: 8px;
  position: relative; z-index: 1;
}
.blog-detail-cta-box > p {
  font-size: 0.92rem; color: var(--text-on-dark-muted);
  margin-bottom: 22px; line-height: 1.6;
  position: relative; z-index: 1;
}
.blog-detail-cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Outline accent button (used in blog detail) */
.btn-outline-accent {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-hover);
  color: var(--accent-hover);
}
/* On dark background */
.blog-detail-cta-box .btn-outline-accent {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.blog-detail-cta-box .btn-outline-accent:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Bottom bar (back + share) */
.blog-detail-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.blog-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 700;
  color: var(--accent);
  transition: gap var(--transition);
}
.blog-back-link:hover { gap: 12px; }
.blog-share {
  display: flex; align-items: center; gap: 10px;
}
.blog-share span {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
}
.blog-share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-100);
  color: var(--text-muted);
  transition: all var(--transition);
}
.blog-share-btn:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== Blog Detail Sidebar ===== */
.blog-detail-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 20px;
}
.blog-sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.blog-sidebar-box h4 {
  font-size: 1rem; font-weight: 800;
  color: var(--text); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.blog-sidebar-box p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 16px;
}
.blog-sidebar-box p strong {
  color: var(--text);
}

/* Sidebar CTA box */
.blog-sidebar-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
}
.blog-sidebar-cta h4 { color: var(--white); }
.blog-sidebar-cta p { color: var(--text-on-dark-muted); }
.blog-sidebar-cta-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 12px;
}
.blog-sidebar-cta .btn-outline-accent {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.blog-sidebar-cta .btn-outline-accent:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Sidebar TOC */
.blog-sidebar-toc-list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc;
}
.blog-sidebar-toc-list li {
  counter-increment: toc;
}
.blog-sidebar-toc-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  border-bottom: 1px solid var(--gray-50);
  transition: color var(--transition);
}
.blog-sidebar-toc-list li:last-child a { border-bottom: none; }
.blog-sidebar-toc-list li a::before {
  content: counter(toc);
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--off-white); color: var(--text-muted);
  font-size: 0.72rem; font-weight: 800; flex-shrink: 0;
  transition: all var(--transition);
}
.blog-sidebar-toc-list li a:hover {
  color: var(--accent);
}
.blog-sidebar-toc-list li a:hover::before {
  background: var(--accent); color: var(--white);
}

/* Sidebar checks list */
.blog-sidebar-checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.blog-sidebar-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.blog-sidebar-checks li svg { flex-shrink: 0; }

/* Sidebar related links */
.blog-sidebar-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.blog-sidebar-links li a {
  display: block; padding: 12px 0;
  font-size: 0.85rem; color: var(--text);
  font-weight: 600; line-height: 1.4;
  border-bottom: 1px solid var(--gray-50);
  transition: color var(--transition);
}
.blog-sidebar-links li:last-child a { border-bottom: none; }
.blog-sidebar-links li a:hover { color: var(--accent); }
.blog-sidebar-link-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 2px;
}

/* ===== ABOUT TIMELINE ===== */
.timeline-section {
  padding: 80px 0;
  background: var(--white);
}
.timeline {
  max-width: 680px; margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute;
  top: 0; bottom: 0; left: 15px;
  width: 2px; background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -33px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 800;
  color: var(--accent); margin-bottom: 4px;
}
.timeline-item h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 4px; color: var(--text);
}
.timeline-item p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6;
}

/* ===== REVIEWS PAGE ===== */
.reviews-summary {
  display: flex; align-items: center; gap: 24px;
  justify-content: center; flex-wrap: wrap;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  margin-bottom: 40px;
}
.reviews-big-score {
  text-align: center;
}
.reviews-big-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.reviews-big-stars {
  color: #fbbf24; font-size: 1.2rem;
  letter-spacing: 3px; margin-top: 4px;
}
.reviews-big-label {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 600; margin-top: 4px;
}
.reviews-stats {
  display: flex; flex-direction: column; gap: 6px;
}
.review-bar {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted);
}
.review-bar-fill {
  width: 120px; height: 6px;
  background: var(--gray-100);
  border-radius: 999px; overflow: hidden;
}
.review-bar-fill span {
  display: block; height: 100%;
  background: #fbbf24; border-radius: 999px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== CONTACT PAGE ===== */
.contact-page-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.contact-cards-list {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
.contact-card-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.contact-card-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-item h3 {
  font-size: 0.92rem; font-weight: 700;
  margin-bottom: 4px; color: var(--text);
}
.contact-card-item p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.5;
}
.contact-card-item a {
  color: var(--accent); font-weight: 700;
}

/* ===== LOCATION PAGE ===== */
.coverage-section {
  padding: 80px 0;
  background: var(--white);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.coverage-tag {
  padding: 12px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: all var(--transition);
}
.coverage-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== CHECKLIST STYLE ===== */
.check-list,
.two-col-content ul.wp-block-list {
  display: flex; flex-direction: column; gap: 12px;
}
.check-list li,
.two-col-content ul.wp-block-list > li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.6;
}
.check-list li::before,
.two-col-content ul.wp-block-list > li::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center / contain no-repeat;
}
.check-list li > svg,
.two-col-content ul.wp-block-list > li > svg {
  display: none;
}
.check-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== TWO-COL CONTENT ===== */
.two-col-section {
  padding: 80px 0;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.two-col-grid.reverse .two-col-media { order: -1; }
.two-col-media img {
  width: 100%; border-radius: var(--radius-xl);
  object-fit: cover;
}
.two-col-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; margin-bottom: 16px;
  color: var(--text); letter-spacing: -0.02em;
}
.two-col-content p {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 16px;
}

/* ===== INNER CTA BANNER (compact reuse) ===== */
.inner-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.inner-cta-section::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 60%);
  pointer-events: none;
}
.inner-cta-content {
  text-align: center; position: relative; z-index: 2;
}
.inner-cta-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.inner-cta-content p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem; max-width: 560px;
  margin: 0 auto 24px; line-height: 1.7;
}
.inner-cta-actions {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 16px;
}
.inner-cta-phone {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900; color: var(--accent);
  letter-spacing: 0.02em;
}

/* ============================================
   INNER PAGE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .inner-hero { padding: 140px 0 50px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: 1fr; }
  .inner-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-process-grid { grid-template-columns: 1fr; gap: 0; }
  .inner-process-grid::before {
    top: 0; bottom: 0; left: 36px;
    width: 2px; height: auto; right: auto;
  }
  .inner-process-step {
    display: flex; align-items: flex-start; gap: 20px;
    text-align: left; padding: 20px 0;
  }
  .inner-process-num {
    margin: 0; flex-shrink: 0;
    width: 56px; height: 56px; font-size: 1.1rem;
  }
  .inner-process-step p { margin: 0; }
  .inner-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-detail-layout { grid-template-columns: 1fr 280px; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col-grid.reverse .two-col-media { order: 0; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-builder-section--full .two-col-grid {
    display: grid !important;
  }
  .inner-hero { padding: 120px 0 40px; }
  .inner-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .inner-hero-sub { font-size: 1rem; }
  .inner-hero-actions { flex-direction: column; }
  .inner-hero-actions .btn { width: 100%; justify-content: center; }
  .problems-section, .solutions-section,
  .inner-trust-section, .inner-process-section,
  .inner-testimonials-section, .faq-section,
  .inner-cta-section, .blog-listing-section,
  .timeline-section, .contact-page-section,
  .coverage-section, .two-col-section { padding: 60px 0; }
  .blog-detail-section { padding: 48px 0 60px; }
  .blog-detail-layout { grid-template-columns: 1fr; }
  .blog-detail-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .blog-sidebar-box { flex: 1 1 280px; }
  .intro-section { padding: 48px 0; }
  .avt-pdf-viewer-section { padding: 48px 0; }
  .avt-pdf-viewer-frame { height: min(var(--avt-pdf-height, 760px), 560px); }
  .os-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .problems-grid { grid-template-columns: 1fr; }
  .inner-trust-grid { grid-template-columns: 1fr; }
  .inner-testimonials-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .blog-detail-cta-actions { flex-direction: column; }
  .blog-detail-cta-actions .btn { width: 100%; }
  .blog-detail-info-bar { flex-direction: column; align-items: flex-start; }
  .blog-detail-bottom-bar { flex-direction: column; align-items: flex-start; }
  .blog-detail-sidebar { flex-direction: column; }
  .blog-sidebar-box { flex: 1 1 100%; }
  .blog-detail-block h2 { font-size: 1.15rem; }
  .blog-detail-num { width: 30px; height: 30px; font-size: 0.8rem; border-radius: 8px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-cta-actions { flex-direction: column; align-items: center; }
  .inner-cta-actions .btn { width: 100%; max-width: 320px; }
  .reviews-summary { flex-direction: column; }
}
