/* Impact Partners page styles
   Extends style.css — no duplication of shared rules */

/* Header teal accent for Impact Partners */
.ip-header .btn-subscribe {
  background: var(--teal);
  border-color: var(--teal);
}

.ip-header .btn-subscribe:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* Back link to corporate site */
.ip-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ip-back-link:hover {
  color: var(--primary);
}

.ip-back-link svg {
  width: 16px;
  height: 16px;
}

/* Hero */
.ip-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ip-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ip-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 60, 0.88) 0%, rgba(27, 58, 107, 0.75) 50%, rgba(14, 127, 138, 0.55) 100%);
}

.ip-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.ip-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  background: rgba(14, 127, 138, 0.15);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(14, 127, 138, 0.3);
}

.ip-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.1;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.ip-hero__headline strong {
  font-weight: 800;
}

.ip-hero__headline span {
  font-weight: 300;
}

.ip-hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

.ip-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ip-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.ip-hero__scroll span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* Stats bar */
.ip-stats-bar {
  background: var(--primary);
}

.ip-stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 48px;
  text-align: center;
}

.ip-stats-bar__number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}

.ip-stats-bar__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ip-stats-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* About section */
.ip-about {
  background: var(--white);
  padding: 100px 24px;
}

.ip-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ip-about__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.ip-about__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.ip-about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.ip-about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--teal);
  padding: 12px 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ip-about__badge-number {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.ip-about__badge-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Services section */
.ip-services {
  background: var(--light-grey);
  padding: 100px 24px;
}

.ip-services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ip-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ip-service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.ip-service-card--featured {
  background: var(--primary);
  border-color: transparent;
}

.ip-service-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(27, 58, 107, 0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: -1px;
}

.ip-service-card--featured .ip-service-card__number {
  color: rgba(255, 255, 255, 0.10);
}

.ip-service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 58, 107, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.ip-service-card--featured .ip-service-card__icon {
  background: rgba(255, 255, 255, 0.15);
}

.ip-service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.ip-service-card--featured .ip-service-card__icon svg {
  stroke: var(--white);
}

.ip-service-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.ip-service-card--featured .ip-service-card__title {
  color: var(--white);
}

.ip-service-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  flex: 1;
}

.ip-service-card--featured .ip-service-card__desc {
  color: rgba(255, 255, 255, 0.78);
}

.ip-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}

.ip-service-card--featured .ip-service-card__link {
  color: rgba(255, 255, 255, 0.9);
}

.ip-service-card__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.ip-service-card__link:hover svg {
  transform: translateX(4px);
}

/* Flagship solutions section */
.ip-solutions {
  background: var(--white);
  padding: 100px 24px;
}

.ip-solutions__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ip-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ip-solution:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ip-solution--reverse {
  direction: rtl;
}

.ip-solution--reverse>* {
  direction: ltr;
}

.ip-solution__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14, 127, 138, 0.10);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ip-solution__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.ip-solution__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ip-solution__tabs {
  display: flex;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.ip-solution__tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #888888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.ip-solution__tab:hover {
  color: var(--primary);
}

.ip-solution__tab--active {
  color: var(--primary);
  border-bottom-color: var(--teal);
  font-weight: 600;
}

.ip-solution__tab-content {
  margin-bottom: 28px;
}

.ip-solution__tab-content--hidden {
  display: none;
}

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

.ip-solution__list li {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555555;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.ip-solution__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.ip-solution__quote {
  border-left: 3px solid var(--teal);
  padding-left: 20px;
  margin: 0;
}

.ip-solution__quote p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.ip-solution__quote cite {
  font-family: var(--font-body);
  font-size: 13px;
  color: #888888;
  font-style: normal;
}

.ip-solution__image {
  border-radius: 8px;
  overflow: hidden;
}

.ip-solution__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ip-solution:hover .ip-solution__image img {
  transform: scale(1.02);
}

/* Industries section */
.ip-industries {
  background: var(--light-grey);
  padding: 100px 24px;
}

.ip-industries__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ip-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ip-industry-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.ip-industry-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 127, 138, 0.10);
  border-radius: 8px;
}

.ip-industry-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}

.ip-industry-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.ip-industry-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

/* Products section */
.ip-products {
  background: var(--white);
  padding: 100px 24px;
}

.ip-products__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ip-products__subtitle {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.ip-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.ip-product-card {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.ip-product-card--featured {
  background: var(--primary);
  border-color: transparent;
}

.ip-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ip-product-card__category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14, 127, 138, 0.10);
  padding: 4px 10px;
  border-radius: 3px;
}

.ip-product-card--featured .ip-product-card__category {
  background: rgba(14, 127, 138, 0.25);
}

.ip-product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.ip-product-card--featured .ip-product-card__price {
  color: var(--white);
}

.ip-product-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.ip-product-card--featured .ip-product-card__title {
  color: var(--white);
}

.ip-product-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
  flex: 1;
}

.ip-product-card--featured .ip-product-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.ip-product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ip-product-card__features li {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.ip-product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.ip-product-card--featured .ip-product-card__features li {
  color: rgba(255, 255, 255, 0.78);
}

.ip-products__cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--light-grey);
  border-radius: 8px;
}

.ip-products__cta p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555555;
}

/* Insights section */
.ip-insights {
  background: var(--light-grey);
  padding: 100px 24px;
}

