/* ============================================================
   Fishman PR — Landing Page Plugin Styles
   All classes prefixed with fpr- to avoid theme conflicts
   ============================================================ */

/* ── RESET (scoped) ── */
.fpr-landing-body,
.fpr-landing-body *,
.fpr-landing-body *::before,
.fpr-landing-body *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fpr-landing-body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── CSS VARIABLES ── */
.fpr-landing-body {
  --fpr-purple:    #93358D;
  --fpr-purple-dk: #6e2369;
  --fpr-purple-lt: #f5edf5;
  --fpr-purple-md: #e0c8df;
  --fpr-black:     #111;
  --fpr-offwhite:  #f9f6fa;
  --fpr-text:      #1a1a1a;
  --fpr-text-sub:  #555;
  --fpr-max:       1440px;
  --fpr-pad:       clamp(16px, 5vw, 100px);
  --fpr-r-sm:      12px;
  --fpr-r-md:      20px;
  --fpr-r-lg:      32px;
}

/* ── GLOBAL ELEMENTS ── */
.fpr-container {
  width: 100%;
  max-width: var(--fpr-max);
  margin: 0 auto;
  padding: 0 var(--fpr-pad);
}

.fpr-landing-body h1 { font-size: clamp(30px, 3.8vw, 56px); font-weight: 800; line-height: 1.12; color: #fff; }
.fpr-landing-body h2 { font-size: clamp(24px, 2.6vw, 42px); font-weight: 700; line-height: 1.2;  color: var(--fpr-black); }
.fpr-landing-body h3 { font-size: clamp(18px, 1.6vw, 24px); font-weight: 700; color: var(--fpr-black); }
.fpr-landing-body h4 { font-size: clamp(16px, 1.3vw, 19px); font-weight: 600; color: var(--fpr-black); }
.fpr-landing-body p  { font-size: 16px; color: var(--fpr-text-sub); line-height: 1.7; }

.fpr-landing-body svg { display: block; }

.fpr-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fpr-purple);
  background: var(--fpr-purple-lt);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.fpr-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.fpr-section-header h2 { margin-bottom: 12px; }
.fpr-section-header p  { max-width: 620px; margin: 0 auto; }

/* ── BUTTONS ── */
.fpr-btn-primary {
  display: inline-block;
  background: var(--fpr-purple);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.fpr-btn-primary:hover {
  background: var(--fpr-purple-dk);
  transform: translateY(-2px);
}

/* ── NAV ── */
.fpr-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fpr-black);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}
.fpr-nav .fpr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fpr-nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.fpr-nav-cta {
  font-size: 14px;
  padding: 11px 26px;
}

/* ── HERO ── */
.fpr-hero {
  background: var(--fpr-black);
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 110px) 0 clamp(60px, 8vw, 120px);
}
.fpr-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
}
.fpr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,.78) 40%, rgba(17,17,17,.45) 100%);
}
.fpr-hero .fpr-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.fpr-hero h1 { margin-bottom: 18px; }
.fpr-hero-sub {
  color: rgba(255, 255, 255, .72) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  max-width: 540px !important;
  margin-top: 18px !important;
}

