:root{
  --av-bg:#f6f7fb;
  --av-text:#0f172a;
  --av-muted:#475569;
  --av-border:rgba(15,23,42,.10);
  --av-card:rgba(255,255,255,.92);
  --av-grad:linear-gradient(135deg,#6366F1 0%, #4F46F5 100%);
  --av-shadow:0 24px 60px rgba(2,6,23,.08);
  --av-radius:22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#0f172a;
  background:#fff;
}
img{ max-width:100%; }
a{ color:inherit; }

.pga-wrap{ max-width:1200px; margin:0 auto; padding:0 16px; }

.pga-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  text-decoration:none;
  cursor:pointer;
  transition: .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.pga-btn-primary{
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(99,102,241,.18);
}
.pga-btn-primary:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.pga-btn-ghost{
  background: rgba(255,255,255,.75);
  border-color: rgba(15,23,42,.12);
  color:#0f172a;
}
.pga-btn-ghost:hover{ transform: translateY(-1px); background:#fff; }
.pga-btn-outline{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color:#ffffff;
}
.pga-btn-outline:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.dot{
  width:8px;height:8px;border-radius:99px;
  background: linear-gradient(135deg,#6366F1,#4F46F5);
}

/* HERO */
.pga-hero{
  position: relative;
  padding: 86px 0 64px;
  background:
    radial-gradient(1100px 460px at 55% -30%, rgba(99,102,241,.22), transparent 60%),
    radial-gradient(900px 420px at 15% 10%, rgba(236,72,153,.12), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f7fb);
  overflow: hidden;
}
.pga-hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}
.pga-hero-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.18);
  background: rgba(99,102,241,.08);
  color: #3730a3;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;
  width: fit-content;
}
.pga-hero h1{
  margin: 12px 0 10px;
  font-size: 45px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  color: #0f172a;
}
.pga-hero h1 .grad{
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pga-hero p{
  margin: 0 0 18px;
  color:#475569;
  line-height:1.8;
  font-size: 16px;
  max-width: 62ch;
}
.pga-hero-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.pga-hero-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.pga-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
  color:#475569;
  font-size:12px;
}
.pga-hero-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 30px 70px rgba(2,6,23,.10);
}
.pga-hero-media img{
  width:100%;
  height: 430px;
  object-fit: cover;
  display:block;
  filter: saturate(1.05);
}
.pga-hero-media:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.00), rgba(2,6,23,.55));
  pointer-events:none;
}
.pga-mini{
  position:absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  z-index: 2;
}
.pga-mini .box{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 12px 12px;
  backdrop-filter: blur(8px);
}
.pga-mini strong{ display:block; color:#0f172a; font-size: 14px; }
.pga-mini span{ display:block; color:#64748b; font-size: 12px; margin-top: 3px; }

/* TRUST STRIP */
.pga-strip{ padding: 18px 0 0; background:#fff; }
.pga-strip-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pga-strip-card{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(2,6,23,.05);
  padding: 14px;
}
.pga-strip-card strong{ display:block; font-size: 15px; }
.pga-strip-card span{ display:block; margin-top: 4px; color:#64748b; font-size: 13px; line-height: 1.6; }


.pga-logo-wall{
  padding: 48px 0 34px;
  background: linear-gradient(180deg,#f7f8fc,#ffffff);
}

.pga-logo-head{
  max-width: 820px;
  margin-bottom: 22px;
}

.pga-logo-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border:1px solid rgba(99,102,241,.18);
  border-radius:999px;
  background:#eef0ff;
  color:#3730a3;
  font-weight:800;
  font-size:13px;
}

.pga-logo-head h2{
  margin:18px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.08;
  color:#07142f;
}

.pga-logo-head p{
  color:#42526e;
  font-size:17px;
  line-height:1.7;
}

.pga-logo-box{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  border-radius:26px;
  padding:24px;
  box-shadow:0 24px 70px rgba(2,6,23,.08);
}

.pga-logo-box h3{
  margin:0 0 16px;
  font-size:20px;
  color:#07142f;
}

.pga-logo-subtitle{
  margin-top:28px !important;
}

.pga-logo-grid{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:14px;
}

.pga-logo-item{
  min-height:118px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff,#f8f9ff);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 10px;
  transition:.25s ease;
}

.pga-logo-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(2,6,23,.12);
  border-color:rgba(99,102,241,.35);
}

.pga-logo-item img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.pga-logo-item span{
  font-size:13px;
  font-weight:800;
  color:#172033;
  text-align:center;
}

@media(max-width:1100px){
  .pga-logo-grid{grid-template-columns:repeat(4,1fr);}
}

@media(max-width:640px){
  .pga-logo-wall{padding:36px 0 24px;}
  .pga-logo-box{padding:16px;}
  .pga-logo-grid{grid-template-columns:repeat(2,1fr);}
  .pga-logo-item{min-height:105px;}
}

/* SERVICES */
.av-section{ padding:70px 0; background:var(--av-bg); color:var(--av-text); }
.av-container{ max-width:1200px; margin:0 auto; padding:0 16px; }
.av-kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background:rgba(99,102,241,.08);
  border:1px solid rgba(99,102,241,.18);
  font-size:12px; font-weight:900; color:#3730a3;
}
.av-kicker i{ width:10px; height:10px; border-radius:50%; background:var(--av-grad); display:inline-block; }
.av-h2{ margin:14px 0 10px; font-size:37px; letter-spacing:-.7px; }
.av-lead{ margin:0 0 28px; max-width:72ch; color:var(--av-muted); line-height:1.7; }
.av-grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:stretch; }
.av-service{
  background:var(--av-card);
  border:1px solid var(--av-border);
  border-radius:var(--av-radius);
  box-shadow:var(--av-shadow);
  overflow:hidden;
  transition:.25s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}
.av-service:hover{ transform:translateY(-4px); box-shadow:0 34px 90px rgba(2,6,23,.12); }
.av-service-media{ position:relative; height:190px; flex:0 0 190px; overflow:hidden; }
.av-service-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.av-service-chip{
  position:absolute; top:14px; left:14px;
  padding:7px 12px; border-radius:999px;
  background:rgba(255,255,255,.9);
  font-size:12px; font-weight:900;
  box-shadow:0 18px 40px rgba(2,6,23,.20);
}
.av-service-body{ padding:16px; flex:1 1 auto; display:flex; flex-direction:column; }
.av-service-row{ display:grid; grid-template-columns:52px 1fr; gap:12px; align-items:start; }
.av-icon-bubble{
  width:52px; height:52px; border-radius:18px;
  display:grid; place-items:center;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.18);
  box-shadow:0 18px 40px rgba(2,6,23,.08);
}
.av-icon-bubble img{ width:28px; height:28px; object-fit:contain; display:block; }
.av-service-title{ margin:0 0 6px; font-size:18px; letter-spacing:-.2px; }
.av-service-desc{ margin:0; font-size:13.5px; color:var(--av-muted); line-height:1.6; }
.av-bullets{
  list-style:none; padding:0; margin:12px 0 0;
  display:flex; flex-direction:column; gap:10px;
}
.av-bullets li{ display:flex; gap:10px; align-items:flex-start; font-size:13px; color:#475569; line-height:1.55; }
.av-check{
  width:18px; height:18px; border-radius:7px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.22);
  display:grid; place-items:center;
  flex:0 0 auto; margin-top:2px;
  color:#4F46F5; font-weight:900;
}
.av-actions{ margin-top:auto; padding-top:14px; }
.av-actions-strip{
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.18);
  padding: 10px;
  border-radius: 999px;
  display:flex;
  gap:10px;
  align-items:center;
}
.av-btn{
  height:46px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  font-weight:900;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0f172a;
  transition:.2s ease;
  padding:0 18px;
  white-space:nowrap;
  cursor:pointer;
}
.av-btn:hover{ transform:translateY(-1px); }
.av-btn-primary{
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  border:0;
  color:#fff;
  box-shadow: 0 14px 30px rgba(99,102,241,.20);
}
.av-btn-ghost{ background: rgba(255,255,255,.92); border:1px solid rgba(15,23,42,.14); }
.av-btn-wide{ flex:1 1 0; }

