/* ==========================================================================
   BuntyTech About page refresh
   Scoped to body.about-page so the shared site remains unchanged.
   ========================================================================== */

.about-page {
  --about-ink: #17271f;
  --about-muted: #607066;
  --about-paper: #f6f8f4;
  --about-line: rgba(23, 39, 31, .11);
  --about-accent: #88a86e;
  background: var(--about-paper);
}

.about-page .navbar {
  background: rgba(123,150,105,0.15);
  border-bottom-color: rgba(186, 200, 177, .13);
  backdrop-filter: blur(18px);
}

.about-page .about-page-hero {
  min-height: min(690px, 82vh);
  background-image: url('../images/banner-about.webp');
  background-position: center;
}

.about-page .about-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(159, 198, 125, .22), transparent 25%),
    linear-gradient(110deg, rgba(13, 29, 22, .9) 0%, rgba(30, 56, 42, .68) 58%, rgba(26, 46, 36, .84) 100%);
  pointer-events: none;
}

.about-page .page-hero-overlay {
  background: linear-gradient(180deg, rgba(12, 25, 19, .2), rgba(12, 25, 19, .48));
}

.about-page .page-hero-content {
  width: min(100%, 100%);
  padding: 150px 30px 88px;
  text-align: left;
}

.about-page .page-hero-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  letter-spacing: 2.8px;
}

.about-page .page-hero-content .section-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--about-accent);
}

.about-page .page-hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .92;
  letter-spacing: 1px;
  text-wrap: balance;
}

.about-page .page-hero-content h1 em {
  color: #b9d29e;
  font-style: normal;
}

.about-page .page-hero-content > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.7;
}

.about-page .page-hero-content > p .kw {
  padding: 2px 6px;
}

.about-page .page-hero-content > div {
  justify-content: flex-start !important;
  margin-top: 30px !important;
}

.about-page .page-hero-content > div > span,
.about-page .page-hero-content > div > a {
  min-height: 42px;
  padding: 11px 18px !important;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .09) !important;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.about-page .page-hero-content > div > a {
  background: var(--about-accent) !important;
  border-color: var(--about-accent);
}

.about-page .page-hero-content > div > span:hover,
.about-page .page-hero-content > div > a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .16) !important;
}

.about-page .page-hero-brand {
  display: block;
  margin-top: 52px;
  text-align: left;
  opacity: .7;
}

.about-page .trust-strip {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin: -34px auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(186, 200, 177, .22);
  border-radius: 18px;
  background: rgba(31, 54, 41, .96);
  box-shadow: 0 20px 48px rgba(14, 35, 24, .18);
}

.about-page .trust-strip-item {
  color: rgba(255, 255, 255, .66);
}

.about-page .trust-strip-item strong {
  color: #fff;
}

.about-page .trust-strip-item i {
  color: #b8d296;
}

.about-page .about-content {
  max-width: 100%;
  padding: 112px 30px 96px;
}