/* ── HERO FORM ── */
.fpr-hero-form-card {
  background: #fff;
  border-radius: var(--fpr-r-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .4);
}
.fpr-hero-form-card h3 {
  font-size: 19px;
  color: var(--fpr-black);
  margin-bottom: 4px;
  text-align: center;
}
.fpr-hero-form-card .fpr-form-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 22px;
  text-align: center;
}
.fpr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fpr-form-group { margin-bottom: 12px; }
.fpr-form-group input,
.fpr-form-group textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--fpr-text);
  background: #f8f4f8;
  border: 1.5px solid #ddd;
  border-radius: var(--fpr-r-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fpr-form-group input:focus,
.fpr-form-group textarea:focus {
  border-color: var(--fpr-purple);
  box-shadow: 0 0 0 3px rgba(147, 53, 141, .1);
}
.fpr-form-group textarea { height: 80px; resize: none; }
.fpr-form-submit {
  width: 100%;
  background: var(--fpr-purple);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 4px;
  transition: background .2s, transform .15s;
}
.fpr-form-submit:hover {
  background: var(--fpr-purple-dk);
  transform: translateY(-2px);
}
.fpr-form-privacy {
  font-size: 12px !important;
  color: #aaa !important;
  text-align: center;
  margin-top: 8px;
}
.fpr-form-message {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  padding: 8px;
  border-radius: 8px;
}
.fpr-form-message.fpr-success {
  background: #e8f5e9;
  color: #2e7d32;
}
.fpr-form-message.fpr-error {
  background: #fce4ec;
  color: #c62828;
}

/* ── TRUST BAND ── */
.fpr-trust-band {
  background: var(--fpr-purple);
  padding: 40px 0;
}
.fpr-trust-band .fpr-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.fpr-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.fpr-trust-border {
  border-left: 1px solid rgba(255, 255, 255, .3);
}
.fpr-trust-text {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}

/* ── CLIENTS / PORTFOLIO ── */
.fpr-clients-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: var(--fpr-offwhite);
}
.fpr-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.fpr-filter-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  border: 2px solid var(--fpr-purple-md);
  background: #fff;
  color: var(--fpr-text);
  cursor: pointer;
  transition: all .2s;
}
.fpr-filter-tab.active,
.fpr-filter-tab:hover {
  background: var(--fpr-purple);
  color: #fff;
  border-color: var(--fpr-purple);
}
.fpr-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fpr-portfolio-item {
  background: #fff;
  border-radius: var(--fpr-r-md);
  border: 1.5px solid var(--fpr-purple-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fpr-portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(147, 53, 141, .14);
  border-color: var(--fpr-purple);
}
.fpr-portfolio-item.fpr-hidden { display: none; }
.fpr-portfolio-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fpr-portfolio-logo img {
  max-height: 70px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.fpr-portfolio-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fpr-black);
  text-align: center;
}
.fpr-portfolio-cat-label {
  font-size: 11px;
  color: var(--fpr-purple);
  font-weight: 500;
  text-align: center;
}

/* ── CORE POSITIONING ── */
.fpr-positioning-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: var(--fpr-black);
  position: relative;
  overflow: hidden;
}
.fpr-positioning-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147,53,141,.16) 0%, transparent 65%);
  pointer-events: none;
}
.fpr-positioning-section .fpr-eyebrow {
  background: rgba(147, 53, 141, .18);
  border: 1px solid rgba(147, 53, 141, .35);
  color: #c97ec5;
}
.fpr-positioning-section h2 {
  color: #fff;
  margin-bottom: 16px;
}
.fpr-pos-lead {
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.fpr-pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.fpr-pos-story-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--fpr-r-lg);
  padding: 32px 28px;
}
.fpr-pos-story-card p,
.fpr-pos-story-content p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.fpr-pos-story-card p:last-of-type { margin-bottom: 0; }
.fpr-pos-story-card strong,
.fpr-pos-story-content strong { color: rgba(255, 255, 255, .95); font-weight: 600; }
.fpr-pos-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fpr-sherri-card {
  border-radius: var(--fpr-r-lg);
  overflow: hidden;
  position: relative;
}
.fpr-sherri-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.fpr-sherri-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
}
.fpr-sherri-overlay span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.fpr-pos-info-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--fpr-r-lg);
  padding: 26px 28px;
}
.fpr-pos-info-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.fpr-pos-info-card p:last-child { margin-bottom: 0; }
.fpr-pillar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.fpr-pillar {
  background: rgba(255, 255, 255, .05);
  border-left: 3px solid var(--fpr-purple);
  padding: 16px 20px;
  border-radius: 0 var(--fpr-r-sm) var(--fpr-r-sm) 0;
}
.fpr-pillar p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ── SERVICES ── */
.fpr-services-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: #fff;
}
.fpr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fpr-service-card {
  background: var(--fpr-offwhite);
  border-radius: var(--fpr-r-lg);
  padding: 32px 26px;
  border: 1.5px solid var(--fpr-purple-md);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fpr-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(147, 53, 141, .12);
  border-color: var(--fpr-purple);
}
.fpr-service-icon {
  width: 48px;
  height: 48px;
  background: var(--fpr-purple-lt);
  border-radius: var(--fpr-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fpr-service-card h4 { margin-bottom: 10px; line-height: 1.35; }
.fpr-service-card p  { font-size: 15px; margin: 0; }
.fpr-services-cta    { text-align: center; margin-top: 44px; }

/* ── THE REALITY ── */
.fpr-problem-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: var(--fpr-offwhite);
}
.fpr-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.fpr-pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fpr-pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--fpr-r-md);
  padding: 18px 20px;
  border: 1.5px solid #ead9ea;
}
.fpr-pain-item.fpr-positive {
  border-color: #c8e6c9;
  background: #f1faf2;
}
.fpr-pain-item svg { flex-shrink: 0; margin-top: 2px; }
.fpr-pain-item p   { font-size: 15px; margin: 0; line-height: 1.6; }
.fpr-pain-needs-heading {
  font-size: 16px;
  color: var(--fpr-text-sub);
  margin: 24px 0 14px;
}
.fpr-purple-bar {
  background: var(--fpr-purple);
  border-radius: var(--fpr-r-lg);
  padding: 28px 36px;
  text-align: center;
  margin-top: 32px;
}
.fpr-purple-bar p {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}
.fpr-reality-img {
  border-radius: var(--fpr-r-lg);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.fpr-reality-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--fpr-r-lg);
}