/* PROCESS */
.pga-process{
  padding: 70px 0;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(99,102,241,.12), transparent 55%),
    radial-gradient(900px 420px at 90% 10%, rgba(236,72,153,.10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f7fb);
}
.pga-process-head{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:end;
}
.pga-process-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.18);
  background: rgba(99,102,241,.08);
  color: #3730a3;
  font-weight: 900;
  font-size: 12px;
}
.pga-process h2{ margin: 10px 0 8px; font-size: 34px; line-height: 1.15; }
.pga-process-sub{ margin: 0; color:#475569; line-height:1.7; font-size:15px; max-width: 62ch; }
.pga-process-cta{ display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; }
.pga-steps{ margin-top: 16px; display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pga-step{
  border-radius:22px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.94);
  box-shadow:0 14px 30px rgba(2,6,23,.05);
  padding:14px;
  position:relative;
  overflow:hidden;
}
.pga-step:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(560px 160px at 20% 0%, rgba(99,102,241,.10), transparent 55%);
  opacity:.55;
  pointer-events:none;
}
.pga-step strong{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
  letter-spacing:-.1px;
}
.pga-step .num{
  width:34px; height:34px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.22);
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
}
.pga-step p{ position:relative; margin:8px 0 0; color:#475569; font-size:13px; line-height:1.7; }

/* WHY + TESTIMONIALS + CONTACT */
.pga-why, .pga-testimonials, .pga-contact{ padding: 70px 0; }
.pga-why{ background: linear-gradient(180deg, #f6f7fb, #ffffff); }
.pga-testimonials{ background: linear-gradient(180deg, #ffffff, #f6f7fb); }
.pga-contact{ background: linear-gradient(180deg, #f6f7fb, #ffffff); }

.pga-why-head, .pga-test-head, .pga-contact-head, .pga-faq-head{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:end;
  margin-bottom: 18px;
}
.pga-why-kicker, .pga-test-kicker, .pga-contact-kicker, .pga-price-kicker, .pga-faq-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.18);
  background: rgba(99,102,241,.08);
  color: #3730a3;
  font-weight: 900;
  font-size: 12px;
  width: fit-content;
}
.pga-why h2, .pga-testimonials h2, .pga-contact h2, .pga-pricing h2, .pga-faq h2{
  margin: 10px 0 8px;
  font-size: 34px;
  line-height: 1.15;
}
.pga-why-sub, .pga-test-sub, .pga-contact-sub, .pga-price-sub, .pga-faq-sub{
  margin: 0;
  color:#475569;
  line-height:1.7;
  font-size:15px;
  max-width: 60ch;
}

.pga-why-ctaRow, .pga-process-cta{ display:flex; justify-content:flex-end; gap:10px; flex-wrap:wrap; }

.pga-why-grid, .pga-test-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pga-why-card, .pga-test-card, .pga-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
  transition: .22s ease;
  position: relative;
  overflow:hidden;
}
.pga-why-card:hover, .pga-test-card:hover{ transform: translateY(-3px); box-shadow: 0 26px 60px rgba(2,6,23,.10); border-color: rgba(99,102,241,.20); }
.pga-why-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.pga-why-icon{
  width: 44px; height: 44px; border-radius: 14px;
  display:grid; place-items:center; color:#fff;
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  box-shadow: 0 12px 30px rgba(99,102,241,.22);
}
.pga-why-icon svg{ width:24px; height:24px; display:block; }
.pga-why-tag{
  font-size: 12px; font-weight: 900;
  color: #111827;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pga-why-card h3{ margin: 12px 0 8px; font-size: 18px; }
.pga-why-card p{ margin: 0; color:#475569; line-height: 1.65; font-size: 14px; }

.pga-stars{ display:flex; gap:4px; margin-bottom:10px; }
.pga-stars span{ color:#f59e0b; font-size:16px; }
.pga-quote{ font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.pga-author{ display:flex; align-items:center; gap:10px; border-top:1px dashed rgba(15,23,42,.10); padding-top: 12px; }
.pga-avatar{
  width:42px;height:42px; border-radius:14px;
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  display:grid; place-items:center; color:#fff; font-weight:900;
}

.pga-contact-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.pga-form{ display:grid; gap: 12px; }
.pga-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pga-field label{ display:block; font-size: 13px; font-weight: 800; margin: 0 0 6px; }
.pga-input, .pga-textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.9);
  outline:none;
  font-size: 14px;
  transition: .2s ease;
}
.pga-textarea{ min-height: 120px; resize: vertical; }
.pga-input:focus, .pga-textarea:focus{
  border-color: rgba(99,102,241,.45);
  box-shadow: 0 0 0 4px rgba(99,102,241,.12);
}
.pga-form-meta{ display:flex; gap:10px; flex-wrap: wrap; align-items:center; justify-content:space-between; }
.pga-small{ color:#64748b; font-size: 13px; }
.pga-info{ display:flex; flex-direction:column; gap: 12px; }
.pga-info-item{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px; border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
}
.pga-ico{
  width: 40px;height:40px; border-radius: 14px;
  display:grid; place-items:center; color:#fff;
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  box-shadow: 0 12px 30px rgba(99,102,241,.18);
  flex: 0 0 auto;
}
.pga-ico svg{ width:22px; height:22px; display:block; }
.pga-info-item strong{ display:block; font-size: 14px; margin-bottom: 2px; }
.pga-info-item a, .pga-info-item span{ color:#475569; font-size: 14px; text-decoration:none; }
.pga-info-item a:hover{ text-decoration: underline; }
.pga-hours{
  padding: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(15,23,42,.14);
  background: rgba(255,255,255,.75);
}
.pga-hours h4{ margin: 0 0 8px; font-size: 14px; text-transform: uppercase; }
.pga-hours p{ margin: 0; color:#64748b; font-size: 13px; line-height: 1.7; }

/* PRICING SECTION (base) */
.pga-pricing{ background:#fff; padding: 70px 0; }

/* ======================================================
   HOMEPAGE PRICING SLIDER (3 cards per view) - pga-op-
====================================================== */

.pga-op-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* Head note (best conversion placement) */
.pga-op-headNote{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.pga-op-headPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.22);
  color:#3730a3;
  font-weight:950;
  font-size:12px;
}
.pga-op-headText{
  color:#64748b;
  font-size:13px;
  line-height:1.6;
}

.pga-op-nav{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.18);
  padding: 8px 10px;
  border-radius: 999px;
}

.pga-op-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  font-weight:1000;
  font-size:20px;
  color:#0f172a;
  transition:.18s ease;
  display:grid;
  place-items:center;
}
.pga-op-btn:hover{ transform:translateY(-1px); background:#fff; }
.pga-op-btn:disabled{ opacity:.5; cursor:not-allowed; transform:none; }

.pga-op-dots{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 0 2px;
}
.pga-op-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.18);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  transition:.18s ease;
}
.pga-op-dot.active{
  background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  border-color: rgba(99,102,241,.28);
  transform: scale(1.05);
}

/* Slider */
.pga-op-slider{
  margin-top:18px;
  overflow:hidden;
  border-radius: 24px;
}
.pga-op-track{
  display:flex;
  gap:16px;
  will-change: transform;
  transition: transform .35s ease;
  padding: 2px; /* prevents shadow clipping */
}

/* Card width = 3 per view */
.pga-op-card{
  flex: 0 0 calc((100% - 32px) / 3);
  border-radius:28px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 24px 60px rgba(2,6,23,.10);
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pga-op-card:hover{
  transform:translateY(-4px);
  box-shadow:0 34px 90px rgba(2,6,23,.14);
  border-color:rgba(99,102,241,.22);
}
.pga-op-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(700px 220px at 20% 0%, rgba(99,102,241,.12), transparent 55%);
  opacity:.55;
  pointer-events:none;
}

/* Featured ribbon */
.pga-op-card.featured{
  border-color:rgba(99,102,241,.28);
  box-shadow:0 34px 90px rgba(2,6,23,.14);
}
.pga-op-ribbon{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.26);
  color:#3730a3;
  font-weight:950;
  font-size:12px;
  backdrop-filter:blur(10px);
}

/* Card inner */
.pga-op-card-top{
  position:relative;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, rgba(99,102,241,.10), rgba(255,255,255,0));
}
.pga-op-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
  font-size:12px;
  font-weight:950;
  color:#0f172a;
  width:fit-content;
}
.pga-op-mini-dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:linear-gradient(135deg,#6366F1 0%, #4F46F5 100%);
}

.pga-op-card h4{
  position:relative;
  margin:10px 0 6px;
  font-size:18px;
  letter-spacing:-.2px;
}
.pga-op-card p{
  position:relative;
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.7;
  max-width:64ch;
}

.pga-op-price{
  position:relative;
  margin-top:12px;
  display:flex;
  align-items:flex-end;
  gap:8px;
}
.pga-op-amt{
  font-size:34px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-0.8px;
}
.pga-op-per{
  color:#64748b;
  font-weight:900;
  font-size:13px;
  padding-bottom:4px;
}
.pga-op-typical{
  position:relative;
  margin-top:6px;
  font-size:12px;
  color:#64748b;
}

.pga-op-card-body{
  position:relative;
  padding:14px 16px 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1 1 auto;
}
.pga-op-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pga-op-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.55;
  color:#334155;
}
.pga-op-tick{
  width:18px;
  height:18px;
  border-radius:999px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.22);
  display:grid;
  place-items:center;
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
  margin-top:2px;
}

.pga-op-card-foot{
  position:relative;
  padding:14px 16px 16px;
  border-top:1px solid rgba(15,23,42,.08);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  background:rgba(255,255,255,.65);
}
.pga-op-btn-lite{
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.85);
  font-weight:950;
  font-size:14px;
  cursor:pointer;
  transition:.18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  color:#0f172a;
}
.pga-op-btn-lite:hover{ transform:translateY(-1px); background:#fff; }
.pga-op-btn-lite.primary{
  background:rgba(99,102,241,.10);
  border-color:rgba(99,102,241,.28);
}
.pga-op-btn-lite.primary:hover{
  box-shadow:0 18px 40px rgba(99,102,241,.18);
  background:rgba(99,102,241,.14);
}

/* Proof sprint (under slider) */
.pga-op-proof{ margin-top:16px; }
.pga-op-proof-card{
  border-radius:26px;
  padding:18px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(99,102,241,.14), transparent 60%),
    radial-gradient(700px 340px at 95% 20%, rgba(236,72,153,.10), transparent 55%),
    rgba(255,255,255,.82);
  box-shadow:0 24px 60px rgba(2,6,23,.10);
}
.pga-op-proof-card h3{ margin:10px 0 6px; font-size:20px; letter-spacing:-.2px; }
.pga-op-proof-card p{ margin:0; color:#475569; line-height:1.75; font-size:14px; max-width:92ch; }
.pga-op-proof-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pga-op-proof-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.55;
  color:#334155;
}
.pga-op-proof-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.pga-op-proof-note{
  margin-top:10px;
  color:#64748b;
  font-size:12px;
  line-height:1.6;
}

