/* frontend/assets/styles.css */

/* ==========================================================
   Styled.ai — Global Design Tokens + Shared Components
   Used by: Styled_Marketing
========================================================== */

:root {
  /* ---------- Figma Layout ---------- */
  --bg: #ffffff;
  /* --bg: #ffffff; */

  --accent-peach: #FFC38C; /* Get Started + "again" */
  --accent-teal:  #C0E0E4; /* Hunt Deals button */
  --chip:         #E6E5E0; /* suggestion pills */
  --check-bg:     #D4ECEF; /* check circle */

  --text-teal:  #97B7BB; /* hero cursive color */
  --text: #0B0B0B;
  --muted: rgba(11,11,11,.70);
  --border: rgba(11,11,11,.20);
  --proof-card:     #EAE6DC; /* check circle */

  /* ---------- Shared brand ---------- */
  --ph-primary: #f2a23a;
  --ph-primary-text: #ffffff;
  --ph-price: #118a32;

  --ph-secondary: #D4ECEF;
  --ph-secondary-text: #0f172a;     /* dark slate for readability */
  --ph-secondary-border: #a9d3d8;   /* slightly darker version */
  --ph-secondary-bg: #f3fbfc;       /* very light tint background */

  --ph-badge-bg: #e6f4ea;
  --ph-badge-text: #137333;

  --ph-retail-text: #6b7280;
  --ph-retail-strike: #9ca3af;

  /* ---------- Cards ---------- */
  --ph-card-radius: 24px;
  --ph-card-pad: 20px;
  --ph-card-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* ---------- Search / layout ---------- */
  --ph-logo-h: 55px;
  --ph-search-w: 720px;
  --ph-search-h: 52px;

  /* ---------- Landing positioning ---------- */
  --ph-landing-offset: 0px;
  --ph-results-top-offset: 57px;
  --ph-sidebars-top-offset: calc(var(--ph-results-top-offset) + 70px);

  /* ---------- Query bubble ---------- */
  --ph-bubble-mb: 24px;
  --ph-bubble-bg: #f9fafb;
  --ph-bubble-border: #e5e7eb;
  --ph-bubble-text: #374151;

  /* ---------- Favorites alignment (landing page dock) ---------- */
  --ph-fav-thumb: 48px;
  --ph-fav-gap: 12px;
  --ph-fav-content-left: calc(var(--ph-fav-thumb) + var(--ph-fav-gap));
  --ph-price-row-pl: 0rem;

  /* ---------- Controls (pill geometry) ---------- */
  --ph-control-h: 34px;
  --ph-control-radius: 9999px;
  --ph-control-border: #d1d5db;
  --ph-control-bg: #ffffff;
  --ph-control-text: #111827;
  --ph-control-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  --ph-control-px: 12px;
  --ph-control-font: 600;
  --ph-control-font-size: 14px;

  /* Focus ring (clean, non-blue) */
  --ph-focus-border: rgba(209, 213, 219, 0.9);
  --ph-focus-ring: 0 0 0 3px rgba(17, 24, 39, 0.06);

  /* ---------- Menus ---------- */
  --ph-menu-bg: #ffffff;
  --ph-menu-border: rgba(15, 23, 42, 0.10);
  --ph-menu-radius: 18px;
  --ph-menu-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --ph-menu-item-py: 10px;
  --ph-menu-item-px: 14px;
  --ph-menu-hover: #f5f5f5;

  /* ---------- Auth app (app.html) layout ---------- */
  --sidebar-w: 260px;
  --logo-height: 40px;

  /* app.html (legacy naming retained) */
  --card-radius: 24px;
  --card-padding: 20px;
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --price-color: #118a32;
  --btn-primary-bg: #f2a23a;
  --btn-primary-text: #ffffff;
  --btn-secondary-border: #e5e7eb;

  /* app.html (search) */
  --search-width: 720px;
  --search-height: 52px;
  --market-width: 150px;
  --market-height: var(--search-height);

  /* Header */
  --ph-header-h: 56px;        /* match across app + landing */
  --ph-header-px: 24px;       /* horizontal padding */
  --ph-header-border: #f3f4f6;
}

/* ==========================================================
   Default Font
========================================================== */
html, body {
  font-family: "Plus Jakarta Sans", "Poppins", "Mona Sans", Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.hero-again {
  font-family: "Arapey", serif;
  font-style: italic;
}

/* ==========================================================
   Premium polish (typography + layout defaults)
========================================================== */

/* Better font rendering (especially on Windows/Chrome) */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  scroll-behavior: smooth;
}

/* Consistent box sizing (prevents weird width math) */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margins + stabilize layout */
body {
  margin: 0;
  line-height: 1.2;
}

/* Make buttons/inputs inherit the same font */
button, input, textarea, select {
  font: inherit;
}

/* Slightly tighten headings globally */
h1, h2, h3 {
  letter-spacing: -0.03em;
}

/* Links feel cleaner */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ==========================================================
   Animations
========================================================== */
@keyframes ph_loadingbar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(220%); }
  100% { transform: translateX(220%); }
}
.ph-loadingbar { animation: ph_loadingbar 1.2s ease-in-out infinite; }

@keyframes ph_bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-4px); opacity: .95; }
}
.ph-dot {
  width: .375rem;
  height: .375rem;
  border-radius: 9999px;
  background: #9ca3af;
  display: inline-block;
  animation: ph_bounce 1.1s infinite ease-in-out;
}
.ph-dot:nth-child(2) { animation-delay: .12s; }
.ph-dot:nth-child(3) { animation-delay: .24s; }

/* Autofill cleanup */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #111827;
}
input:-webkit-autofill:focus {
  outline: none;
  border-color: #d1d5db;
  box-shadow:
    0 0 0 1px rgba(209, 213, 219, 0.8),
    0 0 0px 1000px white inset;
}

/* ==========================================================
   Coming Soon Page
========================================================== */
.logo-coming-soon{
  height: 77px;
  width: auto;
  display: block;
  margin-bottom: 40px;
}

.coming-soon-hero-h1{
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #000000;
  
}

/* ==========================================================
   Dropdown (ph-dd) — shared
   IMPORTANT: This version uses the CSS ::after chevron,
   so the dropdown button markup should NOT include a chevron span.
========================================================== */
.ph-dd {
  position: relative;
  display: inline-block;
}
.ph-dd-btn {
  height: var(--ph-control-h);
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 0 var(--ph-control-px);
  padding-right: 28px; /* room for chevron */
  border-radius: var(--ph-control-radius);
  border: 1px solid var(--ph-control-border);
  background: var(--ph-control-bg);
  color: var(--ph-control-text);
  box-shadow: var(--ph-control-shadow);

  font-weight: var(--ph-control-font);
  font-size: var(--ph-control-font-size);
  line-height: 1;

  cursor: pointer;
  user-select: none;
  position: relative;
}

