/* ============================================
   MyEasyAgent — Feature Styles (mea-features.css)
   All new feature CSS lives here.
   ============================================ */

/* ============================================
   VERIFICATION BADGES (Feature 1)
   ============================================ */
.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 8px;
}

.verification-badge--lasrera {
    background: rgba(22, 101, 52, 0.1);
    color: #166534;
    border: 1px solid rgba(22, 101, 52, 0.25);
}

.verification-badge--ercaan {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border: 1px solid rgba(30, 64, 175, 0.25);
}

.verification-badge--lasrera-ercaan {
    background: rgba(22, 101, 52, 0.12);
    color: #14532d;
    border: 1px solid rgba(22, 101, 52, 0.3);
}

.badge-icon {
    font-size: 0.8rem;
}

/* ============================================
   LANDLORD ALERT (Feature 2A)
   ============================================ */
.landlord-alert {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
    border: 2px solid #dc2626;
    border-radius: 6px;
    margin: 0 0 32px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3), 0 0 0 1px rgba(220, 38, 38, 0.1);
    animation: mea-pulse-border 2s ease-in-out 3;
}

@keyframes mea-pulse-border {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 4px 32px rgba(220, 38, 38, 0.6), 0 0 0 3px rgba(220, 38, 38, 0.2);
    }
}

.landlord-alert__inner {
    padding: 24px 28px;
}

.landlord-alert__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.landlord-alert__icon {
    font-size: 1.4rem;
    color: #fca5a5;
    flex-shrink: 0;
}

.landlord-alert__title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    flex: 1;
}

.landlord-alert__intro {
    color: #fecaca;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.landlord-alert__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landlord-alert__item {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #f87171;
    border-radius: 3px;
    line-height: 1.5;
}

.landlord-alert__item::before {
    content: "▸ ";
    color: #f87171;
    font-weight: 700;
}

.landlord-alert__footnote {
    color: #fca5a5;
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .landlord-alert__inner {
        padding: 18px 16px;
    }

    .landlord-alert__title {
        font-size: 0.95rem;
    }
}

/* ============================================
   COST SUMMARY TABLE (Feature 2C)
   ============================================ */
.cost-summary {
    margin: 32px 0;
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.cost-summary__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: inherit;
}

.cost-summary__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cost-summary__table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
}

.cost-summary__table td:first-child {
    color: #6b7280;
}

.cost-summary__table td:last-child {
    text-align: right;
    font-weight: 600;
    color: inherit;
}

.cost-summary__table tr:last-child td {
    border-bottom: none;
}

.cost-summary__note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6b7280;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    line-height: 1.6;
}

/* ============================================
   PROPERTY METADATA GRID (Feature 2C)
   ============================================ */
.property-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
}

/* ============================================
   PROPERTY NOTES (Feature 2C)
   ============================================ */
.property-notes {
    margin: 24px 0;
    padding: 20px;
    border-left: 3px solid var(--color-primary, #16a34a);
    background: rgba(22, 163, 74, 0.04);
}

.property-notes h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--color-primary, #16a34a);
}

.property-notes p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    color: #374151;
}

/* ============================================
   LAW BANNERS — Three-column insight section (Feature 3)
   ============================================ */
.law-banners {
    width: 100%;
    background: #0f1a14;
    padding: 0;
    border-top: 3px solid var(--accent-color, #22c55e);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.law-banners__header {
    text-align: center;
    padding: 20px 24px 0;
}

.law-banners__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary, #22c55e);
    opacity: 0.9;
}

.law-banners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 100%;
    padding: 0;
}

.law-banner {
    padding: 32px 36px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    transition: background 0.2s ease;
}

.law-banner:last-child {
    border-right: none;
}

.law-banner:hover {
    background: rgba(255, 255, 255, 0.03);
}

