/* =======================================================================
   ABOUT.CSS - COMPLETE REDESIGN
   Fully responsive, premium visuals, maintains theme
   ======================================================================= */

/* ===================== TABLE OF CONTENTS ===================== */
/* 01. CSS Variables & Base */
/* 02. Hero Section - Enhanced */
/* 03. Values Section - Premium Chips */
/* 04. Story Section - Editorial Layout */
/* 05. Platform Services - Modern Grid */
/* 06. Trust Section - Enhanced */
/* 07. Stats Section - Premium Cards */
/* 08. FAQ Section - Beautiful Accordion */
/* 09. Contact Section - Premium Form */
/* 10. Responsive Breakpoints - Fine-tuned */
/* ============================================================ */

/* ========================================================================
   01. CSS VARIABLES & BASE
   ======================================================================== */
:root {
  --about-accent-gradient: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  --about-card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  --about-card-shadow-hover: 0 30px 45px -15px rgba(183, 140, 90, 0.2);
}

/* ========================================================================
   02. HERO SECTION - REDESIGNED (Pure Typography, No Icons)
   ======================================================================== */
.about-hero-pure {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 5vw, 4rem);
  background: white;
  position: relative;
  overflow: hidden;
}

.about-hero-pure::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(183, 140, 90, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-hero-pure-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-hero-pure-layout {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 8vw, 6rem);
  }
}

/* Content side - pure typography */
.about-hero-pure-content {
  flex: 1 1 100%;
  animation: fadeInUp 0.8s ease;
}

@media (min-width: 768px) {
  .about-hero-pure-content {
    flex: 1 1 55%;
  }
}

.pure-date {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 0.5rem;
}

.pure-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 10vw, 5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  max-width: 800px;
}

.pure-description {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: var(--text-soft);
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
  border-left: 2px solid var(--accent-light);
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .pure-description {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
  }
}

/* Pure stats - no icons, just text */
.pure-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pure-stat-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pure-stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.pure-stat-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
}

.pure-stat-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-light),
    transparent
  );
}

@media (min-width: 480px) {
  .pure-stats {
    gap: 1.5rem;
  }
  .pure-stat-number {
    font-size: 1.8rem;
  }
  .pure-stat-label {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
  }
}

@media (min-width: 768px) {
  .pure-stat-number {
    font-size: 2rem;
  }
  .pure-stat-label {
    font-size: 0.7rem;
  }
}

/* Visual side - clean image treatment */
.about-hero-pure-visual {
  flex: 1 1 100%;
  animation: fadeInUp 0.8s ease 0.1s both;
}

@media (min-width: 768px) {
  .about-hero-pure-visual {
    flex: 1 1 40%;
  }
}

.pure-image-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.pure-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px; /* Barely there radius - almost straight */
  box-shadow: 0 25px 35px -20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
  filter: grayscale(10%); /* Very subtle desaturation for editorial feel */
}

.pure-image:hover {
  transform: scale(1.01);
}

.pure-frame-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--accent-light);
  border-radius: 2px;
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease;
}

.pure-image-frame:hover .pure-frame-accent {
  bottom: -10px;
  right: -10px;
  opacity: 0.5;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .pure-frame-accent {
    bottom: -8px;
    right: -8px;
    border-width: 1px;
  }

  .pure-date {
    font-size: 0.6rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }

  .pure-description {
    padding-left: 1rem;
    border-left-width: 1px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .pure-title {
    font-size: 2rem;
  }

  .pure-stat-number {
    font-size: 1.3rem;
  }

  .pure-stat-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .pure-stats {
    gap: 0.75rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================================
   03. VALUES SECTION - REDESIGNED (Minimal, Compact, Elegant)
   ======================================================================== */
.values-minimal-section {
  padding: 2rem 0 2.5rem 0; /* Smaller vertical padding */
  background: white;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.values-minimal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.minimal-line {
  display: block;
  width: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-light),
    transparent
  );
}

.minimal-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  font-weight: 400;
}

.values-minimal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 0.8rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.value-minimal-item {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: default;
  line-height: 1.3;
}

/* Subtle hover effect - only on non-touch devices */
@media (hover: hover) {
  .value-minimal-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(183, 140, 90, 0.02);
    transform: translateY(-1px);
  }
}

/* Tablet and small desktop adjustments */
@media (min-width: 640px) {
  .values-minimal-section {
    padding: 2.2rem 0 2.8rem 0;
  }
  .value-minimal-item {
    padding: 0.45rem 1.2rem;
    font-size: 0.8rem;
  }
  .minimal-line {
    width: 50px;
  }
}