/* FAQ */
.pga-faq{ padding: 70px 0; background: #f6f7fb; }
.faq{ margin-top: 14px; display:grid; gap: 10px; }
.faq-item{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(2,6,23,.05);
  overflow:hidden;
}
.faq-q{
  width:100%;
  border:none;
  background: transparent;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  cursor:pointer;
  font-weight: 950;
  color:#0f172a;
  text-align:left;
}
.faq-ico{
  width:34px;height:34px;
  border-radius: 12px;
  display:grid;place-items:center;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.18);
  color:#4F46F5;
  font-weight: 950;
  flex:0 0 auto;
}
.faq-a{ padding: 0 16px 14px; color:#475569; line-height: 1.75; font-size: 14px; }

/* CTA */
.pga-cta{
  padding: 70px 0;
  background:
    radial-gradient(900px 420px at 10% -20%, rgba(99,102,241,.28), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(236,72,153,.22), transparent 55%),
    linear-gradient(135deg, #0f172a, #020617);
  color:#ffffff;
}
.pga-cta-card{
  border-radius: 26px;
  padding: 42px 28px;
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(236,72,153,.18));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 40px 90px rgba(2,6,23,.55);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items:center;
}
.pga-cta h2{ margin: 0 0 10px; font-size: 36px; line-height: 1.15; letter-spacing: -0.4px; }
.pga-cta h2 span{
  background: linear-gradient(135deg, #a5b4fc, #fbcfe8);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.pga-cta p{ margin: 0; color: rgba(229,231,235,.92); font-size: 16px; line-height: 1.7; max-width: 60ch; }
.pga-cta-actions{ display:flex; gap: 12px; justify-content:flex-end; flex-wrap:wrap; }
.pga-cta-note{ margin-top: 14px; font-size: 13px; color: rgba(229,231,235,.8); }

/* ======================================================
   UPGRADED BIG MODAL (BIGGER + premium + professional)
====================================================== */
.pga-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}
.pga-modal-backdrop.active{ display:flex; }

.pga-modal{
  width:100%;
  max-width: 1120px;
  max-height: 90vh;
  background: rgba(255,255,255,.96);
  border-radius: 24px;
  border: 1px solid rgba(148,163,184,.60);
  box-shadow: 0 30px 90px rgba(2,6,23,0.60);
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
}
.pga-modal:before{
  content:"";
  position:absolute;
  inset:-220px -220px auto -220px;
  height: 420px;
  background:
    radial-gradient(700px 260px at 20% 20%, rgba(99,102,241,.20), transparent 60%),
    radial-gradient(700px 260px at 70% 10%, rgba(236,72,153,.14), transparent 60%),
    radial-gradient(700px 260px at 90% 40%, rgba(14,165,233,.12), transparent 60%);
  pointer-events:none;
  filter: blur(10px);
  opacity: .9;
}

.pga-modal-header{
  position: sticky;
  top: 0;
  z-index: 5;
  padding:16px 18px 12px;
  border-bottom:1px solid rgba(226,232,240,1);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.pga-modal-header h3{ margin:0; font-size:18px; color:#0f172a; letter-spacing:-.2px; }
.pga-modal-tagline{ font-size:13px; color:#64748b; margin:5px 0 0; line-height:1.6; }
.pga-modal-close{
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  color:#64748b;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
  transition:.18s ease;
}
.pga-modal-close:hover{ transform: translateY(-1px); background:#fff; }

.pga-modal-hero{
  position: relative;
  height: 240px;
  overflow:hidden;
  background:#e5e7eb;
}
.pga-modal-hero img{ width:100%; height:100%; object-fit:cover; display:block; }
.pga-modal-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.08), rgba(2,6,23,.68));
  pointer-events:none;
}
.pga-modal-heroOverlay{
  position:absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color:#fff;
  z-index: 2;
}
.pga-modal-heroOverlay strong{ display:block; font-size: 16px; letter-spacing:-.1px; }
.pga-modal-heroOverlay span{ display:block; margin-top: 3px; font-size: 13px; opacity:.92; line-height:1.55; }

.pga-modal-body{
  padding:16px 18px 18px;
  display:grid;
  grid-template-columns: minmax(0,1.25fr) minmax(0,1fr);
  gap:16px;
  overflow:auto;
  max-height: calc(90vh - 44px - 240px - 70px);
}
.pga-modal-col{
  position:relative;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 14px 30px rgba(2,6,23,.05);
}
.pga-modal-col h4{ margin:0 0 8px; font-size:14px; color:#0f172a; }
.pga-modal-col p{ margin:0 0 10px; font-size:13px; color:#64748b; line-height:1.7; }

.pga-modal-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.pga-modal-list li{
  display:flex;
  gap:9px;
  font-size:13px;
  color:#475569;
  line-height:1.6;
}
.pga-modal-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg,#5550F4,#E84997);
  margin-top: 8px;
  flex:0 0 auto;
}
.pga-modal-kpi{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 10px;
}
.pga-modal-kpi .k{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(99,102,241,.08);
  padding: 10px;
}
.pga-modal-kpi .k span{
  display:block;
  font-size: 12px;
  color:#64748b;
  font-weight: 800;
}
.pga-modal-kpi .k strong{
  display:block;
  margin-top: 6px;
  font-size: 13px;
  color:#0f172a;
  letter-spacing:-.1px;
}

.pga-modal-meta{ margin-top:10px; font-size:12px; color:#9ca3af; }

.pga-modal-footer{
  padding:12px 18px 16px;
  border-top:1px solid rgba(226,232,240,1);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  background: rgba(255,255,255,.92);
}
.pga-modal-price{ font-size:13px; color:#64748b; line-height:1.6; }
.pga-modal-price strong{ color:#111827; }
.pga-modal-actions{ display:flex; gap:8px; flex-wrap:wrap; }

/* RESPONSIVE */
@media (max-width: 980px){
  .pga-hero-grid{ grid-template-columns: 1fr; }
  .pga-hero h1{ font-size: 34px; }
  .pga-hero-media img{ height: 360px; }

  .pga-strip-grid{ grid-template-columns: 1fr; }
  .av-grid3{ grid-template-columns:1fr; }
  .av-h2{ font-size:32px; }

  .pga-process-head, .pga-why-head, .pga-test-head, .pga-contact-head, .pga-faq-head{ grid-template-columns: 1fr; align-items:start; }
  .pga-why-ctaRow, .pga-process-cta{ justify-content:flex-start; }

  .pga-steps{ grid-template-columns: 1fr 1fr; }
  .pga-why-grid, .pga-test-grid{ grid-template-columns: 1fr; }
  .pga-contact-grid{ grid-template-columns: 1fr; }

  .pga-op-card{ flex-basis: calc((100% - 16px) / 2); }

  .pga-cta-card{ grid-template-columns: 1fr; text-align:center; }
  .pga-cta-actions{ justify-content:center; }
  .pga-cta h2{ font-size: 30px; }
}
@media (max-width: 700px){
  .pga-modal-body{
    grid-template-columns: 1fr;
    max-height: calc(90vh - 44px - 240px - 80px);
  }
  .pga-modal-kpi{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .pga-row{ grid-template-columns: 1fr; }
  .pga-op-card{ flex-basis: 100%; }
  .pga-op-nav{ width:100%; justify-content:space-between; }
}
@media (max-width: 520px){
  .pga-mini{ grid-template-columns: 1fr; }
}
@media (max-width: 500px){
  .pga-hero { padding: 45px 0 64px; }
}