.about-page .about-grid {
  grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.about-page .bunty-photo-frame {
  height: 600px !important;
  border-radius: 28px !important;
  box-shadow: 0 25px 70px rgba(22, 40, 29, .18), 0 0 0 1px rgba(123, 150, 105, .24) !important;
}

.about-page .bunty-photo-frame::before {
  background: linear-gradient(to top, rgba(10, 22, 16, .72), transparent 52%) !important;
}

.about-page .bunty-float-photo {
  border: 4px solid var(--about-paper);
  box-shadow: 0 12px 28px rgba(11, 30, 18, .22);
}

.about-page .about-img-badge {
  right: 22px !important;
  bottom: 22px !important;
  padding: 12px 15px !important;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(19, 40, 27, .83) !important;
  backdrop-filter: blur(12px);
}

.about-page .bunty-skill-chip {
  border: 1px solid rgba(255, 255, 255, .25);
  background: #b8d296 !important;
  color: #1c3325 !important;
  box-shadow: 0 10px 25px rgba(20, 43, 27, .2);
}

.about-page .about-grid > .fade-in-right {
  min-width: 0;
}

.about-page .about-grid > .fade-in-right > .section-label {
  color: var(--primary-green);
}

.about-page .about-grid > .fade-in-right > .section-title {
  max-width: 590px;
  margin: 10px 0 24px !important;
  color: var(--about-ink);
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: .98;
}

.about-page .about-grid > .fade-in-right > p {
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.82;
}

.about-page .about-grid > .fade-in-right > p .kw {
  color: var(--about-ink);
  background: #e4eddc;
}

.about-page .kw-callout {
  border: 1px solid rgba(123, 150, 105, .25);
  border-left: 4px solid var(--about-accent);
  border-radius: 0 14px 14px 0;
  background: #e9f0e4 !important;
  color: var(--about-ink);
  line-height: 1.65;
}

.about-page .skills-section {
  margin-top: 110px;
  padding-top: 78px;
  border-top: 1px solid var(--about-line);
}

.about-page .skills-section .section-header {
  margin-bottom: 38px;
}

.about-page .skills-section > div:last-child {
  gap: 24px !important;
}

.about-page .skill-category {
  margin: 0;
  padding: 28px 30px 18px;
  border: 1px solid var(--about-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 30px rgba(30, 50, 36, .05);
}

.about-page .skill-category h3 {
  margin-bottom: 26px;
}

.about-page .skill-track {
  height: 7px;
  background: #e5ebe1;
}

.about-page .skill-fill {
  background: linear-gradient(90deg, #607e54, #b0ce91);
}

.about-page .experience {
  padding: 112px 30px;
  background: #e9efe6;
}

.about-page .experience .section-title,
.about-page .about-expertise-section .section-title {
  color: var(--about-ink);
}

.about-page .experience-container {
  max-width: 1080px;
}

.about-page .experience-timeline {
  background: linear-gradient(to bottom, #6e925d, #bdd5a5);
}

.about-page .experience-content {
  border-radius: 20px;
  border-color: rgba(123, 150, 105, .22);
  box-shadow: 0 12px 35px rgba(35, 55, 40, .08);
}

.about-page .experience-content:hover {
  transform: translateY(-4px);
}

.about-page .about-cta {
  position: relative;
  overflow: hidden;
  padding: 116px 30px !important;
}

.about-page .about-cta::before,
.about-page .about-cta::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(194, 221, 165, .2);
  border-radius: 50%;
  pointer-events: none;
}

.about-page .about-cta::before {
  width: 480px;
  height: 480px;
  right: -180px;
  top: -240px;
}

.about-page .about-cta::after {
  width: 300px;
  height: 300px;
  left: -130px;
  bottom: -180px;
}

.about-page .about-cta > * {
  position: relative;
  z-index: 1;
}

.about-page .about-cta h2 {
  letter-spacing: 3px !important;
}

.about-page .about-cta p {
  max-width: 580px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: rgba(255, 255, 255, .7) !important;
}

.about-page .about-expertise-section {
  background: #f6f8f4;
}

.about-page .about-expertise-section .seo-card {
  border: 1px solid var(--about-line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(32, 54, 38, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-page .about-expertise-section .seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(32, 54, 38, .1);
}

/* Rebuilt About sections --------------------------------------------------- */
.about-page .about-section-shell {
  width: min(1160px, calc(100% - 60px));
  margin: 0 auto;
}

.about-page .about-section-intro {
  margin-bottom: 54px;
}

.about-page .about-section-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .55fr);
  gap: 70px;
  align-items: end;
}

.about-page .about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--about-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-page .about-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: currentColor;
}

.about-page .about-section-intro h2,
.about-page .about-numbers-heading h2 {
  margin: 13px 0 0;
  color: var(--about-ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 70px);
  line-height: .94;
  letter-spacing: 1px;
}

.about-page .about-section-intro h2 em,
.about-page .about-numbers-heading h2 em {
  color: var(--primary-green);
  font-style: normal;
}

.about-page .about-section-intro > p,
.about-page .about-numbers-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-page .about-awards-section {
  padding: 112px 0 120px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 179, 115, .18), transparent 26%),
    linear-gradient(135deg, #142b20 0%, #294734 100%);
}

.about-page .about-awards-section .about-section-intro h2 {
  color: #fff;
}

.about-page .about-awards-section .about-section-intro h2 em {
  color: #b9d29e;
}

.about-page .about-awards-section .about-section-intro > p {
  color: rgba(255, 255, 255, .68);
}

.about-page .about-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page .about-award-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(208, 231, 188, .2);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .075);
  text-align: left;
  box-shadow: 0 16px 34px rgba(7, 23, 14, .13);
}

.about-page .about-award-image-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.about-page .about-award-image-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 210, 158, .65);
  background: rgba(255, 255, 255, .13);
}

.about-page .about-award-image-wrap {
  display: block;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  background: #e9eee5;
}

.about-page .about-award-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.about-page .about-award-image-card:hover img {
  transform: scale(1.04);
}

.about-page .about-award-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 7px 5px;
  font-size: 13px;
}

.about-page .about-award-card-footer i {
  color: #b9d29e;
  font-size: 12px;
}

.about-page .about-award-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
}

