/* ============================================================
   PRODUCT PAGE REDESIGN — Raiseaticket
   File     : product-redesign.css
   Scope    : all selectors prefixed .pp-
   Fonts    : Instrument Sans (headings) + Mulish (body)
   Brand    : blue #0302B0  |  teal #01A9E0  |  navy #081F2D
   Tabs     : JS toggles .pp-active on .pp-tab / .pp-tab-panel
   FAQ      : JS toggles .pp-active on .pp-faq__item
   Breaks   : 992px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand */
  --pp-blue:           #0302B0;
  --pp-blue-dk:        #02018A;
  --pp-teal:           #01A9E0;
  --pp-teal-dk:        #0195C7;
  --pp-navy:           #0D1B3E;

  /* Text */
  --pp-text:           #0D1B3E;
  --pp-text-mid:       #4A4A68;
  --pp-text-light:     #6B7280;

  /* Surfaces */
  --pp-white:          #FFFFFF;
  --pp-card-bg:        #F8F9FF;
  --pp-features-bg:    #F5F6FD;
  --pp-int-bg:         #F4F5FA;

  /* Gradients */
  --pp-grad-primary:   linear-gradient(95deg, #0302B0 1.34%, #01A9E0 97.22%);
  --pp-grad-hero:      linear-gradient(155deg, #C4EBF7 0%, #DCF4FD 25%, #EEF9FE 55%, #F8FCFF 80%, #FFFFFF 100%);
  --pp-grad-cta:       linear-gradient(135deg, #9EE5DB 0%, #B8ECF7 55%, #C6E9F7 100%);
  --pp-grad-faq:       linear-gradient(155deg, #F0FAF5 0%, #EBF7F2 100%);

  /* Borders */
  --pp-border:         #E5E7EB;
  --pp-border-blue:    #DBEAFE;

  /* Shadows */
  --pp-shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --pp-shadow-md:   0 4px 16px rgba(3,2,176,.10), 0 2px 6px rgba(0,0,0,.06);
  --pp-shadow-lg:   0 8px 32px rgba(3,2,176,.14), 0 4px 12px rgba(0,0,0,.08);

  /* Radius */
  --pp-r-xs:    4px;
  --pp-r-sm:    6px;
  --pp-r-md:    12px;
  --pp-r-lg:    20px;
  --pp-r-pill:  9999px;

  /* Fonts */
  --pp-ff-head: 'Mulish', 'Segoe UI', system-ui, sans-serif;
  --pp-ff-body: 'Instrument Sans', 'Mulish', 'Segoe UI', sans-serif;

  /* Layout */
  --pp-max-w:    1200px;
  --pp-gutter:   24px;
  --pp-sec-py:   80px;

  /* Animation */
  --pp-ease:     cubic-bezier(.16,1,.3,1);
}

/* ============================================================
   2. BASE RESET
   ============================================================ */

.pp-page *,
.pp-page *::before,
.pp-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pp-page {
  font-family: var(--pp-ff-body);
  font-size: 16px;
  color: var(--pp-text);
  background-color: var(--pp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pp-page img  { max-width: 100%; height: auto; display: block; }
.pp-page a    { color: inherit; text-decoration: none; }
.pp-page ul,
.pp-page ol   { list-style: none; }
.pp-page button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */

.pp-container {
  max-width: var(--pp-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pp-gutter);
  padding-right: var(--pp-gutter);
}

.pp-section     { padding-top: var(--pp-sec-py); padding-bottom: var(--pp-sec-py); }
.pp-section--sm { padding-top: 48px; padding-bottom: 48px; }
.pp-section--lg { padding-top: 100px; padding-bottom: 100px; }

/* ============================================================
   4. BUTTONS
   ============================================================ */

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--pp-ff-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--pp-r-pill);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition:
    opacity    .22s var(--pp-ease),
    box-shadow .22s var(--pp-ease),
    transform  .18s var(--pp-ease);
}

.pp-btn:hover  { transform: translateY(-1px); }
.pp-btn:active { transform: translateY(0); }

/* gradient fill — primary */
.pp-btn--primary {
  color: #fff;
  border: 1.5px solid #01A9E0;
  background: var(--pp-grad-primary);
  background-clip: padding-box;
}
.pp-btn--primary:hover {
  opacity: .90;
  box-shadow: 0 6px 24px rgba(3,2,176,.30);
}

/* gradient fill — teal variant (same as primary) */
.pp-btn--teal {
  color: #fff;
  border: 1.5px solid #01A9E0;
  background: var(--pp-grad-primary);
  background-clip: padding-box;
}
.pp-btn--teal:hover {
  opacity: .90;
  box-shadow: 0 6px 24px rgba(3,2,176,.30);
}

/* outline navy */
.pp-btn--outline {
  background: transparent;
  color: var(--pp-navy);
  border: 1.5px solid var(--pp-navy);
}
.pp-btn--outline:hover {
  background: rgba(13,27,62,.05);
  box-shadow: 0 4px 14px rgba(13,27,62,.12);
}

/* outline blue */
.pp-btn--outline-blue {
  background: transparent;
  color: var(--pp-blue);
  border: 1.5px solid var(--pp-blue);
}
.pp-btn--outline-blue:hover {
  background: rgba(3,2,176,.05);
  box-shadow: 0 4px 14px rgba(3,2,176,.14);
}

.pp-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   5. SHARED CHECKMARK LIST — blue outline circle
   ============================================================ */

.pp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--pp-ff-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--pp-text-mid);
}

.pp-checklist__check {
  display: block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  border-radius: 50%;
  border: 2px solid var(--pp-blue);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230302B0' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  flex-shrink: 0;
}

/* ============================================================
   6. HERO — Section 1
   Light blue gradient bg, centered, single gradient CTA
   ============================================================ */

.pp-hero {
  background: var(--pp-grad-hero);
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.pp-hero__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pp-blue);
  margin-bottom: 16px;
}