.ip-insights__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact section */
.ip-contact {
  background: var(--primary);
  padding: 100px 24px;
}

.ip-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.ip-contact__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin: 16px 0 28px;
}

.ip-contact__details {
  font-style: normal;
}

.ip-contact__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ip-contact__details li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ip-contact__details svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.50);
  flex-shrink: 0;
}

.ip-contact__details a,
.ip-contact__details span {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ip-contact__details a:hover {
  color: var(--white);
}

.ip-contact__form {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ip-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ip-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ip-form__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.2px;
}

.ip-form__input,
.ip-form__select,
.ip-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--nav-text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.ip-form__input::placeholder,
.ip-form__textarea::placeholder {
  color: #AAAAAA;
}

.ip-form__input:focus,
.ip-form__select:focus,
.ip-form__textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 127, 138, 0.12);
}

.ip-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.ip-form__submit {
  width: 100%;
  justify-content: center;
  background: var(--teal);
  border-color: var(--teal);
}

.ip-form__submit:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.ip-form__success {
  font-family: var(--font-body);
  font-size: 14px;
  color: #22c55e;
  text-align: center;
  font-weight: 500;
}

.ip-form__success[hidden] {
  display: none;
}

/* === NEW SECTIONS FOR PDF CONTENT === */
/* ===== UNCLUTTERED SECTIONS ===== */

/* 1. Our Story (standalone) */
.ip-story-section {
  background: var(--white);
  padding: 80px 24px;
}

.ip-story-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ip-story-section__body {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.ip-story-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.ip-story-section__card {
  background: var(--light-grey);
  padding: 24px 28px;
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}

.ip-story-section__card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.ip-story-section__card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 2. Vision & Mission (side by side) */
.ip-vision-mission {
  background: var(--light-grey);
  padding: 80px 24px;
}

.ip-vision-mission__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ip-vision-mission__block {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.ip-vision-mission__block .section-label {
  margin-bottom: 12px;
}

.ip-vision-mission__block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.4;
}

/* 3. Values (clean grid) */
.ip-values {
  background: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.ip-values__inner {
  max-width: 900px;
  margin: 0 auto;
}

.ip-values__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.ip-values__item {
  background: var(--light-grey);
  padding: 12px 32px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ip-values__item span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

/* 4. Brand Positioning (standalone highlight) */
.ip-brand {
  background: var(--primary);
  padding: 80px 24px;
}

.ip-brand__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ip-brand__inner .section-label {
  color: var(--gold);
}

.ip-brand blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 0;
  border: none;
}

.ip-brand blockquote::before {
  content: '"';
  font-size: 48px;
  color: var(--gold);
  display: block;
  margin-bottom: -12px;
}

/* Responsive for the new sections */
@media (max-width: 768px) {
  .ip-story-section__grid {
    grid-template-columns: 1fr;
  }

  .ip-vision-mission__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ip-values__grid {
    gap: 12px;
  }

  .ip-values__item {
    padding: 10px 24px;
  }
}

@media (max-width: 600px) {

  .ip-story-section,
  .ip-vision-mission,
  .ip-values,
  .ip-brand {
    padding: 56px 20px;
  }

  .ip-vision-mission__block {
    padding: 28px 20px;
  }
}

/* Competitive Advantage */
.ip-advantage {
  background: var(--light-grey);
  padding: 80px 24px;
}

.ip-advantage__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ip-advantage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ip-advantage__item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.2s;
}

.ip-advantage__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ip-advantage__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(10, 124, 143, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-advantage__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
}

.ip-advantage__item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.ip-advantage__item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* WIP Modal */
.wip-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wip-modal[hidden] {
  display: none;
}

.wip-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.wip-modal__box {
  position: relative;
  background: var(--white);
  max-width: 560px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.wip-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.wip-modal__close:hover {
  color: #333;
}

.wip-modal__box h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.wip-modal__box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.wip-modal__box a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.wip-modal__box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .ip-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-advantage__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ip-about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ip-back-link {
    display: none !important;
  }

  .ip-about__image img {
    height: 320px;
  }

  .ip-solution {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ip-solution--reverse {
    direction: ltr;
  }

  .ip-solution__image img {
    height: 280px;
  }

  .ip-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ip-stats-bar__item {
    padding: 20px 24px;
  }

  .ip-story-vision__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ip-services__grid {
    grid-template-columns: 1fr;
  }

  .ip-industries__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ip-products__grid {
    grid-template-columns: 1fr;
  }

  .ip-form__row {
    grid-template-columns: 1fr;
  }

  .ip-contact__form {
    padding: 28px 20px;
  }

  .ip-advantage__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ip-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ip-hero__actions .btn-primary,
  .ip-hero__actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .ip-stats-bar__inner {
    flex-wrap: wrap;
  }

  .ip-stats-bar__divider {
    display: none;
  }

  .ip-industries__grid {
    grid-template-columns: 1fr;
  }

  .ip-about,
  .ip-services,
  .ip-solutions,
  .ip-industries,
  .ip-products,
  .ip-insights,
  .ip-contact,
  .ip-advantage,
  .ip-story-vision {
    padding: 64px 20px;
  }

  .ip-story__approach {
    grid-template-columns: 1fr;
  }

  .ip-advantage__grid {
    grid-template-columns: 1fr;
  }
}