/* Desktop: display in one line */
@media (min-width: 1024px) {
  .values-minimal-grid {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

/* Very small devices - ensure no overflow */
@media (max-width: 380px) {
  .value-minimal-item {
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    white-space: normal; /* Allow wrapping on tiny screens if needed */
  }
  .values-minimal-grid {
    gap: 0.4rem;
  }
}

/* ========================================================================
   04. STORY SECTION - REDESIGNED (Compact, Editorial, Minimal)
   ======================================================================== */
.story-minimal-section {
  padding: 2rem 0 2.5rem 0;
  background: linear-gradient(145deg, #ffffff 0%, var(--bg) 100%);
  position: relative;
}

.story-minimal-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .story-minimal-layout {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .story-minimal-layout {
    gap: 3rem;
  }
}

/* Image side - smaller and refined */
.story-minimal-image {
  flex: 1 1 100%;
  position: relative;
}

@media (min-width: 640px) {
  .story-minimal-image {
    flex: 1 1 40%;
  }
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .image-wrapper {
    max-width: 320px;
  }
}

@media (min-width: 640px) {
  .image-wrapper {
    max-width: 100%;
  }
}

.story-minimal-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.story-minimal-image:hover img {
  transform: scale(1.02);
}

.image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--accent-light);
  border-radius: 24px;
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease;
}

.image-wrapper:hover .image-accent {
  bottom: -8px;
  right: -8px;
  opacity: 0.5;
}

/* Content side - tight and editorial */
.story-minimal-content {
  flex: 1 1 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .story-minimal-content {
    flex: 1 1 55%;
    text-align: left;
  }
}

.story-minimal-eyebrow {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.story-minimal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.story-minimal-title .dot {
  color: var(--accent);
  font-size: clamp(2rem, 6vw, 2.6rem);
  line-height: 0.8;
  margin-left: 2px;
  display: inline-block;
}

.story-minimal-paragraph {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .story-minimal-paragraph {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.9rem;
  }
}

.text-highlight {
  color: var(--accent);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(183, 140, 90, 0.15);
  border-radius: 2px;
  z-index: -1;
}

.story-minimal-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .story-minimal-signature {
    justify-content: flex-start;
  }
}

.signature-line {
  width: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-light),
    transparent
  );
}

@media (min-width: 640px) {
  .signature-line {
    width: 40px;
  }
}

.signature-text {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.8;
  white-space: nowrap;
}

/* Extra small devices */
@media (max-width: 380px) {
  .story-minimal-title {
    font-size: 1.4rem;
  }
  .story-minimal-paragraph {
    font-size: 0.8rem;
  }
  .signature-text {
    font-size: 0.7rem;
  }
  .signature-line {
    width: 20px;
  }
}

/* ========================================================================
   05. PLATFORM GLANCE SECTION - REDESIGNED (Borderless Row)
   ======================================================================== */
.glance-borderless-section {
  padding: 1.5rem 0 2rem 0;
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

/* Borderless Grid */
.glance-borderless-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Mobile - Single Row (4 columns maintained, no borders) */
@media (max-width: 640px) {
  .glance-borderless-grid {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }
}

@media (max-width: 480px) {
  .glance-borderless-grid {
    gap: 0.25rem;
  }
}

/* Glance Items - Completely borderless */
.glance-borderless-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.25rem;
  background: transparent; /* No background, no borders */
  transition: transform 0.2s ease;
  gap: 0.35rem;
}

.glance-borderless-item:hover {
  transform: translateY(-2px);
}

/* Icon styling - subtle and clean */
.glance-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent; /* No background */
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-bottom: 0.1rem;
}

.glance-borderless-item:hover .glance-icon-wrapper {
  color: var(--accent-dark);
  transform: scale(1.1);
}

/* Content styling - clean typography */
.glance-content-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.glance-number {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

.glance-label {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 90px;
  margin: 0 auto;
}

/* Tablet and up - slightly larger */
@media (min-width: 640px) {
  .glance-borderless-section {
    padding: 2rem 0 2.5rem 0;
  }

  .glance-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .glance-number {
    font-size: 1.4rem;
  }

  .glance-label {
    font-size: 0.7rem;
    max-width: 110px;
    letter-spacing: 0.5px;
  }
}

@media (min-width: 768px) {
  .glance-icon-wrapper {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .glance-number {
    font-size: 1.6rem;
  }

  .glance-label {
    font-size: 0.75rem;
    max-width: 120px;
  }
}

/* Small mobile - ensure readability */
@media (max-width: 480px) {
  .glance-icon-wrapper {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .glance-number {
    font-size: 1rem;
  }

  .glance-label {
    font-size: 0.55rem;
    max-width: 70px;
    letter-spacing: 0.2px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .glance-icon-wrapper {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .glance-number {
    font-size: 0.9rem;
  }

  .glance-label {
    font-size: 0.5rem;
    max-width: 60px;
  }
}

/* Optional: Add subtle divider between items (very faint) */
.glance-borderless-item:not(:last-child) {
  position: relative;
}

.glance-borderless-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -0.35rem;
  height: 60%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-light),
    transparent
  );
  opacity: 0.4;
}

@media (max-width: 640px) {
  .glance-borderless-item:not(:last-child)::after {
    right: -0.2rem;
    opacity: 0.25;
  }
}

/* Remove the divider on the last item */
.glance-borderless-item:last-child::after {
  display: none;
}

/* ========================================================================
   06. TRUST SECTION - REDESIGNED (Image Attached to Cards)
   ======================================================================== */
.trust-attached-section {
  padding: 2rem 0 2.5rem 0;
  background: linear-gradient(145deg, var(--bg) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.trust-minimal-eyebrow {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Updated Grid Parent - now includes image */
.trust-attached-parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(
    4,
    auto
  ); /* Changed to auto for better image fit */
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  max-width: 900px;
  margin: 1.5rem auto 0 auto;
}

@media (min-width: 640px) {
  .trust-attached-parent {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin: 2rem auto 0 auto;
  }
}

/* Grid positioning - updated to include image */
.trust-grid-div1 {
  grid-area: 1 / 1 / 2 / 5;
  background: transparent;
  position: relative;
  min-height: 30px;
}

/* Decorative element for top bar */
.trust-grid-div1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-light),
    transparent
  );
  border-radius: 2px;
}

.trust-grid-div2 {
  grid-area: 4 / 1 / 5 / 5;
  background: transparent;
  position: relative;
  min-height: 30px;
}

/* Decorative element for bottom bar */
.trust-grid-div2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-light),
    transparent
  );
  border-radius: 2px;
}

