/* ============================================================
   about.css — Insuredge About Page (Version C)
   Wrapper: .about-c
   ============================================================ */

.about-c {
  /* ── Custom Properties (tokens) ── */
  --blue: #2563eb;
  --blue-dk: #1e3a8a;
  --blue-lt: #eff6ff;
  --green: #16a34a;
  --green-lt: #f0fdf4;
  --orange: #ea580c;
  --bg: #f8fafc;
  --white: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0, 0, 0, .07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .1);
  --r: 10px;
  --r-2xl: 2rem;
  --t: all .22s ease;
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* ── Buttons ──────────────────────────────────────────────── */
.about-c .btn-primary-c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  padding: .9rem;
  border-radius: var(--r);
  text-decoration: none;
  transition: var(--t);
  margin-bottom: .65rem;
}

.about-c .btn-primary-c:hover {
  background: #c2410c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234, 88, 12, .35);
}

.about-c .btn-secondary-c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  background: var(--blue-lt);
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  padding: .8rem;
  border-radius: var(--r);
  text-decoration: none;
  transition: var(--t);
}

.about-c .btn-secondary-c:hover {
  background: #dbeafe;
}

/* ── Hero ──────────────────────────────────────────────────── */
.about-c .c-hero {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 50%, #0369a1 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.about-c .c-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.about-c .c-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.18;
  margin-bottom: .8rem;
}

.about-c .c-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
}

.about-c .c-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.about-c .c-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: .45rem 1rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.about-c .c-badge i {
  color: #fff;
  font-size: .85rem;
}

.about-c .c-badge span {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
}

/* ── Hero CTA card ────────────────────────────────────────── */
.about-c .c-hero-cta {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-c .c-hero-cta h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: .4rem;
}

.about-c .c-hero-cta p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-c .c-free-note {
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .6rem;
}

/* ── Metrics bar ── */
.about-c .c-metrics {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.about-c .c-metric-item {
  text-align: center;
  padding: .5rem 0;
}

.about-c .c-metric-val {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
  transition: var(--t);
}

.about-c .c-metric-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Trust strip ──────────────────────────────────────────── */
.about-c .c-trust-strip {
  padding: 3.5rem 0;
  background: var(--bg);
}

.about-c .c-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.about-c .c-section-sub {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 0;
}

.about-c .c-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
  transition: var(--t);
  height: 100%;
}

.about-c .c-trust-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.about-c .c-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  font-size: 1.2rem;
  color: #fff;
}

.about-c .c-trust-name {
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  font-weight: 800;
  color: var(--ink);
}

.about-c .c-trust-sub {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .2rem;
}

/* ── Reasons ──────────────────────────────────────────────── */
.about-c .c-reasons {
  padding: 4rem 0;
  background: var(--white);
}

.about-c .c-reason-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: var(--t);
  height: 100%;
}

.about-c .c-reason-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .06);
}

.about-c .c-reason-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
}

.about-c .c-reason-title {
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .35rem;
}

.about-c .c-reason-body {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
.about-c .c-testimonials {
  padding: 4rem 0;
  background: var(--blue-lt);
}

.about-c .c-testi-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.about-c .c-stars {
  color: #f59e0b;
  font-size: .85rem;
  margin-bottom: .6rem;
}

.about-c .c-testi-text {
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.about-c .c-testi-name {
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink);
}

.about-c .c-testi-loc {
  font-size: .72rem;
  color: var(--muted);
}

/* ── Story ────────────────────────────────────────────────── */
.about-c .c-story {
  padding: 4rem 0;
  background: var(--white);
}

.about-c .c-story-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: .8rem;
}

.about-c .c-story-highlight {
  background: var(--green-lt);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.5rem;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.about-c .c-mid-cta {
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: var(--r);
  padding: 2rem;
}

.about-c .c-mid-cta-eyebrow {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--blue);
  margin-bottom: .75rem;
}

.about-c .c-mid-cta h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: .5rem;
}

.about-c .c-mid-cta p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-c .c-mid-cta ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.about-c .c-mid-cta ul li {
  margin-bottom: .4rem;
  font-size: .8rem;
  color: var(--muted);
}

.about-c .c-mid-cta ul li i {
  color: var(--green);
  margin-right: .4rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.about-c .c-faq {
  padding: 4rem 0;
  background: var(--bg);
}

.about-c .c-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: .75rem;
}

.about-c .c-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
}

.about-c .c-faq-q i {
  color: var(--blue);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.about-c .c-faq-q.open i {
  transform: rotate(180deg);
}

.about-c .c-faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-c .c-faq-a.open {
  display: block;
}

/* ── Partners Strip ──────────────────────────────────────── */
.about-c .c-partners-strip {
  background: var(--bg);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.about-c .c-partners-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-c .c-partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}

.about-c .c-partner-item {
  font-size: .85rem;
  font-weight: 800;
  color: var(--muted);
  opacity: .8;
  transition: var(--t);
  cursor: default;
  white-space: nowrap;
}

.about-c .c-partner-item:hover {
  opacity: 1;
  color: var(--ink);
}

/* ── Final CTA (merged .c-final-cta and .c-cta-bot) ──────── */
.about-c .c-final-cta,
.about-c .c-cta-bot {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green) 0%, #14532d 100%);
  text-align: center;
}

.about-c .c-final-cta h2,
.about-c .c-cta-bot h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
}

.about-c .c-final-cta p,
.about-c .c-cta-bot p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2rem;
}

.about-c .c-final-cta .btn-primary-c,
.about-c .c-cta-bot .btn-primary-c {
  max-width: 320px;
  margin: 0 auto .8rem;
  font-size: 1.05rem;
  padding: 1.1rem;
}

.about-c .c-final-cta .btn-secondary-c,
.about-c .c-cta-bot .btn-secondary-c {
  max-width: 280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.about-c .c-final-cta .btn-secondary-c:hover,
.about-c .c-cta-bot .btn-secondary-c:hover {
  background: rgba(255, 255, 255, .25);
}

/* ── CTA Eyebrow & Card (inside final CTA) ───────────────── */
.about-c .c-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-c .c-cta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  display: inline-block;
}

.about-c .c-cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.about-c .c-cta-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.72;
  max-width: 480px;
  margin: 0 auto;
}

.about-c .c-cta-card {
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  text-align: center;
}

.about-c .c-cta-card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1rem;
}

.about-c .c-cta-card .btn-primary-c {
  max-width: 320px;
  margin: 0 auto .8rem;
  font-size: 1.05rem;
  padding: 1.1rem;
}

.about-c .c-cta-card .btn-secondary-c {
  max-width: 280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.about-c .c-cta-card .btn-secondary-c:hover {
  background: rgba(255, 255, 255, .25);
}

.about-c .c-cta-card-note {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.about-c .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.about-c .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.about-c .reveal.rd2 {
  transition-delay: .1s;
}

.about-c .reveal.rd3 {
  transition-delay: .2s;
}

.about-c .reveal.rd4 {
  transition-delay: .3s;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-c .sticky-cta-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  .about-c .sticky-cta-mobile {
    display: none;
  }
}