/*
Theme Name:  Divi Child — Integrity Payment Processing
Template:    Divi
Description: Child theme for the Integrity Payment Processing build (Figma → Divi)
Version:     1.0.0
*/

/* ============ Design tokens (from Figma) ============ */
:root {
  --ipp-navy: #1B2A4A;
  --ipp-green-soft: #7FB3A8;
  --ipp-green-deep: #5A9486;
  --ipp-gold: #C9A14A;
  --ipp-gold-dark: #B8860B;
  --ipp-offwhite: #FAF9F6;
  --ipp-serif: 'Cormorant Garamond', serif;
  --ipp-sans: 'Montserrat', sans-serif;
}

/* Section/element CSS lands here per blueprint (notes/blueprint-home.md) */

/* ============ D4 layout fallback ============
   Divi 5 fails to inline its D4-compat row/column layout CSS for pages whose
   content was written via wp-cli (works for the first page, partial for the
   rest). These rules mirror Divi's gutters-3 layout; on pages where Divi DOES
   emit its own rules the values are identical, so they coexist safely. */
.et_pb_row { display: flex; flex-wrap: wrap; margin: 0 auto; position: relative; }
.et_pb_column { position: relative; min-height: 1px; }
.et_pb_column_4_4 { width: 100%; }
.et_pb_column_1_2 { width: 47.25%; }
.et_pb_column_1_3 { width: 29.6667%; }
.et_pb_column_1_4 { width: 20.875%; }
.et_pb_column_1_5 { width: 15.6%; }
.et_pb_column_1_6 { width: 12.0833%; }
.et_pb_column_2_5 { width: 37.8%; }
.et_pb_column_3_5 { width: 56.7%; }
.et_pb_column_2_3 { width: 64.8333%; }
.et_pb_column_3_4 { width: 73.625%; }
.et_pb_row > .et_pb_column:not(:last-child) { margin-right: 5.5%; }
@media (max-width: 980px) {
  .et_pb_row { display: block; }
  .et_pb_row > .et_pb_column { width: 100% !important; margin-right: 0 !important; margin-bottom: 30px; }
}

/* ============ Shared elements ============ */

/* Eyebrow label above section headings (green dot + tracked caps) */
.ipp-eyebrow {
  font-family: var(--ipp-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ipp-eyebrow .et_pb_text_inner::before,
.ipp-eyebrow:not(.et_pb_text)::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ipp-green-soft);
  margin-right: 10px;
  vertical-align: middle;
}