/* Button hover */
.ph-dd-btn:hover { border-color: #cbd5e1; }

/* Keyboard focus (tabbing) */
.ph-dd-btn:focus-visible {
  outline: none;
  border-color: var(--ph-focus-border);
  box-shadow: var(--ph-control-shadow), var(--ph-focus-ring);
}

/* Keep ring while menu is open */
.ph-dd.open .ph-dd-btn {
  border-color: var(--ph-focus-border);
  box-shadow: var(--ph-control-shadow), var(--ph-focus-ring);
}

/* chevron */
.ph-dd-btn::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: translateY(-55%) rotate(45deg);
  pointer-events: none;
}

.ph-dd-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 180px;

  background: var(--ph-menu-bg);
  border: 1px solid var(--ph-menu-border);
  border-radius: var(--ph-menu-radius);
  box-shadow: var(--ph-menu-shadow);

  padding: 8px;
  z-index: 50;
  display: none;
}
.ph-dd.open .ph-dd-menu { display: block; }

/* Keep the same focus ring while the dropdown is open */
.ph-dd.open .ph-dd-btn {
  border-color: var(--ph-focus-border);
  box-shadow: var(--ph-control-shadow), var(--ph-focus-ring);
}

/* Selected Region */
.ph-dd-item {
  width: 100%;
  text-align: left;

  padding: var(--ph-menu-item-py) var(--ph-menu-item-px);
  border-radius: 11px;

  font-size: 14px;
  font-weight: 600;
  color: #111827;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  cursor: pointer;
}
.ph-dd-item:hover { background: var(--ph-menu-hover); }
.ph-dd-item[aria-selected="true"] { background: rgba(242, 162, 58, 0.14); }

.ph-dd-item[aria-selected="true"] .ph-dd-check {
  opacity: 1;
  visibility: visible;
}

.ph-dd-item[aria-selected="true"] .ph-dd-check {
  border-color: rgba(58, 150, 242, 0.55);
  background: #D4ECEF;
}

.ph-dd-check {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #111827;
  background: #fff;
  flex: 0 0 auto;
}

/* Only show checkmark on selected item */
.ph-dd-check {
  opacity: 0;
  visibility: hidden;
}

/* Dropdown selected checkmark image */
.ph-dd-check img{
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

/* Match dropdown focus ring on search inputs */
#searchInputLanding:focus,
#searchInputBottom:focus {
  outline: none !important;
  border-color: var(--ph-focus-border) !important;
  box-shadow: var(--ph-control-shadow), var(--ph-focus-ring) !important;
}