/* ── CASE STUDIES ── */
.fpr-cases-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: #fff;
}
.fpr-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fpr-case-card {
  border-radius: var(--fpr-r-lg);
  overflow: hidden;
  border: 1.5px solid var(--fpr-purple-md);
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.fpr-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(147, 53, 141, .12);
}
.fpr-case-logo-area {
  padding: 28px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1.5px solid var(--fpr-purple-md);
  height: 140px;
}
.fpr-case-logo-area img {
  max-height: 90px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}
.fpr-case-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fpr-case-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fpr-purple);
  margin-bottom: 6px;
}
.fpr-case-body h4 { margin-bottom: 10px; }
.fpr-case-body p  { font-size: 15px; flex: 1; line-height: 1.65; }
.fpr-case-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fpr-purple);
  text-decoration: none;
}
.fpr-case-link:hover { text-decoration: underline; }
.fpr-cases-cta { text-align: center; margin-top: 44px; }

/* ── TESTIMONIALS CAROUSEL ── */
.fpr-testi-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: var(--fpr-purple-lt);
}
.fpr-testi-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.fpr-testi-track {
  display: flex;
  gap: 22px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.fpr-testi-card {
  background: #fff;
  border-radius: var(--fpr-r-lg);
  padding: 32px 26px;
  border: 1.5px solid var(--fpr-purple-md);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 15px);
  min-width: 0;
}
.fpr-testi-qm {
  font-size: 64px;
  font-weight: 800;
  color: var(--fpr-purple);
  line-height: .7;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}
.fpr-testi-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  flex: 1;
  margin-bottom: 22px;
}
.fpr-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--fpr-purple-md);
  padding-top: 18px;
}
.fpr-testi-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--fpr-purple-md);
}
.fpr-testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.fpr-testi-name { font-size: 15px; font-weight: 700; color: var(--fpr-black); }
.fpr-testi-role { font-size: 13px; color: #777; }
.fpr-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.fpr-testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--fpr-purple-md);
  color: var(--fpr-purple);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.fpr-testi-btn:hover {
  background: var(--fpr-purple);
  color: #fff;
  border-color: var(--fpr-purple);
}
.fpr-testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fpr-testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fpr-purple-md);
  cursor: pointer;
  transition: all .2s;
  border: none;
  padding: 0;
}
.fpr-testi-dot.active {
  background: var(--fpr-purple);
  width: 24px;
  border-radius: 4px;
}

