/* =====================================================
   PAGES CSS — Premium shared styles for inner pages
   Sunshine Home Painting Service · 2026
   ====================================================== */

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(96,195,173,.4); }
  70% { box-shadow: 0 0 0 12px rgba(96,195,173,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,195,173,0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal-on-scroll base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- PAGE HERO / BANNER ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #60c3ad 0%, #3ee3d8 40%, #3a8f76 100%);
  padding: 80px 20px 70px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 18px;
  animation: fadeInUp .6s .1s both;
}
.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
  animation: fadeInUp .6s .2s both;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: .93;
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.6;
  animation: fadeInUp .6s .35s both;
}
.page-hero .breadcrumb {
  margin-top: 14px;
  font-size: .85rem;
  opacity: .75;
  animation: fadeInUp .6s .45s both;
}
.page-hero .breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-hero .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}
.page-hero .hero-wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ---------- SECTION DEFAULTS ---------- */
.page-section {
  padding: 64px 20px;
  position: relative;
}
.page-section.alt-bg {
  background: #fff;
}
.page-section.light-bg {
  background: #f3faf9;
}
.page-section .section-header {
  text-align: center;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.page-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f3faf9, #e0f5f0);
  color: #3a8f76;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.page-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-section .section-title span {
  color: #60c3ad;
}
.page-section .section-subtitle {
  font-size: 1.02rem;
  color: #475569;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-section .section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
  border-radius: 3px;
  margin: 14px auto 0;
}

/* ---------- INNER CONTAINER ---------- */
.inner-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- CARD ---------- */
.page-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: 32px 28px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
  opacity: 0;
  transition: opacity .3s;
}
.page-card:hover::before {
  opacity: 1;
}

/* Glassmorphism variant */
.page-card.glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(96,195,173,.15);
}

/* ---------- ICON CIRCLE ---------- */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3faf9, #e0f5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.icon-circle svg {
  width: 28px;
  height: 28px;
  fill: #60c3ad;
}
.page-card:hover .icon-circle {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(96,195,173,.2);
}

/* Icon square variant */
.icon-square {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-square svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ---------- GRID LAYOUTS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-2-1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.65rem; }
  .page-hero { padding: 56px 16px 50px; }
  .page-section { padding: 44px 16px; }
  .page-section .section-title { font-size: 1.4rem; }
}