.law-banner__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.law-banner__icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.law-banner__category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary, #22c55e);
    background: rgba(34, 197, 94, 0.12);
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.law-banner__ref {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.law-banner__headline {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.law-banner__body {
    font-size: 0.855rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin-bottom: 20px;
}

.law-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary, #22c55e);
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(34, 197, 94, 0.35);
    padding-bottom: 2px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.law-banner__cta:hover {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.5);
}

@media (max-width: 960px) {
    .law-banners__grid {
        grid-template-columns: 1fr 1fr;
    }

    .law-banner:nth-child(2) {
        border-right: none;
    }

    .law-banner:nth-child(3) {
        grid-column: 1 / -1;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 640px) {
    .law-banners__grid {
        grid-template-columns: 1fr;
    }

    .law-banner {
        padding: 24px 20px;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .law-banner:first-child {
        border-top: none;
    }
}

/* ============================================
   CLINIC PAGE ADDITIONS (Feature 6)
   ============================================ */
.copy-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--color-primary, #22c55e);
    color: var(--color-primary, #22c55e);
    background: transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.copy-btn:hover {
    background: var(--color-primary, #22c55e);
    color: #fff;
}

.clinic-payment-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 28px 32px;
    margin: 32px 0;
}

.clinic-payment-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.btn-whatsapp-receipt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.btn-whatsapp-receipt:hover {
    background: #1ebe5a;
}

.clinic-form-wrapper {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin: 16px 0;
}

.clinic-privacy-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 12px;
}

/* =============================================
   ABOUT PAGE — MyEasyAgent
   Inspired by Brixsa template design language
   All variables reference existing theme values
   ============================================= */

/* --- SHARED UTILITIES --- */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.about-overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color, #16a34a);
  margin-bottom: 20px;
}

.about-overline--light {
  color: rgba(255,255,255,0.5);
}

.about-section-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: #111110;
}

.about-section-headline--light {
  color: #ffffff;
}

/* --- SECTION 1: HERO --- */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('/images/mea-hero-house.jpg');
  background-size: cover;
  background-position: center 30%;
  text-align: center;
  overflow: hidden;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 14, 0.6) 0%,
    rgba(10, 20, 14, 0.72) 60%,
    rgba(10, 20, 14, 0.85) 100%
  );
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 900px;
}

.about-hero__breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  font-weight: 500;
}

.about-hero__headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.about-hero__sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.about-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: about-scroll-pulse 2s ease-in-out infinite;
}

@keyframes about-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* --- SECTION 2: PASSION / PROBLEM STATEMENT --- */
.about-passion {
  background: #F5F0E8;
  padding: 100px 0;
}

.about-passion__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-passion__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111110;
  margin: 0;
}

.about-passion__body {
  font-size: 1rem;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 60px;
}

.about-stat {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.about-stat:last-child { border-right: none; }

.about-stat__number {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111110;
  margin-bottom: 10px;
  line-height: 1;
}

.about-stat__label {
  display: block;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #6b6b6b;
}

/* --- SECTION 3: CHALLENGES --- */
.about-challenges {
  background: #111110;
  padding: 100px 0;
}

.about-challenges .about-section-headline { color: #ffffff; }
.about-challenges .about-overline { color: rgba(255,255,255,0.4); }

.about-challenges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.about-challenge-card {
  background: #161614;
  padding: 40px 36px;
}

.about-challenge-card__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-challenge-card__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}

.about-challenge-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.about-challenge-card__subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.about-challenge-card--client .about-challenge-card__icon { filter: none; }
.about-challenge-card--agent .about-challenge-card__icon { filter: none; }
.about-challenge-card--landlord .about-challenge-card__icon { filter: none; }

.about-challenge-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-challenge-card__list li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  padding-left: 14px;
  position: relative;
}

.about-challenge-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-color, #16a34a);
  font-weight: 700;
}

/* --- SECTION 4: MISSION/VISION/VALUES --- */
.about-mvv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-mvv__image {
  overflow: hidden;
  position: relative;
}

.about-mvv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.about-mvv__image:hover img {
  transform: scale(1.03);
}

.about-mvv__panel {
  background: #111110;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
}

.about-mvv__icon {
  color: var(--accent-color, #16a34a);
  margin-bottom: 16px;
  opacity: 0.85;
}

.about-mvv__label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-mvv__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.about-mvv__item {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-mvv__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* --- SECTION 5: HOW IT WORKS --- */
.about-how {
  background: #F5F0E8;
  padding: 100px 0;
}

.about-how__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-how__intro p {
  font-size: 1rem;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.about-how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}

.about-step:last-child { border-bottom: none; }

.about-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color, #16a34a);
  letter-spacing: 0.06em;
  padding-top: 4px;
}

.about-step__content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111110;
  margin-bottom: 8px;
}

.about-step__content p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #5a5a5a;
  margin: 0;
}