/* Feature cards positioning - now in row 2 */
.trust-grid-div3 {
  grid-area: 2 / 1 / 3 / 2;
}
.trust-grid-div4 {
  grid-area: 2 / 2 / 3 / 3;
}
.trust-grid-div5 {
  grid-area: 2 / 3 / 3 / 4;
}
.trust-grid-div6 {
  grid-area: 2 / 4 / 3 / 5;
}

/* Image positioning - now in row 3, spanning all columns */
.trust-grid-image {
  grid-area: 3 / 1 / 4 / 5;
  margin-top: 0; /* No gap - attached directly to cards */
}

/* Trust Feature Cards */
.trust-feature-card {
  background: white;
  border-radius: 20px 20px 0 0; /* Flat bottom to attach to image */
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  border: 1px solid var(--border-light);
  border-bottom: none; /* Remove bottom border for seamless attachment */
  box-shadow: 0 -8px 20px -10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Add subtle shadow at the bottom edge */
.trust-feature-card::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-light),
    transparent
  );
  opacity: 0.3;
}

.trust-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 -8px 25px -12px rgba(183, 140, 90, 0.15);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    rgba(183, 140, 90, 0.1) 100%
  );
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.trust-feature-card:hover .feature-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.05) rotate(5deg);
}

.feature-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.feature-content p {
  color: var(--text-soft);
  font-size: 0.65rem;
  line-height: 1.3;
  max-width: 110px;
  margin: 0 auto;
}

/* Image Container - Now attached directly */
.trust-grid-image {
  position: relative;
  border-radius: 0 0 24px 24px; /* Rounded only at bottom */
  overflow: hidden;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
  margin-top: -1px; /* Overlap slightly to ensure no gap */
  z-index: 1;
}

.trust-attached-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.trust-grid-image:hover .trust-attached-image {
  transform: scale(1.02);
}

.image-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  text-align: center;
}