/* ---------- PAGE FORM ---------- */
.page-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-form label {
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: -8px;
}
.page-form input,
.page-form select,
.page-form textarea {
  /* width: 100%; */
  padding: 14px 18px;
  border: 1.5px solid #d5f0ec;
  border-radius: 12px;
  background: #fafffe;
  font-size: 15px;
  font-family: 'Rubik', Arial, sans-serif;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.page-form input:focus,
.page-form select:focus,
.page-form textarea:focus {
  outline: none;
  border-color: #60c3ad;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(96,195,173,.12);
}
.page-form input::placeholder,
.page-form textarea::placeholder {
  color: #94a3b8;
}
.page-form textarea {
  resize: vertical;
  min-height: 110px;
}
.page-form .form-row {
  display: flex;
  gap: 16px;
}
.page-form .form-note {
  font-size: .78rem;
  color: #94a3b8;
  margin-top: -8px;
}
@media (max-width: 600px) {
  .page-form .form-row { flex-direction: column; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #60c3ad, #4ea392);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  font-family: 'Rubik', Arial, sans-serif;
  box-shadow: 0 4px 14px rgba(96,195,173,.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96,195,173,.3);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Rubik', Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245,158,11,.25);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #60c3ad;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border: 2px solid #60c3ad;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Rubik', Arial, sans-serif;
  text-decoration: none;
}
.btn-outline:hover {
  background: #60c3ad;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(96,195,173,.25);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #3a8f76;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Rubik', Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  background: #f3faf9;
}
.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- STAT COUNTER ---------- */
.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.stat-box {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  min-width: 160px;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.stat-box:hover {
  transform: translateY(-3px);
}
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #60c3ad;
  line-height: 1.1;
}
.stat-label {
  font-size: .88rem;
  color: #475569;
  margin-top: 6px;
}

/* Inline stat (for hero) */
.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 28px;
  animation: fadeInUp .6s .55s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 1.5rem;
  font-weight: 700;
}
.hero-stat .lbl {
  font-size: .78rem;
  opacity: .85;
}

/* ---------- TIMELINE ---------- */
.process-timeline {
  position: relative;
  padding-left: 48px;
  max-width: 600px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #60c3ad, #c4f3ef);
  border-radius: 3px;
}
.process-step {
  position: relative;
  margin-bottom: 36px;
  padding-left: 8px;
}
.process-step:last-child { margin-bottom: 0; }
.process-step .step-dot {
  position: absolute;
  left: -38px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(96,195,173,.3);
  animation: pulse-ring 2s infinite;
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 4px;
}
.process-step p {
  font-size: .95rem;
  color: #475569;
  line-height: 1.65;
}

/* ---------- ACCORDION / FAQ ---------- */
.faq-wrapper {
  max-width: 740px;
  margin: 0 auto;
}
.accordion-item-p {
  border: 1px solid #e8f5f2;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  transition: box-shadow .3s;
}
.accordion-item-p:hover {
  box-shadow: 0 4px 16px rgba(96,195,173,.08);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #1a202c;
  background: #fafffe;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Rubik', Arial, sans-serif;
  transition: background .2s, color .2s;
}
.accordion-header:hover { background: #f3faf9; color: #3a8f76; }
.accordion-header .arrow {
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.accordion-header.active { color: #3a8f76; background: #f3faf9; }
.accordion-header.active .arrow {
  transform: rotate(180deg);
}
.accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s ease;
}
.accordion-body.open {
  padding: 16px 22px 20px;
  max-height: 600px;
}
.accordion-body p,
.accordion-body ul {
  font-size: .95rem;
  color: #475569;
  line-height: 1.75;
}

/* Accordion -p suffix aliases (avoids conflict with homepage .accordion-*) */
.accordion-header-p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #1a202c;
  background: #fafffe;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Rubik', Arial, sans-serif;
  transition: background .2s, color .2s;
}
.accordion-header-p:hover { background: #f3faf9; color: #3a8f76; }
.accordion-header-p .arrow {
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.accordion-header-p.active { color: #3a8f76; background: #f3faf9; }
.accordion-header-p.active .arrow { transform: rotate(180deg); }
.accordion-body-p {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s ease;
}
.accordion-body-p.open {
  padding: 16px 22px 20px;
  max-height: 600px;
}
.accordion-body-p p,
.accordion-body-p ul {
  font-size: .95rem;
  color: #475569;
  line-height: 1.75;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, #60c3ad 0%, #3ee3d8 50%, #3a8f76 100%);
  border-radius: 20px;
  padding: 52px 36px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: .93;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-white {
  background: #fff;
  color: #3a8f76;
}

/* ---------- MAP EMBED ---------- */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- TERMS-SPECIFIC ---------- */
.terms-block {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0f0f0;
}
.terms-block:last-child {
  border-bottom: none;
}
.terms-block h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.terms-block h2 .t-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.terms-block p,
.terms-block ul {
  font-size: .95rem;
  color: #475569;
  line-height: 1.8;
}
.terms-block ul {
  padding-left: 22px;
}
.terms-block ul li {
  /* margin-bottom: 6px; */
  /* list-style: disc; */
}
.terms-date {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- TEAM / VALUES CARD ---------- */
.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 5px;
}
.value-card p {
  font-size: .92rem;
  color: #475569;
  line-height: 1.65;
}

/* ---------- FEATURE LIST ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: .95rem;
  color: #475569;
  line-height: 1.6;
}
.feature-list li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list li .check svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* ---------- BENEFIT BADGE ---------- */
.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f3faf9, #e0f5f0);
  color: #3a8f76;
  font-weight: 600;
  font-size: .83rem;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(96,195,173,.15);
}

/* ---------- TESTIMONIAL MINI ---------- */
.testimonial-mini {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  position: relative;
}
.testimonial-mini::before {
  content: '\201C';
  font-size: 3rem;
  color: #c4f3ef;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-mini p {
  font-size: .95rem;
  color: #475569;
  line-height: 1.7;
  padding-left: 16px;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-mini .t-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
}
.testimonial-mini .t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}
.testimonial-mini .t-name {
  font-size: .88rem;
  font-weight: 600;
  color: #1a202c;
}
.testimonial-mini .t-role {
  font-size: .78rem;
  color: #94a3b8;
}

/* ---------- SUCCESS TOAST (page forms) ---------- */
.page-success-msg {
  display: none;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
  border: 1px solid #86efac;
}
.page-success-msg.show { display: block; animation: fadeInUp .4s both; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: #475569;
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  fill: #60c3ad;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 768px) {
  .value-card { flex-direction: column; }
  .stat-number { font-size: 1.7rem; }
  .cta-banner { padding: 36px 20px; border-radius: 16px; }
  .cta-banner h2 { font-size: 1.35rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .trust-bar { gap: 16px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn-primary,
  .btn-group .btn-outline,
  .btn-group .btn-white,
  .btn-group .btn-secondary { justify-content: center; }
}