/* Buttons — apply class on Divi Button module */
/* !important needed — Divi's own button rules carry heavier specificity */
body a.et_pb_button.ipp-btn-gold {
  background: var(--ipp-gold) !important;
  color: var(--ipp-navy) !important;
  font-family: var(--ipp-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border: 1px solid var(--ipp-gold) !important;
  border-radius: 8px !important;
  padding: 14px 28px !important;
  transition: background .25s ease, border-color .25s ease;
}
body a.et_pb_button.ipp-btn-gold:hover {
  background: var(--ipp-gold-dark) !important;
  border-color: var(--ipp-gold-dark) !important;
  padding: 14px 28px !important;
}
body a.et_pb_button.ipp-btn-outline {
  background: transparent !important;
  color: var(--ipp-offwhite) !important;
  font-family: var(--ipp-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border: 1px solid rgba(250, 249, 246, .45) !important;
  border-radius: 8px !important;
  padding: 14px 28px !important;
  transition: border-color .25s ease, background .25s ease;
}
body a.et_pb_button.ipp-btn-outline:hover {
  border-color: var(--ipp-offwhite) !important;
  background: rgba(250, 249, 246, .08) !important;
  padding: 14px 28px !important;
}
/* Divi adds an arrow pseudo-element on hover — keep buttons clean */
body a.et_pb_button.ipp-btn-gold::after,
body a.et_pb_button.ipp-btn-outline::after { display: none !important; }

/* ============ 1. Hero ============ */

/* Apply on the hero Divi Section */
.ipp-hero {
  background:
    radial-gradient(1300px 950px at 94% 0%, rgba(201, 161, 74, .55) 0%, rgba(127, 179, 168, .22) 42%, transparent 68%),
    var(--ipp-navy);
  overflow: hidden;
  position: relative;
}
/* Decorative concentric circles (pure CSS, no asset needed) */
.ipp-hero::before {
  content: "";
  position: absolute;
  bottom: -900px;
  left: -500px;
  width: 1662px;
  height: 1662px;
  border-radius: 50%;
  border: 1px solid rgba(250, 249, 246, .07);
  box-shadow:
    inset 0 0 0 155px transparent,
    inset 0 0 0 156px rgba(250, 249, 246, .07),
    inset 0 0 0 347px transparent,
    inset 0 0 0 348px rgba(250, 249, 246, .07);
  pointer-events: none;
}
.ipp-hero h1 {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 68px;
  line-height: 1.12;
  color: var(--ipp-offwhite);
}
.ipp-hero .ipp-eyebrow { color: var(--ipp-green-soft); }

/* Floating credit cards — Image modules with these classes */
.ipp-hero-card {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .35));
  animation: ipp-float 6s ease-in-out infinite;
}
.ipp-hero-card--visa { top: 10%; right: 15%; width: 409px; z-index: 3; }
.ipp-hero-card--gold { top: 36%; right: 4%; width: 386px; z-index: 2; animation-delay: 1.2s; }
.ipp-hero-card--badge { top: 12%; right: 3%; width: 104px; z-index: 4; animation-delay: 2.4s; }
.ipp-hero-card--visa img, .ipp-hero-card--gold img { transform: rotate(-8deg); }
@keyframes ipp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Press logos strip */
.ipp-press-label {
  color: rgba(250, 249, 246, .5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ipp-press-logos img { opacity: .6; max-height: 45px; width: auto; }

/* Hero: keep the two CTA buttons inline */
.ipp-hero .et_pb_button_module_wrapper { display: inline-block; margin-right: 16px; }

/* Hero: card column anchors the absolute-positioned cards */
.ipp-hero .et_pb_row { position: relative; }

/* ============ 2. Stats ============ */
.ipp-stats { background: var(--ipp-offwhite); }
.ipp-stat { text-align: center !important; }
.et_pb_column:not(:first-child) .ipp-stat { border-left: 1px solid rgba(27, 42, 74, .15); }
.ipp-stat-num {
  display: block;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 84px;
  line-height: 1.05;
  color: var(--ipp-navy);
}
.ipp-stat-label {
  display: block;
  margin-top: 22px;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ipp-navy);
}
@media (max-width: 980px) {
  .ipp-stat-num { font-size: 56px; }
}

/* ============ Shared section pieces ============ */
.ipp-h2 {
  font-family: var(--ipp-serif) !important;
  font-weight: 600 !important;
  font-size: 56px !important;
  line-height: 1.12 !important;
  color: var(--ipp-navy);
}
.ipp-navy-sec .ipp-h2, .ipp-navy-sec h2, .ipp-navy-sec h3 { color: var(--ipp-offwhite); }
.ipp-sub { font-family: var(--ipp-sans); font-size: 16px; line-height: 1.6; color: #5b6472; }
.ipp-navy-sec .ipp-sub { color: rgba(250, 249, 246, .7); }
.ipp-light-sec { background: var(--ipp-offwhite); }
.ipp-navy-sec { background: var(--ipp-navy); }
.ipp-rounded img { border-radius: 14px; }

/* ============ 3. Problem ============ */
.ipp-problem-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 42, 74, .08);
  font-family: var(--ipp-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ipp-navy);
}
.ipp-problem-item::before {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ipp-gold);
  margin-top: 7px;
}
.ipp-problem-close {
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--ipp-navy);
  text-align: center;
}