.pp-hero__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--pp-text);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.pp-hero__body {
  font-family: var(--pp-ff-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--pp-text-mid);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.pp-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   7. KEY FEATURES — Section 2
   Light lavender bg, tabbed two-column layout
   ============================================================ */

.pp-features {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F5FF 100%);
  padding-top: var(--pp-sec-py);
  padding-bottom: var(--pp-sec-py);
}

.pp-features__header { margin-bottom: 48px; }

.pp-features__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pp-blue);
  margin-bottom: 10px;
}

.pp-features__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--pp-text);
}

.pp-features__layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

/* ---- Sidebar (Figma section-2 design) ---- */
.pp-features__sidebar {
  width: 300px;
  flex-shrink: 0;
  border-right: 1px solid var(--pp-border);
  display: flex;
  flex-direction: column;
}
/* nav + list stretch to fill the sidebar's full height */
.pp-features__sidebar nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pp-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pp-tab {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--pp-border);
  background: transparent;
  font-family: var(--pp-ff-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--pp-navy);
  text-align: left;
  width: 100%;
  transition: color .2s ease, background .2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.pp-tab:last-child { border-bottom: none; }

.pp-tab:hover { color: var(--pp-blue); }

.pp-tab.pp-active,
.pp-tab[aria-selected="true"] {
  color: var(--pp-blue);
  font-weight: 700;
  background: #EEF0FB;
}
/* blue indicator bar on the sidebar's right edge */
.pp-tab.pp-active::after,
.pp-tab[aria-selected="true"]::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: -1px;
  width: 3px;
  background: var(--pp-blue);
}

.pp-tab__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-navy);
  border: none;
  opacity: 1;
}
.pp-tab__icon svg { width: 26px; height: 26px; display: block; }
.pp-tab.pp-active .pp-tab__icon { color: var(--pp-blue); }

.pp-tab__label {
  line-height: 1.35;
  text-align: left;
  background: linear-gradient(180deg, #19182D 0%, #0302B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 768px) {
  .pp-features__sidebar { width: 100%; border-right: none; }
  .pp-tab { font-size: 19px; padding: 16px 14px; }
  .pp-tab__icon, .pp-tab__icon svg { width: 22px; height: 22px; }
}

/* ---- Content panels ---- */
.pp-features__content { flex: 1; min-width: 0; }

.pp-tab-panel {
  display: none;
  background-color: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-r-lg);
  padding: 40px;
  box-shadow: var(--pp-shadow-md);
  animation: pp-fadein .25s ease;
}