.image-overlay-content span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Tablet and up */
@media (min-width: 640px) {
  .trust-feature-card {
    padding: 1.25rem 0.5rem;
  }
  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
  .feature-content h4 {
    font-size: 0.9rem;
  }
  .feature-content p {
    font-size: 0.7rem;
    max-width: 120px;
  }
  .image-overlay-content span {
    font-size: 0.9rem;
  }
  .trust-attached-image {
    aspect-ratio: 16/3.5;
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .trust-attached-parent {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .trust-feature-card {
    padding: 0.75rem 0.25rem;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .feature-content h4 {
    font-size: 0.7rem;
    white-space: normal; /* Allow wrap on mobile */
  }

  .feature-content p {
    font-size: 0.6rem;
    line-height: 1.2;
    max-width: 90px;
  }

  .trust-attached-image {
    aspect-ratio: 16/5;
  }

  .image-overlay-content {
    padding: 1rem 0.5rem;
  }

  .image-overlay-content span {
    font-size: 0.7rem;
  }

  .trust-grid-div1::after {
    width: 40px;
  }

  .trust-grid-div2::after {
    width: 30px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .feature-content h4 {
    font-size: 0.65rem;
  }
  .feature-content p {
    font-size: 0.55rem;
    max-width: 80px;
  }
  .trust-attached-image {
    aspect-ratio: 16/6;
  }
}

/* Small devices landscape */
@media (max-width: 640px) and (orientation: landscape) {
  .trust-attached-parent {
    max-width: 600px;
  }
  .trust-attached-image {
    aspect-ratio: 16/3;
  }
}

/* ========================================================================
   08. STATS SECTION - REDESIGNED (Borderless Row on Mobile)
   ======================================================================== */
.stats-borderless-section {
  padding: 2rem 0 2rem 0;
  background: white;
  position: relative;
}

/* Borderless Grid */
.stats-borderless-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Mobile - Single Row (4 columns maintained, no borders) */
@media (max-width: 640px) {
  .stats-borderless-grid {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }
}

@media (max-width: 480px) {
  .stats-borderless-grid {
    gap: 0.25rem;
  }
}

/* Stats Items - Completely borderless */
.stat-borderless-item {
  text-align: center;
  padding: 0.75rem 0.25rem;
  background: transparent; /* No background */
  transition: transform 0.2s ease;
}

.stat-borderless-item:hover {
  transform: translateY(-2px);
}

/* Numbers - Clean typography */
.stat-borderless-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

/* Labels - Subtle and clean */
.stat-borderless-label {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 100px;
  margin: 0 auto;
}

/* Tablet and up - slightly larger */
@media (min-width: 640px) {
  .stats-borderless-section {
    padding: 2.5rem 0;
  }

  .stat-borderless-number {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
  }

  .stat-borderless-label {
    font-size: 0.7rem;
    max-width: 120px;
  }
}

@media (min-width: 768px) {
  .stat-borderless-number {
    font-size: 2rem;
  }

  .stat-borderless-label {
    font-size: 0.75rem;
    letter-spacing: 0.8px;
  }
}

/* Small mobile - ensure readability */
@media (max-width: 480px) {
  .stat-borderless-number {
    font-size: 1.1rem;
  }

  .stat-borderless-label {
    font-size: 0.55rem;
    letter-spacing: 0.3px;
    max-width: 70px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .stat-borderless-number {
    font-size: 1rem;
  }

  .stat-borderless-label {
    font-size: 0.5rem;
    max-width: 60px;
  }
}

/* Optional: Add subtle divider between items (very faint) */
.stat-borderless-item:not(:last-child) {
  position: relative;
}

.stat-borderless-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -0.25rem;
  height: 60%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-light),
    transparent
  );
  opacity: 0.5;
}

@media (max-width: 640px) {
  .stat-borderless-item:not(:last-child)::after {
    right: -0.15rem;
    opacity: 0.3;
  }
}

/* Remove the divider on the last item */
.stat-borderless-item:last-child::after {
  display: none;
}

/* ========================================================================
   07. FAQ SECTION - REDESIGNED (Slider Accordion)
   ======================================================================== */
.faq-slider-section {
  padding: 2rem 0 2.5rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.faq-slider-section .section-subtitle {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Slider Container */
.faq-slider-container {
  width: 100%;
  max-width: 100%;
  margin: 1.5rem auto 0.5rem;
  padding: 0.5rem 0 1rem 0;
  position: relative;
  overflow: visible;
}

/* Slider Track - Horizontal Scroll */
.faq-slider-track {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  scroll-padding: 0 1rem;
}

.faq-slider-track:active {
  cursor: grabbing;
}

.faq-slider-track::-webkit-scrollbar {
  height: 4px;
}

.faq-slider-track::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.faq-slider-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.faq-slider-track::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* FAQ Card - Slider Item */
.faq-slider-card {
  flex: 0 0 280px;
  min-width: 260px;
  max-width: 300px;
  scroll-snap-align: start;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: fit-content;
  margin-right: 0.25rem;
}

.faq-slider-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-light);
  box-shadow: 0 20px 30px -15px rgba(183, 140, 90, 0.15);
}

/* Card Header - Question Area */
.faq-card-header {
  padding: 1.25rem 1.25rem 0.75rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  transition: background 0.2s ease;
  user-select: none;
}

.faq-card-header:hover {
  background: var(--bg);
}

.faq-card-header h3 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
  padding-right: 0.5rem;
}

.faq-card-header i {
  color: var(--accent);
  font-size: 0.8rem;
  min-width: 24px;
  height: 24px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.faq-slider-card.active .faq-card-header i {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

/* Card Answer Area */
.faq-card-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--bg);
  border-top: 1px solid transparent;
}

.faq-slider-card.active .faq-card-answer {
  max-height: 200px; /* Plenty of space for answer */
  border-top-color: var(--border-light);
}

.faq-card-answer p {
  padding: 0 1.25rem 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Scroll Hint Dots */
.slider-scroll-hint {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-medium);
  transition: all 0.3s ease;
}

.scroll-dot:nth-child(2) {
  background: var(--accent-light);
  width: 8px;
  height: 8px;
}

/* Tablet - slightly larger cards */
@media (min-width: 640px) {
  .faq-slider-card {
    flex: 0 0 300px;
    min-width: 280px;
    max-width: 320px;
  }

  .faq-card-header h3 {
    font-size: 0.95rem;
  }

  .faq-card-answer p {
    font-size: 0.85rem;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .faq-slider-card {
    flex: 0 0 260px;
    min-width: 240px;
  }

  .faq-card-header {
    padding: 1rem 1rem 0.5rem 1rem;
  }

  .faq-card-header h3 {
    font-size: 0.85rem;
  }

  .faq-card-answer p {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .faq-slider-card {
    flex: 0 0 220px;
    min-width: 200px;
  }

  .faq-card-header h3 {
    font-size: 0.8rem;
  }
}

/* Add gradient fade on edges to indicate scrollability */
.faq-slider-container {
  position: relative;
}

.faq-slider-container::before,
.faq-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.8;
}

.faq-slider-container::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.faq-slider-container::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}

/* Remove gradients when scrolled to edges (optional - can be added with JS) */

/* ========================================================================
   09. CONTACT SECTION - Premium Form
   ======================================================================== */
.contact-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(183, 140, 90, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    gap: 4rem;
  }
}