/* --- SECTION 6: BENEFITS --- */
.about-benefits {
  background: #ffffff;
  padding: 100px 0;
}

.about-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-benefit-col {
  background: #f9f9f7;
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-benefit-col__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-benefit-col__icon {
  font-size: 1.5rem;
}

.about-benefit-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111110;
  margin: 0;
}

.about-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-benefit-list li {
  font-size: 0.865rem;
  line-height: 1.55;
  color: #3a3a3a;
  padding-left: 4px;
}

/* --- SECTION 7: CREDENTIALS --- */
.about-credentials {
  background: #111110;
  padding: 100px 0;
}

.about-credentials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.about-credential-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px 36px;
}

.about-credential-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-color, #16a34a);
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.about-credential-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.35;
}

.about-credential-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.about-credential-card__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-credential-card__benefits span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 5px 10px;
  border-radius: 3px;
}

.about-credentials__together {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}

.about-credentials__together h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-credentials__together p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  max-width: 800px;
}

/* --- SECTION 8: RED FLAGS --- */
.about-redflags {
  background: #F5F0E8;
  padding: 100px 0;
}

.about-redflags__intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3a3a;
  max-width: 720px;
  margin-bottom: 60px;
}

.about-redflags__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.about-redflag {
  background: #ffffff;
  padding: 36px 32px;
  position: relative;
}

.about-redflag__marker {
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: block;
  color: #dc2626;
}

.about-redflag h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111110;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid #fecaca;
}

.about-redflag p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

/* --- SECTION 9: FOUNDER'S LETTER --- */
.about-letter {
  background: #F5F0E8;
  padding: 100px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-letter__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111110;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.about-letter__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-letter__image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.about-letter__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-letter__body p {
  font-size: 0.975rem;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.about-letter__salutation {
  font-weight: 600;
  color: #111110 !important;
}

.about-letter__sign {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #111110 !important;
  margin-top: 32px;
  margin-bottom: 4px !important;
}

.about-letter__role {
  font-size: 0.82rem !important;
  color: #6b6b6b !important;
  margin: 0 !important;
}

/* --- SECTION 10: TEAM --- */
.about-team {
  background: #F5F0E8;
  padding: 100px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-team__header {
  margin-bottom: 56px;
  text-align: center;
}

.about-team__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #111110;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.about-team__sub {
  font-size: 1rem;
  color: #6b6b6b;
  margin: 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.about-team-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.about-team-card__photo-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e8e4dc;
}

.about-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.about-team-card:hover .about-team-card__photo {
  transform: scale(1.04);
}

.about-team-card__info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.about-team-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111110;
  margin-bottom: 4px;
}

.about-team-card__role {
  font-size: 0.8rem;
  color: #6b6b6b;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.about-team-card__bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.about-team-card__contact {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color, #16a34a);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(22, 163, 74, 0.3);
  padding-bottom: 1px;
  transition: color 0.15s ease;
}

.about-team-card__contact:hover {
  color: #15803d;
}

/* --- SECTION 11: CLOSING CTA --- */
.about-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/mea-hero-house.jpg');
  background-size: cover;
  background-position: center 60%;
  text-align: center;
  padding: 80px 5%;
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.82);
  z-index: 1;
}

.about-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-cta__aside {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.about-cta__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}

.about-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about-cta__btn--primary {
  background: var(--accent-color, #16a34a);
  color: #ffffff;
}

.about-cta__btn--primary:hover {
  background: #15803d;
  transform: translateY(-1px);
}

.about-cta__btn--secondary {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

.about-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.18);
}

.about-cta__trust {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-passion__layout { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-stat { border-right: none; padding-right: 0; }
  .about-challenges__grid { grid-template-columns: 1fr; }
  .about-mvv { grid-template-columns: 1fr; min-height: auto; }
  .about-mvv__image { min-height: 400px; }
  .about-how__layout { grid-template-columns: 1fr; gap: 40px; }
  .about-benefits__grid { grid-template-columns: 1fr; }
  .about-credentials__grid { grid-template-columns: 1fr; }
  .about-redflags__grid { grid-template-columns: 1fr; }
  .about-letter__layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .about-passion,
  .about-challenges,
  .about-how,
  .about-benefits,
  .about-credentials,
  .about-redflags,
  .about-letter,
  .about-team { padding: 64px 0; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-mvv__panel { padding: 48px 28px; }
  .about-hero__scroll { display: none; }
}