/* ============ 4. Feature (Negotiate/Educate/Protect) — LIGHT section ============ */
.ipp-feature-card {
  background: linear-gradient(165deg, #F7F6F2 0%, #EDeCE6 100%);
  border: 1px solid #E5E3DD;
  border-radius: 14px;
  padding: 26px 26px 30px;
  height: 100%;
}
.ipp-feature-card img { border-radius: 10px; width: 100%; }
.ipp-feature-card h3 {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--ipp-navy);
  padding-top: 22px;
  padding-bottom: 8px;
}
.ipp-feature-card p {
  font-family: var(--ipp-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #5b6472;
  padding-bottom: 0;
}

/* ============ 5. Services / Who we serve ============ */
.ipp-service-num {
  font-family: var(--ipp-sans);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ipp-gold);
}
.ipp-service-item h3 {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--ipp-offwhite);
  padding: 8px 0 10px;
}
.ipp-service-item p {
  font-family: var(--ipp-sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 249, 246, .7);
}
.ipp-services-photo { margin-top: 60px; }
.ipp-services-photo img { width: 100%; border-radius: 0; }

/* ============ 7. Benefits ============ */
.ipp-benefit-card {
  background: #F0EFEB;
  border-radius: 14px;
  padding: 30px 28px;
  height: 100%;
}
.ipp-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ipp-green-deep), var(--ipp-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ipp-offwhite);
  font-size: 20px;
  margin-bottom: 40px;
}
.ipp-benefit-card h3 {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ipp-navy);
  padding-bottom: 8px;
}
.ipp-benefit-card p {
  font-family: var(--ipp-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #5b6472;
  padding-bottom: 0;
}

/* ============ 8. Comparison ============ */
.ipp-compare-head {
  font-family: var(--ipp-sans);
  font-size: 18px;
  letter-spacing: .06em;
  color: rgba(250, 249, 246, .8);
  text-align: center;
  text-transform: uppercase;
}
.ipp-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #223354;
  border: 1px solid rgba(250, 249, 246, .08);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 14px;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 17px;
  color: var(--ipp-offwhite);
}
.ipp-tick, .ipp-cross {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.ipp-tick { background: #2EAD6D; color: #fff; }
.ipp-cross { background: #E5484D; color: #fff; }
.ipp-compare-logo { text-align: center; }
.ipp-compare-logo img { max-height: 48px; width: auto; }

/* ============ 9. Testimonials ============ */
.ipp-quote {
  font-family: var(--ipp-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.45;
  color: var(--ipp-navy);
  text-align: center;
}
.ipp-quote-meta { display: flex; align-items: center; justify-content: center; gap: 14px; }
.ipp-quote-meta img { width: 48px; height: 48px; border-radius: 50%; }
.ipp-quote-name { font-family: var(--ipp-sans); font-weight: 600; font-size: 16px; color: var(--ipp-navy); padding-bottom: 0 !important; }
.ipp-quote-role { font-family: var(--ipp-sans); font-size: 15px; color: #5b6472; padding-bottom: 0 !important; }
.ipp-testi-nav { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 44px; }
.ipp-testi-bar { flex: 1; height: 3px; background: #D8D6D0; position: relative; }
.ipp-testi-bar span { position: absolute; left: 0; top: 0; height: 100%; width: 12%; background: var(--ipp-navy); }
.ipp-testi-arrows button {
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: #ECEBE6; color: var(--ipp-navy); font-size: 18px; margin-left: 10px;
}
.ipp-testi-arrows button.act { background: var(--ipp-green-soft); color: #fff; }

/* ============ 10. Statement audit ============ */
.ipp-check-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ipp-navy);
  padding: 7px 0;
}
.ipp-check-item::before {
  content: "✓";
  flex: 0 0 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ipp-green-deep);
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ipp-audit-wrap {
  background: #F0EFEB;
  border-radius: 20px;
  padding: 56px !important;
}
.ipp-audit-progress {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.ipp-audit-progress .ipp-ap-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 3px solid #C9C7C1; background: #FAF9F6; flex: 0 0 16px;
}
.ipp-audit-progress .ipp-ap-dot.gold { border-color: var(--ipp-gold-dark); }
.ipp-audit-progress .ipp-ap-line { flex: 1; height: 2px; background: #C9C7C1; }
.ipp-audit-progress .ipp-ap-line.gold { background: var(--ipp-gold-dark); }
.ipp-audit-form h3 {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--ipp-navy);
  margin-bottom: 30px;
}
.ipp-audit-form .ipp-audit-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ipp-audit-form label {
  display: block;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ipp-navy);
  margin-bottom: 8px;
}
.ipp-audit-form select {
  width: 100%;
  font-family: var(--ipp-sans);
  font-size: 15px;
  color: #5b6472;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid #A8A6A0;
  border-radius: 0;
  background: transparent;
  appearance: auto;
}
.ipp-audit-form .ipp-audit-submit {
  width: 100%;
  margin-top: 38px;
  padding: 17px;
  border: 0;
  border-radius: 6px;
  background: var(--ipp-green-soft);
  color: #fff;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s ease;
}
.ipp-audit-form .ipp-audit-submit:hover { background: var(--ipp-green-deep); }
@media (max-width: 760px) {
  .ipp-audit-wrap { padding: 28px !important; }
  .ipp-audit-form .ipp-audit-fields { grid-template-columns: 1fr; }
}

/* ============ 12. CTA band (navy, 2-col) ============ */
.ipp-cta-sec {
  background:
    radial-gradient(1000px 600px at 96% 50%, rgba(201, 161, 74, .3), rgba(127, 179, 168, .12) 45%, transparent 65%),
    var(--ipp-navy);
}
.ipp-cta-sec .ipp-h2, .ipp-cta-sec h2 { color: var(--ipp-offwhite); }
.ipp-cta-sec .ipp-eyebrow { color: rgba(250, 249, 246, .65); }
.ipp-cta-sec .ipp-sub { color: rgba(250, 249, 246, .75); }
.ipp-cta-sec .et_pb_button_module_wrapper,
.ipp-navy-sec .et_pb_button_module_wrapper,
.ipp-page-hero .et_pb_button_module_wrapper { display: inline-block; margin-right: 16px; }

/* ============ 14. Newsletter (light, 2-col, pill input) ============ */
.ipp-pill-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 5px 5px 5px 22px;
  box-shadow: 0 2px 14px rgba(27, 42, 74, .07);
  max-width: 460px;
  margin-top: 24px;
}
.ipp-pill-form input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--ipp-sans);
  font-size: 15px;
  color: var(--ipp-navy);
}
.ipp-pill-form button {
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  background: var(--ipp-green-soft);
  color: #fff;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s ease;
}
.ipp-pill-form button:hover { background: var(--ipp-green-deep); }

/* ============ 13. FAQ (2-col, square bullets, open = grey card) ============ */
.ipp-faq .et_pb_toggle {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(27, 42, 74, .12) !important;
  border-radius: 0 !important;
  padding: 26px 8px !important;
}
.ipp-faq .et_pb_toggle.et_pb_toggle_open {
  background: #F0EFEB !important;
  border-radius: 10px !important;
  border-bottom: 0 !important;
  padding: 26px 24px !important;
}
.ipp-faq h5.et_pb_toggle_title, .ipp-faq .et_pb_toggle_title {
  font-family: var(--ipp-serif) !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  color: var(--ipp-navy) !important;
}
.ipp-faq .et_pb_toggle_title::before { display: none; }
/* Divi 5 D4-compat doesn't always ship the accordion hide rule */
.ipp-faq .et_pb_toggle_close .et_pb_toggle_content { display: none; }
.ipp-faq h5.et_pb_toggle_title::after {
  content: "▪";
  color: var(--ipp-green-deep);
  font-size: 14px;
  margin-right: 12px;
  float: left;
  line-height: 1.8;
}

/* ============ 11. About ============ */
.ipp-about-photo img { border-radius: 0 0 56px 56px; }
.ipp-textlink {
  font-family: var(--ipp-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ipp-navy) !important;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ipp-navy);
  padding-bottom: 3px;
}
.ipp-textlink:hover { color: var(--ipp-green-deep) !important; border-color: var(--ipp-green-deep); }
.ipp-faq .et_pb_toggle_content {
  font-family: var(--ipp-sans);
  font-size: 15px;
  line-height: 1.65;
  color: #5b6472;
  padding-top: 14px !important;
}