.pp-tab-panel.pp-active,
.pp-tab-panel[aria-hidden="false"] { display: block; }

@keyframes pp-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* Panel icon: 80×80 teal square */
.pp-tab-panel__icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #9EE5DB 0%, #B2EFE6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.pp-tab-panel__icon svg,
.pp-tab-panel__icon img { width: 48px; height: 48px; }

.pp-tab-panel__icon i {
  font-size: 32px;
  color: var(--pp-blue);
}

.pp-tab-panel__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--pp-text);
  margin-bottom: 10px;
}

.pp-tab-panel__lead {
  font-family: var(--pp-ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--pp-text-mid);
  margin-bottom: 24px;
}

/* ============================================================
   8. FEATURE CARDS — Section 3
   Dark navy header band + white cards below
   ============================================================ */

.pp-cards {
  position: relative;
  background: var(--pp-white);
  padding-top: 0;
  padding-bottom: var(--pp-sec-py);
  overflow: hidden;
}

/* Dark top band with diagonal bottom edge */
.pp-cards::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 340px;
  background: linear-gradient(145.71deg, rgba(3, 2, 176, 0) 49.43%, #0302B0 105.03%);
  z-index: 0;
}

.pp-cards .pp-container {
  position: relative;
  z-index: 1;
}

.pp-cards__header {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pp-cards__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #4FC3F7;
  margin-bottom: 12px;
}

.pp-cards__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #FFFFFF;
}

.pp-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.pp-card {
  border: 1px solid transparent;
  border-radius: var(--pp-r-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145.71deg, rgba(3, 2, 176, 0) 49.43%, #0302B0 105.03%) border-box;
  padding: 32px 28px;
  transition:
    box-shadow   .25s ease,
    transform    .20s ease,
    border-color .20s ease;
}

.pp-card:hover {
  box-shadow: var(--pp-shadow-lg);
  transform: translateY(-3px);
  border-color: var(--pp-border-blue);
}

/* Card icon: 72×72 teal square */
.pp-card__icon-box {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9EE5DB 0%, #B2EFE6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.pp-card__icon-box svg,
.pp-card__icon-box img { width: 40px; height: 40px; }

.pp-card__icon-box i {
  font-size: 26px;
  color: var(--pp-blue);
}

.pp-card__title {
  font-family: var(--pp-ff-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pp-navy);
  margin-bottom: 10px;
}

.pp-card__title--blue { color: var(--pp-blue); }

.pp-card__body {
  font-family: var(--pp-ff-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--pp-text-light);
}

/* ============================================================
   9. KNOWLEDGE BASE — Section 3 (lower)
   Left dark visual + right content
   ============================================================ */

.pp-kb {
  background-color: var(--pp-white);
  padding-top: var(--pp-sec-py);
  padding-bottom: var(--pp-sec-py);
}

.pp-kb__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pp-kb__visual {
  background: linear-gradient(135deg, #E2F7F1 0%, #E9F5FC 55%, #EFF6FE 100%);
  border-radius: var(--pp-r-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-kb__visual img {
  width: 100%;
  height: 100%;
  /* landscape screenshot floated on a soft brand gradient; the shadow
     separates the white screenshot from the light background. */
  object-fit: contain;
  padding: 26px;
  border-radius: 12px;
  filter: drop-shadow(0 12px 28px rgba(16,24,40,.18));
}

.pp-kb__visual-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1D2E 0%, #0D1020 100%);
}

.pp-kb__content { padding: 0 8px; }

.pp-kb__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pp-blue);
  margin-bottom: 12px;
}

.pp-kb__title {
  font-family: var(--pp-ff-head);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #212738;
  margin-bottom: 14px;
}

.pp-kb__lead {
  font-family: var(--pp-ff-body);
  font-size: 24px;
  line-height: 1.75;
  color: #232321;
  margin-bottom: 28px;
}

.pp-kb__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-kb__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--pp-ff-body);
  font-size: 24px;
  line-height: 1.65;
  color: #212738;
}

