/* ================================================================
   about.css — Business Solution Plus About Page
================================================================ */

/* ----------------------------------------------------------------
   ABOUT PAGE HERO
---------------------------------------------------------------- */
.about-page-hero {
  position: relative;
  background: linear-gradient(135deg, #0d0f14 0%, #1a1c28 55%, #0d0f14 100%);
  color: #fff;
  padding: 0;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative grid overlay */
.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(232, 69, 69, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(232, 69, 69, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Red glow bottom-left */
.about-page-hero::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: -60px;
  width: 420px;
  height: 280px;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 69, 69, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 5% 100px;
}

.about-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #fff;
}

.about-page-hero-subtitle {
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 28px;
}

/* Stat bar */
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 4px 16px;
}

.about-hero-stat + .about-hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-hero-stat span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.about-page-breadcrumbs {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-page-breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.about-page-breadcrumbs a:hover {
  color: #fff;
}

.about-page-breadcrumbs .sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   ABOUT US SECTION
---------------------------------------------------------------- */
.about-us {
  background: var(--white);
}

.about-us-content,
.who-we-are-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-content-text,
.who-we-are-content-text {
  flex: 1;
  min-width: 0;
}

.about-us-content-text h2,
.who-we-are-content-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-us-content-text p,
.who-we-are-content-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 14px 0;
}

.about-us-content-image,
.who-we-are-content-image {
  flex-shrink: 0;
  width: 43%;
}

.about-us-content-image img,
.who-we-are-content-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------------------------
   WHO WE ARE
---------------------------------------------------------------- */
.who-we-are {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--bg);
  padding-top: 56px;
  padding-bottom: 56px;
}

.who-we-are .section-header {
  margin-bottom: 24px;
}


/* ----------------------------------------------------------------
   WHY WE EXIST
---------------------------------------------------------------- */
.why-we-exist-section {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-we-exist-section .section-header {
  margin-bottom: 48px;
}

.why-we-exist-section .section-header > p strong {
  color: var(--red);
}

.why-we-exist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.why-we-exist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-we-exist-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.wwe-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.wwe-icon i {
  color: var(--red);
  font-size: 1.2rem;
}

.why-we-exist-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.why-we-exist-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.why-we-exist-quote-full {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-we-exist-quote-full .fa-quote-left {
  color: #f59e0b;
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}

.why-we-exist-quote-full p {
  margin: 0;
  font-style: italic;
  color: #78350f;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   OUR EXPERIENCE
---------------------------------------------------------------- */
.our-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.our-experience-cards-text {
  font-size: var(--section-tagline-size);
  line-height: var(--section-tagline-line-height);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 32px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.our-experience-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 28px;
  box-sizing: border-box;
}

.our-experience-left,
.our-experience-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.experience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 1;
}

.experience-card h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.experience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.55;
}

.experience-list li i {
  margin-top: 2px;
  color: #22c55e;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.experience-card:last-child .experience-list li i {
  color: #3b82f6;
}

.our-experience-image {
  flex: 1.1;
  min-width: 0;
  display: flex;
}

.our-experience-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------------------------
   HOW WE WORK
---------------------------------------------------------------- */
.how-we-work {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--white);
}

.how-we-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.how-work-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.how-work-card i {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.how-work-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.how-work-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.how-work-card.transparency {
  background: #eaf2ff;
  border-color: #d7e7ff;
}

.how-work-card.transparency i {
  color: #2563eb;
}

.how-work-card.timelines {
  background: #eaf8ef;
  border-color: #d3f1de;
}

.how-work-card.timelines i {
  color: #16a34a;
}

.how-work-card.team {
  background: #fff5e7;
  border-color: #fde7c8;
}

.how-work-card.team i {
  color: #ea580c;
}

.how-work-card.guidance {
  background: #e9faf8;
  border-color: #d2f1ed;
}

.how-work-card.guidance i {
  color: #0f766e;
}

/* .how-we-work-note {
  max-width: 1100px;
  width: 100%;
  margin: 32px auto 0;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--dark) 0%, #1a1c28 100%);
  text-align: center;
  box-sizing: border-box;
}

.how-we-work-note p {
  margin: 0;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
} */

/* ----------------------------------------------------------------
   WHAT MAKES US DIFFERENT
---------------------------------------------------------------- */
.what-makes-different {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.what-makes-different-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.different-left,
.different-image {
  min-width: 0;
  flex: 1;
}

.different-left h2 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.different-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left-width: 4px;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.different-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.different-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.different-card h3 i {
  font-size: 1.1rem;
}

.different-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.different-card.card-blue {
  border-left-color: #2563eb;
}

.different-card.card-blue h3 i {
  color: #2563eb;
}

.different-card.card-green {
  border-left-color: #16a34a;
}

.different-card.card-green h3 i {
  color: #16a34a;
}

.different-card.card-orange {
  border-left-color: #ea580c;
}

.different-card.card-orange h3 i {
  color: #ea580c;
}

.risk-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.risk-list li {
  position: relative;
  padding-left: 14px;
  color: var(--text-2);
  font-size: 0.9rem;
}

.risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.different-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------------------------
   OUR COMMITMENT
---------------------------------------------------------------- */
.our-commitment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.our-commitment-card {
  width: 100%;
  max-width: 1100px;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, var(--dark) 0%, #1a1c28 100%);
  padding: 44px 44px 36px;
  box-shadow: 0 20px 60px rgba(232, 69, 69, 0.25);
}

.our-commitment-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.commitment-intro {
  margin: 12px 0 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--section-tagline-size);
  line-height: var(--section-tagline-line-height);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 16px;
  color: #fff;
  transition: background 0.2s;
}

.commitment-item:hover {
  background: rgba(255, 255, 255, 0.16);
}

.commitment-item i {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.commitment-item h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.commitment-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

.commitment-note {
  margin: 22px 0 0;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  opacity: 0.95;
}

/* ----------------------------------------------------------------
   LET'S BUILD IT RIGHT
---------------------------------------------------------------- */
.build-it-right {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.build-it-right-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.build-it-right-content {
  flex: 1;
  min-width: 0;
}

.build-it-right-content h2 {
  margin: 0 0 16px;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.build-it-right-content > p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* Form inside Build It Right */
.build-it-right-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 4px;
}

.bir-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bir-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bir-form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.bir-form-field input,
.bir-form-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.bir-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.bir-form-field input::placeholder {
  color: var(--text-light);
}

.bir-form-field input:focus,
.bir-form-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 69, 69, 0.1);
}

.build-it-right-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  margin-top: 4px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  background: var(--red);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.01em;
  box-sizing: border-box;
}