.about-page .about-award-placeholder-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: auto;
  border: 1px solid rgba(185, 210, 158, .28);
  border-radius: 12px;
  color: #b9d29e;
  background: rgba(185, 210, 158, .1);
  font-size: 18px;
}

.about-page .about-award-placeholder strong {
  font-size: 15px;
}

.about-page .about-award-placeholder small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.about-page .about-awards-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.about-page .about-awards-note i {
  color: #b9d29e;
}

.about-page .about-journey-section {
  padding: 116px 0 122px;
  background: #f6f8f4;
}

.about-page .about-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.about-page .about-journey-copy {
  position: relative;
  padding: 28px 0 0 44px;
}

.about-page .about-quote-mark {
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--about-accent);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}

.about-page .about-journey-copy p {
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.82;
}

.about-page .about-inline-link,
.about-page .about-dark-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.about-page .about-inline-link i,
.about-page .about-dark-link i {
  transition: transform .2s ease;
}

.about-page .about-inline-link:hover i,
.about-page .about-dark-link:hover i {
  transform: translateX(4px);
}

.about-page .about-milestones {
  position: relative;
  padding-left: 35px;
}

.about-page .about-milestones::before {
  content: '';
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 6px;
  width: 1px;
  background: linear-gradient(#88a86e, rgba(136, 168, 110, .12));
}

.about-page .about-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 0 0 31px;
}

.about-page .about-milestone::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid #f6f8f4;
  border-radius: 50%;
  background: var(--about-accent);
  box-shadow: 0 0 0 1px var(--about-accent);
}

.about-page .about-milestone-year {
  color: var(--primary-green);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-page .about-milestone strong {
  display: block;
  margin-bottom: 4px;
  color: var(--about-ink);
  font-size: 16px;
}

.about-page .about-milestone p {
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.65;
}

.about-page .about-trust-section {
  padding: 116px 0;
  background: #e7eee4;
}

.about-page .about-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 70px;
  align-items: stretch;
}

.about-page .about-trust-list {
  border-top: 1px solid rgba(23, 39, 31, .15);
}

.about-page .about-trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 39, 31, .15);
}

.about-page .about-trust-item > span {
  color: var(--about-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.about-page .about-trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--about-ink);
  font-size: 16px;
}

.about-page .about-trust-item p {
  max-width: 550px;
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.7;
}

.about-page .about-philosophy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  border-radius: 22px;
  color: #fff;
  background: #1c3527;
  box-shadow: 0 22px 45px rgba(25, 50, 33, .16);
}

.about-page .about-philosophy-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border-radius: 14px;
  color: #1c3527;
  background: #b9d29e;
}

.about-page .about-philosophy-card h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.about-page .about-philosophy-card p {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.8;
}

.about-page .about-dark-link {
  margin-top: auto;
  padding-top: 24px;
  color: #b9d29e;
}

.about-page .about-numbers-section {
  padding: 118px 0;
  color: #fff;
  background: #16291f;
}

.about-page .about-numbers-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(240px, .45fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.about-page .about-numbers-heading h2 {
  color: #fff;
}

.about-page .about-numbers-heading > p {
  color: rgba(255, 255, 255, .65);
}

.about-page .about-numbers-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 14px;
}

.about-page .about-number-card {
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid rgba(185, 210, 158, .15);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
}

.about-page .about-number-featured {
  background: #b9d29e;
  color: #16291f;
}

.about-page .about-number-card strong {
  display: block;
  margin-bottom: 10px;
  color: #b9d29e;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: .9;
}

.about-page .about-number-featured strong {
  color: #16291f;
}

.about-page .about-number-card strong span {
  font-family: var(--font-body);
  font-size: .42em;
}

