
/* ─── PAGE WRAPPER ───────────────────────────────────────────── */
.about-wrapper {
  position: relative;
  z-index: 1;
  /* max-width: 90vw; */
  margin: 0 auto;
  padding: 25px 40px 0px;
}
@media (max-width: 768px) {
  .about-wrapper {
    padding:20px;
    max-width: 100%;
  }
}

/* ─── ABOUT BRAND SECTION (TWO COLUMN) ────────────────────────── */
.about-brand-section {
  padding: 0vw 0 2vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5vw;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  /* border-radius: var(--r-lg); */
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.about-image img {
  width: 100%;
  height: clamp(14rem, 30vw, 35rem);
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* .about-image:hover img {
  transform: scale(1.03);
} */

.about-content {
  padding: 1vw 0;
}

.about-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size:  clamp(14px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #00AFEF;
  text-transform: uppercase;
  margin-bottom: 1vw;
  font-family: var(--ff-body);
}

.about-eyebrow-line::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--green);
}

.about-content h2 {
font-family: 'Bricolage Grotesque';
  font-size: clamp(28px, 2.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5vw;
}

.about-lead {
  font-size: clamp(16px, 3.5vw, 16px);
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 2vw;
}

/* --- Features block styling --- */
.about-features-row {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  margin: 2vw 0;
}

.about-badges-group {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}

.circle-badge {
  position: relative;
  width: clamp(75px, 6vw, 110px);
  height: clamp(75px, 6vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-badge svg {
  width: 100%;
  height: 100%;
  animation: rotateBadge 15s linear infinite;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-badge text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  fill: var(--dark2);
  letter-spacing: 0.8px;
}

.badge-inner-logo {
  position: absolute;
  width: 38%;
  height: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-inner-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* display: none; */
}

.about-video-btn {
  position: relative;
  width: clamp(75px, 6vw, 110px);
  height: clamp(75px, 6vw, 110px);
  /* border-radius: 50%; */
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

.about-video-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-video-btn:hover img {
  transform: scale(1.08);
}

.play-btn-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(30px, 2.5vw, 42px);
  height: clamp(30px, 2.5vw, 42px);
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(208, 92, 56, 0.35);
  transition: background var(--t), transform var(--t);
}

.play-btn-circle .material-icons-round {
  font-size: clamp(14px, 1.2vw, 20px);
}

.about-video-btn:hover .play-btn-circle {
  background: var(--green);
  transform: scale(1.08);
}

.about-divider-line {
  width: 1px;
  height: clamp(60px, 5vw, 90px);
  background: rgba(28, 43, 66, 0.12);
}

.about-points-list {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.about-points-list li {
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 600;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-points-list li::before {
  content: "◆";
  color: var(--terracotta);
  font-size: 0.8em;
}

.about-horizontal-divider {
  width: 100%;
  height: 1px;
  background: rgba(28, 43, 66, 0.08);
  margin: 2vw 0;
}

/* --- Bottom row / CTA & Leadership --- */
.about-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  flex-wrap: wrap;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--dark);
  /* color: var(--dark2); */
  color:#f3f4f6;
  padding: 8px 8px 8px 24px;
  border-radius: var(--pill);
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}

/* .about-cta-btn:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
} */

.cta-arrow-circle {
  width: clamp(32px, 1.8vw, 48px);
  height: clamp(32px, 1.8vw, 48px);
  background: #00AFEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--t), background var(--t);
}

.cta-arrow-circle .material-symbols-outlined {
  font-size: clamp(16px, 1.3vw, 22px);
}

.about-cta-btn:hover .cta-arrow-circle {
  transform: rotate(45deg);
  background: var(--green);
}

.about-leadership {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.signature-text {
  font-family: 'DM Serif Text', serif;
  font-size: clamp(26px, 2.2vw, 36px);
  color: var(--terracotta);
  font-style: italic;
  opacity: 0.85;
  letter-spacing: -1px;
  user-select: none;
}

.leader-profile {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.leader-avatar {
  width: clamp(45px, 3.5vw, 60px);
  height: clamp(45px, 3.5vw, 60px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232, 160, 32, 0.15);
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info h4 {
  font-family: var(--ff);
  font-size: clamp(14px, 0.95vw, 16px);
  color: var(--dark2);
  font-weight: 700;
  line-height: 1.2;
}

.leader-info span {
  font-family: var(--ff-body);
  font-size: clamp(11px, 0.8vw, 13px);
  color: var(--muted);
}

@media (max-width: 576px) {
  .about-features-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .about-divider-line {
    width: 100%;
    height: 1px;
  }
  .about-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .about-leadership {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
}

/* Tablet & Mobile responsive behavior */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    max-width: 100%;
  }
  .about-content h2 {
    font-size: clamp(24px, 4vw, 36px);
  }
}
@media (max-width: 768px) {
  .about-text-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ─── METRICS GRID ───────────────────────────────────────────── */
.about-metrics-grid {
  /* display: grid; */
  display: none;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(28, 43, 66, 0.1);
  border-bottom: 1px solid rgba(28, 43, 66, 0.1);
  padding: 3vw 0;
  margin-top: 2vw;
  margin-bottom: 4vw;
}
.metric-item {
  text-align: center;
  border-right: 1px solid rgba(28, 43, 66, 0.1);
  padding: 0 1.5vw;
}
.metric-item:last-child {
  border-right: none;
}
.metric-number {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 3.8vw, 56px);
  color: var(--dark2);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.8vw;
}
.metric-label {
  font-size: clamp(10px, 0.75vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
@media (max-width: 768px) {
  .about-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
    padding: 32px 0;
  }
  .metric-item:nth-child(2) {
    border-right: none;
  }
  .metric-item:nth-child(3) {
    border-right: 1px solid rgba(28, 43, 66, 0.1);
  }

  .circle-badge text {
    font-size: 2.75vw;
  }
}
@media (max-width: 480px) {
  .about-metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .metric-item {
    border-right: none;
  }
}

/* ─── BANNER IMAGES ──────────────────────────────────────────── */
.about-banner-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 100px;
  aspect-ratio: 21/9;
}
.about-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-banner-image {
    aspect-ratio: 16/9;
    margin-bottom: 60px;
  }
}

/* ─── SECTIONS TYPOGRAPHY ────────────────────────────────────── */
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 32px;
}

/* ─── VISION & MISSION ───────────────────────────────────────── */
.vm-apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 100px;
}
.vm-apart-card {
  border: 1px solid var(--border);
  padding: 40px;
  background: var(--white);
  transition: transform var(--t), box-shadow var(--t);
}
.vm-apart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.vm-apart-card h3 {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 400;
}
.vm-apart-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .vm-apart-grid {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
  .vm-apart-card {
    padding: 30px 20px;
  }
}

/* ─── WHAT SETS US APART ─────────────────────────────────────── */
.apart-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}
.apart-card-modern {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.apart-card-modern .apart-num {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--green);
  margin-bottom: 12px;
}
.apart-card-modern h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 400;
}
.apart-card-modern p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .apart-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .apart-grid-modern {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}