/* Contact Info Card - Premium */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 25px 40px -20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--about-accent-gradient);
}

@media (min-width: 480px) {
  .contact-info {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .contact-info {
    padding: 3rem;
    border-radius: 28px;
  }
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -25px rgba(183, 140, 90, 0.2);
  border-color: var(--accent-light);
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-info-item:hover {
  background: var(--bg);
  border-color: var(--border-light);
  transform: translateX(5px);
}

@media (min-width: 480px) {
  .contact-info-item {
    gap: 1.8rem;
    margin-bottom: 2.2rem;
  }
}

@media (min-width: 768px) {
  .contact-info-item {
    margin-bottom: 2.5rem;
    padding: 1.25rem;
  }
}

.contact-info-item i {
  font-size: 1.3rem;
  color: var(--accent);
  min-width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    rgba(183, 140, 90, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-info-item:hover i {
  transform: scale(1.1);
  background: var(--accent);
  color: white;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info-item p {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Form - Premium */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 25px 40px -20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--about-accent-gradient);
}

@media (min-width: 480px) {
  .contact-form {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .contact-form {
    padding: 3rem;
    border-radius: 28px;
  }
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -25px rgba(183, 140, 90, 0.2);
  border-color: var(--accent-light);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.contact-form h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .form-group {
    margin-bottom: 1.8rem;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.required {
  color: var(--accent);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  min-height: 52px;
  background: var(--bg);
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .form-group input,
  .form-group textarea {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border-radius: 18px;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 140, 90, 0.1);
  background: white;
  transform: translateY(-2px);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  background: #fff5f5;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  min-height: 20px;
  font-weight: 500;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
  animation: slideDown 0.3s ease;
  border: 1px solid transparent;
}

.form-status.success {
  display: block;
  background: #ecfdf3;
  color: #067647;
  border-color: #abf0d5;
}

.form-status.error {
  display: block;
  background: #fef3f2;
  color: #b42318;
  border-color: #fecdca;
}

.form-status.info {
  display: block;
  background: #e6f7ff;
  color: #0066a0;
  border-color: #b5e5ff;
}

.contact-form .btn-primary {
  width: 100%;
  position: relative;
  min-height: 56px;
  font-size: 1rem;
  border-radius: 40px;
  background: var(--text-dark);
  color: white;
  border: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  cursor: pointer;
}

.contact-form .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--about-accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.contact-form .btn-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -15px rgba(183, 140, 90, 0.4);
}

.contact-form .btn-primary:hover::before {
  opacity: 1;
}

.contact-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form .btn-primary .btn-text,
.contact-form .btn-primary .btn-loader {
  position: relative;
  z-index: 2;
}

.contact-form .btn-primary .btn-loader i {
  font-size: 1.1rem;
}

/* Contact info — email links */
.contact-info-item p a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent-light);
  transition: color 0.25s ease, border-color 0.25s ease;
  word-break: break-word;
}

.contact-info-item p a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-info-hint {
  font-size: 0.78rem !important;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 0.35rem !important;
  line-height: 1.5 !important;
}

/* ============================
   Marketing Packages Strategy
   ============================ */
.packages-section {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.packages-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.packages-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.packages-list {
  list-style: none;
  counter-reset: package-counter;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.package-item {
  counter-increment: package-counter;
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.package-item::before {
  content: counter(package-counter);
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    rgba(183, 140, 90, 0.15) 100%
  );
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

.package-item:hover {
  border-color: var(--accent-light);
  background: white;
  transform: translateX(4px);
  box-shadow: 0 12px 24px -16px rgba(183, 140, 90, 0.25);
}

.package-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.package-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.package-duration {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(183, 140, 90, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.package-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 480px) {
  .package-item {
    padding: 0.85rem 0.85rem 0.85rem 2.75rem;
  }

  .package-item::before {
    top: 0.85rem;
    left: 0.75rem;
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .package-name {
    font-size: 0.9rem;
  }
}

/* ============================
   Recipient drop-down (select)
   ============================ */
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  padding-right: 3rem;
  border: 2px solid var(--border-light);
  border-radius: 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: all 0.3s ease;
  min-height: 52px;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b78c5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 18px 18px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.05);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .form-group select {
    padding: 1.25rem 1.5rem;
    padding-right: 3.25rem;
    font-size: 1rem;
    border-radius: 18px;
  }
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 140, 90, 0.1);
  background-color: white;
  transform: translateY(-2px);
}

.form-group select.error {
  border-color: #ef4444;
  background-color: #fff5f5;
}

.form-group select.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group select option {
  color: var(--text-dark);
  background: white;
  padding: 0.5rem;
}

.form-group select option[disabled] {
  color: var(--text-soft);
}

/* ========================================================================
   10. RESPONSIVE BREAKPOINTS - Fine-tuned for all devices
   ======================================================================== */

/* Extra Small Devices (320px - 359px) */
@media (max-width: 359px) {
  .about-title {
    font-size: 2rem;
  }

  .about-title .dot {
    font-size: 2.2rem;
  }

  .quick-facts {
    gap: 0.5rem;
  }

  .fact-chip {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }

  .story-value-item {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .platform-service-card {
    padding: 1.5rem 1rem;
  }

  .platform-service-card h3 {
    font-size: 0.9rem;
  }

  .platform-service-card p {
    font-size: 0.7rem;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .faq-question h3 {
    font-size: 0.8rem;
  }

  .faq-answer {
    font-size: 0.75rem;
  }

  .contact-info-item {
    gap: 1rem;
  }

  .contact-info-item i {
    font-size: 1.1rem;
    min-width: 28px;
    height: 28px;
  }

  .contact-info-item p {
    font-size: 0.75rem;
  }
}

/* Small Devices (360px - 389px) */
@media (min-width: 360px) and (max-width: 389px) {
  .about-title {
    font-size: 2.2rem;
  }

  .fact-chip {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .story-value-item {
    font-size: 0.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Medium Small Devices (390px - 413px) */
@media (min-width: 390px) and (max-width: 413px) {
  .about-title {
    font-size: 2.4rem;
  }

  .fact-chip {
    font-size: 0.75rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* Small Tablets (414px - 479px) */
@media (min-width: 414px) and (max-width: 479px) {
  .about-title {
    font-size: 2.6rem;
  }

  .stat-number {
    font-size: 2.4rem;
  }
}

/* Large Phones (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .about-title {
    font-size: 2.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .faq-grid {
    gap: 1.25rem;
  }
}

/* Tablets (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
  .about-title {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .platform-services-grid {
    gap: 1.5rem;
  }
}

/* Large Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-title {
    font-size: 3.2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .contact-grid {
    gap: 2rem;
  }
}

/* Small Desktops (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .about-title {
    font-size: 3.5rem;
  }

  .container {
    padding: 0 2rem;
  }
}

/* Large Desktops (1280px - 1599px) */
@media (min-width: 1280px) and (max-width: 1599px) {
  .about-title {
    font-size: 4rem;
  }

  .container {
    max-width: 1200px;
  }
}

/* Extra Large Desktops (1600px+) */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  .about-title {
    font-size: 4.5rem;
  }

  .about-description {
    font-size: 1.2rem;
    max-width: 700px;
  }

  .story-paragraph {
    font-size: 1.1rem;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .about-hero {
    padding: 1.5rem 0;
  }

  .about-hero-layout {
    gap: 1.5rem;
  }

  .about-hero-image {
    max-height: 300px;
  }

  .story-image img,
  .trust-visual img {
    max-height: 300px;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .about-hero-image,
  .story-image img,
  .trust-visual img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .quick-facts,
  .values-chips,
  .story-values,
  .contact-form,
  .btn-primary,
  .faq-question i {
    display: none !important;
  }

  .about-hero,
  .story-section,
  .services-platform-section,
  .trust-section,
  .stats-section,
  .faq-section,
  .contact-section {
    background: white;
    color: black;
    padding: 1.5rem 0;
  }

  .about-hero-image,
  .story-image img,
  .trust-visual img {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .platform-service-card,
  .contact-info,
  .faq-item {
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .stat-number {
    color: var(--text-dark);
  }

  .stat-number::after {
    background: var(--text-dark);
  }

  .stats-section {
    background: #f5f5f5;
  }

  .stat-item {
    background: white;
    border: 1px solid #ddd;
  }

  .faq-answer {
    display: block !important;
    background: white;
    border: none;
  }

  .faq-item.active {
    border-color: #ddd;
  }
}

/* Platform Services Grid - Mobile Slider with Accordion Cards */
@media (max-width: 767px) {
  .platform-services-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--border-light);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 var(--container-padding);
    scroll-behavior: smooth;
    grid-template-columns: none;
    margin-top: 1.5rem;
  }

  .platform-services-grid::-webkit-scrollbar {
    height: 4px;
  }

  .platform-services-grid::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 4px;
  }

  .platform-services-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
  }

  .platform-services-grid::-webkit-scrollbar-thumb:hover {
    background: #9a7a4e;
  }

  .platform-service-card {
    flex: 0 0 280px; /* Fixed width for slider */
    min-width: 260px;
    max-width: 300px;
    scroll-snap-align: start;
    margin-right: 0.5rem;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
  }

  .platform-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -12px rgba(183, 140, 90, 0.2);
  }

  .platform-service-card .service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
    position: relative;
    min-height: 70px;
    border-bottom: 1px solid transparent;
  }

  .platform-service-card .service-header:hover {
    background: var(--bg);
  }

  .platform-service-card.active .service-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
  }

  .platform-service-card .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--accent-light) 0%,
      var(--accent) 100%
    );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px -5px rgba(183, 140, 90, 0.3);
  }

  .platform-service-card h3 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    text-align: left;
    line-height: 1.3;
  }

  .platform-service-card h3::after {
    display: none; /* Remove underline */
  }

  .platform-service-card .service-arrow {
    color: var(--accent);
    font-size: 0.8rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--bg);
    border-radius: 50%;
    border: 1px solid var(--border-light);
  }

  .platform-service-card.active .service-arrow {
    transform: rotate(90deg);
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  .platform-service-card .service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg);
    padding: 0 1rem;
  }

  .platform-service-card.active .service-content {
    max-height: 120px;
    padding: 1rem;
  }

  .platform-service-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.5;
  }

  /* Add navigation hint */
  .platform-services-grid::after {
    content: "";
    flex: 0 0 1rem;
    height: 1px;
  }

  /* Add fade effect on edges */
  .services-platform-section {
    position: relative;
  }

  .services-platform-section::before,
  .services-platform-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.7;
  }

  .services-platform-section::before {
    left: 0;
    background: linear-gradient(90deg, white, transparent);
  }

  .services-platform-section::after {
    right: 0;
    background: linear-gradient(-90deg, white, transparent);
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .platform-service-card {
    flex: 0 0 240px;
    min-width: 220px;
  }

  .platform-service-card .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .platform-service-card h3 {
    font-size: 0.85rem;
  }

  .platform-service-card .service-content {
    padding: 0 0.75rem;
  }

  .platform-service-card.active .service-content {
    padding: 0.75rem;
  }

  .platform-service-card p {
    font-size: 0.75rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .platform-service-card {
    flex: 0 0 200px;
    min-width: 180px;
  }

  .platform-service-card .service-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .platform-service-card h3 {
    font-size: 0.75rem;
  }

  .platform-service-card .service-arrow {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}
/* ========================================================================
   06. TRUST SECTION - Enhanced with 2x2 Grid
   ======================================================================== */
.trust-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.trust-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .trust-layout {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 8vw, 5rem);
  }
}

.trust-content {
  flex: 1 1 100%;
  animation: fadeInLeft 0.8s ease;
}

@media (min-width: 768px) {
  .trust-content {
    flex: 1 1 50%;
  }
}

.trust-content .section-title-serif {
  text-align: left;
  margin-bottom: clamp(2rem, 5vw, 2.5rem);
  position: relative;
}

.trust-content .section-title-serif::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

/* Trust Bullets - 2x2 Grid */
.trust-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
}

@media (min-width: 480px) {
  .trust-bullets {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .trust-bullets {
    gap: 1.5rem;
  }
}

.trust-bullets li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
  text-align: center;
  align-items: center;
  height: 100%;
}

@media (min-width: 480px) {
  .trust-bullets li {
    padding: 1.75rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .trust-bullets li {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
}

.trust-bullets li:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 30px -15px rgba(183, 140, 90, 0.2);
}

.trust-bullets li i {
  font-size: 1.5rem;
  color: var(--accent);
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    rgba(183, 140, 90, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .trust-bullets li i {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .trust-bullets li i {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

.trust-bullets li:hover i {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent);
  color: white;
}

.trust-bullets li h4 {
  font-size: clamp(0.9rem, 2.8vw, 1.1rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-serif);
}

.trust-bullets li p {
  color: var(--text-soft);
  font-size: clamp(0.75rem, 2.2vw, 0.9rem);
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .trust-bullets {
    gap: 0.75rem;
  }

  .trust-bullets li {
    padding: 1rem 0.75rem;
  }

  .trust-bullets li i {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .trust-bullets li h4 {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
  }

  .trust-bullets li p {
    font-size: 0.7rem;
    line-height: 1.4;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .trust-bullets {
    gap: 0.5rem;
  }

  .trust-bullets li {
    padding: 0.75rem 0.5rem;
  }

  .trust-bullets li i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .trust-bullets li h4 {
    font-size: 0.75rem;
  }

  .trust-bullets li p {
    font-size: 0.65rem;
  }
}

.trust-visual {
  flex: 1 1 100%;
  position: relative;
  animation: fadeInRight 0.8s ease;
}

@media (min-width: 768px) {
  .trust-visual {
    flex: 1 1 45%;
  }
}

.trust-visual::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.trust-visual::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.trust-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.trust-visual:hover img {
  transform: scale(1.02);
}
/* FAQ - Chat Bubble Design */
@media (max-width: 767px) {
  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .faq-question {
    background: var(--accent);
    color: white;
    border-radius: 20px 20px 5px 20px;
    padding: 1rem 1.25rem;
    margin-left: auto;
    width: fit-content;
    max-width: 85%;
    box-shadow: 0 5px 15px -5px rgba(183, 140, 90, 0.3);
  }

  .faq-question h3 {
    color: white;
    font-size: 0.9rem;
    padding-right: 2rem;
  }

  .faq-question i {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }

  .faq-question.active i {
    transform: translateY(-50%) rotate(45deg);
  }

  .faq-answer {
    background: var(--bg);
    border-radius: 20px 20px 20px 5px;
    padding: 1rem 1.25rem;
    margin-right: auto;
    width: fit-content;
    max-width: 85%;
    margin-top: 0.5rem;
    border: 1px solid var(--border-light);
    animation: slideUp 0.3s ease;
  }

  .faq-answer p {
    font-size: 0.85rem;
    margin: 0;
  }

  .faq-item:nth-child(even) .faq-question {
    background: var(--text-dark);
    border-radius: 20px 20px 20px 5px;
    margin-left: 0;
    margin-right: auto;
  }

  .faq-item:nth-child(even) .faq-answer {
    border-radius: 20px 20px 5px 20px;
    margin-left: auto;
    margin-right: 0;
  }
}
/* ========================================================================
   02. HERO SECTION - Image with Matching Border
   ======================================================================== */
.about-hero-pure {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 5vw, 4rem);
  background: white;
  position: relative;
  overflow: hidden;
}

.about-hero-pure-visual {
  flex: 1 1 100%;
  line-height: 0;
  font-size: 0;
}

@media (min-width: 768px) {
  .about-hero-pure-visual {
    flex: 1 1 40%;
  }
}

.pure-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;

  /* Border styling to match the design language */
  border: 1px solid var(--border-light);
  border-radius: 24px; /* Matching the story section image border radius */

  /* Subtle shadow to match other images on the page */
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);

  /* Smooth transition for hover effect */
  transition: all 0.3s ease;
}

.pure-image:hover {
  border-color: var(--accent-light);
  box-shadow: 0 25px 35px -18px rgba(183, 140, 90, 0.2);
  transform: scale(1.01);
}

/* Remove all traces of frames, wrappers, and layers */
.pure-image-frame,
.pure-frame-accent,
.depth-shadow,
.frame-depth {
  display: none;
}
/* ========================================================================
   GLANCE SECTION - Numbers Font Change
   ======================================================================== */

.glance-number {
  /* Change from var(--font-serif) to var(--font-sans) */
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500; /* Slightly bolder for sans-serif */
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

/* Tablet and up */
@media (min-width: 640px) {
  .glance-number {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

@media (min-width: 768px) {
  .glance-number {
    font-size: 1.6rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .glance-number {
    font-size: 1rem;
    font-weight: 500;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .glance-number {
    font-size: 0.9rem;
    font-weight: 500;
  }
}

/* ========================================================================
   STATS SECTION - Numbers Font Change
   ======================================================================== */

.stat-borderless-number {
  /* Change from var(--font-serif) to var(--font-sans) */
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500; /* Slightly bolder for sans-serif */
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

/* Tablet and up */
@media (min-width: 640px) {
  .stat-borderless-number {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
  }
}

@media (min-width: 768px) {
  .stat-borderless-number {
    font-size: 2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .stat-borderless-number {
    font-size: 1.1rem;
    font-weight: 500;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .stat-borderless-number {
    font-size: 1rem;
    font-weight: 500;
  }
}
/* ========================================================================
   FAQ SECTION - Larger Header Font
   ======================================================================== */

.faq-card-header h3 {
  font-size: 1rem; /* Increased from 0.9rem */
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
  padding-right: 0.5rem;
}

/* Tablet - slightly larger */
@media (min-width: 640px) {
  .faq-card-header h3 {
    font-size: 1.05rem; /* Increased from 0.95rem */
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .faq-card-header h3 {
    font-size: 0.95rem; /* Increased from 0.85rem */
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .faq-card-header h3 {
    font-size: 0.9rem; /* Increased from 0.8rem */
  }
}
/* Add this to your about.css file at the end */

/* ========================================================================
   UNIFIED BACKGROUND COLORS - All sections use consistent background
   ======================================================================== */

/* Main sections background - all use var(--bg) */
.about-hero-pure,
.values-minimal-section,
.story-minimal-section,
.glance-borderless-section,
.trust-attached-section,
.stats-borderless-section,
.faq-slider-section,
.contact-section {
  background: var(--bg) !important;
}

/* Remove gradients from story section */
.story-minimal-section {
  background: var(--bg) !important;
  background-image: none !important;
}

/* Remove gradients from trust section */
.trust-attached-section {
  background: var(--bg) !important;
  background-image: none !important;
}

/* Remove gradients from contact section */
.contact-section {
  background: var(--bg) !important;
  background-image: none !important;
}

/* Ensure any overlays or pseudo-elements don't create visual noise */
.about-hero-pure::before,
.contact-section::before,
.story-minimal-section::before,
.trust-attached-section::before {
  display: none !important;
  opacity: 0 !important;
}

/* Border lines remain but background is consistent */
.values-minimal-section,
.glance-borderless-section,
.trust-attached-section {
  border-bottom: 1px solid var(--border-light);
  border-top: none;
}

/* Remove any gradient backgrounds from all sections */
section[class*="section"],
div[class*="section"] {
  background-image: none !important;
}