.about-page .about-number-label {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-page .about-number-featured .about-number-label {
  color: #16291f;
}

.about-page .about-number-card p {
  margin-top: 25px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.7;
}

.about-page .about-number-featured p {
  color: rgba(22, 41, 31, .72);
}

.about-page .about-faq-section {
  padding: 116px 0 126px;
  background: #f6f8f4;
}

.about-page .about-faq-section .about-section-intro {
  max-width: 700px;
}

.about-page .about-faq-section .about-section-intro > p {
  margin-top: 20px;
}

.about-page .about-faq-section .seo-faq-list {
  max-width: 920px;
  margin-top: 0;
}

.about-page .about-faq-section .seo-faq-item {
  margin-bottom: 10px;
  border: 1px solid rgba(23, 39, 31, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.about-page .about-faq-section .seo-faq-q {
  min-height: 66px;
  padding: 17px 22px;
  color: var(--about-ink);
  background: #fff;
}

.about-page .about-faq-section .seo-faq-q::after {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--about-line);
  border-radius: 50%;
  font-size: 16px;
}

.about-page .about-faq-section .seo-faq-a {
  padding-right: 55px;
  padding-left: 22px;
  color: var(--about-muted);
}

.about-page .about-award-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 18, 11, .88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.about-page .about-award-modal.active {
  opacity: 1;
  visibility: visible;
}

.about-page .about-award-modal-box {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  padding: 14px;
  border: 1px solid rgba(185, 210, 158, .3);
  border-radius: 18px;
  background: #142b20;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
}

.about-page .about-award-modal-box img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 10px;
  object-fit: contain;
  background: #eef2eb;
}

.about-page .about-award-modal-box p {
  margin: 12px 8px 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.about-page .about-award-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: #fff;
  background: #294734;
  cursor: pointer;
}

/* Keep the About navigation readable over every hero state. */
.about-page .navbar:not(.scrolled) {
  background: rgba(12, 29, 20, .94);
  box-shadow: 0 8px 24px rgba(5, 20, 11, .16);
}

.about-page .navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, .96);
}

.about-page .navbar:not(.scrolled) .nav-link:hover,
.about-page .navbar:not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(185, 210, 158, .22);
}

.about-page .navbar:not(.scrolled) .nav-logo span {
  color: #fff;
}

.about-page .navbar:not(.scrolled) .btn-hire {
  background: #b9d29e;
  border-color: #b9d29e;
  color: #183022;
}

@media (max-width: 900px) {
  .about-page .about-section-intro-split,
  .about-page .about-numbers-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page .about-awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-journey-layout,
  .about-page .about-trust-layout {
    gap: 45px;
  }

  .about-page .about-numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-number-featured {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .about-page .about-section-shell {
    width: min(100% - 36px, 600px);
  }

  .about-page .about-awards-section,
  .about-page .about-journey-section,
  .about-page .about-trust-section,
  .about-page .about-numbers-section,
  .about-page .about-faq-section {
    padding: 78px 0 84px;
  }

  .about-page .about-section-intro {
    margin-bottom: 36px;
  }

  .about-page .about-section-intro h2,
  .about-page .about-numbers-heading h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .about-page .about-awards-grid,
  .about-page .about-journey-layout,
  .about-page .about-trust-layout {
    grid-template-columns: 1fr;
  }

  .about-page .about-award-image-wrap {
    height: 220px;
  }

  .about-page .about-journey-copy {
    padding-left: 34px;
  }

  .about-page .about-milestone {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .about-page .about-philosophy-card {
    padding: 28px;
  }

  .about-page .about-numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .about-number-featured {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .about-page .about-numbers-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-number-featured {
    grid-column: auto;
  }

  .about-page .about-number-card {
    min-height: 190px;
  }

  .about-page .about-award-modal {
    padding: 14px;
  }

  .about-page .about-award-modal-close {
    top: -8px;
    right: -8px;
  }

  .about-page .about-faq-section .seo-faq-q {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .about-page .page-hero-content {
    padding-top: 130px;
  }

  .about-page .about-grid {
    grid-template-columns: 1fr;
  }

  .about-page .bunty-photo-frame {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-page .about-page-hero {
    min-height: 620px;
  }

  .about-page .page-hero-content {
    padding: 126px 22px 78px;
  }

  .about-page .page-hero-content h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

  .about-page .page-hero-content > p {
    font-size: 15px;
  }

  .about-page .page-hero-content > div {
    gap: 9px !important;
  }

  .about-page .trust-strip {
    width: calc(100% - 30px);
    margin-top: -25px;
    padding: 16px;
    border-radius: 16px;
  }

  .about-page .about-content {
    padding-top: 78px;
  }

  .about-page .bunty-photo-frame {
    height: 500px !important;
  }

  .about-page .skills-section {
    margin-top: 72px;
    padding-top: 58px;
  }

  .about-page .skills-section > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .about-page .experience {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

@media (max-width: 480px) {
  .about-page .page-hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-page .page-hero-content h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .about-page .page-hero-content > div > span,
  .about-page .page-hero-content > div > a {
    padding: 9px 12px !important;
    font-size: 11px !important;
  }

  .about-page .page-hero-brand {
    margin-top: 38px;
  }

  .about-page .about-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-page .bunty-photo-frame {
    height: 420px !important;
  }

  .about-page .bunty-float-photo {
    display: none;
  }

  .about-page .about-cta {
    padding: 82px 18px !important;
  }
}