/* ─── VALUES SECTION ─────────────────────────────────────────── */
.values-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}
.value-card-modern {
  border-left: 2px solid var(--green);
  padding-left: 20px;
}
.value-card-modern h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 400;
}
.value-card-modern p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .values-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .values-grid-modern {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}

/* ─── CTA MODERN ──────────────────────────────────────────────── */
.cta-card-modern {
  background: #0d1b36;
  padding: 40px 60px;
  border-radius: var(--r-lg);
  text-align: center;
  /* position: relative; */
  display: none;
  overflow: hidden;
  font-size: 3vw;
  font-weight: 600;
  margin-bottom: 40px;
}
.cta-card-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 54, 0.98) 0%, rgba(20, 30, 48, 0.9) 100%);
  z-index: 1;
}
.cta-content-modern {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-card-modern h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}
.cta-card-modern p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 500;
}
.cta-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  background: var(--white);
  color: var(--dark);
  font-family: var(--ff-serif);
  font-size: 14px;
  padding: 15px 30px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: background var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-primary:hover {
  background: #f0f0f0;
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--ff-serif);
  font-size: 14px;
  padding: 15px 30px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.legacy-section {
  padding: 5vw 0;
  background: #fff;
}

.legacy-header {
  text-align: center;
  margin-bottom: 3vw;
}

.legacy-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  font-weight: 600;
}