/* ── FINAL CTA ── */
.fpr-final-cta {
  padding: clamp(60px, 7vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.fpr-final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
.fpr-final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, .80);
}
.fpr-final-cta .fpr-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 70px;
  align-items: center;
}
.fpr-final-cta .fpr-eyebrow {
  background: rgba(147, 53, 141, .25);
  border: 1px solid rgba(147, 53, 141, .4);
  color: #d09acd;
}
.fpr-final-cta h2 { color: #fff; margin-bottom: 14px; }
.fpr-final-cta-text p { color: rgba(255, 255, 255, .68); font-size: 17px; }
.fpr-final-form {
  background: #fff;
  border-radius: var(--fpr-r-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}
.fpr-final-form h3 { font-size: 20px; margin-bottom: 20px; text-align: center; }

/* ── FAQ ── */
.fpr-faq-section {
  padding: clamp(50px, 6vw, 100px) 0;
  background: var(--fpr-offwhite);
}
.fpr-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.fpr-faq-item { border-bottom: 1.5px solid var(--fpr-purple-md); }
.fpr-faq-item:first-child { border-top: 1.5px solid var(--fpr-purple-md); }
.fpr-faq-btn {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fpr-black);
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  line-height: 1.4;
}
.fpr-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fpr-purple-lt);
  border: 2px solid var(--fpr-purple-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fpr-purple);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  line-height: 1;
}
.fpr-faq-item.fpr-open .fpr-faq-icon {
  background: var(--fpr-purple);
  color: #fff;
  transform: rotate(45deg);
}
.fpr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.fpr-faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--fpr-text-sub);
  line-height: 1.75;
}
.fpr-faq-item.fpr-open .fpr-faq-answer { max-height: 400px; }

/* ── FOOTER ── */
.fpr-footer {
  background: #080c13;
  padding: 34px 0;
}
.fpr-footer .fpr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fpr-footer-logo img { height: 40px; width: auto; }
.fpr-footer-copy { font-size: 14px; color: #fff; font-weight: 400; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fpr-hero .fpr-container          { grid-template-columns: 1fr; gap: 40px; }
  .fpr-hero-sub                     { max-width: 100%; }
  #fpr-hero-form                    { max-width: 520px; }
  .fpr-portfolio-grid               { grid-template-columns: repeat(3, 1fr); }
  .fpr-pos-grid                     { grid-template-columns: 1fr; gap: 32px; }
  .fpr-services-grid                { grid-template-columns: repeat(2, 1fr); }
  .fpr-problem-grid                 { grid-template-columns: 1fr; gap: 32px; }
  .fpr-cases-grid                   { grid-template-columns: repeat(2, 1fr); }
  .fpr-testi-card                   { flex: 0 0 calc(50% - 11px); }
  .fpr-final-cta .fpr-container     { grid-template-columns: 1fr; gap: 40px; }
  .fpr-final-form                   { max-width: 520px; }
  .fpr-trust-band .fpr-container    { grid-template-columns: 1fr; gap: 0; }
  .fpr-trust-border                 { border-left: none; border-top: 1px solid rgba(255,255,255,.3); padding-top: 28px; margin-top: 28px; }
}

@media (max-width: 768px) {
  .fpr-landing-body { --fpr-pad: 20px; }
  .fpr-nav-logo img    { height: 36px; }
  .fpr-btn-primary     { font-size: 14px; padding: 12px 24px; }
  .fpr-landing-body h1 { font-size: clamp(28px, 7vw, 40px); }
  .fpr-landing-body h2 { font-size: clamp(22px, 6vw, 34px); }
  .fpr-hero            { padding: 40px 0 50px; }
  .fpr-hero .fpr-container { gap: 32px; }
  #fpr-hero-form       { max-width: 100%; }
  .fpr-form-row        { grid-template-columns: 1fr; }
  .fpr-portfolio-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fpr-services-grid   { grid-template-columns: 1fr; }
  .fpr-cases-grid      { grid-template-columns: 1fr; }
  .fpr-testi-card      { flex: 0 0 100%; }
  .fpr-final-cta .fpr-container { grid-template-columns: 1fr; }
  .fpr-final-form      { max-width: 100%; }
  .fpr-footer .fpr-container { flex-direction: column; text-align: center; gap: 14px; }
  .fpr-pos-grid        { grid-template-columns: 1fr; }
  .fpr-problem-grid    { grid-template-columns: 1fr; }
  .fpr-purple-bar      { padding: 22px 20px; }
  .fpr-purple-bar p    { font-size: 15px; }
  .fpr-testi-controls  { gap: 12px; }
  .fpr-section-header  { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .fpr-portfolio-grid      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fpr-portfolio-item      { padding: 16px 12px; }
  .fpr-portfolio-logo      { height: 55px; }
  .fpr-portfolio-logo img  { max-height: 55px; max-width: 120px; }
  .fpr-filter-tab          { font-size: 13px; padding: 7px 16px; }
}