/* ==========================================================
   Retailer chips (landing loading state)
========================================================== */
.ph-retailer-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: .875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all .25s ease;
  opacity: .75;
  user-select: none;
}
.ph-retailer-chip::before {
  content: "";
  width: .6rem;
  height: .6rem;
  border-radius: 9999px;
  background: #d1d5db;
}
.ph-retailer-chip.active {
  opacity: 1;
  border-color: rgba(242, 162, 58, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.ph-retailer-chip.active::before { background: var(--ph-primary); }
.ph-retailer-chip.done {
  opacity: 1;
  background: #fff7ea;
  border-color: rgba(242, 162, 58, 0.35);
  color: #111827;
}
.ph-retailer-chip.done::before { background: #22c55e; }

/* ==========================================================
   app.html helpers (native select styling + active nav)
========================================================== */
.ph-market-select {
  width: var(--market-width);
  height: var(--market-height);
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0 .9rem;
  background: #fff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  appearance: none;
  cursor: pointer;
}

.ph-nav a.active {
  background: rgba(242, 162, 58, 0.12);
  border-color: rgba(242, 162, 58, 0.30);
  color: #111827;
}

/* ==========================================================
   Sitewide Header
========================================================== */
/* Shared header bar */
.ph-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--ph-header-border);
}

.ph-header-inner {
  max-width: 80rem; /* ~max-w-7xl */
  margin: 0 auto;
  padding-left: var(--ph-header-px);
  padding-right: var(--ph-header-px);
  height: var(--ph-header-h);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Left logo in header */
.ph-header-logo {
  height: 40px; /* slightly smaller than landing hero logo */
  width: auto;
  display: block;
}

/* Right avatar button */
.ph-avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

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

/* ==========================================================
   Sidebar 
========================================================== */
.ph-sidebar {
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  height: 100vh;
  border-right: 1px solid #f3f4f6;
  background: #fff;
}

.ph-sidebar-nav {
  flex: 1;              /* fills remaining space */
  padding-bottom: 12px; /* breathing room above signout */
}

.ph-sidebar-bottom {
  margin-top: auto;     /* pins to bottom */
  padding: 14px;
  border-top: 1px solid #f3f4f6;
}

.ph-sidebar-signout {
  width: 100%;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* ==========================================================
   Flodesk Form
========================================================== */

.ph-flodesk-form{
  border-radius: 14px;
  border: 2px solid #383842;
  max-width: 620px;
  width: 100%;
  margin: 40px auto 0;
  overflow: hidden;
}

/* ==========================================================
PRICEHUNT v2 - Mockup1.html
Figma Update 3/4/2025 
========================================================== */

/* Market dropdown mount inside Figma header */
.ph-market-mount { display: inline-flex; align-items: center; }
.ph-links .ph-dd { transform: translateY(1px); } /* tiny optical alignment */
.ph-links .ph-dd-btn { height: 32px; font-size: 16px; }
.ph-links .ph-dd-menu { right: auto; left: 0; } /* menu drops under the button */

/* Layout container */
.ph-landing-header { padding: 24px 40px 0; }
.ph-nav{
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ph-brand{ display:flex; align-items:center; gap:12px; }
.ph-logo{ width: 222px; height: 50px; object-fit: contain; }
.ph-wordmark{ font-weight: 800; font-size: 28px; letter-spacing: -0.02em; }

.ph-links{ display:flex; align-items:center; gap:40px; }
.ph-link{
  text-decoration:none;
  color: var(--text);
  font-size: 18px;
}
.ph-link:hover{ text-decoration: underline; }

.ph-cta{
  text-decoration:none;
  background: var(--accent-peach);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 0px solid var(--accent-peach);
}

.ph-cta:hover{ filter: brightness(0.98); }

/* Hero */
.hero-period{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}

.ph-hero{
  padding: 110px 24px 90px;
}
.ph-hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align:center;
}

.ph-pill{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 7px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(11,11,11,.06);
  box-shadow: 0 6px 24px rgba(0,0,0,.05);
  font-size: 16px;
}

.ph-pill-check{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--check-bg);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}

.ph-pill-check-img{
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.ph-h1{
  margin: 48px 0 18px;
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.hero-again{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text-teal);
  font-size: 1.15em;
}

.ph-sub{
  margin: 0 auto;
  max-width: 760px;
  font-size: 24px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 600;
}

.ph-sub-2{
  margin: 0 auto;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 400;
}

.ph-trust-text{
  margin: 16px auto 0;
  max-width: 620px;
  width: 100%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}

.ph-trust-text a{
  text-decoration: underline;
  font-weight: 400;
  color: inherit;
  transition: opacity 0.2s ease;
}

.ph-trust-text a:hover {
  opacity: 0.7;
}

.ph-trust-text-v2{
  margin: 10px auto auto auto;
  font-size: 14px;
  line-height: 1.35;
  color: #aeaeae;
  font-weight: 400;
  /* Set to same width as Search Bar (.ph-v2-search) and Center it */
  max-width: 650px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.ph-trust-text-v2 a{
  text-decoration: underline;
  font-weight: 400;
  color: inherit;
  transition: opacity 0.2s ease;
}

.ph-trust-text-v2 a:hover {
  opacity: 0.7;
}

/* Search bar */
.ph-search{
  margin: 46px auto 20px;
  max-width: 940px;
  position: relative;
  display:flex;
  align-items:center;
  border-radius: 999px;
  border: 2px solid rgba(11,11,11,.45);
  background: rgba(255,255,255,.45);
  padding: 10px 10px 10px 18px;
  box-shadow: 0 10px 32px rgba(0,0,0,.06);
}

.ph-search-icon{
  width: 22px;
  height: 22px;
  stroke-width: 2;
  color: rgba(11,11,11,.65);
  margin-right: 12px;
} 

.ph-search:focus-within .ph-search-icon{
  color: rgba(11,11,11,.9);
}

.ph-search-input{
  flex:1;
  border:0;
  outline:none;
  background: transparent;
  font-size: 18px;
  padding: 12px 10px;
}

.ph-search-input::placeholder{ color: rgba(11,11,11,.35); }

.ph-search-btn{
  border: 0px;
  background: var(--accent-teal);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 18px;
  cursor:pointer;
  box-shadow: inset 0 0 0 1px rgba(11,11,11,.10);
}
.ph-search-btn:hover{ filter: brightness(0.98); }

/* Glow the whole pill when input is focused */
.ph-search:focus-within{
  border-color: rgba(236, 180, 59, 0.65);                  /* matches your --text-teal */
  box-shadow:
    0 14px 44px rgba(218, 165, 104, 0.08),
    0 0 0 4px rgba(234, 196, 120, 0.18);                    /* soft glow ring */
}

/* Optional: ensure input itself doesn't add its own ring */
.ph-search-input:focus{
  outline: none;
}

/* Chips */
.ph-chips{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
}

.ph-chip{
  border: 0;
  background: var(--chip);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor:pointer;
  display: inline-flex;
}
.ph-chip:hover{ filter: brightness(0.98); }

.ph-chip svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 860px){
  .ph-links{ gap: 18px; }
  .ph-h1{ font-size: 62px; }
  .ph-sub{ font-size: 18px; }
  .ph-landing-header{ padding: 20px 18px 0; }
}

/* ==========================================================
   How it works (v2)
========================================================== */

.ph-how2{
  padding: 30px 24px 20px;
  margin-top: 100px;
}

.ph-how2-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.ph-how2-card{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  padding: 55px;
  overflow: visible;
}

/* shorter beige background layer */
.ph-how2-card::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  bottom: 205px;
  background: var(--proof-card);
  border-radius: 20px;
  z-index: 0;
}

/* keep content above bg */
.ph-how2-photo-wrap,
.ph-how2-copy,
.ph-how2-steps{
  position: relative;
  z-index: 1;
}

/* --------------------------
   TOP LEFT IMAGE
-------------------------- */
.ph-how2-photo-wrap{
  display: flex;
  align-items: flex-start;
}

.ph-how2-photo{
  width: 100%;
  max-width: 630px;
  height: 430px;
  margin-top: -58px; /* image rises above beige card */
  border-radius: 20px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.ph-how2-photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* --------------------------
   TOP RIGHT COPY
-------------------------- */
.ph-how2-copy{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}

.ph-how2-badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  margin-left: auto;
  margin-bottom: 72px;
}

.ph-how2-badge-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #cff2fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ph-how2-badge-icon img{
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}

.ph-how2-badge-text{
  font-size: 16px;
  font-weight: 700;
}

.ph-how2-h2{
  margin: 0 0 18px;
  font-size: 75px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.ph-how2-italic{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 90px;
  color: black;
}

.ph-how2-period{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}

.ph-how2-sub{
  margin: 0;
  max-width: 540px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(11,11,11,.82);
}

/* --------------------------
   BOTTOM STEP STRIP
-------------------------- */
.ph-how2-steps{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(11,11,11,.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.ph-how2-step{
  min-height: 260px;
  padding: 34px 42px 36px;
}

.ph-how2-step + .ph-how2-step{
  border-left: 1px solid rgba(11,11,11,.10);
}

.ph-how2-step-iconbox{
  width: 55px;
  height: 55px;
  border-radius: 10px;
  border: 1px solid #EBEBEB;
  background: #F7F7F7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ph-how2-step-icon-inner{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 2px 0 rgba(0,0,0,0.07);
}

.ph-how2-step-num{
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: rgba(11,11,11,.95);
}

.ph-how2-step-title{
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ph-how2-step-text{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(11,11,11,.70);
  max-width: 330px;
}

/* --------------------------
   Responsive
-------------------------- */
@media (max-width: 1100px){
  .ph-how2-h2{
    font-size: 72px;
  }
}

@media (max-width: 980px){
  .ph-how2-card{
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }

  .ph-how2-card::before{
    top: 60px;
    bottom: 60px;
  }

  .ph-how2-photo{
    max-width: 100%;
    height: 300px;
    margin-top: 0;
  }

  .ph-how2-badge{
    margin-left: 0;
    margin-bottom: 28px;
  }

  .ph-how2-h2{
    font-size: 56px;
  }

  .ph-how2-sub{
    font-size: 17px;
    max-width: 100%;
  }

  .ph-how2-steps{
    grid-template-columns: 1fr;
  }

  .ph-how2-step + .ph-how2-step{
    border-left: 0;
    border-top: 1px solid rgba(11,11,11,.10);
  }

  .ph-how2-step{
    min-height: unset;
    padding: 28px;
  }
}

/* ==========================================================
   Benefits (v2)
========================================================== */

.ph-benefits{
  padding: 30px 24px; /* adjust section spacing above/below */
  margin-top: 150px;
}

.ph-benefits-inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* “card” is really a layout container with a shorter bg layer */
.ph-benefits-card{
  position: relative;
  display: grid;

  /* top row: left headline + right image */
  grid-template-columns: 1.05fr 0.95fr;

  /* second row spans full width: feature cards */
  grid-template-rows: auto auto;

  gap: 40px 56px;
  padding: 55px;

  overflow: visible; /* allow image to rise above bg */
}

/* beige background layer (shorter than content) */
.ph-benefits-card::before{
  content:"";
  position: absolute;
  left: 0;
  right: 0;

  /* CONTROL “CARD HEIGHT LOOK” HERE */
  top: 80px;      /* pushes bg down */
  bottom: 190px;   /* pulls bg up */

  background: var(--proof-card);
  border-radius: 30px;
  z-index: 0;
}

/* ensure content is above bg */
.ph-benefits-left,
.ph-benefits-right,
.ph-benefits-features{
  position: relative;
  z-index: 1;
  margin-top: 0px;
}

/* LEFT */
.ph-benefits-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.ph-benefits-badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.ph-benefits-badge-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #dff3da; /* light green */
  border: 0px solid rgba(11,11,11,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.ph-benefits-badge-text{
  font-weight: 700;
  font-size: 16px;
}

.ph-benefits-h2{
  margin: 36px 0 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.ph-benefits-italic{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 111px;
  color: black;
  letter-spacing: -0.06em;
}

.ph-benefits-period{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
}

/* RIGHT image that rises */
.ph-benefits-right{
  display: flex;
  justify-content: flex-end;
}

.ph-benefits-photo{
  width: 570px;
  height: 400px;
  max-width: 750px;

  border-radius: 20px;
  overflow: hidden;
  background: #eee;

  /* rise above beige */
  margin-top: -85px;

  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.ph-benefits-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FEATURES ROW */
.ph-benefits-features{
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;

  background: #fff;
  border-radius: 28px;
  overflow: hidden;

  border: 1px solid rgba(11,11,11,.10);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.ph-benefits-feature{
  padding: 34px 34px;
  min-height: 220px; /* make the feature strip taller */
}

.ph-benefits-feature + .ph-benefits-feature{
  border-left: 1px solid rgba(11,11,11,.10);
}

.ph-benefits-iconbox{
  width: 55px;
  height: 55px;
  border-radius: 10px;
  border-width: 1px;
  border-color: #EBEBEB;
  background: #F7F7F7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ph-benefits-icon-inner{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 2px 0 rgba(0,0,0,0.07);
}

.ph-benefits-icon-img{
  display: block;
  object-fit: contain;
}

.ph-benefits-icon-img-faves{
  width: 20px;
  height: 20px;
}

.ph-benefits-icon-img-drops{
  width: 25px;
  height: 25px;
}

.ph-benefits-icon-img-history{
  width: 22px;
  height: 22px;
}

.ph-benefits-feature-title{
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ph-benefits-feature-text{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(11,11,11,.70);
  max-width: 330px;
}

/* Responsive */
@media (max-width: 980px){
  .ph-benefits-card{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .ph-benefits-card::before{
    top: 70px;
    bottom: 70px;
  }

  .ph-benefits-h2{
    font-size: 56px;
  }

  .ph-benefits-photo{
    margin-top: 0;
    height: 280px;
    max-width: 100%;
  }

  .ph-benefits-features{
    grid-template-columns: 1fr;
  }

  .ph-benefits-feature + .ph-benefits-feature{
    border-left: 0;
    border-top: 1px solid rgba(11,11,11,.10);
  }
}

/* ==========================================================
   Social Proof (v2)
========================================================== */

.ph-proof {
  padding: 20px 24px;
  margin-top: 80px;
}

.ph-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* The big beige rounded card */
.ph-proof-card{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;

  /* this is key: let the image/quote extend past the background */
  overflow: visible;

  /* keep your spacing */
  padding: 55px;
}

/* the beige background layer (SHORTER than the content) */
.ph-proof-card::before{
  content:"";
  position: absolute;
  left: 0;
  right: 0;

  /* control the apparent height here */
  top: 80px;        /* pushes background down */
  bottom: 94px;     /* pulls background up */

  background: var(--proof-card);
  border-radius: 34px;
  z-index: 0;
}

/* ensure actual content renders ABOVE the background */
.ph-proof-left,
.ph-proof-right{
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.ph-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.ph-proof-badge-text {
  font-weight: 700;
  font-size: 16px;
}

.ph-proof-h2 {
  margin: 60px 0 18px;
  font-size: 76px;     /* ✅ headline size */
  font-weight: 400;    /* ✅ headline weight */
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.ph-proof-italic {
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
}

.ph-proof-sub {
  margin: 0 11px 21px;
  margin-top: 37px;
  font-size: 20px;     /* ✅ sub size */
  font-weight: 500;    /* ✅ sub weight */
  line-height: 1.25;
  color: black;
}

.ph-proof-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  font-weight: 600;     /* ✅ button text weight */
  font-size: 17px;      /* ✅ button text size */
  text-decoration: none;
}

/* RIGHT SIDE */
.ph-proof-right{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  margin-top: -20px;
}

/* ✅ PHOTO HEIGHT CONTROL */
.ph-proof-photo {
  height: 100%;        /* change this to adjust photo card height */
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
}

.ph-proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 20%;; /* keeps top, crops bottom */
}

/* ✅ QUOTE CARD HEIGHT CONTROL */
.ph-proof-quote{
  width: 520px;
  background: #fff;
  border-radius: 28px;
  padding: 28px 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.ph-proof-quote-mark {
  font-size: 56px;
  line-height: 1;
  color: var(check-bg); 
  font-weight: 900;
  margin-bottom: 10px;
}

.ph-proof-quote-text {
  margin-top: -10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(11,11,11,.85);
}

.ph-proof-quote-name {
  margin-top: 14px;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(11,11,11,.85);
  text-align: right;
  display: block;
  width: 100%;
}

/* Responsive */
@media (max-width: 980px) {
  .ph-proof-card {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 28px;
  }

  .ph-proof-h2 {
    font-size: 56px;
  }

  .ph-proof-photo {
    height: 100%;
  }
}

/* =========================================================
   Hero Section (v2)
 ========================================================= */

/* Layout container */
.ph-landing-header { padding: 24px 40px 0; }
.ph-nav{
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ph-v2-h1{
  margin: 0;
  font-size: clamp(54px, 6vw, 67px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #232637;
}

.ph-v2-float{
  position: absolute;
  box-shadow: 0 12px 28px rgba(23, 28, 40, 0.08);
}

.ph-v2-float-top{
  top: -10px;
  right: 14px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: #82CC86;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ph-v2-float-top-lines{
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ph-v2-float-top-lines span{
  display: block;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: rgba(28, 84, 33, 0.38);
}

.ph-v2-float-top-charts{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-v2-float-top-charts span{
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    conic-gradient(
      rgba(255,255,255,0.9) 0deg 85deg,
      rgba(104, 173, 108, 0.35) 85deg 360deg
    );
}

.ph-v2-float-mid{
  right: -2px;
  top: 46%;
  transform: translateY(-50%);
  width: 168px;
  height: 62px;
  border-radius: 14px;
  background: #3C3E5A;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.ph-v2-mini-clock{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #A7E7E4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ph-v2-mini-clock svg{
  width: 18px;
  height: 18px;
  stroke: #3C3E5A;
  stroke-width: 2.4;
}

.ph-v2-mini-bar{
  height: 10px;
  flex: 1 1 auto;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
}

.ph-v2-float-bottom{
  left: -16px;
  bottom: 76px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: #AEE7DE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-v2-float-bottom > svg{
  width: 42px;
  height: 42px;
  stroke: rgba(255,255,255,0.96);
  stroke-width: 1.8;
}

.ph-v2-float-check{
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ph-v2-float-check svg{
  width: 16px;
  height: 16px;
  stroke: #6EB6A6;
  stroke-width: 2.4;
}

/* responsive */
@media (max-width: 1180px){
  .ph-v2-hero-inner{
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: unset;
  }

  .ph-v2-copy{
    max-width: 760px;
  }

  .ph-v2-visual{
    justify-content: flex-end;
  }
}

@media (max-width: 860px){
  .ph-v3-header{
    padding: 24px 20px 0;
  }

  .ph-v3-nav{
    flex-wrap: wrap;
    gap: 18px;
  }

  .ph-v3-nav-left{
    order: 3;
    width: 100%;
    gap: 22px;
    margin-left: 0;
  }

  .ph-v3-nav-right{
    margin-left: auto;
  }

  .ph-v2-hero{
    padding: 44px 20px 72px;
  }

  .ph-v2-h1{
    font-size: clamp(42px, 10vw, 62px);
  }

  .ph-v2-sub{
    font-size: 17px;
  }

  .ph-v2-search{
    height: 66px;
    padding-left: 18px;
    box-shadow: 0 12px 30px rgba(21, 24, 39, 0.06);
  }

  .ph-v2-search-btn{
    width: 50px;
    height: 50px;
  }

  .ph-v2-visual-card{
    border-radius: 34px;
  }

  .ph-v2-float-top{
    width: 98px;
    height: 98px;
  }

  .ph-v2-float-mid{
    width: 140px;
    height: 56px;
  }

  .ph-v2-float-bottom{
    width: 90px;
    height: 90px;
    left: -8px;
  }
}

@media (max-width: 560px){
  .ph-v2-link{
    font-size: 14px;
  }


  .ph-v2-pill{
    font-size: 14px;
  }

  .ph-v2-sub{
    margin: 24px 0 24px;
  }


}



/* =========================================================
   PRICEHUNT V3 - Mockup2.html 
   Figma update 3/10/25
   ========================================================= */

   /* =========================================================
   Hero Section (v3)
   ========================================================= */

/* Market dropdown mount inside Figma header */
.ph-market-mount { display: inline-flex; align-items: center; }
.ph-links .ph-dd { transform: translateY(1px); } /* tiny optical alignment */
.ph-links .ph-dd-btn { height: 32px; font-size: 16px; }
.ph-links .ph-dd-menu { right: auto; left: 0; } /* menu drops under the button */



.ph-free-v3-note{
  margin-top: 2px;
  font-size: 15px;
  color: #1c1d1f;
  font-family: "Poppins", sans-serif;
}

/* right visual */
.ph-v3-visual{
  display: flex;
  justify-content: center;
}

.ph-v3-visual-card{
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 0.92;
  border-radius: 58px;
 
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* BETA right visual */
.ph-beta-v3-visual{
  display: flex;
  justify-content: center;
}

.ph-beta-v3-visual-card{
  width: min(100%, 620px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* END: BETA right visual */

.ph-v3-hero-person{
  width: auto;
  height: 103%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.ph-v3-pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 500;
  color: #1D2233;
}

.ph-v3-pill-check{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #CFEAED;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ph-v3-copy{
  max-width: 620px;
}

.ph-v3-italic{
  font-style: italic;
  font-weight: 700;
}

.ph-v3-search{
  width: 100%;
  max-width: 650px;
  height: 76px;
  border: 2px solid #2B3040;
  border-radius: 999px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 0 10px 0 24px;
  box-shadow: 0 10px 25px rgba(21, 24, 39, 0.05);
}

.ph-v3-search-icon{
  width: 24px;
  height: 24px;
  color: #31384C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-right: 14px;
}

.ph-v3-search-icon svg{
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.ph-v3-search-input{
  flex: 1 1 auto;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  color: #232637;
}

.ph-v3-search-input::placeholder{
  color: #A4A9B5;
}

.ph-v3-search-btn{
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgb(185, 231, 232);
  color: #2B3040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
  flex: 0 0 auto;
}

.ph-v3-search-btn:hover{
  transform: scale(1.04);
  opacity: .96;
}

.ph-v3-search-btn svg{
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.ph-v3-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  transform: translateY(-6px);
  /* Set to same width as Search Bar (.ph-v2-search) and Center it */
  max-width: 650px;
  justify-content: center;
}

.ph-v3-chip{
  border: 0;
  background: #F1F1F1;
  color: #3c4057;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease;
  font-family: "Poppins", sans-serif;
}

.ph-v3-chip:hover{
  transform: translateY(-1px);
  background: #E9E9E9;
}

.ph-v3-sub{
  margin: 34px 0 34px;
  max-width: 650px;
  font-size: 19px;
  line-height: 1.55;
  color: #494f68;
  font-family: "Poppins", sans-serif;
}

.ph-v3-sub strong{
  color: #41465e;
  font-weight: 700;
}

.ph-v3-header{
  width: 100%;
  padding: 28px 52px 0;
}

.ph-v3-nav{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.ph-v3-brand{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.ph-v3-logo{
  height: 34px;
  width: auto;
  display: block;
}

.ph-v3-logo-coming-soon{
  height: 111px;
  width: auto;
  display: block;
  margin-bottom: 40px;
}


.ph-v3-nav-left{
  display: flex;
  align-items: center;
  gap: 54px;
  margin-left: 18px;
  flex: 1 1 auto;
}

.ph-v2-market-hidden{
  display: none !important;
}

.ph-v3-link{
  font-size: 18px;
  font-weight: 600;
  color: #2b304a;
  text-decoration: none;
  transition: opacity .2s ease;

}

.ph-v3-link:hover{
  opacity: .70;
  text-decoration: none;
}

.ph-v3-nav-right{
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.ph-hero-v3-h1{
  margin: 0;
  font-size: clamp(54px, 6vw, 67px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #1a283d;
  
}

.ph-v3-cta{
  min-width: 150px;
  height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  background: #EFB274;
  color: #232637;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, opacity .18s ease;
  font-family: "Poppins", sans-serif;
}

.ph-v3-cta:hover{
  transform: translateY(-3px);
  opacity: .90;
  text-decoration: none;
}

.ph-v3-hero{
  padding: 72px 52px 110px;
}

.ph-v3-hero-inner{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 88px;
  min-height: 720px;
}

.ph-how-v3,
.ph-benefits-v3,
.ph-proof-v3,
.ph-final-cta-v3,
.ph-footer-v3{
  width: 100%;
}

.ph-how-v3,
.ph-benefits-v3,
.ph-proof-v3,
.ph-final-cta-v3{
  padding: 100px 52px;
}

.ph-how-v3-inner,
.ph-benefits-v3-inner,
.ph-proof-v3-inner,
.ph-final-cta-v3-inner,
.ph-footer-v3-inner{
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================================
   SHARED TYPOGRAPHY / BADGES / CARDS
   ========================================================= */

   .ph-how-v3-process-title,
   .ph-benefits-v3-item-title{
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 700;
    color: #353F4F;
    letter-spacing: -0.03em;
  }
  
  .ph-how-v3-process-text,
  .ph-benefits-v3-item-text{
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #70737e;
    font-family: "Poppins", sans-serif;
  }

.ph-how-v3-badge,
.ph-benefits-v3-badge,
.ph-proof-v3-badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 24, 35, 0.05);
  border: 1px solid rgba(35, 38, 55, 0.06);
}

.ph-how-v3-badge-icon,
.ph-benefits-v3-badge-icon,
.ph-proof-v3-badge-icon{
  width: 33px;
  height: 33px;
  border-radius: 999px;
  background: #dff1d6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ph-benefits-v3-badge-icon{
  background: #dff1d6;
}

.ph-proof-v3-badge-icon{
  background: #d8eff0;
}

.ph-how-v3-badge-icon img,
.ph-benefits-v3-badge-icon img,
.ph-proof-v3-badge-icon img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.ph-how-v3-badge-text,
.ph-benefits-v3-badge-text,
.ph-proof-v3-badge-text{
  font-size: 16px;
  font-weight: 600;
  color: #232637;
  line-height: 1;
}

.ph-how-v3-h2,
.ph-benefits-v3-h2,
.ph-proof-v3-h2,
.ph-final-cta-v3-h2{
  margin: 20px 0 0;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #2b374b;
}

.ph-how-v3-italic,
.ph-benefits-v3-italic,
.ph-proof-v3-italic,
.ph-final-cta-v3-italic{
  font-family: "Arapey", serif;
  font-style: italic;
  font-weight: 400;
}

.ph-how-v3-period,
.ph-benefits-v3-period,
.ph-proof-v3-period,
.ph-final-cta-v3-period{
  color: #232637;
}

.ph-how-v3-sub,
.ph-benefits-v3-sub,
.ph-proof-v3-sub,
.ph-final-cta-v3-sub{
  margin: 22px 0 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.65;
  color: #4d5468;
  font-family: "Poppins", sans-serif;
}

.ph-how-v3-step,
.ph-proof-v3-quote{
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 0px 0px rgba(20, 24, 35, 0.06);
}

.ph-final-cta-v3-card{
  background: #EAE7F2;
  border-radius: 26px;
  border: 1px solid rgba(35, 38, 55, 0.07);
  box-shadow: 0 4px 2px rgba(20, 24, 35, 0.06);
}

/* =========================================================
   HOW IT WORKS V3 — CENTERED HEADER + SPLIT TIMELINE
   ========================================================= */

.ph-how-v3{
  width: 100%;
  padding: 110px 52px;
}

.ph-how-v3-inner{
  max-width: 1280px;
  margin: 0 auto;
}

.ph-how-v3-top{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 56px;
}

.ph-how-v3-copy{
  max-width: 860px;
}

.ph-how-v3-badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 24, 35, 0.05);
  border: 1px solid rgba(35, 38, 55, 0.06);
}

.ph-how-v3-badge-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #dff1d6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ph-how-v3-badge-icon img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.ph-how-v3-badge-text{
  font-size: 16px;
  font-weight: 600;
  color: #232637;
  line-height: 1;
}

.ph-how-v3-sub{
  margin: 24px auto 0;
  max-width: 760px;
  font-size: 21px;
  line-height: 1.6;
  color: #4d5468;
}

/* body split */
.ph-how-v3-body{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 64px;
  align-items: center;
}

/* left timeline */
.ph-how-v3-list{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-left: 0;
}

.ph-how-v3-list-item{
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
}

.ph-how-v3-list-item:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 37px;
  top: 67px;
  width: 2px;
  height: calc(50% + 10px);
  background: #e3e8f0;
}

.ph-how-v3-list-marker{
  width: 76px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ph-how-v3-list-num{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffb468;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 rgba(47, 128, 237, 0.22);
}

.ph-how-v3-list-content{
  padding-top: 7px;
}

.ph-how-v3-list-title{
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #232637;
}

.ph-how-v3-list-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #72798e;
  max-width: 460px;
  font-family: "Poppins", sans-serif;
}

/* right visual */
.ph-how-v3-visual{
  display: flex;
  justify-content: center;
}

.ph-how-v3-visual-card{
  width: 860px;
  max-width: 860px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(35, 38, 55, 0.08);
  box-shadow: 0 7px 14px rgba(20, 24, 35, 0.10);
  padding: 18px;
}

.ph-how-v3-visual-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* responsive */
@media (max-width: 1100px){
  .ph-how-v3{
    padding: 92px 28px;
  }

  .ph-how-v3-body{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ph-how-v3-copy{
    max-width: 760px;
  }

  .ph-how-v3-visual{
    order: 2;
  }

  .ph-how-v3-list{
    order: 1;
  }
}

@media (max-width: 760px){
  .ph-how-v3{
    padding: 76px 20px;
  }

  .ph-how-v3-top{
    margin-bottom: 40px;
  }

  .ph-how-v3-h2{
    font-size: clamp(40px, 12vw, 62px);
  }

  .ph-how-v3-sub{
    font-size: 18px;
  }

  .ph-how-v3-list-item{
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .ph-how-v3-list-item:not(:last-child)::after{
    left: 28px;
    top: 64px;
  }

  .ph-how-v3-list-marker{
    width: 58px;
  }

  .ph-how-v3-list-num{
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .ph-how-v3-list-title{
    font-size: 22px;
  }

  .ph-how-v3-list-text{
    font-size: 16px;
  }

  .ph-how-v3-visual-card{
    border-radius: 24px;
    padding: 12px;
  }

  .ph-how-v3-visual-img{
    border-radius: 16px;
  }
}

/* =========================================
   HOW IT WORKS — PROCESS ROW
   ========================================= */

.ph-how-v3-top{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 62px;
}

.ph-how-v3-copy{
  max-width: 860px;
}

.ph-how-v3-process{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  align-items: start;
}

.ph-how-v3-process-item{
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ph-how-v3-process-top{
  position: relative;
  min-height: 88px;
  margin-bottom: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.ph-how-v3-process-num{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #f1af71;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  /* box-shadow: 0 10px 24px rgba(47, 109, 246, 0.18); */
  position: relative;
  z-index: 2;
}

.ph-how-v3-process-arrow{
  position: absolute;
  width: 300px;
  height: 86px;
  pointer-events: none;
}

.ph-how-v3-process-arrow-1{
  top: -39px;
  left: 70%;
  transform: translateX(-8px);
}

.ph-how-v3-process-arrow-2{
  top: 18px;
  left: 70%;
  transform: translateX(-8px);
}

.ph-how-v3-process-arrow svg{
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ph-how-v3-arrow-line{
  fill: none;
  stroke: #f1af71;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ph-how-v3-arrow-head{
  fill: #f1af71;
  stroke: none;
}

.ph-how-v3-process-text{
  margin: 0 auto 24px;
  max-width: 355px;
}

.ph-how-v3-process-image{
  width: 100%;
  height: 230px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(35, 38, 55, 0.05);
  box-shadow: 0 14px 32px rgba(20, 24, 35, 0.06);
  background: #ffffff;
}

.ph-how-v3-process-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-how-v3-process-image-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f5f7 100%);
}

.ph-how-v3-process-image-placeholder span{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #8b93a5;
}

/* Hide arrow on last card */
.ph-how-v3-process-item:last-child .ph-how-v3-process-arrow{
  display: none;
}

/* Medium screens */
@media (max-width: 1180px){
  .ph-how-v3-process{
    column-gap: 24px;
  }

  .ph-how-v3-process-title{
    font-size: 22px;
  }

  .ph-how-v3-process-text{
    font-size: 15px;
    max-width: 100%;
  }

  .ph-how-v3-process-image{
    height: 210px;
  }

  .ph-how-v3-process-arrow{
    left: 70px;
    width: calc(100% - 6px);
  }
}

/* Stack on tablet/mobile */
@media (max-width: 900px){
  .ph-how-v3-process{
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .ph-how-v3-process-arrow{
    display: none;
  }

  .ph-how-v3-process-top{
    min-height: auto;
    margin-bottom: 14px;
  }

  .ph-how-v3-process-image{
    height: 220px;
  }

  .ph-how-v3-process-text{
    margin-bottom: 18px;
  }
}

/* =========================================================
   BENEFITS (v3)
   ========================================================= */

/* ============== Align Left
.ph-benefits-v3-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
============ */

/* ============== Align Center =========== */
.ph-benefits-v3-top{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 56px;
  gap: 40px;
  margin-bottom: 40px;
}

.ph-benefits-v3-copy{
  max-width: 760px;
}

.ph-benefits-v3-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ph-benefits-v3-item{
  padding: 32px 28px 30px;
  min-height: 20px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  border-radius: 11px;
  border: 1px solid #d2d2d2;
  box-shadow: 0 0px 0px rgba(20, 24, 35, 0.08);
}

.ph-benefits-v3-item-copy{
  flex: 1 1 auto;
}

.ph-benefits-dashboard-img{
  min-width: 1300px;
  display: flex;
  align-items: flex-start;
  border: 1px solid #a8a8a8;
  border-radius: 34px;
  margin-top: 20px;
}

.ph-benefits-v3-iconbox{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #f7f7f7;
  border: 1px solid rgba(35, 38, 55, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.ph-benefits-v3-icon-inner{
  width: 49px;
  height: 49px;
  border-radius: 10px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 2px 0 rgba(0,0,0,0.07);
}

.ph-benefits-v3-watchlist-icon-img{
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  fill:#0ea5a4;
}

.ph-benefits-v3-pricedrops-icon-img{
  width: 33px;
  height: 33px;
  object-fit: contain;
  display: block;
  fill:#0ea5a4;
}


.ph-benefits-v3-history-icon-img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  fill:#0ea5a4;
}

/* =========================================================
   SOCIAL PROOF (v3)
   ========================================================= */

/* ====================== Align Left 
.ph-proof-v3-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
================== */

/* =============== Align Center ============= */
.ph-proof-v3-top{
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 40px;
  margin-bottom: 56px;
}

.ph-proof-v3-copy{
  max-width: 860px;
}

.ph-proof-v3-sub a{
  color: #232637;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ph-proof-v3-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ph-proof-v3-quote{
  padding: 30px 28px 26px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
}

.ph-proof-v3-quote-mark{
  font-family: "Arapey", serif;
  font-size: 74px;
  line-height: .8;
  color: #232637;
  margin-bottom: 14px;
}

.ph-proof-v3-quote-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #232637;
  flex: 1 1 auto;
  font-family: "Poppins", sans-serif;
}

.ph-proof-v3-quote-name{
  margin-top: 22px;
  font-size: 16px;
  font-weight: 600;
  color: #232637;
}

/* =========================================================
   FINAL CTA (v3)
   ========================================================= */

.ph-final-cta-v3-card{
  padding: 56px 52px;
  text-align: center;
}

.ph-final-cta-v3-sub{
  max-width: 760px;
  margin: 18px auto 0;
}

.ph-final-cta-v3-search{
  width: 100%;
  max-width: 760px;
  height: 78px;
  margin: 34px auto 0;
  border: 2px solid #2b3040;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 10px 0 24px;
  box-shadow: 0 10px 25px rgba(21, 24, 39, 0.05);
}

.ph-final-cta-v3-search-icon{
  width: 24px;
  height: 24px;
  color: #31384c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-right: 14px;
}

.ph-final-cta-v3-search-icon svg{
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.ph-final-cta-v3-search-input{
  flex: 1 1 auto;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  color: #232637;
}

.ph-final-cta-v3-search-input::placeholder{
  color: #a4a9b5;
}

.ph-final-cta-v3-search-btn{
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: #bfe8e7;
  color: #2b3040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
  flex: 0 0 auto;
}

.ph-final-cta-v3-search-btn:hover{
  transform: scale(1.04);
  opacity: .96;
}

.ph-final-cta-v3-search-btn svg{
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.ph-final-cta-v3-note{
  margin-top: 18px;
  font-size: 15px;
  color: #81889a;
  font-family: "Poppins", sans-serif;
}

/* =========================================================
   FOOTER (v3)
   ========================================================= */

.ph-footer-v3{
  padding: 20px 52px 0;
}

.ph-footer-v3-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  padding-top: 0;
  border-top: 0;
}

.ph-footer-v3-brand{
  max-width: 320px;
  flex: 0 0 320px;
}

.ph-footer-v3-logo{
  height: 40px;
  width: auto;
  display: block;
}

.ph-footer-v3-copy{
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: #6b7280;
}

.ph-footer-v3-links{
  display: flex;
  gap: 72px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.ph-footer-v3-col{
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ph-footer-v3-col-connect{
  min-width: 220px;
}

.ph-footer-v3-col-title{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #232637;
}

.ph-footer-v3-col a{
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  color: #6b7280;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}

.ph-footer-v3-col a:hover{
  color: #232637;
}

.ph-footer-v3-email{
  display: inline-block;
  margin-top: -2px;
}

.ph-footer-v3-socials{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.ph-footer-v3-socials a{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7b8494;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.ph-footer-v3-socials a:hover{
  color: #232637;
  transform: translateY(-1px);
}

.ph-footer-v3-socials svg{
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* bottom bar */
.ph-footer-v3-bottom{
  margin-top: 56px;
}

.ph-footer-v3-bottom-inner{
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(35, 38, 55, 0.08);
  padding: 50px 0 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ph-footer-v3-copyright{
  font-size: 17px;
  line-height: 1.4;
  color: #7b8494;
}

/* =========================================================
   RESPONSIVE (v3)
   ========================================================= */

@media (max-width: 1100px){
  .ph-how-v3,
  .ph-benefits-v3,
  .ph-proof-v3,
  .ph-final-cta-v3{
    padding: 92px 28px;
  }

  .ph-footer-v3{
    padding: 42px 28px 0;
  }

  .ph-how-v3-steps,
  .ph-benefits-v3-grid,
  .ph-proof-v3-grid{
    grid-template-columns: 1fr;
  }

  .ph-how-v3-step,
  .ph-benefits-v3-item,
  .ph-proof-v3-quote{
    min-height: unset;
  }

  .ph-footer-v3-inner{
    flex-direction: column;
    gap: 36px;
  }

  .ph-footer-v3-links{
    gap: 56px;
  }

  .ph-footer-v3-bottom{
    margin-top: 50px;
  }
}

@media (max-width: 760px){
  .ph-how-v3,
  .ph-benefits-v3,
  .ph-proof-v3,
  .ph-final-cta-v3{
    padding: 76px 20px;
  }

  .ph-footer-v3{
    padding: 36px 20px 0;
  }

  .ph-footer-v3-brand{
    max-width: 100%;
    flex: 1 1 auto;
  }

  .ph-footer-v3-links{
    gap: 34px;
    flex-direction: column;
  }

  .ph-footer-v3-col{
    min-width: 100%;
    gap: 14px;
  }

  .ph-footer-v3-col-title{
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ph-footer-v3-col a{
    font-size: 15px;
  }

  .ph-footer-v3-socials{
    gap: 12px;
  }

  .ph-footer-v3-bottom{
    margin-top: 34px;
  }

  .ph-footer-v3-bottom-inner{
    padding: 22px 0 28px;
  }

  .ph-footer-v3-copyright{
    font-size: 14px;
  }

  .ph-final-cta-v3-card{
    padding: 38px 20px;
  }

  .ph-final-cta-v3-search{
    height: 66px;
    padding-left: 18px;
  }

  .ph-final-cta-v3-search-btn{
    width: 50px;
    height: 50px;
  }
}

/* ======================
   Legal Pages
   ====================== */

.ph-legal-page{
  background:
    radial-gradient(1200px 500px at 50% -120px, rgba(34, 61, 116, 0.07), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 220px);
    margin-top: 35px;
}

.ph-legal-shell{
  max-width: 1600px;
  margin: 0 auto;
  padding: 52px 24px 88px;
}

.ph-legal-hero{
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.ph-legal-eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(27, 38, 59, 0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 8px 30px rgba(26, 43, 76, 0.05);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #344054;
}

.ph-legal-title{
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0f1728;
}

.ph-legal-subtitle{
  margin: 30px auto;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.7;
  color: #667085;
  font-weight: 600;
}

.ph-legal-updated{
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #475467;
}

.ph-legal-card{
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 28px;
  box-shadow:
    0 10px 30px rgba(16, 24, 40, 0.05),
    0 2px 10px rgba(16, 24, 40, 0.03);
  overflow: hidden;
}

.ph-legal-prose{
  padding: 38px 34px 42px;
}

.ph-legal-prose h2{
  margin: 34px 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #101828;
}

.ph-legal-prose h2:first-of-type{
  margin-top: 10px;
}

.ph-legal-prose p{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.82;
  color: #344054;
  font-weight: 500;
}

.ph-legal-prose ul{
  margin: 0 0 20px 0;
  padding-left: 22px;
}

.ph-legal-prose li{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #344054;
  font-weight: 500;
}

.ph-legal-prose a{
  color: #d88d1d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ph-legal-prose-header{
  margin: 0 0 70px;
  text-align: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 1.82;
  color: #344054;
  font-weight: 500;
}

.ph-legal-prose a:hover{
  opacity: 0.88;
}

@media (max-width: 900px){
  .ph-legal-shell{
    padding: 40px 18px 72px;
  }

  .ph-legal-card{
    border-radius: 22px;
  }

  .ph-legal-prose{
    padding: 28px 22px 32px;
  }

  .ph-legal-prose h2{
    font-size: 22px;
    margin-top: 28px;
  }

  .ph-legal-subtitle{
    font-size: 17px;
    line-height: 1.65;
  }
}

@media (max-width: 560px){
  .ph-legal-shell{
    padding: 30px 14px 60px;
  }

  .ph-legal-card{
    border-radius: 18px;
  }

  .ph-legal-prose{
    padding: 24px 18px 28px;
  }

  .ph-legal-prose p,
  .ph-legal-prose li{
    font-size: 15px;
    line-height: 1.75;
  }

  .ph-legal-prose h2{
    font-size: 20px;
  }
}

.ph-how-cta{
  margin: 70px auto 0;
  min-width: 200px;
  height: 52px;
  padding: 0 33px;
  border-radius: 7px;
  border: 3px solid #232637;
  background: #ffffff;
  color: #232637;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, opacity .18s ease;

}

.ph-how-cta:hover{
  transform: translateY(-3px);
  opacity: .90;
  text-decoration: none;
}

.ph-how-cta:focus{
  transform: translateY(-1px);
  opacity: .90;
  text-decoration: none;
}