.build-it-right-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}

.build-it-right-cta i {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.build-it-right-image {
  flex-shrink: 0;
  width: 42%;
}

.build-it-right-image img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ================================================================
   ABOUT PAGE RESPONSIVE — ≤ 992px
================================================================ */
@media (max-width: 992px) {
  .about-page-hero-inner {
    padding: 100px 5% 80px;
  }

  .about-us-content,
  .who-we-are-content {
    flex-direction: column;
    gap: 32px;
  }

  .about-us-content-image,
  .who-we-are-content-image {
    width: 100%;
  }

  .about-us-content-image img,
  .who-we-are-content-image img {
    height: 400px;
  }

  /* Why We Exist grid */
  .why-we-exist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-experience-content {
    flex-direction: column;
    gap: 24px;
  }

  .our-experience-image img {
    height: 340px;
    min-height: 340px;
  }

  .how-we-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-makes-different-content {
    flex-direction: column;
    gap: 36px;
  }

  .different-image img {
    height: 420px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .build-it-right-inner {
    flex-direction: column;
    gap: 40px;
  }

  .build-it-right-image {
    width: 100%;
  }

  .build-it-right-image img {
    max-height: 400px;
  }
}

/* ================================================================
   ABOUT PAGE RESPONSIVE — ≤ 768px
================================================================ */
@media (max-width: 768px) {
  .about-page-hero-inner {
    padding: 90px 5% 72px;
  }

  .about-page-hero h1 {
    font-size: 1.95rem;
  }

  .about-hero-stats {
    padding: 16px 18px;
    gap: 0;
  }

  .about-hero-stat {
    padding: 4px 12px;
  }

  .about-hero-stat strong {
    font-size: 1.5rem;
  }

  .about-us-content,
  .who-we-are-content {
    text-align: center;
    gap: 24px;
  }

  .about-us-content-image img,
  .who-we-are-content-image img {
    height: 300px;
  }

  .about-us-content-text,
  .who-we-are-content-text {
    min-width: 0;
  }

  .about-us-content-text h2,
  .who-we-are-content-text h2 {
    font-size: 1.5rem;
  }

  .why-we-exist-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-we-exist-quote-full {
    padding: 20px 22px;
  }

  .our-experience-image img {
    height: 260px;
    min-height: 260px;
  }

  .how-we-work-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* .how-we-work-note {
    padding: 18px 20px;
  }

  .how-we-work-note p {
    font-size: 0.98rem;
  } */

  .different-left h2 {
    font-size: 1.75rem;
  }

  .risk-list {
    grid-template-columns: 1fr;
  }

  .different-image img {
    height: 320px;
  }

  .our-commitment-card {
    padding: 32px 24px 28px;
  }

  .build-it-right-image img {
    max-height: 300px;
  }

  .build-it-right-content h2 {
    font-size: 1.75rem;
  }

  .bir-form-row {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   ABOUT PAGE RESPONSIVE — ≤ 480px
================================================================ */
@media (max-width: 480px) {
  .about-page-hero-inner {
    padding: 80px 4% 64px;
  }

  .about-page-hero h1 {
    font-size: 1.65rem;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .about-hero-stat + .about-hero-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
  }

  .about-us-content-text h2,
  .who-we-are-content-text h2 {
    font-size: 1.3rem;
  }

  .our-commitment-card {
    padding: 28px 18px 22px;
  }

  .our-commitment-card h2 {
    font-size: 1.55rem;
  }

  .different-left h2 {
    font-size: 1.55rem;
  }

  .how-we-work-grid {
    max-width: 100%;
  }
}