@media (max-width: 980px) {
  .ipp-h2 { font-size: 38px !important; }
  .ipp-quote { font-size: 22px; }
}

/* ============ Interior page hero ============ */
.ipp-page-hero {
  background:
    radial-gradient(1100px 700px at 90% 0%, rgba(201, 161, 74, .35) 0%, rgba(127, 179, 168, .15) 45%, transparent 68%),
    var(--ipp-navy);
  overflow: hidden;
}
.ipp-page-hero h1 {
  font-family: var(--ipp-serif);
  font-weight: 500;
  font-size: 76px;
  line-height: 1.1;
  color: var(--ipp-offwhite);
}
.ipp-page-hero .ipp-eyebrow { color: var(--ipp-green-soft); }
.ipp-page-hero .ipp-sub { color: rgba(250, 249, 246, .75); }
@media (max-width: 980px) {
  .ipp-page-hero h1 { font-size: 42px; }
}

/* Green solid button (FAQ CTA etc.) */
body a.et_pb_button.ipp-btn-green {
  background: var(--ipp-green-soft) !important;
  color: #fff !important;
  font-family: var(--ipp-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border: 1px solid var(--ipp-green-soft) !important;
  border-radius: 6px !important;
  padding: 14px 28px !important;
  transition: background .25s ease;
}
body a.et_pb_button.ipp-btn-green:hover {
  background: var(--ipp-green-deep) !important;
  border-color: var(--ipp-green-deep) !important;
  padding: 14px 28px !important;
}
body a.et_pb_button.ipp-btn-green::after { display: none !important; }

/* FAQ topic tabs */
.ipp-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid rgba(27, 42, 74, .12);
}
.ipp-faq-tabs a {
  font-family: var(--ipp-sans);
  font-size: 14px;
  font-weight: 400;
  color: #5b6472;
  text-decoration: none;
  padding: 12px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.ipp-faq-tabs a.act {
  color: var(--ipp-navy);
  font-weight: 500;
  border-bottom-color: var(--ipp-navy);
}

/* ============ Who We Serve page ============ */
.ipp-industry-tabs {
  display: flex;
  border-bottom: 1px solid rgba(27, 42, 74, .12);
}
.ipp-industry-tabs a {
  flex: 1;
  text-align: center;
  font-family: var(--ipp-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6472;
  text-decoration: none;
  padding: 16px 10px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.ipp-industry-tabs a.act { color: var(--ipp-navy); font-weight: 500; border-bottom-color: var(--ipp-navy); }
.ipp-industry-panel { display: none; grid-template-columns: 1fr 1.4fr; gap: 0; margin-top: 28px; }
.ipp-industry-panel.act { display: grid; }
.ipp-industry-panel img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px 0 0 12px; display: block; }
.ipp-industry-panel .ipp-ip-body {
  background: #E8EEEA;
  border-radius: 0 12px 12px 0;
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ipp-industry-panel h3 {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--ipp-navy);
  padding: 10px 0 12px;
}
.ipp-industry-panel p { font-family: var(--ipp-sans); font-size: 15px; line-height: 1.65; color: #5b6472; }
.ipp-industry-panel .ipp-textlink { margin-top: 22px; align-self: flex-start; }
@media (max-width: 860px) {
  .ipp-industry-panel.act { grid-template-columns: 1fr; }
  .ipp-industry-panel img, .ipp-industry-panel .ipp-ip-body { border-radius: 12px; }
}

/* Problem bullets (Who We Serve) */
.ipp-why-item {
  display: flex;
  gap: 12px;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(27, 42, 74, .1);
  font-family: var(--ipp-sans);
  font-size: 15px;
  line-height: 1.65;
  color: #5b6472;
}
.ipp-why-item::before { content: "▪"; color: #E5484D; font-size: 13px; line-height: 1.9; }
.ipp-why-item strong { color: var(--ipp-navy); }
.ipp-why-item:first-child { background: #EFEEEA; border-radius: 10px; border-bottom: 0; }

/* Testimonial cards (Who We Serve) */
.ipp-testi-card {
  background: #EFF1F0;
  border-radius: 4px;
  padding: 30px 28px;
  height: 100%;
}
.ipp-testi-card .ipp-tc-tag {
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ipp-navy);
}
.ipp-testi-card .ipp-tc-tag::before { content: "▪"; color: var(--ipp-green-deep); margin-right: 8px; }
.ipp-testi-card blockquote {
  font-family: var(--ipp-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ipp-navy);
  margin: 22px 0 26px;
  padding: 0;
  border: 0;
}
.ipp-testi-card .ipp-tc-meta { display: flex; align-items: center; gap: 12px; }
.ipp-testi-card .ipp-tc-meta img { width: 44px; height: 44px; border-radius: 50%; }
.ipp-testi-card .ipp-tc-name { font-family: var(--ipp-sans); font-weight: 600; font-size: 15px; color: var(--ipp-navy); }
.ipp-testi-card .ipp-tc-role { font-family: var(--ipp-sans); font-size: 14px; color: #5b6472; }

/* ============ How We Work page ============ */
.ipp-process-wrap {
  background-image: url('http://localhost:8080/wp-content/uploads/2026/06/hww-wave-bg.png');
  background-size: cover;
  background-position: center top;
  border-radius: 14px;
  padding: 150px 28px 28px !important;
}
.ipp-process-card {
  background: linear-gradient(180deg, rgba(20, 30, 52, .92) 0%, rgba(27, 42, 74, .97) 100%);
  border: 1px solid rgba(250, 249, 246, .1);
  border-radius: 10px;
  padding: 26px 22px;
  height: 100%;
}
.ipp-process-card h3 {
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ipp-offwhite);
  border-top: 2px solid var(--ipp-green-soft);
  padding-top: 16px;
  padding-bottom: 14px;
}
.ipp-process-card p {
  font-family: var(--ipp-sans);
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(250, 249, 246, .75);
  padding-bottom: 0;
}

/* ============ Contact page ============ */
.ipp-contact-form { max-width: 1100px; margin: 0 auto; }
.ipp-contact-form .ipp-cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.ipp-contact-form .ipp-cf-full { grid-column: 1 / -1; }
.ipp-contact-form label {
  display: block;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ipp-navy);
  border-top: 1px solid #D8D6D0;
  padding-top: 14px;
  margin-bottom: 4px;
}
.ipp-contact-form input,
.ipp-contact-form select,
.ipp-contact-form textarea {
  width: 100%;
  font-family: var(--ipp-sans);
  font-size: 15px;
  color: var(--ipp-navy);
  padding: 12px 14px;
  border: 0;
  background: #fff;
  outline: none;
}
.ipp-contact-form textarea { min-height: 96px; resize: vertical; }
.ipp-contact-form ::placeholder { color: #9aa0ab; }
.ipp-contact-form .ipp-cf-submit {
  width: 100%;
  margin-top: 34px;
  padding: 17px;
  border: 0;
  border-radius: 6px;
  background: var(--ipp-green-soft);
  color: #fff;
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s ease;
}
.ipp-contact-form .ipp-cf-submit:hover { background: var(--ipp-green-deep); }
.ipp-contact-form .ipp-cf-note {
  text-align: center;
  font-family: var(--ipp-sans);
  font-size: 13px;
  color: #5b6472;
  margin-top: 16px;
}
@media (max-width: 760px) {
  .ipp-contact-form .ipp-cf-grid { grid-template-columns: 1fr; }
}

/* Direct contact cards */
.ipp-direct-card {
  background: #EFF1F0;
  border-top: 1px solid #C9C7C1;
  padding: 28px 26px 30px;
  height: 100%;
}
.ipp-direct-card .ipp-benefit-icon { width: 44px; height: 44px; margin-bottom: 70px; }
.ipp-direct-card .ipp-dc-label {
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ipp-navy);
}
.ipp-direct-card .ipp-dc-value {
  font-family: var(--ipp-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--ipp-navy);
  margin-top: 6px;
}
.ipp-map img { width: 100%; border-radius: 10px; }

/* ============ Header (child theme hook) ============ */
#main-header, #top-header, #main-footer { display: none !important; }

.ipp-site-header {
  background: var(--ipp-navy);
  position: relative;
  z-index: 999;
}
.ipp-site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ipp-site-header__logo img { height: 30px; width: auto; display: block; }
.ipp-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
}
.ipp-menu li { padding: 0; }
.ipp-menu a {
  font-family: var(--ipp-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 249, 246, .85);
  text-decoration: none;
  transition: color .2s ease;
}
.ipp-menu a:hover { color: var(--ipp-offwhite); }
.ipp-menu li.ipp-nav-cta a {
  border: 1px solid var(--ipp-gold);
  border-radius: 8px;
  padding: 10px 20px;
  color: var(--ipp-gold);
  transition: background .2s ease, color .2s ease;
}
.ipp-menu li.ipp-nav-cta a:hover { background: var(--ipp-gold); color: var(--ipp-navy); }
.ipp-burger {
  display: none;
  background: none;
  border: 0;
  color: var(--ipp-offwhite);
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 980px) {
  .ipp-burger { display: block; }
  .ipp-site-nav { display: none; width: 100%; }
  .ipp-site-header.is-open .ipp-site-nav { display: block; }
  .ipp-site-header__inner { flex-wrap: wrap; }
  .ipp-menu { flex-direction: column; align-items: flex-start; gap: 18px; padding: 12px 0 6px !important; }
}

/* ============ Footer (child theme hook) ============ */
.ipp-site-footer { background: var(--ipp-navy); }
.ipp-site-footer__inner { max-width: 1280px; margin: 0 auto; padding: 80px 4% 30px; }
.ipp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 50px;
}
.ipp-footer-logo { height: 34px; width: auto; margin-bottom: 26px; }
@media (max-width: 980px) {
  .ipp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ipp-footer-grid { grid-template-columns: 1fr; }
}
.ipp-footer-headline {
  font-family: var(--ipp-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.25;
  color: var(--ipp-offwhite);
  padding-bottom: 14px;
}
.ipp-footer-desc {
  font-family: var(--ipp-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 249, 246, .6);
  max-width: 420px;
}
.ipp-footer-head {
  font-family: var(--ipp-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, .5);
  padding-bottom: 14px;
}
.ipp-footer-links { list-style: none !important; padding: 0 !important; margin: 0; }
.ipp-footer-links li {
  font-family: var(--ipp-sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 249, 246, .75);
  padding-bottom: 12px;
}
.ipp-footer-links a { color: rgba(250, 249, 246, .75); text-decoration: none; transition: color .2s ease; }
.ipp-footer-links a:hover { color: var(--ipp-offwhite); }
.ipp-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(250, 249, 246, .12);
  padding-top: 24px;
  font-family: var(--ipp-sans);
  font-size: 13px;
  color: rgba(250, 249, 246, .55);
}
.ipp-footer-bottom a { color: rgba(250, 249, 246, .55); }
.ipp-footer-bottom a:hover { color: var(--ipp-offwhite); }

/* Hero responsive */
@media (max-width: 1100px) {
  .ipp-hero h1 { font-size: 48px; }
  .ipp-hero-card--visa { width: 300px; }
  .ipp-hero-card--gold { width: 280px; }
}
@media (max-width: 800px) {
  .ipp-hero h1 { font-size: 38px; }
  .ipp-hero-card { position: static; animation: none; margin: 24px auto 0; display: block; }
  .ipp-hero-card--badge { display: none; }
}