/* Blue outline checkmark */
.pp-kb__check {
  display: block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 0.32em;
  border-radius: 50%;
  border: 2px solid var(--pp-blue);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230302B0' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  flex-shrink: 0;
}

/* "View more" outlined pill button */
.pp-kb__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pp-ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--pp-navy);
  text-decoration: none;
  border: 1.5px solid var(--pp-navy);
  border-radius: var(--pp-r-pill);
  padding: 10px 22px;
  transition: background .2s ease, box-shadow .2s ease, transform .18s ease;
}

.pp-kb__link:hover {
  background: rgba(13,27,62,.05);
  box-shadow: 0 4px 12px rgba(13,27,62,.10);
  transform: translateY(-1px);
}

/* ============================================================
   10. SOCIAL ICONS ROW
   ============================================================ */

.pp-social {
  background-color: var(--pp-white);
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--pp-border);
  border-bottom: 1px solid var(--pp-border);
}

.pp-social__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.pp-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .2s ease, opacity .2s ease;
}

.pp-social__link:hover { transform: translateY(-2px); opacity: .82; }

.pp-social__icon { width: 36px; height: 36px; display: block; fill: currentColor; }

.pp-social__link--twitter   { color: #000000; }
.pp-social__link--facebook  { color: #1877F2; }
.pp-social__link--instagram { color: #E4405F; }
.pp-social__link--linkedin  { color: #0A66C2; }

/* ============================================================
   11. EMAIL INTEGRATION — Section 4
   Light gray bg, integration icon cluster, outline buttons
   ============================================================ */

.pp-email-int {
  background-color: var(--pp-int-bg);
  padding-top: var(--pp-sec-py);
  padding-bottom: var(--pp-sec-py);
  text-align: center;
}

/* Integration hub — arc of connected app logos (Figma section-4) */
.pp-int-hub {
  position: relative;
  width: 900px;
  max-width: 100%;
  height: 300px;
  margin: 0 auto 48px;
}
.pp-int-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}
.pp-int-hub__card {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(16,24,40,.12), 0 2px 8px rgba(16,24,40,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pp-int-hub__card:hover {
  transform: translate(-50%, calc(-50% - 3px));
  box-shadow: 0 16px 38px rgba(16,24,40,.16);
}
/* end cards (large) */
.pp-int-hub__card--office,
.pp-int-hub__card--google { width: 128px; height: 128px; border-radius: 26px; }
/* mid cards */
.pp-int-hub__card--teams,
.pp-int-hub__card--slack { width: 74px; height: 74px; }
/* positions — % of the 900x300 stage, matching the polyline points */
.pp-int-hub__card--office { left: 12%;      top: 66.7%; }
.pp-int-hub__card--teams  { left: 36.667%; top: 32%;   }
.pp-int-hub__card--slack  { left: 61.333%; top: 32%;   }
.pp-int-hub__card--google { left: 86%;      top: 66.7%; }

/* Text labels in place of brand logos — brand colour on a 15% tint of itself.
   Tints are pre-blended OPAQUE hex (8% brand over #fff): a translucent rgba()
   would let the arc polyline behind the cards show through.
   Card sizes/positions above are unchanged, so the arc geometry is preserved. */
.pp-int-hub__label {
  font-family: var(--pp-ff-head);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -.01em;
  padding: 0 8px;
}
.pp-int-hub__card--office { background: #F9E2D9; }
.pp-int-hub__card--office .pp-int-hub__label { color: #D83B01; font-size: 17px; }

.pp-int-hub__card--teams  { background: #E7E8F2; }
.pp-int-hub__card--teams .pp-int-hub__label  { color: #6264A7; font-size: 13px; }

.pp-int-hub__card--slack  { background: #E4DCE4; }
.pp-int-hub__card--slack .pp-int-hub__label  { color: #4A154B; font-size: 13px; }

.pp-int-hub__card--google { background: #E3EDFD; }
.pp-int-hub__card--google .pp-int-hub__label { color: #4285F4; font-size: 17px; }

.pp-email-int__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pp-blue);
  margin-bottom: 14px;
}

.pp-email-int__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--pp-text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.pp-email-int__body {
  font-family: var(--pp-ff-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--pp-text-mid);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.pp-email-int__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   12. FAQ ACCORDION — Section 5
   Mint gradient bg. Active item → white card.
   ============================================================ */

.pp-faq {
  background: var(--pp-grad-faq);
  padding-top: var(--pp-sec-py);
  padding-bottom: var(--pp-sec-py);
}

.pp-faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.pp-faq__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pp-blue);
  margin-bottom: 12px;
}

.pp-faq__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--pp-text);
}

.pp-faq__list {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each item is a rounded card (faint fill when collapsed) */
.pp-faq__item {
  background: #FFF;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 24px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* Active item = solid white card, flex column (Figma spec) */
.pp-faq__item.pp-active {
  background: #FFF;
  border: 2px solid #D3F8E2;
  border-radius: 10px;
  box-shadow: 0 6px 26px rgba(13,27,62,.07);
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}

.pp-faq__question {
  display: flex;
  height: auto;
  padding: 0;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--pp-ff-head);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #212738;
  transition: color .2s ease;
}

.pp-faq__question:hover { color: var(--pp-blue); }

.pp-faq__item.pp-active .pp-faq__question {
  color: #212738;
  font-weight: 700;
  padding: 0;
  height: auto;
}

.pp-faq__q-text { flex: 1; }

.pp-faq__chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #212738;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--pp-ease), color .2s ease;
}

.pp-faq__chevron svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-faq__item.pp-active .pp-faq__chevron {
  transform: rotate(180deg);
  color: var(--pp-blue);
}

.pp-faq__answer {
  display: none;
  padding: 0 0 26px;
  font-family: var(--pp-ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--pp-text-mid);
  animation: pp-fadein .2s ease;
}
.pp-faq__answer a,
.pp-faq__answer strong { font-weight: 700; color: var(--pp-text); }

.pp-faq__item.pp-active .pp-faq__answer { display: block; padding: 0; }

/* ============================================================
   13. CTA BANNER — Section 6
   Teal→cyan gradient bg. LEFT-aligned layout.
   ============================================================ */

.pp-cta-banner {
  background: var(--pp-grad-cta);
  padding-top: 96px;
  padding-bottom: 96px;
}

.pp-cta-banner__inner {
  max-width: var(--pp-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pp-gutter);
  padding-right: var(--pp-gutter);
  text-align: left;
}

.pp-cta-banner__eyebrow {
  display: block;
  font-family: var(--pp-ff-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pp-blue);
  margin-bottom: 14px;
}

.pp-cta-banner__title {
  font-family: var(--pp-ff-head);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--pp-text);
  max-width: 560px;
  margin-bottom: 20px;
}

.pp-cta-banner__body {
  font-family: var(--pp-ff-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--pp-text-mid);
  max-width: 560px;
  margin-bottom: 40px;
}

.pp-cta-banner__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   14. MISC HELPERS
   ============================================================ */

.pp-bg-white { background-color: var(--pp-white);   }
.pp-bg-light { background-color: var(--pp-card-bg); }
.pp-bg-navy  { background-color: var(--pp-navy); color: var(--pp-white); }

.pp-divider {
  border: none;
  border-top: 1px solid var(--pp-border);
  margin: 0;
}

.pp-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   15. RESPONSIVE — 992px
   ============================================================ */

@media (max-width: 992px) {

  :root { --pp-sec-py: 64px; --pp-gutter: 24px; }

  .pp-hero { padding-top: 72px; padding-bottom: 72px; }

  .pp-features__sidebar { width: 210px; }
  .pp-tab-panel         { padding: 32px 28px; }

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

  .pp-kb__layout { gap: 36px; }

  .pp-cta-banner { padding-top: 72px; padding-bottom: 72px; }
}

/* ============================================================
   16. RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {

  :root { --pp-sec-py: 56px; --pp-gutter: 20px; }

  .pp-hero { padding-top: 60px; padding-bottom: 60px; }
  .pp-hero__body { font-size: 16px; }
  .pp-hero__cta  { flex-direction: column; align-items: center; }

  /* Features sidebar → horizontal strip */
  .pp-features__layout { flex-direction: column; gap: 0; }
  .pp-features__sidebar { width: 100%; }

  .pp-tab-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--pp-border);
    overflow-x: auto;
  }

  .pp-tab {
    flex: 1 1 auto;
    min-width: 110px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: var(--pp-r-sm) var(--pp-r-sm) 0 0;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: -2px;
  }

  .pp-tab.pp-active,
  .pp-tab[aria-selected="true"] {
    border-left-color: transparent;
    border-bottom-color: var(--pp-blue);
  }

  .pp-tab-panel { padding: 24px 20px; border-radius: var(--pp-r-md); }

  /* Cards */
  .pp-cards__grid   { grid-template-columns: 1fr; gap: 20px; }
  .pp-cards__header { padding-top: 60px; padding-bottom: 60px; }

  /* KB */
  .pp-kb__layout  { grid-template-columns: 1fr; gap: 32px; }
  .pp-kb__visual  { aspect-ratio: 16 / 9; max-height: 320px; }
  .pp-kb__content { padding: 0; }

  /* Social */
  .pp-social__row  { gap: 20px; }
  .pp-social__link { width: 44px; height: 44px; }
  .pp-social__icon { width: 28px; height: 28px; }

  /* Integration hub — scale down on mobile */
  .pp-int-hub { height: 210px; margin-bottom: 32px; }
  .pp-int-hub__card--office,
  .pp-int-hub__card--google { width: 90px; height: 90px; border-radius: 20px; }
  .pp-int-hub__card--teams,
  .pp-int-hub__card--slack { width: 54px; height: 54px; border-radius: 16px; }
  /* labels scale with the smaller mobile cards (90px / 54px) */
  .pp-int-hub__card--office .pp-int-hub__label,
  .pp-int-hub__card--google .pp-int-hub__label { font-size: 14px; }
  .pp-int-hub__card--teams .pp-int-hub__label,
  .pp-int-hub__card--slack .pp-int-hub__label  { font-size: 11px; padding: 0 4px; }
  .pp-email-int__buttons { flex-direction: column; align-items: center; }

  /* FAQ */
  .pp-faq__question { font-size: 18px; padding: 0; height: auto; }
  .pp-faq__item { padding: 18px; }
  .pp-faq__list     { max-width: 100%; }

  /* CTA */
  .pp-cta-banner { padding-top: 60px; padding-bottom: 60px; }
  .pp-cta-banner__buttons { flex-direction: column; align-items: flex-start; }
  .pp-cta-banner__title, .pp-cta-banner__body { max-width: 100%; }

  .pp-btn-group { flex-direction: column; align-items: center; }
}

/* ============================================================
   17. RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {

  :root { --pp-sec-py: 48px; --pp-gutter: 16px; }

  .pp-hero { padding-top: 48px; padding-bottom: 48px; }

  .pp-tab__icon  { display: none; }
  .pp-tab        { min-width: 88px; padding: 8px 10px; font-size: 12px; }
  .pp-tab-panel  { padding: 20px 16px; }
  .pp-card       { padding: 24px 20px; }

  .pp-faq__question { font-size: 14px; }

  .pp-btn { font-size: 14px; padding: 12px 22px; }

  .pp-cta-banner { padding-top: 48px; padding-bottom: 48px; }
}

/* ============================================================
   TYPOGRAPHY ALIGNMENT — match reference images + home/pricing
   eyebrow 22/700 · title 48/700 #212738 · body 24/400 #232321
   (single-class selectors, appended last → win the cascade)
   ============================================================ */
.pp-hero__eyebrow,
.pp-features__eyebrow,
.pp-email-int__eyebrow,
.pp-faq__eyebrow,
.pp-cta-banner__eyebrow { font-size: 22px; font-weight: 700; }
.pp-cards__eyebrow      { font-size: 22px; font-weight: 700; color: #0302B0; }

.pp-hero__title       { font-size: clamp(40px, 5.5vw, 60px); font-weight: 700; color: #212738; }
.pp-features__title,
.pp-email-int__title,
.pp-faq__title,
.pp-cta-banner__title { font-size: 48px; font-weight: 700; color: #212738; }
.pp-cards__title      { font-size: 48px; font-weight: 700; color: #212738; }
.pp-email-int__title  { font-size: 40px; }
.pp-faq__title        { font-size: 40px; }

/* Integration buttons — gradient-filled text label */
.pp-btn--outline-blue .pp-btn__gtext {
  background: linear-gradient(180deg, #19182D 0%, #0302B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pp-email-int .pp-btn--outline-blue .pp-btn__arrow { color: #0302B0; }

.pp-hero__body,
.pp-email-int__body,
.pp-cta-banner__body  { font-size: 24px; font-weight: 400; color: #232321; }

.pp-tab-panel__title  { font-size: 28px; }
.pp-tab-panel__lead   { font-size: 18px; }
.pp-card__body        { font-size: 24px; font-weight: 400; color: #454455; }
.pp-faq__question     { font-size: 22px; }

/* Section 3 card titles — gradient text */
.pp-card__title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(180deg, #19182D 0%, #0302B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* two-tone hero title */
.pp-text-blue { color: var(--pp-blue); }

/* Section 1 hero "Book a demo" — text + arrow color (beats .pp-page a{color:inherit}) */
.pp-hero .pp-btn--primary,
.pp-hero .pp-btn--primary .pp-btn__arrow { color: #F3F5FF; }

/* white CTA button (matches home/pricing secondary) */
.pp-btn--white {
  color: var(--pp-navy);
  background: #fff;
  border: 1px solid #D5DCEC;
}
.pp-btn--white:hover {
  color: var(--pp-navy);
  box-shadow: 0 6px 20px rgba(13,27,62,.12);
}

/* ── Section 6 CTA buttons — identical to home section-5 buttons ── */
.pp-cta-banner .pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--pp-ff-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 55px;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: background .22s var(--pp-ease), color .22s var(--pp-ease),
              border-color .22s var(--pp-ease), box-shadow .22s var(--pp-ease),
              transform .18s var(--pp-ease);
}
.pp-cta-banner .pp-btn:hover  { transform: translateY(-2px); }
.pp-cta-banner .pp-btn:active { transform: translateY(0); }

/* Get started for free — gradient primary, white text + icon */
.pp-cta-banner .pp-btn--teal {
  color: #fff;
  border: 1.5px solid #01A9E0;
  background: linear-gradient(95deg, #0302B0 1.34%, #01A9E0 97.22%);
  background-clip: padding-box;
}
.pp-cta-banner .pp-btn--teal .pp-btn__arrow { color: #fff; }
.pp-cta-banner .pp-btn--teal:hover { box-shadow: 0 6px 24px rgba(3,2,176,.35); opacity: .92; }

/* Book a demo — white bg, dark border, gradient text, dark icon */
.pp-cta-banner .pp-btn--white {
  background: #fff;
  border: 1px solid #19182D;
  color: #19182D;
}
.pp-cta-banner .pp-btn--white .pp-btn__gtext {
  background: linear-gradient(180deg, #19182D 0%, #0302B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pp-cta-banner .pp-btn--white .pp-btn__arrow { color: #19182D; }
.pp-cta-banner .pp-btn--white:hover { box-shadow: 0 6px 20px rgba(13,27,62,.12); }

/* thin SVG arrow (replaces heavy FA solid glyph) */
.pp-btn__arrow { width: 18px; height: 18px; flex-shrink: 0; display: inline-block; }

@media (max-width: 768px) {
  .pp-hero__title,
  .pp-features__title,
  .pp-email-int__title,
  .pp-faq__title,
  .pp-cta-banner__title,
  .pp-cards__title { font-size: 34px; }
  .pp-hero__body,
  .pp-email-int__body,
  .pp-cta-banner__body { font-size: 19px; }
  .pp-hero__eyebrow,
  .pp-features__eyebrow,
  .pp-cards__eyebrow,
  .pp-email-int__eyebrow,
  .pp-faq__eyebrow,
  .pp-cta-banner__eyebrow { font-size: 18px; }
  .pp-faq__question { font-size: 17px; }
}