.legacy-header h2 {
  font-family: "Bricolage Grotesque";
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-top: 0.8rem;
  color: var(--dark);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.legacy-item {
  text-align: center;
  padding: 3rem 1rem;
  border-right: 1px solid #e5e7eb;
}

.legacy-item:last-child {
  border-right: none;
}

.legacy-item h3 {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.legacy-item p {
  font-size: 0.95rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legacy-item:nth-child(2) {
    border-right: none;
  }

  .legacy-item:nth-child(1),
  .legacy-item:nth-child(2) {
    border-bottom: 1px solid #e5e7eb;
  }
}



















@media (max-width: 576px) {
  .cta-card-modern {
    padding: 60px 24px;
  }
}

/* ─── SERVICES SECTION ────────────────────────────────────────── */
.about-services-section {
  padding: 0vw 3vw 3vw;
  background-image: url('../images/hero/pattern-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: var(--surface);
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: 2vw;
  /* max-width: 55vw; */
  margin-left: auto;
  margin-right: auto;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  font-size: clamp(14px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 1vw;
  font-family: var(--ff-body);
}

.services-eyebrow::before {
  content: "";
  display: inline-block;
  width: 2vw;
  height: 2px;
  background: var(--terracotta);
}

.services-header h2 {
  font-family: var(--ff-serif);
  font-size: 2vw;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.service-card {
  background: var(--white);
  padding: 3vw 2.2vw;
  border-radius: 4px;
  box-shadow: 0 1vw 3vw rgba(17, 24, 39, 0.02);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 1.2vw 3.5vw rgba(17, 24, 39, 0.06);
}

.service-card-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1vw 1vw 0;
  border-color: transparent transparent #e5e7eb transparent;
  transition: border-color var(--t);
}

.service-card:hover .service-card-decor {
  border-color: transparent transparent var(--terracotta) transparent;
}

.service-icon {
  margin-bottom: 1.8vw;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}

.service-icon .material-icons-round,
.service-icon img {
  height: clamp(42px, 3vw, 48px);
  width: auto;
  object-fit: contain;
  display: block;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 700;
  color: var(--dark2);
  margin-bottom: 1vw;
  line-height: 1.3;
}

.service-card p {
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
  color: var(--muted);
}

/* Responsive styles matching viewport width */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
  .services-header {
    max-width: 80vw;
    margin-bottom: 6vw;
  }
  .service-card {
    padding: 4vw 3.5vw;
  }
  .service-card-decor {
    border-width: 0 15px 15px 0;
  }
  .service-icon .material-icons-round,
  .service-icon img {
    font-size: 38px;
    height: 38px;
  }


}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
  .services-header h2 {
    font-size: 23px;
  }
  .service-card {
    padding: 6vw 5vw;
  }
  .service-icon {
    margin-bottom: 3vw;
  }
}



/* ─── COMMON SPECS SECTION ───────────────────────────────────── */
.common-specs-section {
  padding: 3vw 3vw;
  background: #fff;
  position: relative;
  z-index: 1;
}

.specs-header {
  margin-bottom: 1vw;
}

.specs-eyebrow {
  display: inline-block;
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--terracotta, #c0622f);
  text-transform: uppercase;
  margin-bottom: 0.6vw;
  font-family: var(--ff-body, 'Inter', sans-serif);
}

.specs-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
  color: var(--dark, #111827);
  line-height: 1.2;
  margin-bottom: 1vw;
}

.specs-underline {
  /* width: 52px;
  height: 3px; */
  background: var(--terracotta, #c0622f);
  border-radius: 2px;
  margin-top: 0.5vw;
}

/* 2-column grid of spec items */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2vw;
  column-gap: 4vw;
}

/* Each spec row: icon circle + text */
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4vw;
  padding: 1.4vw 1.6vw;
  border-radius: 8px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.spec-item:hover {
  background: #f8fafb;
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.05);
}

/* Teal circular icon container (matching reference image) */
.spec-icon-wrap {
  flex-shrink: 0;
  width: clamp(54px, 5.4vw, 68px);
  height: clamp(54px, 5.4vw, 68px);
  border-radius: 50%;
  background: #0d3b66;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}

.spec-item:hover .spec-icon-wrap {
  transform: scale(1.08);
  background: #0d3b66;
}

.spec-icon-wrap .material-icons-round {
  font-size: clamp(20px, 1.6vw, 28px);
}

.spec-icon-wrap i {
  font-size: clamp(18px, 1.4vw, 24px);
}

.spec-icon-wrap img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease;
}

.spec-item:hover .spec-icon-wrap img {
  transform: scale(1.1);
}

/* Text block */
.spec-text {
  flex: 1;
}

.spec-text h4 {
  font-family: 'Bricolage Grotesque', var(--ff-serif, serif);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  color: var(--dark, #111827);
  margin-bottom: 0.4vw;
  line-height: 1.3;
}

.spec-text p {
  font-family: 'Bricolage Grotesque';
  font-size: clamp(15px, 1.1vw, 16px);
  color: var(--dark);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .specs-grid {
    column-gap: 3vw;
    row-gap: 4vw;
  }
  .spec-item {
    gap: 3vw;
    padding: 2vw;
  }
}

@media (max-width: 768px) {
  .common-specs-section {
    padding: 8vw 5vw;
  }
  .specs-grid {
    grid-template-columns: 1fr;
    row-gap: 5vw;
  }
  .spec-item {
    gap: 4vw;
    padding: 3vw 2vw;
  }
  .spec-icon-wrap {
    width: 56px;
    height: 56px;
  }
  .specs-header h2 {
    font-size: clamp(22px, 5vw, 32px);
  }
  .specs-eyebrow {
    font-size: clamp(11px, 3vw, 13px);
    margin-bottom: 8px;
  }
  .spec-text h4 {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 4px;
  }
  .spec-text p {
    font-size: clamp(12px, 3.5vw, 15px);
  }
}

@media (max-width: 480px) {
  .spec-item {
    gap: 16px;
    padding: 12px 8px;
  }
  .spec-icon-wrap {
    width: 42px;
    height: 42px;
  }
  .spec-icon-wrap .material-icons-round {
    font-size: 20px;
  }
  .spec-icon-wrap i {
    font-size: 17px;
  }
  .spec-text h4 {
    font-size: clamp(14px, 5.5vw, 17px);
  }
  .spec-text p {
    font-size: clamp(15px, 3.5vw, 14px);
    line-height: 1.55;
  }
  .specs-header h2 {
    font-size: clamp(20px, 6vw, 28px);
  }
}
